@import url("https://fonts.googleapis.com/css2?family=DM+Mono&family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #173534;
  --cream: #fbf8ef;
  --paper: #fffdf8;
  --rust: #cf633b;
  --gold: #e9b75b;
  --mint: #d9e6df;
  --line: #c8d5ce;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 Manrope, Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(24px, 6vw, 92px);
  background: var(--cream);
  border-bottom: 1px solid #e8e3d6;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 600 24px/1 Fraunces, serif;
  letter-spacing: -0.8px;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand small {
  vertical-align: middle;
  font: 600 10px/1 "DM Mono", monospace;
  letter-spacing: 1px;
}

 nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:not(.nav-cta):hover,
nav a:not(.nav-cta):focus-visible {
  color: #8c4a34;
}

nav a:not(.nav-cta):hover::after,
nav a:not(.nav-cta):focus-visible::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  background: var(--rust);
  color: white !important;
  border: 1px solid var(--rust);
  border-radius: 3px;
  box-shadow: 0 0 0 rgba(207, 99, 59, 0);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ae4e2d;
  border-color: #ae4e2d;
  box-shadow: 0 7px 16px rgba(140, 74, 52, 0.22);
  transform: translateY(-2px);
}

nav a:focus-visible {
  outline: 3px solid rgba(233, 183, 91, 0.8);
  outline-offset: 4px;
}
.nav-cta,
.button {
  padding: 11px 18px;
  background: var(--rust);
  border: 0;
  border-radius: 3px;
  color: white !important;
  cursor: pointer;
  font: 600 14px Manrope, sans-serif;
}

.menu {
  display: none;
  padding: 7px 10px;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.hero {
  min-height: 640px;
  padding: 72px clamp(24px, 11vw, 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  background: var(--paper);
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--mint);
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.page-hero {
  max-width: 920px;
  padding-bottom: 56px;
  background: var(--paper);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font: 600 clamp(40px, 5vw, 66px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.5px;
}

.page-hero p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 18px;
}
.eyebrow,
.card-label {
  margin: 0 0 18px;
  color: #8c4a34;
  font: 12px/1.4 "DM Mono", monospace;
  letter-spacing: 1.3px;
}

.hero h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 69px);
}

.lead {
  max-width: 610px;
  font-size: 19px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.button {
  display: inline-block;
  text-decoration: none;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--rust);
  font-size: 22px;
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  width: min(340px, calc(100% - 40px));
  min-height: 0;
  padding: 30px;
  color: var(--ink);
  background: var(--mint);
	opacity: 80%;
  overflow: hidden;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.thread {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed var(--rust);
  border-radius: 50%;
  right: -95px;
  bottom: -105px;
}
.section {
  padding: 96px clamp(24px, 11vw, 180px);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  background: var(--cream);
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 50px);
}

.split p {
  max-width: 680px;
  font-size: 18px;
}.about-heading {
  max-width: 420px;
}

.about-heading h2 {
  max-width: 390px;
}

.about-copy {
  max-width: 650px;
  padding-left: 34px;
  border-left: 2px solid var(--gold);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-link {
  display: inline-block;
  margin-top: 14px;
}
.services {
  background: var(--ink);
  color: var(--cream);
}

.services .eyebrow {
  color: var(--gold);
}

.section-intro {
  max-width: 650px;
}
.grade-levels {
  background: #f2e3cb;
}

.grades-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.grades-image {
  min-height: 300px;
  overflow: hidden;
  background: var(--mint);
}

.grades-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.grade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.grade-grid article {
  min-height: 245px;
  padding: 30px 28px;
  background: var(--paper);
  border-top: 4px solid var(--rust);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.grade-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.grade-grid article:nth-child(3) {
  border-top-color: #6c9c89;
}

.grade-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(23, 53, 52, 0.12);
}

.grade-grid span {
  display: inline-block;
  color: #8c4a34;
  font: 12px/1 DM Mono, monospace;
  letter-spacing: 1.2px;
}

.grade-grid h3 {
  margin: 24px 0 12px;
  font-size: 28px;
}

.grade-grid p {
  margin: 0;
  font-size: 15px;
}

.section-intro p:last-child {
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.service-grid article {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--gold);
  transition: transform 180ms ease, background 180ms ease;
}

.service-grid article:nth-child(2) {
  border-top-color: var(--rust);
}

.service-grid article:nth-child(3) {
  border-top-color: #9ec3b0;
}

.service-grid article:hover {
  background: #28514e;
  transform: translateY(-5px);
}

.service-grid h3 {
  margin-top: 3px;
}

.subject-list {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid rgba(251, 248, 239, 0.3);
}

.subject-list h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--cream);
}

