﻿:root {
  --paper: #f7f2ea;
  --panel: #fffaf3;
  --panel-strong: #efe6d9;
  --ink: #2f2a24;
  --ink-soft: #685f54;
  --forest: #1d2b23;
  --taupe: #b8a99a;
  --border: #d7ccbf;
  --shadow: 0 24px 62px rgba(47, 42, 36, 0.12);
  --title-font: "Cormorant Garamond", serif;
  --body-font: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #ece2d4 0%, #f7f2ea 34%, #efe5d8 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 7vw;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 42, 36, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(47, 42, 36, 0.08);
}

.brand {
  font-family: var(--title-font);
  font-size: 31px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(29, 43, 35, 0.05);
}

.nav-links .nav-cta {
  background: var(--forest);
  color: #fff;
  border: 1px solid rgba(29, 43, 35, 0.14);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
  padding: 38px 7vw 34px;
  background:
    radial-gradient(circle at right top, rgba(183, 166, 148, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(239, 230, 217, 0.92));
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-content h1,
.section-head h2,
.about-text h2,
.methods-text h2,
.qualifications-title h2,
.timeline-item h3,
.value-card h3,
.offer-card h3,
.testimonial-card h3,
.process-card h3,
.footer-brand {
  font-family: var(--title-font);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  margin: 0 0 18px;
}

.hero-lead,
.about-text p,
.methods-text p,
.offers-lead,
.offer-card p,
.value-card p,
.timeline-item p,
.qualifications-title p,
.contact-note,
.testimonial-card p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-lead {
  max-width: 58ch;
  font-size: 15px;
}

.hero-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  min-height: 46px;
  border-radius: 4px;
  background: var(--taupe);
  color: #fff;
  border: 1px solid rgba(29, 43, 35, 0.14);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--forest);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 42, 36, 0.08);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  border: 1px solid rgba(29, 43, 35, 0.14);
}

.hero-media {
  display: grid;
  place-items: center;
}

.photo-frame {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 28%, #fff7ed 0%, #f4e5d4 52%, #e7d1bd 100%);
  padding: 14px;
  box-shadow:
    0 22px 42px rgba(29, 43, 35, 0.14),
    0 0 0 1px rgba(29, 43, 35, 0.06);
  animation: float 7s ease-in-out infinite;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.72);
  padding: 14px 0;
  display: flex;
  gap: 40px;
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: scroll 28s linear infinite;
  flex-shrink: 0;
}

.marquee-track span {
  font-family: var(--title-font);
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about,
.methods,
.value,
.process,
.testimonials,
.qualifications,
.site-footer {
  position: relative;
}

.about {
  padding: 42px 7vw 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.about-text,
.about-cards,
.methods-text,
.methods-list,
.value-card,
.timeline-item,
.testimonial-card,
.qualifications-title,
.qualifications-list {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.about-text {
  padding: 28px;
}

.about-text h2,
.section-head h2,
.methods-text h2,
.qualifications-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  margin: 0 0 14px;
}

.about-quote {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: linear-gradient(145deg, rgba(248, 241, 230, 0.96), rgba(238, 228, 212, 0.92));
  border: 1px solid rgba(47, 42, 36, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(47, 42, 36, 0.07);
}

.about-quote-mark {
  font-family: var(--title-font);
  font-size: 5.4rem;
  line-height: 0.7;
  color: rgba(36, 53, 43, 0.18);
}

.about-qualification-block {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(47, 42, 36, 0.1);
}

.about-qualification-block h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1;
  color: var(--forest);
}

.about-qualification-copy {
  margin: 0;
  max-width: 56ch;
  font-size: 0.95rem;
}

.about-qualification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-qualification-list .qual-card {
  background: rgba(255, 251, 245, 0.72);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(47, 42, 36, 0.1);
  font-size: 0.86rem;
  line-height: 1.35;
}



.info-card h3 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.info-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.section-head {
  padding: 0 7vw;
  margin-bottom: 16px;
}

.offers {
  padding: 18px 0 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.offers-lead {
  max-width: 760px;
  font-size: 14px;
}

.offer-group-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(86, 79, 69, 0.8);
}

.program-stage,
.offer-row-shell {
  margin: 0 7vw 20px;
}

.program-stage {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.program-stage-head,
.offer-row-head {
  display: grid;
  align-content: start;
  gap: 8px;
}

.program-stage-head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 0.95;
  color: var(--forest);
}

.program-stage-head p:last-child,
.offer-row-head p:last-child {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-soft);
}

.program-feature {
  background: linear-gradient(180deg, rgba(253, 250, 244, 0.98), rgba(250, 245, 237, 0.98));
  border: 1px solid rgba(36, 53, 43, 0.18);
  border-top: 4px solid rgba(36, 53, 43, 0.9);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 14px 34px rgba(56, 47, 38, 0.08);
}

.program-feature-media {
  display: grid;
  place-items: center;
}

.program-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  box-shadow: 0 0 0 4px rgba(255, 252, 247, 0.92), 0 0 0 5px rgba(36, 53, 43, 0.12);
}

.program-icon svg {
  width: 44px;
  height: 44px;
}

.program-icon-performance {
  background: radial-gradient(circle at 32% 28%, rgba(255, 251, 245, 0.95), rgba(231, 220, 204, 0.92));
}

.program-icon-ai {
  background: radial-gradient(circle at 32% 28%, rgba(244, 248, 245, 0.98), rgba(214, 228, 219, 0.94));
}

.program-feature-body {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.program-feature-body > p:not(.offer-subline) {
  margin: 0;
  color: rgba(98, 88, 76, 0.94);
  line-height: 1.4;
}

.program-feature-body h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 1.6vw, 1.95rem);
  font-weight: 500;
  line-height: 0.98;
  color: var(--forest);
}

.offer-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.offer-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offer-card {
  background: linear-gradient(180deg, rgba(253, 250, 244, 0.98), rgba(250, 245, 237, 0.98));
  border: 1px solid rgba(36, 53, 43, 0.18);
  border-top: 4px solid rgba(36, 53, 43, 0.9);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  min-height: 100%;
  height: 100%;
  box-shadow: 0 14px 34px rgba(56, 47, 38, 0.08);
  position: relative;
  display: grid;
  grid-template-rows: 112px 1fr;
}

.offer-card::before {
  content: none;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(56, 47, 38, 0.12);
}

.offer-image-wrap {
  padding: 10px 10px 4px;
  min-height: 112px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 16%, rgba(225, 213, 196, 0.82) 0 34%, rgba(225, 213, 196, 0.24) 35%, transparent 62%);
  aspect-ratio: auto;
}

.offer-image-wrap img {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #ede7de;
  box-shadow: 0 0 0 4px rgba(255, 252, 247, 0.92), 0 0 0 5px rgba(36, 53, 43, 0.12);
  transition: transform 0.35s ease;
}

.offer-card:hover .offer-image-wrap img {
  transform: scale(1.04);
}

.offer-card-body {
  padding: 0 12px 12px;
  display: grid;
  grid-template-rows: minmax(1.9em, auto) minmax(1.8em, auto) auto 1fr auto;
  align-content: start;
  gap: 4px;
}

.offer-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 0.92vw, 1.28rem);
  font-weight: 500;
  line-height: 0.98;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.offer-subline {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  color: rgba(86, 79, 69, 0.86);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.offer-divider {
  width: 32px;
  height: 1px;
  margin: 2px auto 0;
  background: rgba(124, 112, 98, 0.45);
}

.offer-card-body > p:not(.offer-subline) {
  margin: 0;
  color: rgba(98, 88, 76, 0.94);
  line-height: 1.22;
  font-size: 0.71rem;
  text-wrap: pretty;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
  padding: 7px 14px;
  min-height: 34px;
  border-radius: 999px;
  background: var(--forest);
  border: 1px solid var(--forest);
  color: #f8f4ec;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.offer-link:hover {
  background: #31463a;
  border-color: #31463a;
  color: #f8f4ec;
  transform: translateY(-1px);
}

.offer-link:focus-visible {
  outline: 2px solid rgba(248, 244, 236, 0.85);
  outline-offset: 2px;
}
.methods {
  padding: 0 7vw 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 22px;
}

.methods-text,
.methods-list {
  padding: 28px;
}

.methods-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.method-item {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(29, 43, 35, 0.05);
  border: 1px solid rgba(29, 43, 35, 0.14);
  font-size: 0.86rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--ink);
}

.value {
  padding: 0 7vw 30px;
}

.value-card {
  padding: 28px;
}

.process {
  padding: 0 7vw 30px;
}

