:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #17171b;
  --muted: #575c68;
  --line: #ddd6ca;
  --accent: #b28a52;
  --accent-dark: #7f6135;
  --navy: #1f2f4a;
  --shadow: 0 16px 40px rgba(23, 23, 27, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f5f0 0%, #f4efe7 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(178, 138, 82, 0.14);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
  max-width: 720px;
}
.section-head h2, .section-head h1 { 
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 245, 240, 0.88);
  border-bottom: 1px solid rgba(31, 47, 74, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand img {
  width: 60px;
  height: auto;
  border-radius: 14px;
  background: #fff;
  padding: 0.2rem;
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.menu-toggle {
  display: none;
  border: 0;
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 1.35rem;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 47, 74, 0.18);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 4rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 {
  margin: 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
}
.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-card {
  background: radial-gradient(circle at top, rgba(178, 138, 82, 0.16), transparent 52%), var(--surface);
  border: 1px solid rgba(31, 47, 74, 0.08);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: min(100%, 340px);
  margin: 0 auto 1rem;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.hero-point, .stat, .card, .testimonial, .faq, .contact-card, .service-card, .pricing-note, .uni-card {
  background: var(--surface);
  border: 1px solid rgba(31, 47, 74, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-point {
  padding: 1rem;
}
.hero-point strong { display: block; margin-bottom: 0.25rem; }
.hero-point span { color: var(--muted); font-size: 0.95rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat { padding: 1.35rem; }
.stat strong { display: block; font-size: 2rem; font-family: Georgia, serif; }
.stat span { color: var(--muted); }

.grid-3, .grid-2, .testimonial-grid, .faq-grid, .service-grid, .uni-grid {
  display: grid;
  gap: 1.2rem;
}
.grid-3, .service-grid, .testimonial-grid, .uni-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .service-card, .testimonial, .faq, .contact-card, .pricing-note, .uni-card {
  padding: 1.5rem;
}
.card h3, .service-card h3, .uni-card h3, .testimonial h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}
.card p, .service-card p, .faq p, .uni-card p { margin: 0; color: var(--muted); }
.checklist { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.checklist li + li { margin-top: 0.5rem; }

.band {
  background: linear-gradient(135deg, var(--navy), #233961);
  color: #fff;
  border-radius: 34px;
  padding: 2rem;
}
.band p { color: rgba(255,255,255,0.8); }
.band .btn-secondary { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: #fff; }

.people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.person {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
  border: 1px solid rgba(31, 47, 74, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.person small {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.person p { color: var(--muted); margin: 0; }

.people-cards {
  align-items: start;
}
.person-card {
  text-align: center;
}
.person-photo {
  width: min(100%, 280px);
  height: 280px;
  object-fit: contain;
  object-position: center center;
  background: #f8f6f2;
  border-radius: 22px;
  margin: 0 auto 1rem;
  box-shadow: 0 12px 28px rgba(23, 23, 27, 0.10);
  padding: 0.35rem;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1.03rem;
}
.testimonial .source {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}
.contact-card p { color: var(--muted); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label { font-weight: 700; font-size: 0.95rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
}
.field textarea { min-height: 160px; resize: vertical; }
.field.full { grid-column: 1 / -1; }
.helper { color: var(--muted); font-size: 0.92rem; }
.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(31, 47, 74, 0.08);
  padding-top: 1.5rem;
}
.muted-link { color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid,
  .contact-layout,
  .grid-3,
  .service-grid,
  .testimonial-grid,
  .uni-grid,
  .grid-2,
  .faq-grid,
  .people,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 47, 74, 0.08);
  }
  .nav-links.open { display: flex; }
  .hero,
  .section { padding: 3.5rem 0; }
  .stats,
  .grid-3,
  .service-grid,
  .testimonial-grid,
  .uni-grid,
  .grid-2,
  .faq-grid,
  .people,
  .hero-points,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .brand-text span { display: none; }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .section-head h2, .section-head h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
}


.person-card img[src*="vanessa"] {
  object-position: center 42%;
}

.person-card img[src*="kristen"] {
  object-position: center 35%;
}

.hidden { display: none; }


.brand-logo {
  width: auto;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.hero--inner {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
}

.contact-list p {
  margin: 0 0 0.85rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #1c1c1c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.hidden { display: none; }

@media (max-width: 800px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo {
    height: 56px;
  }
}


.section-accent {
  background: linear-gradient(180deg, rgba(248,246,242,0.9) 0%, rgba(255,255,255,1) 100%);
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
}

.plain-list li + li {
  margin-top: 0.55rem;
}

.center {
  text-align: center;
  justify-content: center;
}

.subtle {
  color: #5f5a52;
  margin-bottom: 1rem;
}

.role-line {
  display: inline-block;
  margin-top: 0.2rem;
  color: #6d6458;
  font-size: 0.9rem;
}
