:root {
  --ink: #202622;
  --muted: #667069;
  --brand: #5c685b;
  --brand-2: #839082;
  --brand-3: #b1b6b0;
  --deep: #344038;
  --sage: #eef1ed;
  --sand: #f6f2ea;
  --white: #ffffff;
  --line: #dde2dc;
  --warm: #c68b5b;
  --shadow: 0 24px 64px rgba(32, 38, 34, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 76px 0; }
.section-sage { background: var(--sage); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--deep); color: var(--white); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--warm); outline-offset: 3px; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #cbd3ca; }
h1, h2, h3 {
  margin: 0 0 20px;
  line-height: 1.08;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.75rem); letter-spacing: -.025em; }
p { margin: 0 0 20px; }
.lead { max-width: 760px; color: var(--muted); font-size: 1.18rem; }
.section-dark .lead { color: #d3dad2; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(221, 226, 220, .85);
  backdrop-filter: blur(16px);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
}
.brand { font-size: 1rem; font-weight: 800; letter-spacing: -.025em; }
.brand span { color: var(--brand); font-family: Georgia, serif; font-style: italic; font-weight: 500; }
.nav-links { display: flex; justify-content: center; gap: 28px; font-size: .92rem; font-weight: 650; }
.nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
.nav-links a:hover { color: var(--brand); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(92, 104, 91, .24); }
.btn-secondary { background: var(--white); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--brand-2); box-shadow: 0 10px 24px rgba(32, 38, 34, .08); }
.btn-large { min-height: 54px; padding-inline: 23px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.text-link-strong { color: var(--brand); }

.hero {
  padding: 72px 0 62px;
  background: linear-gradient(128deg, #fff 0 62%, var(--sand) 62% 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 72px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 850px; }
.hero h1 span { display: block; color: var(--brand); }
.hero-lead { max-width: 690px; color: var(--muted); font-size: 1.2rem; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.hero-note { margin: 14px 0 0; color: var(--muted); font-size: .86rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 650;
}
.hero-proof span::before { content: "✓"; color: var(--brand); margin-right: 8px; }
.google-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.google-rating:hover { color: var(--brand); }
.stars { color: #c47535; letter-spacing: .07em; }
.hero-media {
  height: 650px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media img { object-position: center 42%; }

.recognition { border-bottom: 1px solid var(--line); }
.recognition-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 84px; align-items: start; }
.recognition h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); max-width: 560px; }
.recognition-copy > p { color: var(--muted); font-size: 1.08rem; }
.check-list, .plain-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li, .plain-list li { position: relative; padding-left: 28px; }
.check-list li::before, .plain-list li::before { content: ""; position: absolute; left: 0; top: .67em; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }

.perspective-header { max-width: 900px; }
.perspective-header .lead { max-width: 820px; }
.factor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.factor-card { min-height: 275px; padding: 30px; border: 1px solid rgba(92, 104, 91, .18); border-radius: 20px; background: rgba(255,255,255,.78); }
.factor-card p { color: var(--muted); margin-bottom: 0; }
.factor-number { display: block; margin-bottom: 48px; color: var(--brand-2); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.perspective-statement { margin-top: 24px; }
.perspective-statement p { max-width: 980px; margin: 0; padding: 28px 32px; border-left: 4px solid var(--brand); background: var(--white); border-radius: 0 14px 14px 0; font-size: 1.12rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 82px; align-items: center; }
.copy { max-width: 620px; }
.copy > p { color: var(--muted); }
.media { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #dfe4de; }
.portrait-media { height: 720px; }
.portrait-media img { object-position: center 33%; }
.trust-facts { display: grid; gap: 12px; margin: 30px 0; }
.trust-facts div { display: grid; grid-template-columns: 135px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.trust-facts span { color: var(--muted); }
.promise { margin: 34px 0 0; padding: 26px 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--sage); }
.promise p { margin: 0; color: var(--ink); font-size: 1.05rem; font-weight: 670; }
.reviews-block { margin-top: 100px; }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.reviews-heading h2 { max-width: 720px; font-size: clamp(2rem, 3.6vw, 3.4rem); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.review-card { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.review-card p { min-height: 105px; font-size: 1.05rem; }
.review-card footer { color: var(--brand); font-weight: 800; }
.review-card::before { content: "★★★★★"; display: block; margin-bottom: 18px; color: #c47535; font-size: .8rem; letter-spacing: .08em; }

.method-grid { grid-template-columns: .95fr 1.05fr; }
.process-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.process-list li > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: var(--white); font-weight: 800; }
.process-list strong { display: block; margin: 2px 0 5px; font-size: 1.08rem; }
.process-list p { margin: 0; color: var(--muted); }
.work-media { height: 570px; }
.work-media img { object-position: center 52%; }
.online-grid { grid-template-columns: 1.05fr .95fr; }
.online-media { height: 540px; }
.online-media img { object-position: center 50%; }

.fit-header { max-width: 930px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.fit-card { padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.06); }
.fit-card-positive { background: rgba(177, 182, 176, .16); }
.fit-card ul { padding-left: 22px; margin: 22px 0 0; color: #e4e8e3; }
.fit-card li + li { margin-top: 11px; }

.offers-header { max-width: 900px; }
.primary-offer { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; margin-top: 48px; padding: 48px; border-radius: 26px; background: var(--sage); }
.offer-kicker { display: inline-block; margin-bottom: 14px; color: var(--brand); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.primary-offer-copy p { max-width: 680px; color: var(--muted); }
.price-panel { align-self: stretch; display: grid; align-content: center; gap: 7px; padding: 34px; border-radius: 19px; background: var(--white); box-shadow: 0 18px 46px rgba(32,38,34,.08); }
.price-panel > span { margin-top: 10px; color: var(--muted); font-size: .84rem; }
.price-panel > strong { font-size: 1.45rem; }
.price-panel .btn { margin-top: 22px; }
.price-panel small { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.secondary-offers { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; margin-top: 20px; }
.secondary-offer { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: center; min-height: 330px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; }
.secondary-offer figure { height: 280px; margin: 0; border-radius: 15px; overflow: hidden; }
.secondary-offer figure img { object-position: center 48%; }
.secondary-offer-text { display: block; padding: 38px; background: var(--sand); }
.secondary-offer p { color: var(--muted); }
.offer-price { font-size: .92rem; }
.course-details-wrap { margin-top: 24px; scroll-margin-top: 100px; }
.course-details { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.course-details summary { cursor: pointer; list-style: none; padding: 24px 28px; font-weight: 800; position: relative; }
.course-details summary::-webkit-details-marker { display: none; }
.course-details summary::after { content: "+"; position: absolute; right: 28px; top: 50%; transform: translateY(-50%); color: var(--brand); font-size: 1.5rem; }
.course-details[open] summary::after { content: "–"; }
.course-details[open] summary { border-bottom: 1px solid var(--line); }
.course-details-content { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; padding: 34px 28px 30px; }
.course-details-content p { color: var(--muted); }
.trial-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.schedule-card { border: 1px solid var(--line); border-radius: 15px; padding: 6px 22px; }
.schedule-card div { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.schedule-card div:last-child { border-bottom: 0; }
.schedule-card span { color: var(--brand); font-weight: 750; }

.travel-section { padding-top: 0; }
.travel-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: var(--sand); }
.travel-card figure { height: 360px; margin: 0; border-radius: 17px; overflow: hidden; }
.travel-card figure img { object-position: center 50%; }
.travel-card h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.travel-card p { color: var(--muted); }

.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.faq-heading { position: sticky; top: 118px; }
.faq-heading h2 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
.faq-list details { border-bottom: 1px solid rgba(92, 104, 91, .22); padding: 22px 0; }
.faq-list summary { cursor: pointer; list-style: none; position: relative; padding-right: 42px; font-size: 1.08rem; font-weight: 780; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--brand); font-size: 1.45rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 15px 0 0; color: var(--muted); }

.contact-section { background: var(--deep); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.contact-grid h2 { max-width: 760px; }
.contact-grid .lead { color: #d7ded7; }
.contact-reassurance { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: #d7ded7; font-size: .9rem; }
.contact-reassurance span::before { content: "✓"; margin-right: 7px; color: #b9c7b8; }
.contact-card { display: grid; gap: 12px; padding: 24px; border-radius: 22px; background: var(--white); color: var(--ink); }
.contact-card a { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 78px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 13px; transition: transform .18s ease, box-shadow .18s ease; }
.contact-card a:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(32,38,34,.08); }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { margin-bottom: 2px; color: var(--muted); }

.footer { padding: 54px 0 24px; border-top: 1px solid var(--line); background: #f9faf8; color: var(--muted); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; }
.footer-brand p { max-width: 420px; margin-top: 14px; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links strong { color: var(--ink); margin-bottom: 6px; }
.footer-links a:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem; }
.mobile-sticky-cta { display: none; }

[id] { scroll-margin-top: 94px; }

@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .nav-cta { font-size: .88rem; padding-inline: 14px; }
  .hero-grid, .split { gap: 50px; }
  .hero-media { height: 600px; }
  .secondary-offers { grid-template-columns: 1fr; }
  .secondary-offer-text { min-height: auto; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .section { padding: 86px 0; }
  .nav { grid-template-columns: 1fr auto; min-height: 70px; }
  .nav-toggle {
    display: block;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: .2s ease; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links, .nav-cta { display: none; }
  .site-header.menu-open .nav-links {
    display: grid;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 12px 24px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(32,38,34,.10);
  }
  .site-header.menu-open .nav-links a { min-height: 48px; border-bottom: 1px solid #edf0ec; }

  .hero { padding: 0 0 44px; background: var(--white); }
  .hero .container { width: 100%; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; }
  .hero-media { grid-area: 1 / 1; height: calc(100svh - 70px); min-height: 650px; max-height: 820px; border-radius: 0; box-shadow: none; position: relative; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,27,22,.03) 10%, rgba(20,27,22,.22) 45%, rgba(20,27,22,.93) 100%); }
  .hero-media img { object-position: center 35%; }
  .hero-copy { grid-area: 1 / 1; align-self: end; padding: 42px 28px 34px; color: var(--white); z-index: 2; }
  .hero .eyebrow { color: #e9eee8; text-shadow: 0 1px 8px rgba(0,0,0,.2); }
  .hero h1 { font-size: clamp(2.8rem, 8.8vw, 4.8rem); max-width: 14ch; }
  .hero h1 span { color: #d7e0d3; }
  .hero-lead { max-width: 680px; color: #f0f3ef; text-shadow: 0 1px 8px rgba(0,0,0,.2); }
  .hero-actions { align-items: flex-start; }
  .hero-actions .btn-primary { background: var(--white); color: var(--deep); }
  .hero-actions .text-link { color: var(--white); }
  .hero-note { color: #d8dfd8; }
  .hero-proof, .google-rating { display: none; }

  .recognition-inner, .split, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .recognition h2 { max-width: 720px; }
  .factor-grid { grid-template-columns: 1fr; }
  .factor-card { min-height: auto; }
  .factor-number { margin-bottom: 28px; }
  .portrait-media { height: 620px; max-width: 680px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card p { min-height: 0; }
  .work-media, .online-media { height: auto; aspect-ratio: 4 / 3; }
  .method-grid .copy { order: 1; }
  .method-grid .media { order: 2; }
  .fit-grid { grid-template-columns: 1fr; }
  .primary-offer { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
  .secondary-offer { grid-template-columns: 1fr; }
  .course-details-content { grid-template-columns: 1fr; }
  .travel-card { grid-template-columns: 1fr; }
  .travel-card figure { height: auto; aspect-ratio: 16 / 10; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  .section-compact { padding: 58px 0; }
  h1 { font-size: clamp(2.55rem, 11vw, 3.75rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .lead { font-size: 1.07rem; }
  .brand { font-size: .94rem; }

  .hero-media { min-height: 640px; }
  .hero-copy { padding: 34px 19px 28px; }
  .hero h1 { max-width: 11ch; font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .hero-lead { font-size: 1rem; line-height: 1.48; max-width: 34ch; }
  .hero-actions { display: grid; gap: 14px; margin-top: 24px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .text-link { width: max-content; }
  .hero-note { font-size: .78rem; }

  .recognition-inner { gap: 22px; }
  .perspective-statement p { padding: 22px; }
  .factor-card { padding: 24px; }
  .portrait-media { height: auto; aspect-ratio: 4 / 5; }
  .trust-facts div { grid-template-columns: 1fr; gap: 3px; }
  .promise { padding: 22px; }
  .reviews-block { margin-top: 68px; }
  .reviews-heading { align-items: stretch; flex-direction: column; }
  .reviews-heading .btn { width: 100%; }
  .review-card { padding: 23px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 14px; }
  .process-list li > span { width: 40px; height: 40px; }
  .fit-card { padding: 25px; }
  .primary-offer { padding: 24px 20px; border-radius: 20px; }
  .price-panel { padding: 24px 20px; }
  .secondary-offer { padding: 18px; }
  .secondary-offer figure { height: auto; aspect-ratio: 16 / 10; }
  .secondary-offer-text { padding: 28px 22px; }
  .course-details summary { padding: 20px 48px 20px 20px; }
  .course-details summary::after { right: 20px; }
  .course-details-content { padding: 26px 20px; }
  .trial-actions { display: grid; grid-template-columns: 1fr; }
  .trial-actions .btn { width: 100%; }
  .schedule-card { padding-inline: 16px; }
  .schedule-card div { flex-direction: column; gap: 2px; }
  .travel-card { padding: 20px; }
  .contact-card { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 45;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(32,38,34,.28);
    font-weight: 800;
  }
  .footer { padding-bottom: 100px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero-copy { padding-inline: 15px; }
  .hero h1 { font-size: 2.35rem; }
  .hero-media { min-height: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
