/* ---------- tokens ---------- */
:root {
  --navy: #16233f;
  --navy-deep: #0f1a30;
  --navy-light: #24365c;
  --gold: #c6a15b;
  --gold-light: #e4cd9a;
  --cream: #faf7f1;
  --ink: #1c2029;
  --gray: #5b6472;
  --line: #e7e1d4;
  --max: 1120px;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(15, 26, 48, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
}

section { padding: 76px 0; }
section.tight { padding: 48px 0; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 22px rgba(198,161,91,0.35); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); }

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,241,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: auto; }
.brand img.brand-wordmark { width: 190px; height: auto; }
.brand-text { line-height: 1.1; }
.brand-text .name { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1.12rem; color: var(--navy); }
.brand-text .tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active,
.nav-links a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 65%);
  color: #f4ede1;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(198,161,91,0.18), transparent 55%);
}
.hero .wrap {
  position: relative;
  padding: 96px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.1rem); }
.hero .lead { color: rgba(244,237,225,0.85); font-size: 1.12rem; max-width: 520px; }
.hero .actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 22px;
}
.stat-card .num { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: var(--gold-light); }
.stat-card .lbl { font-size: 0.85rem; color: rgba(244,237,225,0.75); margin-top: 4px; }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(198,161,91,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.96rem; margin: 0; }

.service-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.service-list h3 {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.service-list ul { list-style: none; margin: 0; padding: 0; }
.service-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.service-list li.sub {
  padding-left: 22px;
  color: var(--gray);
  font-size: 0.88rem;
  border-bottom: none;
}
.service-list li.sub::before { content: "—"; color: var(--gray); }

/* ---------- band ---------- */
.band {
  background: var(--navy);
  color: #f4ede1;
}
.band .section-head p { color: rgba(244,237,225,0.75); }
.band h2 { color: #fff; }

.testify-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- team ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-body { padding: 22px 24px 26px; }
.team-body h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-body .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; display: block; }
.team-body p { color: var(--gray); font-size: 0.93rem; }

.team-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--gray);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  background: rgba(198,161,91,0.08);
  border-radius: 0 8px 8px 0;
}

/* ---------- testimonials ---------- */
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial .quote { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 14px; }
.testimonial .who { font-weight: 700; font-size: 0.95rem; }
.testimonial .school { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ---------- timeline / history ---------- */
.history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.history-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.history-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- form ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.toggle-group {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}
.toggle-group input { display: none; }
.toggle-group label {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.15s ease;
}
.toggle-group input:checked + label {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
}
.field input:focus, .field select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: var(--gray);
  margin: 6px 0 22px;
}
.consent input { margin-top: 3px; }

.form-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--gray);
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}

.includes-list { list-style: none; margin: 0; padding: 0; }
.includes-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list .num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}

/* ---------- footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: rgba(244,237,225,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 34px; }
.footer-brand span { font-family: 'Playfair Display', Georgia, serif; color: #fff; font-size: 1.05rem; }
footer.site h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 10px; font-size: 0.92rem; }
footer.site a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 0;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(244,237,225,0.8); max-width: 640px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .history { grid-template-columns: 1fr; }
  .history-photo { aspect-ratio: 16/9; order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand img.brand-wordmark { width: 150px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .nav.open .nav-links a.book-mobile {
    display: inline-flex;
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    justify-content: center;
    margin-top: 4px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero .wrap { padding-top: 32px; padding-bottom: 56px; }
}