.process .section-head,
.testimonials .section-head {
  padding-left: 0;
  padding-right: 0;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  padding-top: 18px;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: var(--border);
}

.timeline-item {
  padding: 26px 24px;
  position: relative;
  min-height: 220px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--taupe);
  box-shadow: 0 0 0 6px rgba(183, 166, 148, 0.2);
}

.timeline-item h3 {
  font-size: 1.45rem;
  margin: 10px 0 8px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #24352b;
  padding-top: 2px;
}

.testimonials {
  padding: 0 7vw 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 18px;
  padding: 0;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  padding: 26px 24px 22px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(246, 238, 227, 0.92));
  border: 1px solid rgba(47, 42, 36, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(47, 42, 36, 0.06);
}

.testimonial-card-featured {
  padding: 34px 32px 28px;
  background: linear-gradient(135deg, rgba(248, 241, 230, 0.98), rgba(236, 226, 210, 0.95));
}

.testimonial-mark {
  font-family: var(--title-font);
  font-size: 4.8rem;
  line-height: 0.72;
  color: rgba(36, 53, 43, 0.2);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.52;
}

.testimonial-card-featured p {
  font-size: 1.12rem;
  line-height: 1.5;
}

.testimonial-meta {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(47, 42, 36, 0.12);
}

.testimonial-meta strong {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.testimonial-meta span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}



.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr);
  gap: 22px;
  padding: 24px 7vw 28px;
  background: linear-gradient(135deg, rgba(244, 236, 225, 0.96), rgba(234, 223, 209, 0.96));
  border-top: 1px solid var(--border);
  align-items: start;
  color: var(--ink);
}

.footer-brand {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--forest);
}

.contact-note {
  margin: 10px 0 0;
  max-width: 28ch;
  color: var(--ink-soft);
}

.contact-form {
  width: 100%;
}

.contact-form h4 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-direct-email {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form form {
  display: grid;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  column-gap: 10px;
  row-gap: 10px;
  align-items: start;
}

.form-grid .message {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
}

.contact-form label {
  display: grid;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(47, 42, 36, 0.2);
  background: rgba(255, 251, 245, 0.72);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--body-font);
  font-size: 15px;
  min-height: 52px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(29, 43, 35, 0.16);
  outline-offset: 2px;
}

.contact-form .button {
  justify-self: stretch;
  width: 100%;
  background: var(--forest);
  color: #fff;
}

.form-submit {
  grid-column: 2;
}

.footer-note {
  opacity: 0.7;
  font-size: 12px;
}

.footer-note-right {
  justify-self: end;
  align-self: end;
  text-align: right;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: none;
  justify-content: center;
  z-index: 30;
  pointer-events: none;
}

.mobile-cta .button {
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1200px) {
  .program-stage {
    grid-template-columns: 1fr;
  }

  .program-feature {
    grid-template-columns: 120px 1fr;
  }

  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-timeline,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qualifications {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {.hero,
  .about,
  .methods,
  .site-footer,
  .program-stage {
    grid-template-columns: 1fr;
  }

  .program-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .program-feature-body {
    justify-items: center;
  }

  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    order: -1;
  }

  .photo-frame {
    width: min(100%, 360px);
  }

  .footer-note-right {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 22px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .about,
  .methods,
  .value,
  .process,
  .testimonials,
  .qualifications,
  .site-footer,
  .section-head,
  .offer-grid {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .offer-grid,
  .offer-grid-compact,
  .process-timeline,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .program-stage,
  .program-stage-head,
  .offer-row-shell {
    margin-left: 22px;
    margin-right: 22px;
  }

  .program-feature {
    padding: 18px;
  }

  .offer-image-wrap img {
    width: 110px;
    height: 110px;
  }

  .timeline-line {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .message,
  .form-submit {
    grid-column: auto;
    grid-row: auto;
  }

  .mobile-cta {
    display: flex;
  }
}


























.about {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
  grid-template-areas:
    "text quote"
    "qualification qualification";
  gap: 22px;
  align-items: stretch;
}

.about-text {
  grid-area: text;
  display: block;
}

.about-quote {
  grid-area: quote;
  display: grid;
  align-content: start;
  justify-self: end;
  max-width: 320px;
}

.about-qualification-block {
  grid-area: qualification;
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.about-qualification-head {
  display: grid;
  gap: 6px;
}

.about-qualification-block h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1;
  color: var(--forest);
}

.about-qualification-copy {
  margin: 0;
  max-width: 56ch;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-stat {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(248, 241, 230, 0.9), rgba(238, 228, 212, 0.72));
  border: 1px solid rgba(47, 42, 36, 0.1);
}

.about-stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: var(--forest);
}

.about-stat p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-qualification-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.about-qualification-list .qual-card {
  background: rgba(255, 251, 245, 0.72);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(47, 42, 36, 0.1);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "quote"
      "qualification";
  }

  .about-quote {
    max-width: none;
  }

  .about-qualification-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-stats,
  .about-qualification-list {
    grid-template-columns: 1fr;
  }
}




.about-qualification-block {
  grid-area: qualification;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1.3fr);
  grid-template-areas:
    "eyebrow stats"
    "head stats"
    "list list";
  column-gap: 16px;
  row-gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(145deg, rgba(255, 251, 245, 0.96), rgba(245, 238, 227, 0.94));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  align-items: start;
}

.about-qualification-block > .eyebrow {
  grid-area: eyebrow;
  margin: 0;
}

.about-qualification-head {
  grid-area: head;
  display: grid;
  gap: 4px;
  align-content: start;
}

.about-qualification-block h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.02;
  color: var(--forest);
}

.about-qualification-copy {
  margin: 0;
  max-width: 42ch;
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
}

.about-stat {
  min-height: 92px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(248, 241, 230, 0.95), rgba(240, 231, 216, 0.82));
  border: 1px solid rgba(47, 42, 36, 0.08);
  display: grid;
  align-content: center;
}

.about-stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--title-font);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 0.92;
  color: var(--forest);
}

.about-stat p {
  margin: 5px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-qualification-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.about-qualification-list .qual-card {
  background: rgba(255, 255, 255, 0.54);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 42, 36, 0.12);
  font-size: 0.83rem;
  line-height: 1.25;
  min-height: 0;
}

@media (max-width: 920px) {
  .about-qualification-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "head"
      "stats"
      "list";
  }

  .about-qualification-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-qualification-block {
    padding: 16px;
  }

  .about-stats,
  .about-qualification-list {
    grid-template-columns: 1fr;
  }

  .about-qualification-list .qual-card {
    border-radius: 14px;
  }
}

.about-stats {
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: end;
  gap: 8px;
}

.about-stat {
  min-height: 0;
  min-width: 170px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(47, 42, 36, 0.12);
  box-shadow: none;
}

.about-stat-value {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 0.95;
}

.about-stat p {
  margin: 3px 0 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

@media (max-width: 920px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .about-stat {
    min-width: 0;
    border-radius: 14px;
  }
}

.about-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
  min-width: 210px;
  padding: 9px 12px;
}

.about-stat-value {
  flex: 0 0 auto;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1;
}

.about-stat p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: right;
}

@media (max-width: 920px) {
  .about-stat {
    min-width: 0;
  }
}

.about-qualification-block {
  position: relative;
  grid-area: qualification;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  grid-template-areas:
    "eyebrow stats"
    "head stats"
    "list list";
  gap: 10px 18px;
  padding: 18px 22px 16px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(245, 238, 227, 0.92));
  border: 1px solid rgba(47, 42, 36, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(47, 42, 36, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.about-qualification-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(36, 53, 43, 0.92), rgba(120, 142, 127, 0.55));
}

.about-qualification-block > .eyebrow {
  grid-area: eyebrow;
  margin: 0;
  padding-left: 12px;
}

.about-qualification-head {
  grid-area: head;
  gap: 6px;
  padding-left: 12px;
}

.about-qualification-block h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.04;
  max-width: 18ch;
}

.about-qualification-copy {
  max-width: 44ch;
  font-size: 0.88rem;
  line-height: 1.42;
}

.about-stats {
  grid-area: stats;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
}