.subject-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subject-list li {
  position: relative;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(251, 248, 239, 0.22);
  font-size: 15px;
  cursor: default;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.subject-list li::before {
  content: "—";
  display: inline-block;
  margin-right: 8px;
  color: var(--gold);
  transition: transform 180ms ease, color 180ms ease;
}

.subject-list li:hover {
  padding-left: 22px;
  color: var(--cream);
  background: #28514e;
  transform: translateX(5px);
}

.subject-list li:hover::before {
  color: var(--rust);
  transform: translateX(4px);
}

.small-note {
  margin: 22px 0 0;
  color: #cbd9d2;
  font-size: 13px;
}
.enroll {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  background: #eed7ba;
}

.enroll-intro {
  max-width: 540px;
}

.enroll-intro p:not(.eyebrow) {
  max-width: 500px;
  font-size: 17px;
}

.enroll-link {
  display: inline-block;
  margin-top: 10px;
}

.enroll ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #b88e66;
}

.enroll li {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 22px 12px;
  border-bottom: 1px solid #b88e66;
  transition: background 180ms ease, transform 180ms ease;
}

.enroll li:hover {
  background: rgba(255, 253, 248, 0.42);
  transform: translateX(5px);
}

.enroll b {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
}

.enroll li span {
  font-size: 15px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  background: var(--paper);
}

.contact p:not(.eyebrow) {
  max-width: 450px;
}

.contact-note {
  margin-top: 34px;
  font-size: 15px;
}
.contact {
  align-items: start;
}

.contact-intro {
  max-width: 470px;
}

.contact h2 {
  max-width: 410px;
}

.contact-parent-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #486561;
  font-size: 14px;
}

.contact form {
  padding: clamp(24px, 4vw, 42px);
  background: #f4eee1;
  border-top: 4px solid var(--rust);
}

.contact label {
  color: var(--ink);
}

.contact input,
.contact textarea,
.contact select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #a7b8ae;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: 16px Manrope, Arial, sans-serif;
}

.contact select {
  min-height: 48px;
  cursor: pointer;
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  outline: 3px solid rgba(233, 183, 91, 0.55);
  outline-offset: 2px;
  border-color: var(--rust);
}

.form-privacy {
  margin: 2px 0 0;
  color: #486561;
  font-size: 12px;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--ink);
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  background: white;
  border: 1px solid #a7b8ae;
  color: var(--ink);
  font: 16px Manrope, sans-serif;
}

textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  font-size: 13px;
}

.form-status.error {
  color: #a43120;
}

.form-status.success {
  color: #346f56;
}

footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding: 44px clamp(24px, 11vw, 180px);
  background: var(--ink);
  color: #e4ede9;
  font-size: 13px;
}

.footer-brand {
  align-self: start;
  color: white;
}
.page-hero {
  max-width: 960px;
  padding-bottom: 58px;
  background: var(--paper);
}

.page-hero h1 {
  max-width: 790px;
  margin: 0 0 22px;
  font: 600 clamp(42px, 5.5vw, 70px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.6px;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: center;
  background: var(--cream);
}

.about-story-image {
  min-height: 470px;
  overflow: hidden;
  background: var(--mint);
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.about-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--ink);
  font: 600 26px Fraunces, Georgia, serif;
}

