/* ============================================================
   PRESTIGE CARE SOLUTIONS — Premium Website Stylesheet
   Brand: Navy & Gold | Private hospital aesthetic
   ============================================================ */

/* --- Google Fonts loaded in HTML head --- */

:root {
  --navy: #0A1628;
  --dark-blue: #1B2D4F;
  --gold: #C9A84C;
  --warm-gold: #D4AF37;
  --off-white: #FAF8F0;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --cream: #FAF8F0;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.14);
  --radius: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 3.1rem; letter-spacing: 0.015em; }
h2 { font-size: 2.4rem; letter-spacing: 0.015em; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.15rem; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--warm-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10,22,40,0.98);
  border-bottom-color: rgba(201,168,76,0.18);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo .shield {
  width: 38px;
  height: 46px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--off-white);
  letter-spacing: 0.06em;
}

.nav-logo-text .brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,245,245,0.8);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 5px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--warm-gold);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, #0f2035 50%, var(--dark-blue) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 75% 60%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 30%, rgba(27,45,79,0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle geometric overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.3) 60px,
    rgba(201,168,76,0.3) 61px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-content .section-label {
  margin-bottom: 16px;
}

.hero-content h1 {
  color: var(--off-white);
  font-size: 3.3rem;
  margin-bottom: 28px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content .lead {
  font-size: 1.08rem;
  color: rgba(245,245,245,0.7);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 480px;
  font-weight: 400;
}

.hero-content .tagline {
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  flex-shrink: 0;
  position: relative;
}

.hero-photo .photo-frame {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.1), var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.hero-photo .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Gold corner accents on hero */
.hero .corner-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(201,168,76,0.2);
  border-style: solid;
  z-index: 2;
}
.hero .corner-accent.tl { top: 100px; left: 40px; border-width: 1.5px 0 0 1.5px; }
.hero .corner-accent.br { bottom: 40px; right: 40px; border-width: 0 1.5px 1.5px 0; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 26px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS (General)
   ============================================================ */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--off-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--off-white);
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 20px;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(245,245,245,0.65);
}

/* Gold divider with diamond */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto;
  width: 120px;
}

.gold-divider .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.gold-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES (What We Do)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WHY PRESTIGE (3-column)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote-section {
  padding: 96px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote-section::before {
  content: '\201C';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(201,168,76,0.05);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-style: italic;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.pull-quote-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 28px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

/* ============================================================
   COORDINATOR CTA
   ============================================================ */
.coordinator-cta {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 88px;
}

.coordinator-cta h3 {
  color: var(--off-white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.coordinator-cta p {
  color: rgba(245,245,245,0.7);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.75;
}

.coordinator-cta .btn {
  flex-shrink: 0;
}

/* ============================================================
   ABOUT — Timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.section-dark .timeline-dot {
  border-color: var(--navy);
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-dark .timeline-desc {
  color: rgba(245,245,245,0.6);
}

/* ============================================================
   CREDENTIALS GRID
   ============================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(201,168,76,0.04);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.1);
}

.credential-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item span {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.section-dark .credential-item {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.12);
}

.section-dark .credential-item span {
  color: rgba(245,245,245,0.8);
}

/* ============================================================
   SERVICES PAGE — Detailed
   ============================================================ */
.service-detail {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-detail h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-detail p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}

.service-detail .ndis-codes {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.step {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   COORDINATORS PAGE — Trust Points
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.trust-point:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
}

.trust-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.trust-point h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.trust-point p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info {
  padding: 48px 0;
}

.contact-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.08);
  overflow: hidden;
  margin-bottom: 28px;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-item a {
  color: var(--navy);
  transition: color var(--transition);
}

.contact-detail-item a:hover {
  color: var(--gold);
}

.contact-areas {
  padding: 22px 24px;
  background: rgba(201,168,76,0.05);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.12);
}

.contact-areas + .contact-areas {
  margin-top: 16px;
}

.contact-areas h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-areas p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
}

.contact-form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .tagline {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.5);
  line-height: 1.65;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,245,245,0.6);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(245,245,245,0.4);
  letter-spacing: 0.02em;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
}

.footer-bottom .legal span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(245,245,245,0.35);
}

