
:root {
  --ink: #123633;
  --ink-deep: #082925;
  --sage-light: #dce5df;
  --paper: #f5f1e9;
  --paper-bright: #fffdf8;
  --apricot: #d98767;
  --line: rgba(18, 54, 51, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
main { width: 100%; max-width: 100%; overflow-x: clip; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; top: -4rem; left: 1rem; z-index: 100;
  background: white; color: var(--ink); padding: .75rem 1rem; border-radius: .25rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; margin: 0 auto;
  padding: 1.35rem clamp(1.25rem, 5vw, 5rem); color: white;
  background: rgba(6, 30, 27, .88);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 .6rem 2rem rgba(0,0,0,.1);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand-mark {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  font-family: Georgia, serif; font-size: 1.35rem;
}
.brand strong { display: block; font-size: .85rem; letter-spacing: .17em; }
.brand small { display: block; margin-top: .12rem; font-size: .62rem; letter-spacing: .06em; color: #d8e4de; }
nav { display: flex; align-items: center; gap: 2rem; font-size: .84rem; }
nav a { color: #edf3ef; opacity: .94; transition: opacity .2s ease; }
nav a:hover, nav a:focus-visible { opacity: 1; }
.nav-contact { padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }

.hero {
  min-height: 760px; display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  color: white; background: var(--ink-deep);
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
  padding: 10rem clamp(1.5rem, 7vw, 7.5rem) 6rem;
}
.eyebrow {
  margin: 0 0 1.4rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: #c4d7cc;
}
.eyebrow.dark { color: #315d54; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 400;
  letter-spacing: -.035em; line-height: 1.02;
}
h1 { max-width: 740px; margin-bottom: 1.8rem; font-size: clamp(3.5rem, 6.9vw, 7.3rem); }
h1 span { display: block; color: #cfddd5; }
.hero-lead { max-width: 650px; font-size: clamp(1.05rem, 1.4vw, 1.28rem); line-height: 1.75; color: #d8e3dd; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.5rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.2rem; padding: .8rem 1.25rem;
  border: 1px solid transparent; border-radius: 999px;
  font-size: .84rem; font-weight: 700; letter-spacing: .03em;
}
.button-light { background: var(--paper-bright); color: var(--ink-deep); }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.text-link { font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: .25rem; }

.hero-visual { position: relative; min-height: 760px; overflow: hidden; background: #254d47; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,41,37,.12), rgba(8,41,37,.32)); pointer-events: none;
}
.hero-quote {
  position: absolute; z-index: 1;
  left: clamp(1.2rem, 4vw, 3.5rem); right: clamp(1.2rem, 4vw, 3.5rem); bottom: 3rem;
  padding: 1.4rem 1.5rem; background: rgba(245,241,233,.93); color: var(--ink-deep);
  backdrop-filter: blur(12px);
}
.hero-quote span { font-size: .67rem; text-transform: uppercase; letter-spacing: .15em; color: #5c7b72; }
.hero-quote p { margin: .6rem 0 0; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.35; }

.credential-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 1.4rem clamp(1.5rem, 6vw, 6rem); background: var(--apricot); color: #1b2f2d;
  text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 8vw, 8rem); }
.section-intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.section-intro > *,
.audience-grid > *,
.service-row > *,
.method > *,
.courses-intro > *,
.contact > * { min-width: 0; }
.section-intro.compact { margin-bottom: 3rem; }
.section-intro h2, .method h2, .courses h2, .contact h2 {
  max-width: 850px; margin: 0; font-size: clamp(2.65rem, 5.2vw, 5.4rem);
}

.audiences { background: var(--paper-bright); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1250px; margin-left: auto; }
.audience-card { min-height: 500px; display: flex; flex-direction: column; padding: clamp(2rem, 4vw, 3.5rem); }
.private-card { background: var(--sage-light); }
.business-card { background: var(--ink); color: white; }
.card-label { font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.audience-card h3 {
  margin: auto 0 1rem; max-width: 510px; font-family: Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 400; line-height: 1.1;
}
.audience-card p { max-width: 600px; color: inherit; }
.audience-card ul { list-style: none; padding: 1rem 0 0; margin: 0 0 2.25rem; border-top: 1px solid currentColor; }
.audience-card li { padding: .7rem 0; border-bottom: 1px solid currentColor; }
.audience-card > a { align-self: flex-start; font-weight: 700; font-size: .85rem; }
.private-card .card-label, .private-card p, .private-card li { color: #31534c; }
.business-card .card-label, .business-card p, .business-card li { color: #d8e4de; }

.services { background: #e7ebe6; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 80px minmax(230px, .8fr) 1.2fr;
  gap: 2rem; padding: 2.25rem 0; border-bottom: 1px solid var(--line); align-items: start;
}
.service-row > span { color: #42685f; font-size: .75rem; }
.service-row h3 { margin: 0; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; line-height: 1.2; }
.service-row p { margin: 0; max-width: 720px; color: #31564e; }

.method {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(3rem, 8vw, 9rem); background: var(--ink-deep); color: white;
}
.method-copy > p:not(.eyebrow) { max-width: 660px; color: #d2dfd8; }
.method-copy h2 { margin-bottom: 2rem; }
.method-steps { list-style: none; margin: 0; padding: 0; align-self: center; }
.method-steps li { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.method-steps > li > span { color: var(--apricot); font-size: .74rem; }
.method-steps strong { display: block; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; }
.method-steps p { margin: .35rem 0 0; color: #c4d3cc; }

.courses { background: var(--paper); }
.courses-intro { display: grid; grid-template-columns: .55fr 1fr; column-gap: 3rem; }
.courses-intro .eyebrow { grid-column: 1; }
.courses-intro h2, .courses-intro > p:last-child { grid-column: 2; }
.courses-intro > p:last-child { max-width: 760px; color: #385c54; }
.course-prices { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-prices > div { display: flex; flex-direction: column; gap: .5rem; padding: 2.3rem; border-right: 1px solid var(--line); }
.course-prices > div:last-child { border-right: 0; }
.course-prices span { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: #315d54; }
.course-prices strong { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.course-prices small { color: #365a52; }
.business-note { margin: 1.4rem 0 0 auto; max-width: 670px; color: #3b5e56; font-size: .86rem; }

.contact {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: clamp(3rem, 8vw, 9rem); background: var(--ink); color: white;
}
.contact-main > p:not(.eyebrow) { max-width: 670px; color: #d3e0d9; }
.contact-main .button { margin-top: 1.3rem; }
.contact address { align-self: end; display: flex; flex-direction: column; padding-left: 2rem; border-left: 1px solid rgba(255,255,255,.22); font-style: normal; }
.contact address span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #c2d6cb; }
.contact address strong { margin-top: .5rem; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.contact address p { margin: 1.5rem 0; color: #c7d6cf; }
.contact address a { margin-top: .35rem; text-decoration: underline; text-underline-offset: .25rem; }

footer {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
  padding: 2rem clamp(1.5rem, 6vw, 6rem); background: #061e1b; color: white;
}
.footer-brand .brand-mark { width: 2.2rem; height: 2.2rem; font-size: 1rem; }
footer p { margin: 0; color: #b9cac2; font-size: .68rem; line-height: 1.55; text-align: center; }
footer > a:last-child { justify-self: end; font-size: .75rem; }

a:focus-visible {
  outline: 3px solid #f0a17f;
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .site-header nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 680px; }
  .hero-visual { min-height: 480px; }
  .section-intro, .method, .contact { grid-template-columns: 1fr; }
  .audience-grid { margin: 0; }
  .method { gap: 4rem; }
  .contact address { padding: 2rem 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .courses-intro { grid-template-columns: 1fr; }
  .courses-intro .eyebrow, .courses-intro h2, .courses-intro > p:last-child { grid-column: 1; }
}

@media (max-width: 760px) {
  .site-header { gap: .75rem; padding: 1.15rem; }
  .site-header .brand { min-width: 0; }
  .site-header .brand-mark { flex: 0 0 auto; }
  .site-header .brand strong { font-size: .78rem; letter-spacing: .12em; }
  .brand small { display: none; }
  .nav-contact { flex: 0 0 auto; padding: .55rem .8rem; }
  .hero-copy { min-height: 650px; padding: 8rem 1.25rem 4rem; }
  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.8vw, 4.25rem);
  }
  h1 span,
  .section-intro h2,
  .method h2,
  .courses h2,
  .contact h2,
  .audience-card h3 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .section-intro h2, .method h2, .courses h2, .contact h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.1rem);
  }
  .hero-lead { max-width: 100%; }
  .hero-actions { gap: 1rem; }
  .hero-visual { min-height: 420px; }
  .credential-strip { grid-template-columns: 1fr; text-align: left; }
  .section { padding: 4.5rem 1.25rem; }
  .section-intro { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 460px; }
  .service-row { grid-template-columns: 48px 1fr; gap: 1rem; }
  .service-row p { grid-column: 2; }
  .course-prices { grid-template-columns: 1fr; }
  .course-prices > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
  .course-prices > div:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

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

/* Review corrections: visible navigation, accessible links, robust sizing. */
html, body { overflow-x: visible; }
main, .page-shell { width: 100%; max-width: 100%; }
.hero-copy, .hero-visual, .course-prices > div { min-width: 0; }
h1, h2, h3 { overflow-wrap: anywhere; hyphens: auto; }
.hero-image { position: absolute; inset: 0; }
.hero-quote span { color: #36574e; }
.intro-note { max-width: 65ch; margin-bottom: 2rem; }
.intro-note a, .legal-page a:not(.button), .contact-hint a { text-decoration: underline; text-underline-offset: .2em; }
.mobile-nav { display: none; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: flex-end; font-size: .8rem; }
.footer-links a { padding: .45rem 0; text-decoration: underline; text-underline-offset: .2em; }
.contact-main .contact-hint { font-size: .87rem; margin-top: 1.2rem; }
.legal-page { max-width: 980px; margin: auto; padding: 11rem 2rem 6rem; overflow: visible; }
.legal-page nav { display: block; font-size: 1rem; margin: 0 0 1.5rem; }
.legal-page nav a { color: var(--ink); opacity: 1; }
.legal-page h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin-bottom: 2rem; }
.legal-page h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 2.7rem 0 1rem; line-height: 1.15; }
.legal-page address { font-style: normal; }
.legal-page li { margin-bottom: .6rem; }
.legal-page .page-lead { font-size: 1.2rem; }
.profile-intro { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 2.5rem; align-items: start; margin: 2rem 0 3rem; }
.profile-portrait { margin: 0; }
.profile-portrait img { display: block; width: 100%; height: auto; border-radius: .5rem; }
.profile-intro .page-lead { margin-top: 0; }
.method-profile { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.method-profile img { display: block; width: 86px; height: auto; border-radius: .35rem; }
.method-profile strong { display: block; }
.method-profile a { text-decoration: underline; text-underline-offset: .2em; }
@media (max-width: 640px) {
 .profile-intro { grid-template-columns: 1fr; gap: 1.5rem; }
 .profile-portrait { max-width: 240px; }
}
.price-callout { font-size: 1.3rem; font-weight: 700; }
.button-dark { background: var(--ink); color: white; }
:focus-visible { outline: 3px solid #a64422; outline-offset: 4px; }
.site-header :focus-visible, .contact :focus-visible, footer :focus-visible { outline-color: #f0a17f; }
@media(min-width: 1001px) { .hero h1 { font-size: clamp(3rem, 4.4vw, 5.5rem); } }
@media(max-width: 1100px) { .desktop-nav { gap: 1rem; } }
@media(max-width: 1000px) {
 .desktop-nav { display: none; }
 .mobile-nav { display: block; position: relative; flex-shrink: 0; }
 .mobile-nav summary { cursor: pointer; padding: .7rem 1rem; border: 1px solid #a6bdb5; border-radius: 999px; }
 .mobile-nav nav { position: absolute; top: calc(100% + .8rem); right: 0; min-width: 235px; max-width: calc(100vw - 3rem); display: flex; flex-direction: column; gap: 0; align-items: stretch; background: #082925; padding: .6rem; border: 1px solid #a6bdb5; border-radius: .4rem; box-shadow: 0 1rem 2rem #0004; }
 .site-header .mobile-nav nav a { display: block; padding: .75rem 1rem; }
 .hero-visual { height: 480px; }
 .legal-page { padding-top: 9rem; }
}
@media(max-width: 760px) {
 .hero-visual { height: 420px; }
 .legal-page { padding: 8rem 1.25rem 4rem; }
 .footer-links { justify-content: flex-start; }
 footer { grid-template-columns: 1fr; }
 footer .creation-note { grid-row: auto; }
 .service-row { grid-template-columns: 30px minmax(0,1fr); }
}

body { padding-bottom: 3rem; }
body.public-site { padding-bottom: 0; }
.preview-notice { position: fixed; z-index: 90; bottom: 0; left: 0; right: 0; background: #fffdf8; color: #082925; padding: .6rem 1rem; text-align: center; font-size: .8rem; border-top: 1px solid #315d54; }
.preview-context { padding: 1rem; border: 1px solid #315d54; }