.about-story-copy {
  max-width: 650px;
}

.about-story-copy p:not(.eyebrow) {
  margin: 0;
  font-size: 17px;
}

.about-story-copy p + p {
  margin-top: 22px;
}

.values {
  background: var(--ink);
  color: var(--cream);
}

.values .eyebrow {
  color: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.values-grid article {
  min-height: 275px;
  padding: 30px 28px;
  background: #214543;
  border-top: 3px solid var(--gold);
}

.values-grid article:nth-child(2) {
  border-top-color: var(--rust);
}

.values-grid article:nth-child(3) {
  border-top-color: #9ec3b0;
}

.values-grid span {
  color: var(--gold);
  font: 12px/1 DM Mono, monospace;
  letter-spacing: 1.2px;
}

.values-grid h3 {
  margin: 26px 0 12px;
  font-size: 27px;
}

.values-grid p {
  margin: 0;
  font-size: 15px;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  background: #eed7ba;
}

.founder-heading {
  max-width: 440px;
}

.founder-copy {
  max-width: 650px;
  padding-left: 34px;
  border-left: 2px solid var(--rust);
}

.founder-copy p {
  margin: 0;
  font-size: 17px;
}

.founder-copy p + p {
  margin-top: 20px;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.credential-list li {
  font-size: 15px;
}

.credential-list li::before {
  margin-right: 9px;
  color: var(--rust);
  content: "—";
}

.about-cta {
  max-width: none;
  text-align: center;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.about-cta::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  content: "";
  opacity: 0.75;
}

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

.about-cta > * {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.about-cta h2 {
  margin-bottom: 20px;
}

.about-cta p:not(.eyebrow) {
  margin-bottom: 28px;
  font-size: 18px;
}

footer a {
  color: #e4ede9;
}
.getting-started-hero {
  max-width: 960px;
  padding-bottom: 72px;
  background: var(--paper);
}

.getting-started-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font: 600 clamp(42px, 5.5vw, 70px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.6px;
}

.getting-started-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 30px;
  font-size: 18px;
}

.start-process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: #eed7ba;
}

.start-process-intro {
  max-width: 460px;
}

.start-process-intro p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #b88e66;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 12px;
  border-bottom: 1px solid #b88e66;
  transition: background 180ms ease, transform 180ms ease;
}

.process-list li:hover {
  background: rgba(255, 253, 248, 0.42);
  transform: translateX(5px);
}

.process-number {
  color: #8c4a34;
  font: 13px/1.3 DM Mono, monospace;
  letter-spacing: 1.2px;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.process-list p {
  margin: 0;
  font-size: 15px;
}

.session-expectations {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  background: var(--cream);
}

.session-expectations > div:first-child {
  max-width: 450px;
}

.expectations-copy {
  max-width: 650px;
  padding-left: 34px;
  border-left: 2px solid var(--gold);
}

.expectations-copy p {
  margin: 0;
  font-size: 17px;
}

.expectations-copy p + p {
  margin-top: 22px;
}

.prepare {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  color: var(--cream);
  background: var(--ink);
}

.prepare .eyebrow {
  color: var(--gold);
}

.prepare-intro {
  max-width: 480px;
}

.prepare-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d7e2dd;
  font-size: 17px;
}

.prepare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(251, 248, 239, 0.3);
}

.prepare-list li {
  padding: 16px 4px;
  border-bottom: 1px solid rgba(251, 248, 239, 0.22);
  font-size: 16px;
  transition: background 180ms ease, padding-left 180ms ease;
}

.prepare-list li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "—";
}

.prepare-list li:hover {
  padding-left: 12px;
  background: #214543;
}
.services-page-hero {
  max-width: 960px;
  padding-bottom: 72px;
  background: var(--paper);
}