.about-stat {
  display: grid;
  align-content: space-between;
  min-width: 158px;
  padding: 12px 14px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 42, 36, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.about-stat-value {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.about-stat p {
  margin: 8px 0 0;
  font-size: 0.62rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-align: left;
}

.about-qualification-list {
  grid-area: list;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 12px;
  padding-top: 2px;
}

.about-qualification-list .qual-card {
  flex: 0 1 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(47, 42, 36, 0.12);
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .about-qualification-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "head"
      "stats"
      "list";
    gap: 10px;
  }

  .about-qualification-block > .eyebrow,
  .about-qualification-head,
  .about-qualification-list {
    padding-left: 0;
  }

  .about-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .about-qualification-block {
    padding: 16px 16px 14px;
    border-radius: 16px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-stat {
    min-width: 0;
  }

  .about-qualification-list .qual-card {
    white-space: normal;
    border-radius: 14px;
  }
}

.offer-image-trainings {
  object-position: 72% center;
}


.about-stats {
  gap: 18px;
}

.about-stat {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-stat + .about-stat {
  padding-left: 18px;
  border-left: 1px solid rgba(47, 42, 36, 0.12);
}

.about-stat p {
  margin: 6px 0 0;
}

@media (max-width: 720px) {
  .about-stat + .about-stat {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(47, 42, 36, 0.12);
    padding-top: 12px;
  }
}

.quote {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}


.about-quote-mark {
  display: none;
}


.methods-list {
  padding: 16px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
}

.method-item {
  min-height: 0;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid rgba(47, 42, 36, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.98rem;
  line-height: 1.3;
}

.method-item:nth-child(-n+2) {
  border-top: 0;
  padding-top: 0;
}

@media (max-width: 720px) {
  .methods-list {
    gap: 0;
  }

  .method-item {
    padding: 12px 0;
  }

  .method-item:nth-child(2) {
    border-top: 1px solid rgba(47, 42, 36, 0.12);
    padding-top: 12px;
  }
}

.methods {
  gap: 18px;
}

.methods-text {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.methods-list {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 0 20px;
}

.method-item {
  padding: 16px 0 14px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(47, 42, 36, 0.1);
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.method-item:nth-child(-n+2) {
  border-top: 1px solid rgba(47, 42, 36, 0.1);
  padding-top: 16px;
}

@media (max-width: 720px) {
  .methods-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-item,
  .method-item:nth-child(-n+2),
  .method-item:nth-child(2) {
    padding: 12px 0;
    border-top: 1px solid rgba(47, 42, 36, 0.1);
  }
}

.methods {
  align-items: end;
}

.methods-list {
  align-self: end;
}


.about-qualification-list {
  gap: 10px 18px;
}

.about-qualification-list .qual-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.84rem;
  line-height: 1.25;
  white-space: normal;
}

.about-qualification-list .qual-card::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: rgba(47, 42, 36, 0.55);
}

.quote {
  font-family: var(--body-font);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
}


.process-timeline {
  gap: 16px;
  padding-top: 14px;
}

.timeline-item {
  padding: 18px 18px 16px;
  min-height: 170px;
}

.timeline-item::before {
  top: -8px;
  left: 18px;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px rgba(183, 166, 148, 0.16);
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin: 8px 0 6px;
}

.timeline-item p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.step {
  font-size: 0.82rem;
}

.about-quote {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.quote {
  position: relative;
  max-width: 16ch;
  margin: 0 auto;
  font-family: var(--title-font);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.22;
  text-align: center;
}

.quote::before,
.quote::after {
  font-family: var(--title-font);
  color: rgba(47, 42, 36, 0.5);
}

.quote::before {
  content: '"';
  margin-right: 0.12em;
}

.quote::after {
  content: '"';
  margin-left: 0.12em;
}

.methods-list {
  padding-left: 12px;
}

.method-item,
.method-item:nth-child(-n+2),
.method-item:nth-child(2) {
  border-top-color: rgba(255, 255, 255, 0.82);
}

.testimonial-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  align-items: start;
}

.testimonial-card-inline {
  padding: 14px 0 12px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  gap: 10px;
}

.testimonial-card-inline p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 0;
  border-top: 0;
}

.testimonial-meta-inline strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.testimonial-meta-inline span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .testimonial-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .testimonial-grid-compact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonial-card-inline {
    padding: 12px 0;
  }
}

.form-grid {
  grid-template-columns: 44% 56%;
  grid-template-rows: auto auto auto auto;
  column-gap: 12px;
  row-gap: 10px;
  align-items: stretch;
}

.form-grid > label {
  align-self: stretch;
}

.form-grid > label:not(.message) {
  display: grid;
  grid-template-rows: auto 1fr;
}

.form-grid .message {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
}

.contact-form textarea {
  min-height: 0;
  height: 100%;
  resize: none;
}

.form-submit {
  grid-column: 2;
  grid-row: 4;
  align-self: stretch;
  min-height: 56px;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .form-grid .message,
  .form-submit {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form textarea {
    min-height: 160px;
    height: auto;
    resize: vertical;
  }
}

.about-qualification-copy {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .about-qualification-copy {
    white-space: normal;
  }
}


.contact-form {
  position: relative;
  border-top: 4px solid var(--forest);
  padding-top: 16px;
}


.about {
  grid-template-columns: minmax(0, 1.62fr) minmax(220px, 0.38fr);
  gap: 14px;
}


.contact-form {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 238, 227, 0.92));
  border: 1px solid rgba(47, 42, 36, 0.12);
  border-top: 4px solid var(--forest);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 34px rgba(47, 42, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form h4 {
  margin: 0 0 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(36, 53, 43, 0.14);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 232, 219, 0.96));
  border: 1px solid rgba(47, 42, 36, 0.12);
  border-top: 4px solid var(--forest);
  border-radius: 22px;
  box-shadow: 0 20px 38px rgba(47, 42, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.contact-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.program-card .timeline-item {
  min-height: 0;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.program-card .timeline-item::before {
  display: none;
}

.program-card .timeline-item h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.program-card .timeline-item p {
  font-size: 0.95rem;
  line-height: 1.34;
}

.program-stage {
  gap: 12px;
}

.program-grid {
  gap: 12px;
}

.program-feature {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(36, 53, 43, 0.12);
  border-top: 2px solid rgba(36, 53, 43, 0.78);
  border-radius: 12px;
  padding: 12px 14px;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
  box-shadow: none;
}

.program-feature-media {
  align-self: start;
}

.program-icon {
  width: 74px;
  height: 74px;
  box-shadow: inset 0 0 0 1px rgba(36, 53, 43, 0.08);
}

.program-icon svg {
  width: 32px;
  height: 32px;
}

.program-feature-body {
  gap: 8px;
}

.program-feature-body .offer-subline {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.program-feature-body h4 {
  font-size: clamp(1.18rem, 1.35vw, 1.55rem);
  line-height: 1.02;
}

.program-feature-body > p:not(.offer-subline) {
  font-size: 0.95rem;
  line-height: 1.42;
}

.program-feature .offer-divider {
  width: 42px;
  margin: 0;
}

.program-feature .offer-link {
  margin: 2px 0 0;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.program-feature .offer-link:hover {
  background: transparent;
  border: 0;
  color: #31463a;
  transform: none;
}

.program-feature .offer-link {
  margin: 4px 0 0;
  padding: 7px 14px;
  min-height: 34px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #f8f4ec;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.program-feature .offer-link:hover {
  background: #31463a;
  border-color: #31463a;
  color: #f8f4ec;
  transform: translateY(-1px);
}

:root {
  --paper: #f6f0e7;
  --panel: rgba(255, 251, 245, 0.9);
  --panel-soft: rgba(255, 251, 245, 0.72);
  --ink: #2c2620;
  --ink-soft: #6f655a;
  --border: rgba(83, 72, 59, 0.14);
  --border-strong: rgba(29, 43, 35, 0.22);
  --shadow-soft: 0 16px 34px rgba(47, 42, 36, 0.06);
  --shadow-panel: 0 24px 52px rgba(47, 42, 36, 0.08);
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, #eee3d5 0%, #f7f1e8 28%, #f3eadf 100%);
}

.site-header {
  background: rgba(248, 243, 236, 0.86);
  border-bottom: 1px solid rgba(47, 42, 36, 0.06);
}

.brand {
  font-size: 33px;
  letter-spacing: 0.02em;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(29, 43, 35, 0.045);
}

.hero {
  gap: 42px;
  padding-top: 48px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at right top, rgba(183, 166, 148, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(241, 232, 220, 0.9));
}

.hero-content h1 {
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.72;
  color: #5f554b;
}

.hero-note {
  font-size: 15px;
}

.cta-row {
  margin-top: 28px;
  gap: 10px;
}

.button {
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 20px;
  letter-spacing: 0.16em;
}

.photo-frame {
  width: min(100%, 438px);
  padding: 16px;
  box-shadow:
    0 26px 50px rgba(29, 43, 35, 0.12),
    0 0 0 1px rgba(29, 43, 35, 0.05);
}

.marquee {
  background: rgba(255, 252, 247, 0.55);
  padding: 16px 0;
}

.marquee-track span {
  font-size: 19px;
  letter-spacing: 0.13em;
  color: rgba(92, 83, 73, 0.92);
}

.about,
.process,
.testimonials {
  padding-top: 18px;
}

.about-text,
.about-quote,
.about-qualification-block,
.timeline-item,
.program-feature,
.offer-card,
.testimonial-card-inline,
.site-footer {
  backdrop-filter: blur(4px);
}

.about-text {
  padding: 34px 36px 32px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 241, 231, 0.92));
  box-shadow: var(--shadow-panel);
}

.about-text h2 {
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.about-quote {
  padding: 30px 24px;
  min-height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(47, 42, 36, 0.1);
  background: linear-gradient(180deg, rgba(249, 242, 233, 0.92), rgba(242, 233, 220, 0.88));
  box-shadow: var(--shadow-soft);
}

.quote {
  max-width: 14ch;
  color: var(--forest);
}

.about-qualification-block {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.section-head h2 {
  letter-spacing: -0.02em;
}

.offer-row-shell,
.program-stage {
  padding: 18px 20px 20px;
  border: 1px solid rgba(47, 42, 36, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.72), rgba(248, 241, 231, 0.58));
  box-shadow: var(--shadow-soft);
}

.offer-card,
.program-feature {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover,
.program-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 53, 43, 0.2);
}

.offer-card {
  border-top-width: 2px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(249, 243, 235, 0.92));
  box-shadow: 0 12px 28px rgba(56, 47, 38, 0.05);
}

.offer-card-body {
  padding: 2px 14px 14px;
  gap: 6px;
}

.offer-card h3 {
  font-size: clamp(1.12rem, 1vw, 1.34rem);
}

.offer-card-body > p:not(.offer-subline) {
  font-size: 0.76rem;
  line-height: 1.32;
}

.program-feature {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(249, 243, 235, 0.9));
  border-top-width: 2px;
}

.program-icon {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(239, 230, 217, 0.74));
}

.methods {
  gap: 28px;
}

.methods-text {
  padding: 20px 0 0;
}

.methods-text h2 {
  margin-bottom: 14px;
}

.methods-text p {
  max-width: 52ch;
  font-size: 0.98rem;
  line-height: 1.68;
}

.methods-list {
  padding-left: 18px;
}

.method-item {
  font-size: 1rem;
  color: #332d27;
}

.process-timeline {
  gap: 18px;
  padding-top: 18px;
}

.timeline-item {
  border-radius: 18px;
  border: 1px solid rgba(47, 42, 36, 0.1);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(246, 238, 227, 0.88));
  box-shadow: var(--shadow-soft);
}

