@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --navy:    #1a3a52;
  --forest:  #2c5f4d;
  --beige:   #d4c5a9;
  --cream:   #faf8f3;
  --white:   #ffffff;
  --charcoal:#2d2d2d;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: 5rem 0;
  --radius: 4px;
  --transition: 0.22s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.75; font-size: 1rem; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.section { padding: var(--section-pad); }
.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.section--navy .section-label,
.section--forest .section-label { color: var(--beige); }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--navy); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--forest h1,
.section--forest h2,
.section--forest h3 { color: var(--white); }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.8; color: #444; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn-primary   { background: var(--navy);   color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: #15303f; border-color: #15303f; }
.btn-forest    { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-forest:hover { background: #234e3e; border-color: #234e3e; }
.btn-outline   { background: transparent;  color: var(--navy);  border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light     { background: var(--white);  color: var(--navy);  border-color: var(--white); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); }

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-brand .brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.88rem;
}
.nav-links a.btn-primary {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero (Home) ─── */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  padding: 0;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  min-height: 600px;
  padding: 5rem 0;
}
.hero h1 { color: var(--navy); margin-bottom: 0.5rem; }
.hero .hero-role {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #555;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  text-wrap: balance;
}
.hero .hero-body {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 2.25rem;
}
.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--beige);
  margin-bottom: 2rem;
  border-radius: 2px;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
  box-shadow: 0 12px 48px rgba(26,58,82,0.18);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─── Photo break ─── */
.photo-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,58,82,0.72) 0%,
    rgba(26,58,82,0.45) 60%,
    rgba(26,58,82,0.2) 100%
  );
  display: flex;
  align-items: center;
}
.photo-break-text {
  max-width: 560px;
  padding: 0 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--white);
}
.photo-break-text blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: var(--white);
}
.photo-break-text .quote-attr {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige);
  font-weight: 600;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.page-hero.has-photo {
  padding: 6rem 0;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,82,0.78);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .page-hero-sub {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--beige);
  margin-top: 0.75rem;
}

/* ─── About: photo background section ─── */
.section-photo-bg {
  position: relative;
  overflow: hidden;
}
.section-photo-bg .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.section-photo-bg .section-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,82,0.82);
  z-index: 1;
}
.section-photo-bg .container {
  position: relative;
  z-index: 2;
}
.section-photo-bg h2,
.section-photo-bg h3 { color: var(--white); }
.section-photo-bg p   { color: rgba(255,255,255,0.85); }
.section-photo-bg .section-rule { background: var(--beige); }
.section-photo-bg .distinction-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); }
.section-photo-bg .distinction-box h3 { color: var(--beige); }
.section-photo-bg .lead { color: rgba(255,255,255,0.9); }

/* ─── Audience Section ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.audience-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--beige);
}
.audience-item .audience-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.audience-item .audience-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ─── Cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.cards-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border-top: 3px solid var(--forest);
}
.cards-grid--4col .card {
  padding: 1.75rem 1.5rem;
}
.card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.card p  { font-size: 0.97rem; color: #555; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  border-left: 4px solid var(--beige);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--beige);
  line-height: 1;
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  opacity: 0.7;
}
.testimonial blockquote {
  font-style: italic;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.8;
  padding-top: 1.5rem;
}
.testimonial .attribution {
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial .attribution a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(10,37,64,0.35);
  transition: text-decoration-color 0.2s;
}
.testimonial .attribution a:hover {
  text-decoration-color: var(--navy);
}

/* ─── CTA Band ─── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ─── About: Bio layout ─── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,58,82,0.15);
  position: sticky;
  top: 100px;
}
.bio-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.discipline-list { margin-top: 2rem; }
.discipline-item {
  border-left: 3px solid var(--beige);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.discipline-item h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.5rem; }
.discipline-item p  { font-size: 0.97rem; color: #555; }

.distinction-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
}
.distinction-box h3 { color: var(--beige); margin-bottom: 1rem; font-size: 1.2rem; }
.distinction-box p  { color: rgba(255,255,255,0.85); }

/* ─── Services: Do/Don't ─── */
.do-dont {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-top: 2.5rem;
}
.do-dont-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.do-dont-heading {
  padding: 1.5rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.do-dont-heading.do-head  { background: var(--forest); color: var(--white); }
.do-dont-heading.dont-head { background: var(--navy);   color: var(--beige); }

.do-dont-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.do-dont-row:last-child .do-cell,
.do-dont-row:last-child .dont-cell { border-bottom: none; }

.do-cell, .dont-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-size: 0.97rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.do-cell   { background: var(--forest); color: var(--white); }
.dont-cell { background: var(--navy);   color: var(--white); }
.dont-cell.empty { background: var(--navy); }

.do-cell .mark, .dont-cell .mark {
  flex-shrink: 0;
  color: var(--beige);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.distinction-callout {
  background: var(--cream);
  border: 2px solid var(--beige);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
}
.distinction-callout p {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 400;
  font-style: normal;
  color: #555;
  line-height: 1.75;
  text-align: left;
}

/* ─── Package Cards ─── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.package-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
}
.package-card-header h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.package-card-header .package-sub {
  color: var(--beige);
  font-size: 0.88rem;
  font-style: italic;
}
.package-card-body {
  padding: 2rem;
  flex: 1;
}
.package-card-body ul {
  list-style: none;
}
.package-card-body ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.97rem;
  color: #555;
  border-bottom: 1px solid var(--cream);
}
.package-card-body ul li:last-child { border-bottom: none; }
.package-card-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--beige);
}

/* ─── What's Included ─── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.included-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--beige);
}
.included-item .included-icon {
  margin-bottom: 1rem;
  color: var(--navy);
  opacity: 0.75;
}
.included-item h4 { font-size: 1rem; color: var(--navy); }

/* ─── Who This Is For ─── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.fit-box {
  padding: 2rem;
  border-radius: var(--radius);
}
.fit-box.good  { background: var(--white); border-top: 3px solid var(--forest); }
.fit-box.less  { background: var(--white); border-top: 3px solid var(--beige); }
.fit-box h3    { margin-bottom: 1rem; font-size: 1.05rem; }
.fit-box.good h3 { color: var(--forest); }
.fit-box.less h3 { color: #888; }
.fit-box ul li {
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid var(--cream);
}
.fit-box ul li:last-child { border-bottom: none; }
.fit-box.good ul li::before { content: '✓'; position: absolute; left: 0; color: var(--forest); }
.fit-box.less ul li::before { content: '·'; position: absolute; left: 0; color: #aaa; }

/* ─── FAQ Accordion ─── */
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--beige); }
.accordion-item { border-bottom: 1px solid var(--beige); }
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--forest); }
.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.85rem;
  color: var(--navy);
}
.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.accordion-content.open { grid-template-rows: 1fr; }
.accordion-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.28s ease;
}
.accordion-content.open .accordion-inner { padding-bottom: 1.75rem; }
.accordion-inner p  { color: #555; font-size: 0.97rem; margin-bottom: 0.75rem; }
.accordion-inner p:last-child { margin-bottom: 0; }
.accordion-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #555;
  font-size: 0.97rem;
}
.accordion-inner ul li { margin-bottom: 0.4rem; }