.services-page-hero h1 {
  max-width: 770px;
  margin: 0 0 22px;
  font: 600 clamp(42px, 5.5vw, 70px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.6px;
}

.services-page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: 18px;
}

.service-details {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: var(--ink);
  color: var(--cream);
}

.service-details .eyebrow {
  color: var(--gold);
}

.service-details-intro {
  max-width: 470px;
}

.service-details-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d7e2dd;
  font-size: 17px;
}

.service-detail-list {
  border-top: 1px solid rgba(251, 248, 239, 0.3);
}

.service-detail-list article {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(251, 248, 239, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.service-detail-list article:hover {
  background: #214543;
  transform: translateX(5px);
}

.service-detail-list span {
  color: var(--gold);
  font: 13px/1.3 DM Mono, monospace;
  letter-spacing: 1.2px;
}

.service-detail-list h3 {
  margin: 0 0 9px;
  font-size: 28px;
}

.service-detail-list p {
  margin: 0;
  color: #d7e2dd;
  font-size: 15px;
}

.subject-support {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: #eed7ba;
}

.subject-support-intro {
  max-width: 470px;
}

.subject-support-intro p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 17px;
}

.subject-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #b88e66;
}

.subject-support-list li {
  padding: 16px 10px;
  border-bottom: 1px solid #b88e66;
  font-size: 15px;
  transition:
    background 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.subject-support-list li::before {
  display: inline-block;
  margin-right: 8px;
  color: var(--rust);
  content: "—";
  transition: transform 180ms ease;
}

.subject-support-list li:hover {
  padding-left: 18px;
  background: rgba(255, 253, 248, 0.42);
}

.subject-support-list li:hover::before {
  transform: translateX(4px);
}

.grade-support {
  background: var(--cream);
}

.grade-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.grade-support-grid article {
  min-height: 260px;
  padding: 30px 28px;
  background: var(--paper);
  border-top: 4px solid var(--rust);
}

.grade-support-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.grade-support-grid article:nth-child(3) {
  border-top-color: #6c9c89;
}

.grade-support-grid span {
  color: #8c4a34;
  font: 11px/1.3 DM Mono, monospace;
  letter-spacing: 1.2px;
}

.grade-support-grid h3 {
  margin: 24px 0 12px;
  font-size: 28px;
}

.grade-support-grid p {
  margin: 0;
  font-size: 15px;
}

.service-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: var(--mint);
}

.service-fit > div:first-child {
  max-width: 450px;
}

.service-fit-copy {
  max-width: 650px;
  padding-left: 34px;
  border-left: 2px solid var(--rust);
}

.service-fit-copy p {
  margin: 0;
  font-size: 17px;
}

.service-fit-copy p + p {
  margin-top: 20px;
}

.service-fit-copy .button {
  margin-top: 30px;
}
.faq-page-hero {
  max-width: 960px;
  padding-bottom: 72px;
  background: var(--paper);
}

.faq-page-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font: 600 clamp(42px, 5.5vw, 70px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.6px;
}

.faq-page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: var(--cream);
}

.faq-section-alt {
  background: #eed7ba;
}

.faq-section-intro {
  max-width: 430px;
}

.faq-section-intro p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid #b8c7bf;
}

.faq-list details {
  border-bottom: 1px solid #b8c7bf;
  scroll-margin-top: 110px;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 42px 23px 8px;
  color: var(--ink);
  cursor: pointer;
  font: 600 20px/1.35 Fraunces, Georgia, serif;
  list-style: none;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-list details[open] summary {
  padding-left: 16px;
  color: #8c4a34;
  background: rgba(255, 253, 248, 0.38);
}

.faq-list details[open] summary::after {
  border-color: var(--ink);
  transform: translateY(-35%) rotate(225deg);
}

.faq-list summary:hover {
  padding-left: 16px;
  color: #8c4a34;
  background: rgba(255, 253, 248, 0.38);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(233, 183, 91, 0.8);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 24px 26px 16px;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  font-size: 15px;
}
.privacy-page-hero {
  max-width: 960px;
  padding-bottom: 60px;
  background: var(--paper);
}

.privacy-page-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font: 600 clamp(42px, 5.5vw, 70px)/1.08 Fraunces, Georgia, serif;
  letter-spacing: -1.6px;
}