.timeline-item h3 {
  letter-spacing: -0.01em;
}

.testimonial-grid-compact {
  gap: 12px 24px;
}

.testimonial-card-inline {
  padding: 16px 0 14px;
}

.testimonial-card-inline p {
  font-size: 0.97rem;
  line-height: 1.58;
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 24px;
}

.footer-brand {
  font-size: 2rem;
}

.contact-note {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  min-height: 54px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-form textarea {
  border-radius: 14px;
}

.footer-note-right {
  opacity: 0.82;
}

@media (max-width: 920px) {
  .hero {
    gap: 28px;
  }

  .offer-row-shell,
  .program-stage {
    padding: 18px;
  }

  .about-text {
    padding: 28px 24px;
  }
}

/* High-end visual pass: homepage */
:root {
  --paper: #f5eee4;
  --panel: rgba(255, 251, 246, 0.94);
  --panel-soft: rgba(255, 251, 246, 0.72);
  --panel-strong: #efe4d5;
  --ink: #2a241e;
  --ink-soft: #6a6056;
  --forest: #1f3027;
  --forest-deep: #18261f;
  --taupe: #bba898;
  --border: rgba(71, 60, 48, 0.14);
  --border-strong: rgba(31, 48, 39, 0.22);
  --shadow-soft: 0 18px 42px rgba(40, 33, 26, 0.06);
  --shadow-panel: 0 26px 68px rgba(40, 33, 26, 0.08);
  --shadow-float: 0 40px 90px rgba(40, 33, 26, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 88% 18%, rgba(232, 219, 204, 0.46), rgba(232, 219, 204, 0) 26%),
    linear-gradient(180deg, #ece0d1 0%, #f6efe5 23%, #f4ecdf 55%, #efe4d5 100%);
  color: var(--ink);
}

.noise {
  opacity: 0.04;
  mix-blend-mode: soft-light;
}

main {
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 22%);
  opacity: 0.9;
}

section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 18px 6.5vw;
  background: rgba(248, 243, 236, 0.72);
  border-bottom: 1px solid rgba(42, 36, 30, 0.06);
  box-shadow: 0 10px 24px rgba(42, 36, 30, 0.035);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-header.scrolled {
  box-shadow: 0 18px 40px rgba(42, 36, 30, 0.08);
}

.brand {
  font-size: clamp(2rem, 2.25vw, 2.35rem);
  letter-spacing: 0.015em;
}

.nav-links {
  gap: 10px;
}

.nav-links a {
  padding: 10px 15px;
  border: 1px solid transparent;
  color: rgba(42, 36, 30, 0.78);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  border-color: rgba(42, 36, 30, 0.08);
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: linear-gradient(180deg, rgba(31, 48, 39, 0.96), rgba(24, 38, 31, 0.98));
  color: #f7f1e8;
  box-shadow: 0 12px 24px rgba(31, 48, 39, 0.16);
}

.hero {
  padding: clamp(68px, 8vw, 104px) 6.5vw 54px;
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
}

.hero-content {
  max-width: 700px;
}

.hero .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(4.35rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 62ch;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.72;
  color: rgba(58, 49, 41, 0.9);
}

.hero-note {
  margin-top: 20px;
  color: rgba(31, 48, 39, 0.84);
  font-weight: 600;
}

.cta-row {
  margin-top: 28px;
  gap: 14px;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary,
.form-submit,
.program-feature .offer-link,
.mobile-cta .button,
.nav-links .nav-cta {
  background: linear-gradient(180deg, rgba(31, 48, 39, 0.98), rgba(24, 38, 31, 1));
  color: #f8f3ec;
  box-shadow: 0 16px 28px rgba(31, 48, 39, 0.16);
}

.button.primary:hover,
.form-submit:hover,
.program-feature .offer-link:hover,
.mobile-cta .button:hover,
.nav-links .nav-cta:hover {
  box-shadow: 0 20px 32px rgba(31, 48, 39, 0.2);
}

.button.ghost {
  background: rgba(255, 251, 246, 0.52);
  border: 1px solid rgba(42, 36, 30, 0.14);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-media {
  justify-self: center;
}

.photo-frame {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(239, 228, 213, 0.92));
  border: 1px solid rgba(71, 60, 48, 0.12);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow-float);
}

.photo-frame img {
  border-radius: 24px;
}

.marquee {
  margin: 4px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(71, 60, 48, 0.08);
  background: linear-gradient(90deg, rgba(255, 251, 246, 0.55), rgba(255, 247, 239, 0.72), rgba(255, 251, 246, 0.55));
  backdrop-filter: blur(4px);
}

.marquee-track {
  padding: 16px 0;
}

.marquee span {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: rgba(31, 48, 39, 0.72);
}

.about,
.offers,
.methods,
.process,
.testimonials {
  padding-left: 6.5vw;
  padding-right: 6.5vw;
}

.about {
  padding-top: 34px;
  padding-bottom: 34px;
  gap: 18px;
}

.about-text,
.about-quote,
.about-qualification-block,
.offer-card,
.program-feature,
.timeline-item,
.contact-form,
.testimonial-card-inline {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(248, 241, 232, 0.84));
  border: 1px solid rgba(71, 60, 48, 0.12);
  box-shadow: var(--shadow-soft);
}

.about-text {
  padding: 38px 42px 36px;
  border-radius: 24px;
}

.about-text h2,
.section-head h2,
.methods-text h2 {
  letter-spacing: -0.03em;
}

.about-text p:not(.eyebrow),
.methods-text p,
.section-head p:not(.eyebrow) {
  max-width: 62ch;
  color: rgba(58, 49, 41, 0.9);
}

.about-quote {
  border-radius: 24px;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(248, 241, 232, 0.94), rgba(244, 234, 222, 0.9));
}

.quote {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.about-qualification-block {
  margin-top: 4px;
  padding: 26px 30px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(246, 238, 228, 0.84));
}

.about-qualification-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: end;
  gap: 18px;
}

