:root {
  --ink: #12151c;
  --muted: #626977;
  --line: #e5e1d8;
  --paper: #ffffff;
  --soft: #f8f4ed;
  --mist: #edf4f1;
  --sage: #6f8b7a;
  --sage-dark: #31493f;
  --brass: #c99545;
  --clay: #b8654b;
  --blue: #465b7a;
  --field: #fbfaf7;
  --shadow: 0 22px 64px rgba(18, 21, 28, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.72), rgba(255, 255, 255, 0) 520px),
    var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(229, 225, 216, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), var(--sage-dark));
  border-radius: 50%;
  font-weight: 800;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.nav-open .site-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: grid;
  gap: 0;
  padding: 12px 20px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-open .site-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: clamp(34px, 5vw, 64px);
}

.hero::before {
  position: absolute;
  top: 28px;
  right: clamp(20px, 5vw, 72px);
  left: clamp(20px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 149, 69, 0.65), rgba(70, 91, 122, 0.24), transparent);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  letter-spacing: 0;
  text-transform: none;
}

.section-kicker {
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 5vw, 3.85rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h1::selection,
h2::selection,
p::selection,
li::selection {
  color: var(--paper);
  background: var(--blue);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #283143);
  box-shadow: 0 12px 28px rgba(18, 21, 28, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-visual,
.large-photo {
  min-height: 360px;
}

.hero-visual {
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  width: 100%;
  min-height: inherit;
  padding: 24px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 24% 18%, rgba(201, 149, 69, 0.42), transparent 26%),
    linear-gradient(135deg, rgba(18, 21, 28, 0.06), rgba(18, 21, 28, 0.58)),
    linear-gradient(120deg, #d4c4a7, #5e7468 48%, #151922);
  border-radius: var(--radius);
}

.photo-placeholder::after {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 36%;
  max-width: 180px;
  height: 92px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)) 0 28px / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)) 0 56px / 100% 1px no-repeat;
}

.photo-placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-placeholder-light {
  min-height: 460px;
  color: rgba(17, 19, 21, 0.72);
  background:
    radial-gradient(circle at 76% 16%, rgba(184, 101, 75, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    linear-gradient(120deg, #f0e7d6, #bfcfc6 58%, #6f8178);
}

.hero-note {
  display: none;
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 40px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95), rgba(242, 247, 244, 0.95) 34%, rgba(246, 242, 238, 0.95) 68%, rgba(238, 242, 247, 0.95));
  background-clip: content-box;
}

.intro-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 16px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  pointer-events: none;
}

.intro-strip span::after {
  margin-left: 32px;
  color: var(--clay);
  content: "\2022";
  font-weight: 800;
}

.intro-strip span:last-child::after {
  content: "";
  margin-left: 0;
}

.method-strip {
  display: grid;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 72px) 0;
}

.method-strip span {
  color: var(--clay);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 800;
}

.method-strip p {
  max-width: 880px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--sage-dark);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.45;
  border-bottom: 1px solid rgba(177, 143, 92, 0.34);
}

.method-strip + .about-section {
  padding-top: clamp(40px, 6vw, 72px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
}

.two-column {
  display: grid;
  gap: 36px;
}

.about-section h2 {
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.about-photo {
  display: block;
  width: 100%;
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-collage {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.copy-stack {
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-stack p:last-child,
.contact-intro p:last-child,
.success-copy p:last-child {
  margin-bottom: 0;
}

.muted-section {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(111, 139, 122, 0.12), transparent 34%),
    var(--soft);
}

.muted-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 34px;
}

.section-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  position: relative;
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(230, 232, 235, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card::before {
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: var(--brass);
  border-radius: 999px;
}

.service-card:nth-child(2)::before {
  background: var(--sage);
}

.service-card:nth-child(3)::before {
  background: var(--blue);
}

.service-card:nth-child(4)::before {
  background: var(--clay);
}

.service-note {
  margin: -10px 0 18px;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-card ul,
.check-list,
.student-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li,
.student-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.service-card li::before,
.check-list li::before,
.student-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--brass);
  border-radius: 50%;
}

.success-section {
  display: grid;
  gap: 44px;
  align-items: center;
}

.success-copy {
  padding: clamp(0px, 3vw, 28px);
}

.success-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  margin: 26px 0;
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.philosophy-section {
  position: relative;
  max-width: none;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 149, 69, 0.2), transparent 32%),
    linear-gradient(135deg, #11151c, #293343 72%, #263f36);
  overflow: hidden;
}

.philosophy-section > * {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.philosophy-section .section-kicker {
  color: #d6c08a;
}

blockquote {
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.7rem);
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: 0;
}

.philosophy-lines {
  display: grid;
  gap: 12px;
  width: min(360px, 48vw);
  margin-top: 42px;
  opacity: 0.46;
}

.philosophy-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.philosophy-lines span:nth-child(2) {
  transform: translateX(18px);
}

.philosophy-lines span:nth-child(3) {
  transform: translateX(38px);
}

.philosophy-lines span:nth-child(4) {
  transform: translateX(18px);
}

.student-list {
  align-content: start;
  padding-top: clamp(44px, 6vw, 104px);
  font-size: 1.05rem;
}

.contact-section {
  display: grid;
  gap: 34px;
}

.contact-intro p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-intro h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
}

.contact-intro a {
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(180deg, rgba(237, 244, 241, 0.78), rgba(255, 255, 255, 0) 190px),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(124, 137, 118, 0.34);
  border-color: var(--sage);
  background: var(--paper);
}

.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 34px 20px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: grid;
  gap: 14px;
  max-width: 640px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 18px;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--soft);
}

.thank-you {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 20px;
}

.thank-you h1 {
  margin: 20px 0 0;
}

.thank-you p {
  color: var(--muted);
  font-size: 1.15rem;
}

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  }

  .hero-note {
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    bottom: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero-note span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .hero-note .hero-note-symbol {
    padding: 0 2px;
    color: var(--clay);
    background: transparent;
    border: 0;
  }

  .hero-visual {
    min-height: 0;
    justify-self: end;
  }

  .intro-strip {
    padding-bottom: 0;
  }

  .two-column,
  .success-section,
  .contact-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

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

  .cookie-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .brand {
    max-width: calc(100vw - 82px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-open .site-nav {
    inset: 64px 0 auto;
  }

  .section-pad {
    padding: 56px 20px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  h2,
  .about-section h2,
  .contact-intro h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .hero-subhead,
  .section-note,
  .copy-stack,
  .success-copy p,
  .contact-intro p {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-visual {
    width: min(100%, 380px);
    min-height: 0;
  }

  .intro-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 28px;
  }

  .intro-strip span {
    position: relative;
    justify-content: center;
    min-height: 44px;
    padding: 0 4px;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    white-space: nowrap;
  }

  .intro-strip span::after {
    position: absolute;
    right: -3px;
    margin-left: 0;
  }

  .method-strip p {
    padding-top: 18px;
    font-size: 1rem;
  }

  .student-list {
    padding-top: 0;
  }

  .service-card {
    padding: 22px;
  }

  .large-photo {
    min-height: 420px;
  }

  .contact-form {
    padding: 18px;
  }
}