/* ============================================================
   PAGE HERO (Internal pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark-blue) 100%);
  padding: 150px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.3) 60px,
    rgba(201,168,76,0.3) 61px
  );
  pointer-events: none;
}

.page-hero h1 {
  color: var(--off-white);
  font-size: 2.85rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(245,245,245,0.65);
  font-size: 1.05rem;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   COVERAGE AREAS
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.coverage-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.03);
  transition: all var(--transition);
}

.coverage-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
}

.coverage-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.coverage-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: if JS doesn't load or observer doesn't fire, show content */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .stagger {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(10,22,40,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 20px;
  position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  transition: all var(--transition);
}

.faq-question .faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.open .faq-question {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 28px 0;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ============================================================
   CAREERS / JOIN TEAM
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px 28px;
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.expectation-list {
  max-width: 700px;
  margin: 0 auto;
}

.expectation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

.expectation-item:last-child {
  border-bottom: none;
}

.expectation-item .exp-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}

.expectation-item p {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.expectation-item strong {
  color: var(--navy);
}

/* Stat row for coordinators */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.mobile-nav-overlay a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--off-white);
}

/* --- Grid variants --- */
.services-grid-4col { grid-template-columns: repeat(4, 1fr); }
.steps-grid-5col { grid-template-columns: repeat(5, 1fr); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid-4col { grid-template-columns: repeat(2, 1fr); }
  .steps-grid-5col { grid-template-columns: repeat(3, 1fr); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .hero-content { max-width: 100%; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .hero-photo .photo-frame {
    width: 260px;
    height: 260px;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .coordinator-cta {
    flex-direction: column;
    text-align: center;
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 110px 0 56px; }
  .hero-inner { gap: 40px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content .lead { font-size: 0.95rem; }

  .hero-photo .photo-frame {
    width: 220px;
    height: 220px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4col { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid-5col { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .trust-strip-inner {
    flex-direction: column;
    gap: 8px;
  }
  .trust-strip { padding: 18px 0; }
  .trust-divider { display: none; }

  .service-detail {
    flex-direction: column;
    gap: 16px;
    padding: 36px 0;
  }

  .service-detail-icon {
    width: 44px;
    height: 44px;
  }

  .pull-quote { font-size: 1.3rem; }
  .pull-quote-section { padding: 64px 0; }

  .page-hero { padding: 120px 0 64px; }
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero p { font-size: 0.95rem; margin-top: 14px; }

  .contact-form-card { padding: 28px; }
  .contact-info { padding: 28px 0; }

  .coordinator-cta { padding: 36px 24px; margin-top: 56px; }

  .faq-question { padding: 22px 0; font-size: 0.95rem; }

  .site-footer { padding: 48px 0 0; }
  .footer-brand p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.2rem; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-label { font-size: 0.7rem; margin-bottom: 12px; }

  .hero { padding: 100px 0 48px; }
  .hero-inner { gap: 32px; }
  .hero-content h1 { font-size: 1.9rem; margin-bottom: 20px; }
  .hero-content .lead { font-size: 0.9rem; line-height: 1.65; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-photo .photo-frame { width: 180px; height: 180px; }
  .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.82rem; }

  .trust-strip { padding: 14px 0; }
  .trust-strip-inner { gap: 6px; }
  .trust-item { font-size: 0.72rem; }

  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 1.15rem; }

  .why-card { padding: 28px 20px; }

  .stat-row { gap: 12px; margin-bottom: 48px; }
  .stat-card { padding: 24px 12px; }
  .stat-number { font-size: 2rem; }

  .pull-quote { font-size: 1.15rem; }
  .pull-quote-section { padding: 48px 0; }

  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.88rem; line-height: 1.65; }

  .contact-form-card { padding: 22px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { font-size: 0.8rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 14px; font-size: 0.9rem; }

  .coordinator-cta { padding: 32px 20px; margin-top: 40px; border-radius: 8px; }
  .coordinator-cta h3 { font-size: 1.25rem; }

  .trust-point { padding: 20px; gap: 14px; }
  .trust-grid { gap: 16px; }

  .coverage-card { padding: 20px; }

  .faq-question { padding: 18px 0; font-size: 0.9rem; }
  .faq-answer p { font-size: 0.88rem; }

  .site-footer { padding: 36px 0 0; }
  .footer-inner { gap: 24px; }
  .footer-col h4 { font-size: 0.85rem; margin-bottom: 12px; }
  .footer-col a { font-size: 0.85rem; }
  .footer-bottom { padding: 20px 0; margin-top: 28px; }
  .footer-bottom p { font-size: 0.75rem; }
  .footer-bottom .legal { font-size: 0.7rem; }

  .gold-divider { margin: 16px auto 0; }

  /* About page founder section inline flex fix */
  .section-light > .container > div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    text-align: center;
  }

  .timeline { padding-left: 28px; }
  .credential-grid { gap: 12px; }
  .credential-item { padding: 14px 16px; }

  /* Careers page inline styles override */
  .value-card { padding: 32px 24px !important; }
  .expectation-item { padding: 18px 0 !important; gap: 16px !important; }
  .careers-cta { padding: 64px 0 !important; }
}