.about-qualification-copy {
  white-space: nowrap;
}

.about-stats {
  gap: 26px;
  justify-content: end;
}

.about-stat {
  padding: 0;
}

.about-stat-value {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.about-stat p {
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42, 36, 30, 0.62);
}

.about-qualification-list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(71, 60, 48, 0.08);
  gap: 18px 26px;
}

.qual-card {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(42, 36, 30, 0.88);
}

.offers,
.methods,
.process,
.testimonials {
  padding-top: 38px;
  padding-bottom: 38px;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2,
.methods-text h2 {
  font-size: clamp(2.3rem, 4vw, 3.65rem);
  line-height: 0.96;
}

.offer-group-label,
.offer-subline,
.contact-form h4,
.footer-note,
.testimonial-meta-inline span,
.testimonial-meta-inline strong,
.method-item,
.qual-card,
.about-stat p {
  text-transform: uppercase;
}

.offer-row-shell,
.program-stage,
.methods,
.process,
.testimonials {
  background: rgba(255, 252, 247, 0.24);
  border-radius: 28px;
}

.offer-grid-compact {
  gap: 14px;
}

.offer-card {
  border-radius: 22px;
  border-top-width: 3px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(247, 240, 231, 0.9));
  box-shadow: var(--shadow-soft);
}

.offer-image-wrap {
  padding-top: 16px;
}

.offer-image-wrap img,
.program-icon {
  box-shadow: 0 18px 34px rgba(47, 42, 36, 0.08);
}

.offer-card-body {
  padding: 6px 16px 16px;
  gap: 7px;
}

.offer-card h3,
.program-feature-body h4,
.timeline-item h3 {
  letter-spacing: -0.025em;
}

.offer-card h3 {
  font-size: clamp(1.08rem, 1vw, 1.3rem);
}

.offer-subline {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(42, 36, 30, 0.58);
}

.offer-divider {
  width: 48px;
  margin: 8px auto 6px;
  background: rgba(31, 48, 39, 0.24);
}

.offer-card-body > p:not(.offer-subline),
.program-feature-body > p:not(.offer-subline) {
  color: rgba(58, 49, 41, 0.84);
}

.program-stage {
  margin-top: 16px;
}

.program-grid {
  gap: 14px;
}

.program-feature {
  border-radius: 22px;
  border-top-width: 3px;
  padding: 18px 18px;
  grid-template-columns: 82px 1fr;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 240, 231, 0.9));
}

.program-icon {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(71, 60, 48, 0.08);
}

.program-feature-body {
  gap: 10px;
}

.program-feature-body h4 {
  font-size: clamp(1.55rem, 1.8vw, 2.05rem);
  line-height: 0.98;
}

.program-feature .offer-link {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.methods {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: end;
}

.methods-text {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.methods-list {
  padding-left: 24px;
}

.method-item {
  padding: 14px 0 14px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(42, 36, 30, 0.92);
  border-top-color: rgba(255, 255, 255, 0.92);
}

.process-timeline {
  gap: 18px;
}

.timeline-line {
  top: 15px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 48, 39, 0.12), rgba(31, 48, 39, 0.32), rgba(31, 48, 39, 0.12));
}

.timeline-item {
  min-height: 240px;
  padding: 30px 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 238, 228, 0.86));
}

.timeline-item::before {
  width: 18px;
  height: 18px;
  top: -14px;
  border: 8px solid rgba(232, 219, 204, 0.95);
  background: rgba(191, 174, 156, 0.9);
}

.timeline-item .step {
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.timeline-item h3 {
  margin-top: 14px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}

.timeline-item p {
  color: rgba(58, 49, 41, 0.86);
}

.testimonial-grid-compact {
  gap: 14px 28px;
}

.testimonial-card-inline {
  padding: 18px 0 16px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 0;
  box-shadow: none;
}

.testimonial-card-inline p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(42, 36, 30, 0.9);
}

.testimonial-meta-inline {
  gap: 10px;
}

.testimonial-meta-inline strong {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(31, 48, 39, 0.82);
}

.testimonial-meta-inline span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(42, 36, 30, 0.52);
}

.site-footer {
  margin: 18px 6.5vw 36px;
  padding: 30px 32px 24px;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(243, 233, 220, 0.95));
  border: 1px solid rgba(71, 60, 48, 0.12);
  border-top: 4px solid var(--forest);
  border-radius: 28px;
  box-shadow: var(--shadow-panel);
}

.footer-brand {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.contact-note {
  max-width: 22ch;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(58, 49, 41, 0.88);
}

.contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-form h4 {
  margin-bottom: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: rgba(31, 48, 39, 0.84);
}

.form-grid {
  column-gap: 14px;
  row-gap: 12px;
}

.contact-form label {
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(42, 36, 30, 0.72);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(71, 60, 48, 0.14);
  border-radius: 20px;
  padding: 18px 20px;
  font-size: 1rem;
  color: var(--ink);
  backdrop-filter: blur(3px);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(31, 48, 39, 0.34);
  box-shadow: 0 0 0 4px rgba(31, 48, 39, 0.08);
}

.form-submit {
  min-height: 58px;
}

.footer-note {
  padding-top: 12px;
  border-top: 1px solid rgba(71, 60, 48, 0.08);
  color: rgba(42, 36, 30, 0.56);
}

.footer-note a {
  color: inherit;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    max-width: none;
  }

  .hero-media {
    order: -1;
    justify-self: start;
  }

  .photo-frame {
    max-width: min(420px, 72vw);
  }

  .offer-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .methods {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .methods-list {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-qualification-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-qualification-copy {
    white-space: normal;
  }

  .about-stats {
    justify-content: start;
  }

  .offer-grid-compact,
  .program-grid,
  .testimonial-grid-compact,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .about,
  .offers,
  .methods,
  .process,
  .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .photo-frame {
    border-radius: 24px;
    padding: 12px;
  }

  .photo-frame img {
    border-radius: 18px;
  }

  .about-text,
  .about-quote,
  .about-qualification-block,
  .timeline-item,
  .site-footer {
    border-radius: 20px;
  }

  .about-text,
  .about-quote,
  .about-qualification-block {
    padding-left: 22px;
    padding-right: 22px;
  }

  .offer-grid-compact,
  .program-grid,
  .testimonial-grid-compact,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .program-feature {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .program-icon {
    margin: 0;
  }

  .timeline-item:last-child {
    grid-column: auto;
  }

  .site-footer {
    margin-left: 20px;
    margin-right: 20px;
    padding: 24px 20px 20px;
  }

  .contact-note {
    max-width: none;
  }
}

/* Restore previous offer card design */
.offer-row-shell {
  background: transparent;
  border-radius: 0;
}

.offer-grid-compact {
  gap: 8px;
}

.offer-card {
  background: linear-gradient(180deg, rgba(253, 250, 244, 0.98), rgba(250, 245, 237, 0.98));
  border: 1px solid rgba(36, 53, 43, 0.18);
  border-top: 4px solid rgba(36, 53, 43, 0.9);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  min-height: 100%;
  height: 100%;
  box-shadow: 0 14px 34px rgba(56, 47, 38, 0.08);
  position: relative;
  backdrop-filter: blur(4px);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(56, 47, 38, 0.12);
}

.offer-image-wrap {
  padding: 10px 10px 4px;
  min-height: 112px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 16%, rgba(225, 213, 196, 0.82) 0 34%, rgba(225, 213, 196, 0.24) 35%, transparent 62%);
}

.offer-image-wrap img {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #ede7de;
  box-shadow: 0 0 0 4px rgba(255, 252, 247, 0.92), 0 0 0 5px rgba(36, 53, 43, 0.12);
}

.offer-card:hover .offer-image-wrap img {
  transform: scale(1.04);
}

.offer-card-body {
  padding: 0 12px 12px;
  display: grid;
  grid-template-rows: minmax(1.9em, auto) minmax(1.8em, auto) auto 1fr auto;
  align-content: start;
  gap: 4px;
}

.offer-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 0.92vw, 1.28rem);
  font-weight: 500;
  line-height: 0.98;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-subline {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  color: rgba(98, 88, 76, 0.74);
}

.offer-divider {
  width: 32px;
  height: 1px;
  margin: 2px auto 0;
  background: rgba(124, 112, 98, 0.45);
}

.offer-card-body > p:not(.offer-subline) {
  margin: 0;
  color: rgba(98, 88, 76, 0.94);
  line-height: 1.22;
  font-size: 0.71rem;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .offer-image-wrap img {
    width: 110px;
    height: 110px;
  }
}

.about-qualification-head h3 {
  white-space: nowrap;
}

:root {
  --copy-size-unified: clamp(1.02rem, 1.28vw, 1.14rem);
  --copy-line-unified: 1.72;
}

.hero-lead,
.about-text p:not(.eyebrow),
.about-qualification-copy,
.methods-text p,
.offer-card-body > p:not(.offer-subline),
.program-feature-body > p:not(.offer-subline),
.timeline-item p,
.testimonial-card-inline p,
.contact-note {
  font-size: var(--copy-size-unified);
  line-height: var(--copy-line-unified);
}

@media (max-width: 760px) {
  .hero-lead,
  .about-text p:not(.eyebrow),
  .about-qualification-copy,
  .methods-text p,
  .offer-card-body > p:not(.offer-subline),
  .program-feature-body > p:not(.offer-subline),
  .timeline-item p,
  .testimonial-card-inline p,
  .contact-note {
    font-size: 1rem;
    line-height: 1.68;
  }
}

.about-qualification-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 8px;
}

