:root {
  --ink: #263a38;
  --muted: #5f706c;
  --cream: #fbf8ef;
  --paper: #fffefa;
  --peach-light: #f8e8de;
  --sage: #dce9dc;
  --sage-deep: #a9c5ae;
  --teal: #236c6a;
  --rust: #a64d3d;
  --rust-deep: #934132;
  --gold: #e9bd57;
  --line: #dfd9ca;
  --max: 1160px;
  --radius: 1.25rem;
  --shadow: 0 1rem 2.5rem rgba(53, 72, 60, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 16px/1.7 "Trebuchet MS", Arial, sans-serif; }
body::selection { background: #f4cdbd; }
a { color: var(--teal); }
a:hover { color: var(--rust); }

.site-header { position: relative; z-index: 2; background: rgba(251, 248, 239, .94); border-bottom: 1px solid var(--line); }
.header-inner, .container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; }
.brand { color: var(--rust); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 700; letter-spacing: -.03em; text-decoration: none; white-space: nowrap; }
nav ul { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .9rem; list-style: none; margin: 0; padding: 0; }
nav a { display: inline-block; color: var(--ink); font-size: .9rem; text-decoration: none; }
nav a:hover { color: var(--rust); }
main { overflow: hidden; }

.hero { position: relative; padding: 5.25rem 0 5rem; background: var(--peach-light); isolation: isolate; }
.hero::before, .hero::after { position: absolute; z-index: -1; content: ""; border-radius: 50%; }
.hero::before { top: -8rem; right: -5rem; width: 23rem; height: 23rem; background: rgba(233, 189, 87, .34); }
.hero::after { bottom: -8rem; left: -8rem; width: 18rem; height: 18rem; background: rgba(169, 197, 174, .38); }
.hero .container { position: relative; }
.home-hero { padding-top: 6.5rem; }
.home-hero .photo { border: .7rem solid var(--paper); border-radius: 48% 48% 44% 44% / 40% 40% 55% 55%; box-shadow: var(--shadow); transform: rotate(2deg); }

.section { position: relative; padding: 5rem 0; }
.section.tinted { background: var(--sage); border-top: 1px solid rgba(35, 108, 106, .08); border-bottom: 1px solid rgba(35, 108, 106, .08); }
.section.tinted::after { position: absolute; right: 5%; bottom: -4rem; width: 8rem; height: 8rem; content: ""; border: 1px solid rgba(35, 108, 106, .18); border-radius: 50%; }
.eyebrow { margin: 0 0 .7rem; color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.18; text-wrap: balance; }
h1 { max-width: 780px; margin: .35rem 0 1rem; color: var(--rust); font-size: clamp(2.7rem, 7vw, 5.5rem); letter-spacing: -.045em; }
h2 { margin: 0 0 .9rem; color: var(--teal); font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -.03em; }
h3 { margin: .4rem 0 .45rem; font-size: 1.35rem; }
.lead { max-width: 700px; color: var(--muted); font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.button { display: inline-block; padding: .72rem 1.2rem; color: #fff; background: var(--rust); border: 2px solid var(--rust); border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { color: #fff; background: #9f4d40; transform: translateY(-2px); }
.button.secondary { color: var(--rust-deep); background: transparent; }
.button.secondary:hover { color: var(--rust-deep); background: rgba(185, 95, 78, .08); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.card { padding: 1.65rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card h2, .card h3 { color: var(--teal); }
.fact-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0; position: relative; z-index: 1; margin: -2rem 0 0; padding: 0; list-style: none; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.fact-list li { min-height: 5.8rem; padding: 1.15rem 1.25rem; border-right: 1px solid var(--line); }
.fact-list li:last-child { border-right: 0; }
.fact-list strong { color: var(--rust); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.notice { padding: 1rem 1.25rem; background: #fff4d5; border-left: 4px solid var(--gold); border-radius: 0 .6rem .6rem 0; }
.faq-list { max-width: 820px; }
.faq-list details { padding: 1rem 0; border-bottom: 1px solid rgba(35, 108, 106, .22); }
.faq-list details:first-child { border-top: 1px solid rgba(35, 108, 106, .22); }
.faq-list summary { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-weight: 700; cursor: pointer; }
.faq-list details p { max-width: 720px; margin: .7rem 0 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.testimonial { display: flex; flex-direction: column; justify-content: space-between; }
.testimonial blockquote { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; line-height: 1.55; }
.testimonial cite { display: block; margin-top: 1.25rem; color: var(--muted); font-size: .9rem; font-style: normal; }
.testimonial cite strong { display: block; color: var(--teal); }
.testimonial cite a, .review-meta a { display: block; margin-top: .4rem; color: var(--rust-deep); font-size: .86rem; font-style: normal; font-weight: 700; }
.review-source { margin-top: 1.5rem; color: var(--ink); }
.reviews-intro { max-width: 700px; }
.featured-review { position: relative; max-width: 900px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem); background: var(--ink); color: #f8fbf3; border-radius: 2rem .5rem 2rem 2rem; box-shadow: var(--shadow); }
.featured-review::before { content: "“"; position: absolute; top: -.2em; left: .35em; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 7rem; line-height: 1; }
.featured-review blockquote { position: relative; max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3.5vw, 2.45rem); line-height: 1.25; }
.featured-review cite { display: block; margin-top: 1.5rem; color: #d7eee1; font-size: .95rem; font-style: normal; }
.featured-review cite strong { display: block; color: #fff; }
.featured-review cite a { display: block; margin-top: .4rem; color: #f4cdbd; font-size: .86rem; font-style: normal; font-weight: 700; }
.review-list { max-width: 920px; margin: 0 auto; }
.review-item { display: grid; grid-template-columns: minmax(150px, .35fr) 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.review-item:last-child { border-bottom: 1px solid var(--line); }
.review-item blockquote { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.55; }
.review-meta { color: var(--ink); font-size: .9rem; }
.review-meta strong { display: block; margin-bottom: .25rem; color: var(--teal); font-size: 1rem; }
.review-cta { max-width: 760px; margin: 0 auto; text-align: center; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.enrollment-detail { margin-top: 4rem; }
.photo { display: block; width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: 2rem 2rem 2rem .6rem; }
.card > .photo { height: auto; }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.landscape { aspect-ratio: 4 / 3; }
.photo-card { margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius) .4rem var(--radius) var(--radius); box-shadow: var(--shadow); }
.photo-card:nth-child(2) { transform: translateY(1.2rem); }
.photo-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-card figcaption { padding: 1rem 1.15rem 1.2rem; color: var(--muted); font-size: .92rem; }
.video-grid { align-items: start; }
.video-card { min-width: 0; }
.video-card video { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 16 / 9; background: var(--ink); border-radius: .75rem; }
.video-card h3 { margin-top: 1.1rem; }
ol { padding-left: 1.35rem; }
ol li { padding-left: .35rem; margin-bottom: .45rem; }
.small { color: var(--muted); font-size: .92rem; }

.site-footer { margin-top: 3rem; padding: 3rem 0; color: #f8fbf3; background: var(--ink); }
.site-footer .small { color: #c7ddd2; }
.site-footer a { color: #d7eee1; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.document-page { width: min(900px, calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0 5rem; }
.document-tools { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.document-tools button { padding: .55rem .9rem; color: var(--teal); background: transparent; border: 1px solid var(--teal); border-radius: 999px; font: inherit; cursor: pointer; }
.document-tools button:hover { color: #fff; background: var(--teal); }
.document-page article { padding: 2.5rem clamp(1.25rem, 5vw, 4rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.document-page h1 { max-width: none; margin-top: 2rem; font-size: clamp(2rem, 5vw, 3.6rem); }
.document-page h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.document-page h3 { margin-top: 2rem; }
.document-page hr { margin: 2.5rem 0; border: 0; border-top: 1px solid var(--line); }
.document-page table { width: 100%; margin: 1.25rem 0; border-collapse: collapse; }
.document-page td { padding: .65rem; border: 1px solid var(--line); vertical-align: top; }
.document-page li { margin: .35rem 0; }

@media print {
  .document-page { width: 100%; padding: 0; }
  .document-tools { display: none; }
  .document-page article { padding: 0; border: 0; box-shadow: none; }
  .document-page h1 { color: #000; }
  .document-page h2 { color: #000; }
}

@media (max-width: 760px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  nav ul { gap: .35rem .7rem; }
  .hero, .home-hero { padding: 4rem 0; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .enrollment-detail { margin-top: 3rem; }
  .photo { max-height: 420px; }
  .fact-list { margin-top: -1.5rem; }
  .fact-list li { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-list li:last-child { border-bottom: 0; }
  .photo-card:nth-child(2) { transform: none; }
  .document-tools { align-items: flex-start; flex-direction: column; }
  .review-item { grid-template-columns: 1fr; gap: .7rem; padding: 1.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
}