/* ─── Steps (Get Started) ─── */
.steps { margin-top: 2.5rem; counter-reset: steps; }
.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.step-content h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-content p  { color: #555; font-size: 0.97rem; }

/* ─── Get Started Split ─── */
.gs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.gs-left {
  position: sticky;
  top: 100px;
}
.gs-left .what-to-expect {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--beige);
}
.gs-left .what-to-expect h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.gs-right {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.gs-right .form-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.gs-right .form-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .gs-split { grid-template-columns: 1fr; gap: 0; }
  .gs-left { position: static; order: 2; }
  .gs-right { padding: 2rem 0; background: none; order: 1; }
}

/* ─── Contact Form ─── */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,82,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── Password Gate ─── */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.password-gate-box {
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.password-gate-box .gate-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.password-gate-box .gate-sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.password-gate-box .gate-rule {
  width: 40px;
  height: 2px;
  background: var(--beige);
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}
.password-gate-box p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.gate-input-row {
  display: flex;
  gap: 0.75rem;
}
.gate-input-row input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}
.gate-input-row input:focus {
  outline: none;
  border-color: var(--navy);
}
.gate-error {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #b94444;
  min-height: 1.2em;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0;
  text-align: center;
}
.site-footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.site-footer .footer-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.site-footer .footer-links a:hover { color: var(--white); }
.site-footer .footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Decorative rule ─── */
.section-rule {
  width: 48px;
  height: 3px;
  background: var(--beige);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.text-center .section-rule { margin-left: auto; margin-right: auto; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 0; }

  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--beige);
    padding: 1rem 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--cream); font-size: 1rem; }
  .nav-links a.btn { border: none; padding: 0.75rem 0; background: none; color: var(--navy); }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  /* Hero: photo on top, cropped narrow, text below */
  .hero-split { grid-template-columns: 1fr; gap: 0; padding: 0; min-height: auto; }
  .hero-text { order: 2; padding: 2.5rem 0 3rem; }
  .hero-photo { order: 1; height: 200px; border-radius: 0; box-shadow: none; }
  .hero-photo img { object-position: center 80%; }
  .hero-divider { margin-left: 0; }
  .photo-break { height: 240px; }

  /* 4-col cards → 2×2 */
  .cards-grid--4col { grid-template-columns: 1fr 1fr; }

  /* About bio */
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { position: static; max-width: 280px; margin: 0 auto; }

  /* Do/Don't: show all Do items first, then all Don't */
  .do-dont { display: flex; flex-direction: column; }
  .do-dont-header-row { display: contents; }
  .do-dont-row { display: contents; }
  .do-dont-heading.do-head  { order: 1; }
  .do-cell                  { order: 2; }
  .do-dont-heading.dont-head { order: 10; margin-top: 2rem; }
  .dont-cell                { order: 11; }

  /* What's Included: single column, centered */
  .included-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

  .fit-grid { grid-template-columns: 1fr; }
  .step { gap: 1.25rem; }
  .step-num { width: 40px; height: 40px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--4col { grid-template-columns: 1fr 1fr; }
}