.about-qualification-copy {
  white-space: normal;
}

.site-footer {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 24px 18px;
}

.site-footer > div:first-child {
  max-width: none;
}

.footer-brand {
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
}

.contact-note {
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-form {
  width: 100%;
}

.contact-form h4 {
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.form-grid {
  grid-template-columns: 1fr 1fr 1.35fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 8px;
  align-items: end;
}

.form-grid > label:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.form-grid > label:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.form-grid > label:nth-of-type(3) {
  grid-column: 1 / 3;
  grid-row: 2;
}

.form-grid > label.message {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.form-submit {
  grid-column: 1 / -1;
  grid-row: 3;
  min-height: 48px;
}

.contact-form label {
  gap: 6px;
  font-size: 0.72rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 132px;
}

.footer-note {
  padding-top: 10px;
  justify-self: end;
}

@media (max-width: 920px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid > label:nth-of-type(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .form-grid > label.message {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .form-submit {
    grid-row: 4;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 20px 18px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .form-grid > label:nth-of-type(1),
  .form-grid > label:nth-of-type(2),
  .form-grid > label:nth-of-type(3),
  .form-grid > label.message,
  .form-submit {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .footer-note {
    justify-self: start;
  }
}

.offer-card h3 {
  font-size: clamp(1rem, 0.86vw, 1.2rem);
  line-height: 1.02;
}

.offer-subline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.offer-card-body > p:not(.offer-subline) {
  font-size: 0.68rem;
  line-height: 1.24;
}

@media (max-width: 760px) {
  .offer-card-body > p:not(.offer-subline) {
    font-size: 0.92rem;
    line-height: 1.42;
  }
}

.site-footer {
  margin: 18px 0 36px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding: 20px 6.5vw 16px;
}

.contact-form {
  max-width: 980px;
}

.contact-form h4 {
  margin-bottom: 10px;
  font-size: 0.76rem;
}

.form-grid {
  column-gap: 8px;
  row-gap: 7px;
}

.contact-form label {
  gap: 5px;
  font-size: 0.68rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 112px;
}

.form-submit {
  min-height: 44px;
  font-size: 0.8rem;
}

.footer-brand {
  font-size: clamp(1.55rem, 1.9vw, 1.9rem);
}

.contact-note {
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-footer {
    margin: 18px 0 24px;
    padding: 18px 20px 14px;
  }

  .contact-form {
    max-width: none;
  }
}

.marquee span {
  font-size: 0.94rem;
  letter-spacing: 0.2em;
}

/* Homepage offers: use flyer format */
.offer-grid-compact {
  gap: 10px;
}

.offer-card {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(36, 53, 43, 0.24);
  border-top: 0;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  min-height: 100%;
  height: auto;
  box-shadow: 0 10px 24px rgba(47, 42, 36, 0.05);
  position: relative;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(36, 53, 43, 0.95), rgba(36, 53, 43, 0.45));
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(47, 42, 36, 0.08);
}

.offer-image-wrap {
  padding: 10px 10px 6px;
  min-height: 0;
  background: radial-gradient(circle at 50% 20%, rgba(239, 230, 217, 0.9) 0 34%, transparent 35%);
}

.offer-image-wrap img {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #ede7de;
  box-shadow: 0 0 0 2px rgba(36, 53, 43, 0.12);
}

.offer-card-body {
  padding: 0 10px 12px;
  display: block;
}

.offer-card h3 {
  margin: 0 0 5px;
  font-size: clamp(0.95rem, 1.05vw, 1.14rem);
  line-height: 1.02;
  color: var(--forest);
  display: block;
}

.offer-subline {
  margin: 0 0 6px;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-divider {
  width: 26px;
  height: 1px;
  margin: 0 auto 7px;
  background: rgba(36, 53, 43, 0.3);
}

.offer-card-body > p:not(.offer-subline) {
  margin: 0;
  font-size: 10px;
  line-height: 1.28;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .offer-image-wrap img {
    width: 110px;
    height: 110px;
  }

  .offer-card-body > p:not(.offer-subline) {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .offer-subline {
    font-size: 0.64rem;
    white-space: normal;
  }
}

/* Offers: wider flyer-style grid to prevent text clipping */
.offer-grid,
.offer-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.offer-card {
  min-height: 0;
  height: auto;
  overflow: visible;
}

.offer-card-body {
  min-height: 0;
}

.offer-card-body > p:not(.offer-subline) {
  text-wrap: pretty;
  overflow: visible;
}

@media (max-width: 1100px) {
  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Sharper flyer-like radii */
.photo-frame,
.about-text,
.about-quote,
.about-qualification-block,
.timeline-item,
.program-feature,
.site-footer {
  border-radius: 8px;
}

.offer-card {
  border-radius: 6px;
}

.offer-image-wrap img,
.program-icon {
  border-radius: 50%;
}

.button,
.program-feature .offer-link,
.form-submit,
.nav-links a,
.nav-links .nav-cta,
.mobile-cta .button {
  border-radius: 999px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 10px;
}

@media (max-width: 760px) {
  .photo-frame,
  .about-text,
  .about-quote,
  .about-qualification-block,
  .timeline-item,
  .program-feature,
  .site-footer,
  .offer-card {
    border-radius: 8px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-radius: 10px;
  }
}

.offer-grid,
.offer-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 1180px) {
  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: 1fr;
  }
}

/* Offers: use more page width and keep text inside cards */
.offers {
  padding-left: 3.5vw;
  padding-right: 3.5vw;
}

.offer-row-shell {
  width: 100%;
}

.offer-grid,
.offer-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.offer-card {
  min-width: 0;
}

.offer-card-body {
  padding: 0 8px 10px;
}

.offer-card h3 {
  font-size: clamp(0.88rem, 0.88vw, 1rem);
}

.offer-subline {
  font-size: 7.5px;
  letter-spacing: 0.02em;
  white-space: normal;
}

.offer-card-body > p:not(.offer-subline) {
  font-size: 9px;
  line-height: 1.24;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 1320px) {
  .offers {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }

  .offer-card h3 {
    font-size: clamp(0.84rem, 0.9vw, 0.96rem);
  }

  .offer-card-body > p:not(.offer-subline) {
    font-size: 8.6px;
  }
}

@media (max-width: 1180px) {
  .offers {
    padding-left: 6.5vw;
    padding-right: 6.5vw;
  }

  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .offer-card-body {
    padding: 0 10px 12px;
  }

  .offer-card h3 {
    font-size: clamp(0.95rem, 1.05vw, 1.14rem);
  }

  .offer-subline {
    font-size: 8.5px;
    white-space: nowrap;
  }

  .offer-card-body > p:not(.offer-subline) {
    font-size: 10px;
    line-height: 1.28;
  }
}

@media (max-width: 760px) {
  .offers {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offer-grid,
  .offer-grid-compact {
    grid-template-columns: 1fr;
  }

  .offer-card-body {
    padding: 0 12px 12px;
  }

  .offer-subline {
    white-space: normal;
    font-size: 0.64rem;
  }

  .offer-card-body > p:not(.offer-subline) {
    font-size: 0.92rem;
    line-height: 1.42;
  }
}

.about-quote .quote {
  position: relative;
  min-height: 4.8em;
}

.about-quote .quote.is-typing::after,
.about-quote .quote.is-typed::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
  background: rgba(31, 48, 39, 0.72);
}

.about-quote .quote.is-typing::after {
  animation: quote-caret-blink 0.9s steps(1, end) infinite;
}

.about-quote .quote.is-typed::after {
  opacity: 0;
}

@keyframes quote-caret-blink {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

html,
body {
  overflow-x: hidden;
}

.offers {
  padding-left: 2vw;
  padding-right: 2vw;
}

.offer-row-shell {
  margin-left: -0.5vw;
}

.offer-grid,
.offer-grid-compact {
  width: 100%;
}

@media (max-width: 1180px) {
  .offers {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .offer-row-shell {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .offers {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.program-feature {
  box-shadow: 0 10px 24px rgba(47, 42, 36, 0.05);
  border-radius: 6px;
}

.program-feature:hover {
  box-shadow: 0 14px 28px rgba(47, 42, 36, 0.08);
}

.about-quote {
  overflow: hidden;
}

.about-quote .quote {
  position: relative;
  min-height: 4.9em;
  font-family: "Caveat", cursive;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: rgba(31, 48, 39, 0.92);
  transform: rotate(-1.2deg);
}

.about-quote .quote::before,
.about-quote .quote::after {
  display: none;
}

.quote-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
}

.about-quote .quote.is-writing .quote-char {
  animation: handwritten-reveal 0.34s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.about-quote .quote.is-writing::after,
.about-quote .quote.is-written::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: rgba(31, 48, 39, 0.58);
}

.about-quote .quote.is-writing::after {
  animation: quote-caret-blink 0.7s steps(1, end) infinite;
}

.about-quote .quote.is-written::after {
  opacity: 0;
}

@keyframes handwritten-reveal {
  0% {
    opacity: 0;
    transform: translateY(7px) scale(0.94) rotate(-2deg);
    filter: blur(1.2px);
  }

  55% {
    opacity: 0.82;
    transform: translateY(1px) scale(1.02) rotate(0.8deg);
    filter: blur(0.35px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

.about-text h2,
.section-head h2,
.methods-text h2,
.about-qualification-head h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

@media (max-width: 760px) {
  .about-text h2,
  .section-head h2,
  .methods-text h2,
  .about-qualification-head h3 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1;
  }
}

.about-quote .quote {
  font-family: var(--title-font);
  font-style: italic;
  font-size: clamp(1.48rem, 1.95vw, 1.95rem);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.quote-word {
  display: inline-block;
  white-space: nowrap;
}

.quote-space {
  display: inline;
}

.quote-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
}

.about-quote .quote.is-writing .quote-char {
  animation: handwritten-reveal 0.34s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.about-quote .quote.is-written .quote-char {
  opacity: 1;
  transform: none;
  filter: none;
}

.about-text h2,
.section-head h2,
.methods-text h2,
.about-qualification-head h3 {
  font-size: clamp(2.25rem, 3.9vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.028em;
}

@media (max-width: 760px) {
  .about-text h2,
  .section-head h2,
  .methods-text h2,
  .about-qualification-head h3 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1.02;
  }
}

.about-qualification-head h3 {
  font-family: var(--title-font);
  font-size: clamp(2.25rem, 3.9vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.028em;
  font-weight: 600;
}

@media (max-width: 760px) {
  .about-qualification-head h3 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1.02;
  }
}

.about .eyebrow,
.methods .eyebrow {
  font-size: inherit;
  letter-spacing: inherit;
}

.methods .eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.methods .eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero {
  padding-bottom: 24px;
}

.about {
  padding-top: 20px;
}

.hero {
  padding-top: 20px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 20px;
  }
}

.about > .about-text .eyebrow,
.about > .about-qualification-block .eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

/* Editorial high-end pass: offers + programs */
.offers {
  position: relative;
  padding-top: 28px;
  padding-bottom: 34px;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0 2vw auto 2vw;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.42), rgba(248, 240, 230, 0.26));
  border: 1px solid rgba(71, 60, 48, 0.08);
  pointer-events: none;
}

.offers > * {
  position: relative;
  z-index: 1;
}

.offers .section-head {
  margin-bottom: 18px;
}

.offer-row-shell,
.program-stage {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 18px 18px 0;
  background: transparent;
  border-radius: 0;
}

.offer-row-head,
.program-stage-head {
  padding-top: 12px;
}

.offer-group-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 48, 39, 0.82);
}

.offer-grid,
.offer-grid-compact {
  gap: 12px;
}

.offer-card {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 240, 230, 0.96));
  border: 1px solid rgba(36, 53, 43, 0.14);
  box-shadow: 0 16px 30px rgba(47, 42, 36, 0.05);
  overflow: hidden;
}

.offer-card::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 48, 39, 0.9), rgba(31, 48, 39, 0.36));
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(47, 42, 36, 0.08);
}

.offer-image-wrap {
  padding: 14px 14px 10px;
  background:
    radial-gradient(circle at 50% 22%, rgba(235, 225, 212, 0.95) 0 35%, rgba(235, 225, 212, 0) 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.5), rgba(255, 252, 247, 0));
}

.offer-image-wrap img {
  width: 98px;
  height: 98px;
  box-shadow: 0 0 0 2px rgba(36, 53, 43, 0.1), 0 16px 24px rgba(47, 42, 36, 0.08);
}

.offer-card-body {
  padding: 2px 12px 14px;
}

.offer-card h3 {
  margin-bottom: 6px;
  font-size: clamp(0.98rem, 0.98vw, 1.12rem);
  line-height: 1.02;
  color: var(--forest-deep);
}

.offer-subline {
  margin-bottom: 7px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(31, 48, 39, 0.68);
}

.offer-divider {
  width: 24px;
  margin: 0 auto 8px;
  background: rgba(31, 48, 39, 0.2);
}

.offer-card-body > p:not(.offer-subline) {
  font-size: 0.7rem;
  line-height: 1.34;
  color: rgba(58, 49, 41, 0.82);
}

.program-stage {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(71, 60, 48, 0.08);
}

.program-grid {
  gap: 14px;
}

.program-feature {
  border-radius: 8px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(245, 236, 225, 0.96));
  border: 1px solid rgba(36, 53, 43, 0.14);
  box-shadow: 0 16px 30px rgba(47, 42, 36, 0.05);
  grid-template-columns: 74px 1fr;
  align-items: center;
}

.program-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 48, 39, 0.9), rgba(31, 48, 39, 0.36));
}