.privacy-page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.privacy-page-hero .policy-date {
  margin-top: 26px;
  color: #486561;
  font-size: 14px;
}

.privacy-policy {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
  background: var(--cream);
}

.privacy-side {
  position: sticky;
  top: 118px;
  max-width: 310px;
}

.privacy-side p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 15px;
}

.privacy-content {
  max-width: 780px;
}

.privacy-content section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.privacy-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-content h2 {
  margin: 0 0 15px;
  font-size: clamp(25px, 3vw, 34px);
}

.privacy-content p {
  margin: 0;
  font-size: 16px;
}

.privacy-content p + p {
  margin-top: 16px;
}

.privacy-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.privacy-content li {
  margin: 8px 0;
  padding-left: 4px;
}

.privacy-content li::marker {
  color: var(--rust);
}

.privacy-contact {
  padding: 20px;
  background: var(--paper);
  border-left: 3px solid var(--rust);
}

.privacy-contact a {
  color: var(--ink);
  font-weight: 700;
}
.contact-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--rust);
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .menu {
    display: block;
  }

  nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  nav.open {
    display: flex;
  }

  .hero,
.split,
.enroll,
.contact {
  grid-template-columns: 1fr;
  gap: 42px;
}

.hero {
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-visual,
.hero-visual img {
  min-height: 370px;
}

.hero-card {
  right: 16px;
  bottom: 16px;
  width: min(310px, calc(100% - 32px));
  padding: 24px;
}

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

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

  .enroll li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 10px;
  }

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

  .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
	
	.grades-top,
.grade-grid {
  grid-template-columns: 1fr;
}

.grades-top {
  gap: 34px;
}

.grade-grid {
  margin-top: 38px;
}

.grades-image,
.grades-image img {
  min-height: 255px;
}
	.about-copy {
    padding-top: 26px;
    padding-left: 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
  }
	.subject-list,
.subject-list ul {
  grid-template-columns: 1fr;
}

.subject-list {
  gap: 28px;
  margin-top: 50px;
}
	.page-hero {
  padding-bottom: 42px;
}

.about-story,
.values-grid,
.founder {
  grid-template-columns: 1fr;
}

.about-story-image,
.about-story-image img {
  min-height: 340px;
}

.values-grid {
  margin-top: 38px;
}

.founder-copy {
  padding-top: 26px;
  padding-left: 0;
  border-top: 2px solid var(--rust);
  border-left: 0;
}
	.start-process,
.session-expectations,
.prepare {
  grid-template-columns: 1fr;
}

.process-list li {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 8px;
}

.expectations-copy {
  padding-top: 26px;
  padding-left: 0;
  border-top: 2px solid var(--gold);
  border-left: 0;
}
	.service-details,
.subject-support,
.grade-support-grid,
.service-fit {
  grid-template-columns: 1fr;
}

.service-detail-list article {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 8px;
}

.subject-support-list {
  grid-template-columns: 1fr;
}

.grade-support-grid {
  margin-top: 38px;
}

.service-fit-copy {
  padding-top: 26px;
  padding-left: 0;
  border-top: 2px solid var(--rust);
  border-left: 0;
}
	.faq-section {
  grid-template-columns: 1fr;
}

.faq-list summary {
  padding-top: 19px;
  padding-bottom: 19px;
  font-size: 18px;
}

.faq-answer {
  padding-right: 8px;
  padding-bottom: 22px;
}
	.privacy-policy {
  grid-template-columns: 1fr;
}

.privacy-side {
  position: static;
  max-width: none;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--gold);
}

.privacy-content section {
  padding-bottom: 28px;
  margin-bottom: 28px;
}
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}