/* ── RESET & ROOT ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0E1E2E;
  --glass:   #B8D4E3;
  --gold:    #C9A84C;
  --offwhite:#F6F4F0;
  --mid:     #6B7A8A;
  --dark:    #1C2E3E;
  --white:   #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

/* ── UTILITY ─────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.serif { font-family: 'Playfair Display', Georgia, serif; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  max-width: 620px;
  margin-bottom: 48px;
}
.section-heading.light { color: var(--white); }

/* ── NAV ─────────────────────────────────── */
nav {
  background: var(--navy);
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--dark); }

/* ── PAGE HERO (service/suburb pages) ───── */
.page-hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero .glass-pane {
  position: absolute;
  top: -40px; right: -80px;
  width: 400px; height: 480px;
  border: 1.5px solid rgba(184,212,227,0.2);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(184,212,227,0.06) 0%, rgba(184,212,227,0.01) 100%);
  transform: rotate(6deg);
  pointer-events: none;
}
.page-hero .glass-pane::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184,212,227,0.1);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--glass); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-pill {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-pill::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ── INTRO SPLIT ─────────────────────────── */
.intro-split {
  padding: 88px 24px;
  background: var(--white);
}
.intro-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-split h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-split p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(14,30,46,0.08);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.benefit-item:hover { border-color: var(--gold); }
.benefit-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.benefit-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.benefit-text p { font-size: 0.82rem; color: var(--mid); margin: 0; line-height: 1.5; }

/* ── HOW IT WORKS ────────────────────────── */
.how-it-works {
  padding: 88px 24px;
  background: var(--navy);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: rgba(184,212,227,0.15);
}
.step-item { padding-right: 20px; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  background: var(--dark);
  border: 1px solid rgba(184,212,227,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.step-item h3 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.step-item p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── FILM OPTIONS ────────────────────────── */
.film-options {
  padding: 88px 24px;
  background: var(--offwhite);
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: rgba(14,30,46,0.07);
  margin-top: 48px;
}
.film-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background 0.2s;
}
.film-card:hover { background: var(--navy); }
.film-card:hover h3,
.film-card:hover p { color: var(--white); }
.film-card:hover .film-tag { background: rgba(255,255,255,0.1); color: var(--gold); }
.film-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: all 0.2s;
}
.film-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.film-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.65; transition: color 0.2s; }

/* ── FAQ ─────────────────────────────────── */
.faq-section {
  padding: 88px 24px;
  background: var(--white);
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--offwhite);
  border: 1px solid rgba(14,30,46,0.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-question:hover { background: rgba(14,30,46,0.03); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(14,30,46,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── CTA BAND ────────────────────────────── */
.cta-band {
  padding: 88px 24px;
  background: var(--navy);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }

/* ── RELATED PAGES ───────────────────────── */
.related-pages {
  padding: 72px 24px;
  background: var(--offwhite);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(14,30,46,0.07);
  margin-top: 36px;
}
.related-card {
  background: var(--white);
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.related-card:hover { background: var(--navy); }
.related-card:hover h4,
.related-card:hover p,
.related-card:hover .related-arrow { color: var(--white); }
.related-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.related-card p { font-size: 0.82rem; color: var(--mid); transition: color 0.2s; }
.related-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 12px;
  display: block;
  transition: color 0.2s;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  padding: 56px 24px 32px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 0.84rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1080px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .intro-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── MOBILE NAV DROPDOWN ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  pointer-events: none;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 16px 24px 24px;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 12px;
  border: none !important;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex !important; }
}
@media (max-width: 600px) {
  .page-hero { padding: 56px 20px 52px; }
  .steps-row { grid-template-columns: 1fr; }
  .page-hero .glass-pane { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