.program-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(47, 42, 36, 0.08);
}

.program-icon {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(36, 53, 43, 0.1);
  box-shadow: 0 14px 24px rgba(47, 42, 36, 0.06);
}

.program-feature-body {
  gap: 8px;
}

.program-feature-body .offer-subline {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  color: rgba(31, 48, 39, 0.68);
}

.program-feature-body h4 {
  font-size: clamp(1.4rem, 1.8vw, 1.86rem);
  line-height: 0.98;
  color: var(--forest-deep);
}

.program-feature .offer-divider {
  width: 30px;
  margin: 0 0 4px;
}

.program-feature-body > p:not(.offer-subline) {
  font-size: 0.98rem;
  line-height: 1.48;
  color: rgba(58, 49, 41, 0.82);
}

.program-feature .offer-link {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  box-shadow: 0 14px 22px rgba(31, 48, 39, 0.14);
}

@media (max-width: 1180px) {
  .offers::before {
    inset-left: 5vw;
    inset-right: 5vw;
  }

  .offer-row-shell,
  .program-stage {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 0;
  }

  .offer-row-head,
  .program-stage-head {
    padding-top: 0;
  }

  .offer-grid,
  .offer-grid-compact {
    gap: 10px;
  }
}

@media (max-width: 760px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .offers::before {
    inset: 0 12px auto 12px;
    border-radius: 8px;
  }

  .offer-card,
  .program-feature {
    border-radius: 8px;
  }

  .offer-image-wrap img {
    width: 110px;
    height: 110px;
  }

  .offer-card-body {
    padding: 2px 12px 14px;
  }

  .offer-card-body > p:not(.offer-subline) {
    font-size: 0.92rem;
    line-height: 1.44;
  }

  .program-feature {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .program-feature-body > p:not(.offer-subline) {
    font-size: 0.95rem;
    line-height: 1.46;
  }
}

.program-stage {
  margin-top: 4px;
  padding-top: 8px;
}

.program-grid {
  gap: 12px;
}

.program-feature {
  padding: 14px 14px;
  grid-template-columns: 62px 1fr;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(47, 42, 36, 0.05);
}

.program-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(47, 42, 36, 0.08);
}

.program-icon {
  width: 62px;
  height: 62px;
  box-shadow: 0 10px 18px rgba(47, 42, 36, 0.05);
}

.program-feature-body {
  gap: 6px;
}

.program-feature-body .offer-subline {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

.program-feature-body h4 {
  font-size: clamp(1.18rem, 1.45vw, 1.52rem);
  line-height: 1;
}

.program-feature .offer-divider {
  width: 24px;
  margin: 0 0 2px;
}

.program-feature-body > p:not(.offer-subline) {
  font-size: 0.82rem;
  line-height: 1.36;
}

.program-feature .offer-link {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

@media (max-width: 760px) {
  .program-feature {
    padding: 14px;
    grid-template-columns: 1fr;
  }

  .program-feature-body > p:not(.offer-subline) {
    font-size: 0.92rem;
    line-height: 1.42;
  }
}

/* Cleanup: offers + programs alignment */
.offer-row-shell,
.program-stage {
  display: block;
  padding: 0;
}

.offer-row-head,
.program-stage-head {
  padding: 0;
  margin: 0 0 10px;
}

.offer-group-label {
  display: inline-block;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(31, 48, 39, 0.8);
}

.offer-grid,
.offer-grid-compact,
.program-grid {
  align-items: stretch;
}

.offer-card,
.program-feature {
  height: 100%;
  min-height: 0;
  box-shadow: 0 12px 24px rgba(47, 42, 36, 0.05);
}

.offer-card:hover,
.program-feature:hover {
  box-shadow: 0 16px 28px rgba(47, 42, 36, 0.08);
}

.program-stage {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(71, 60, 48, 0.08);
}

.offer-card-body,
.program-feature-body {
  min-width: 0;
}

.offer-card h3,
.program-feature-body h4 {
  text-wrap: balance;
}

.offer-card-body > p:not(.offer-subline),
.program-feature-body > p:not(.offer-subline) {
  text-wrap: pretty;
}

@media (max-width: 1180px) {
  .offer-row-head,
  .program-stage-head {
    margin-bottom: 8px;
  }
}

.offer-card-body .offer-link.offer-request {
  margin-top: 10px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  justify-self: center;
  align-self: end;
}

@media (max-width: 760px) {
  .offer-card-body .offer-link.offer-request {
    min-height: 44px;
    font-size: 0.74rem;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.offer-card-body > p:not(.offer-subline) {
  flex: 1 1 auto;
}

.offer-card-body .offer-link.offer-request {
  margin-top: auto;
}

.offer-image-leadership {
  object-position: 38% center;
}

.offer-image-leadership {
  object-position: 18% center !important;
  transform: scale(1.18);
}

.offer-card:hover .offer-image-leadership {
  transform: scale(1.22);
}

.offer-row-head {
  margin-bottom: 14px;
}

.offer-grid,
.offer-grid-compact {
  margin-top: 6px;
}

.offer-image-leadership {
  object-position: 30% center !important;
  transform: scale(1.18);
}

.offer-card:hover .offer-image-leadership {
  transform: scale(1.22);
}

.about,
.offers,
.methods,
.process,
.testimonials,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.method-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.method-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 48, 39, 0.78);
}

.method-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 760px) {
  .method-item {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }

  .method-icon {
    width: 20px;
    height: 20px;
  }

  .method-icon svg {
    width: 16px;
    height: 16px;
  }
}

.offer-grid,
.offer-grid-compact,
.program-grid {
  margin-left: -6px;
}

@media (max-width: 1180px) {
  .offer-grid,
  .offer-grid-compact,
  .program-grid {
    margin-left: 0;
  }
}

.offer-row-shell,
.program-stage {
  padding-left: 0;
}

.offer-grid,
.offer-grid-compact,
.program-grid {
  margin-left: 0;
}

.offer-row-shell,
.program-stage {
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 1180px) {
  .offer-row-shell,
  .program-stage {
    padding-left: 0;
    padding-right: 0;
  }
}

.process-timeline {
  gap: 14px;
}

.timeline-item {
  min-height: 196px;
  padding: 24px 22px 18px;
  border-radius: 8px;
}

.timeline-item::before {
  width: 14px;
  height: 14px;
  top: -11px;
  border-width: 6px;
}

.timeline-item .step {
  font-size: 0.9rem;
}

.timeline-item h3 {
  margin-top: 10px;
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
}

.timeline-item p {
  font-size: 0.96rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .timeline-item {
    min-height: 0;
    padding: 20px 18px 16px;
  }

  .timeline-item p {
    font-size: 0.92rem;
  }
}

.offers-inner {
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 1180px) {
  .offers-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.offers-inner,
.offer-row-shell,
.program-stage {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.offer-grid,
.offer-grid-compact,
.program-grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}

.offer-row-head,
.program-stage-head {
  margin-left: 0;
}

/* Exact alignment: offers content with section box */
.offers {
  padding-left: 2vw !important;
  padding-right: 2vw !important;
}

.offers::before {
  inset: 0 2vw auto 2vw !important;
}

.offers-inner,
.offer-row-shell,
.program-stage,
.section-head {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.offer-grid,
.offer-grid-compact,
.program-grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1180px) {
  .offers {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .offers::before {
    inset: 0 5vw auto 5vw !important;
  }
}

@media (max-width: 760px) {
  .noise {
    display: none;
  }

  .site-header {
    backdrop-filter: none;
  }

  .hero-media,
  .hero-content,
  .about-text,
  .about-quote,
  .about-qualification-block,
  .section-head,
  .offer-row-shell,
  .program-stage,
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .photo-frame {
    width: min(78vw, 320px);
    box-shadow: 0 14px 28px rgba(29, 43, 35, 0.12);
  }

  .photo-frame img {
    object-position: center 18%;
  }

  .about-quote .quote,
  .quote-char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .offers {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .offers::before {
    inset: 0 20px auto 20px !important;
  }
}

/* AI Assisted Team subpage */
.ai-flyer .ai-hero-panel {
  background:
    radial-gradient(circle at right top, rgba(25, 86, 119, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(236, 228, 217, 0.94));
}

.ai-intro-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.82fr);
  gap: 32px;
}

.ai-intro-claim {
  margin-top: 22px;
  font-weight: 700;
  color: var(--forest);
}

.ai-stat-cards {
  max-width: 320px;
  margin-top: 8px;
}

.ai-metric-card h3 {
  margin-bottom: 4px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 0.95;
  color: var(--forest);
}

.ai-metric-card p {
  margin: 0;
}

.ai-program-card h2 {
  max-width: 18ch;
}

.ai-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 18px;
}

.ai-step-card {
  padding-top: 10px;
  border-top: 2px solid rgba(29, 43, 35, 0.22);
}

.ai-step-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 0.9;
  color: #24352b;
}

.ai-step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 14px;
}

.ai-result-intro {
  color: rgba(246, 240, 230, 0.88);
}

.ai-result-list {
  margin-top: 16px;
}

.ai-result-list strong {
  color: #fff;
}

@media (max-width: 900px) {
  .ai-intro-layout {
    grid-template-columns: 1fr;
  }

  .ai-stat-cards {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .ai-step-grid {
    grid-template-columns: 1fr;
  }
}

.ai-program-card h2 {
  max-width: 22ch;
}

.ai-intro-layout {
  grid-template-columns: 1fr;
}

.ai-stat-cards {
  display: none;
}

.ai-intro-layout .audience-copy p,
.ai-intro-layout .audience-copy {
  max-width: none;
}

.ai-program-card h2 {
  max-width: 28ch !important;
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #f8f4ec;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  box-shadow: 0 18px 30px rgba(29, 48, 38, 0.18);
}

.subpage-back:hover {
  background: #1a3128;
  border-color: #1a3128;
  color: #f8f4ec;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .subpage-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #f8f4ec;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  box-shadow: 0 18px 30px rgba(29, 48, 38, 0.18);
}
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #f8f4ec;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  box-shadow: 0 18px 30px rgba(29, 48, 38, 0.18);
}

.subpage-back:hover {
  background: #1a3128;
  border-color: #1a3128;
  color: #f8f4ec;
  transform: translateY(-1px);
}


.about-quote {
  padding: 0 !important;
  min-height: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.about {
  position: relative;
  isolation: isolate;
}

.about::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 241, 231, 0.92));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
  z-index: 0;
}

.about-text,
.about-quote {
  position: relative;
  z-index: 1;
}

.about-text {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.about-quote {
  align-self: stretch;
  justify-self: stretch;
  max-width: none;
  padding: 34px 36px 32px !important;
}

.about-quote .quote {
  margin-left: auto;
  text-align: center;
}

@media (max-width: 980px) {
  .about::before {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .about-quote {
    padding-top: 0 !important;
  }
}

#peak-performance-program,
#ai-assisted-team-program {
  scroll-margin-top: 140px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .photo-frame,
  .marquee-track,
  .about-quote .quote.is-writing::after {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .quote-char {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .about-quote .quote {
    min-height: auto;
  }
}

