/* ═══════════════════════════════════════════════════
   SINGH HAUSTECHNIK — Shared Stylesheet
   Colors: Navy #192A30 · Gold #BEB391 · Sage #B5B490
═══════════════════════════════════════════════════ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* TOKENS */
:root {
  --navy:         #192A30;
  --navy-2:       #1F3540;
  --navy-3:       #243C48;
  --gold:         #BEB391;
  --gold-2:       #D4C9A8;
  --gold-3:       #A89D7E;
  --sage:         #B5B490;
  --cream:        #EDE8DC;
  --cream-2:      #E4DECE;
  --cream-3:      #D6D0C2;
  --text-dark:    #192A30;
  --text-mid:     #4A5A62;
  --text-muted:   #7A8E96;
  --text-light:   #EDE8DC;
  --text-light-2: rgba(237,232,220,.62);
  --border-light: rgba(25,42,48,.1);
  --border-dark:  rgba(237,232,220,.13);
  --easing:       cubic-bezier(.25,.46,.45,.94);
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; flex-shrink: 0; }

/* LAYOUT */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; width: 100%; }
.section    { padding: 100px 0; }

/* ── LIQUID GLASS NAVBAR ───────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(25,42,48,.22);
  backdrop-filter: blur(18px) saturate(1.8) brightness(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.8) brightness(1.12);
  border-bottom: 1px solid rgba(190,179,145,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 2px 24px rgba(25,42,48,.12);
  transition: background .45s var(--easing), border-color .45s var(--easing), box-shadow .45s var(--easing);
}
.navbar.scrolled {
  background: rgba(25,42,48,.92);
  backdrop-filter: blur(30px) saturate(2) brightness(.95);
  -webkit-backdrop-filter: blur(30px) saturate(2) brightness(.95);
  border-bottom: 1px solid rgba(190,179,145,.22);
  box-shadow: 0 4px 32px rgba(25,42,48,.25);
}
/* on light-bg pages, start with navy glass */
.navbar.light-start {
  background: rgba(25,42,48,.92);
  backdrop-filter: blur(30px) saturate(2) brightness(.95);
  -webkit-backdrop-filter: blur(30px) saturate(2) brightness(.95);
  border-bottom: 1px solid rgba(190,179,145,.22);
  box-shadow: 0 4px 32px rgba(25,42,48,.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav-logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(190,179,145,.55);
  background: rgba(190,179,145,.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
}
.nav-brand {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-light); transition: color .3s;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin-right: 32px; }
.nav-links a {
  font-size: .73rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(237,232,220,.78); transition: color .2s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:focus-visible { color: var(--gold); outline: none; }

/* Dropdown */
.nav-dropdown { position: relative; }

/* invisible bridge fills the gap so diagonal mouse movement never breaks hover */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 20px;          /* matches the gap below */
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px); /* gap filled by ::after bridge */
  right: 0;              /* right-aligned with the trigger word */
  left: auto;
  background: rgba(237,232,220,.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(190,179,145,.3);
  box-shadow: 0 12px 48px rgba(25,42,48,.14);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s var(--easing), transform .22s var(--easing);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 13px 22px;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-mid) !important;
  border-bottom: 1px solid var(--border-light);
  transition: background .15s, color .15s, padding-left .15s !important;
  font-family: 'Josefin Sans', sans-serif;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background: rgba(25,42,48,.05);
  color: var(--navy) !important;
  padding-left: 28px;  /* subtle slide-in on hover */
}

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 22px;
  transition: all .25s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-2); border-color: var(--gold-2); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 12px;
  min-width: 48px; min-height: 48px; justify-content: center;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-light); transition: all .3s;
}
/* burger stays light — navbar is always dark-tinted */
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(237,232,220,.94);
  backdrop-filter: blur(28px) saturate(2);
  -webkit-backdrop-filter: blur(28px) saturate(2);
  border-bottom: 1px solid rgba(190,179,145,.3);
  display: flex; flex-direction: column;
  z-index: 299;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .35s var(--easing), opacity .35s var(--easing);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid);
  padding: 16px 32px;
  min-height: 48px; display: flex; align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--navy); background: rgba(25,42,48,.04); }
.mobile-menu .mob-sub {
  padding-left: 48px;
  font-size: .7rem;
  color: var(--text-muted);
}
.mobile-menu a.cta-mob {
  color: var(--navy); background: var(--gold);
  margin: 16px 24px; text-align: center;
  border: none; font-weight: 600;
}
.mobile-menu a.cta-mob:hover { background: var(--gold-2); }

/* ── PAGE HERO (subpages) ──────────────────────── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-start;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-color: var(--navy);           /* fallback until image loads */
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(25,42,48,.92) 0%,
    rgba(25,42,48,.70) 55%,
    rgba(25,42,48,.35) 100%
  );
}
.page-hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, rgba(25,42,48,.6), transparent);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 120px 0 72px;
  max-width: 680px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .67rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 22px;
  opacity: 0; animation: fadeUp .7s var(--easing) .2s forwards;
}
.page-hero-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: currentColor; flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 200; letter-spacing: .03em;
  color: var(--text-light); line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s var(--easing) .35s forwards;
}
.page-hero h1 strong { font-weight: 700; display: block; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--text-light-2); line-height: 1.85;
  max-width: 520px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .8s var(--easing) .5s forwards;
}
.page-hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp .8s var(--easing) .65s forwards;
}
/* decorative mark — hidden on all viewports */
.page-hero-mark { display: none; }

/* ── SUBPAGE INTRO (2-col editorial) ──────────── */
.sp-intro {
  background: var(--cream);
  padding: 96px 0 80px;
}
.sp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.sp-intro-lead {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 200; line-height: 1.55; letter-spacing: .01em;
  color: var(--text-dark); margin-bottom: 28px;
}
.sp-intro-lead strong { font-weight: 700; color: var(--navy); }
.sp-intro-body {
  font-size: .9rem; font-weight: 300;
  color: var(--text-muted); line-height: 2;
  margin-bottom: 36px;
}
.sp-checklist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.sp-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem; font-weight: 400;
  color: var(--text-dark); line-height: 1.55;
}
.sp-checklist li:first-child { border-top: 1px solid var(--border-light); }
.sp-checklist-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.sp-checklist-icon svg { width: 11px; height: 11px; color: var(--gold); }
.sp-checklist-right-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .67rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.sp-checklist-right-label::before {
  content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0;
}

/* ── SUBPAGE SERVICES (navy bg grid) ──────────── */
.sp-services {
  background: var(--navy);
  padding: 88px 0 80px;
}
.sp-services-header {
  margin-bottom: 56px;
}
.sp-services-header .section-title { color: var(--text-light); }
.sp-services-header .section-title strong { color: var(--gold); }
.sp-services-header .section-sub { color: var(--text-light-2); }
.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.sp-card {
  padding: 40px 36px;
  background: rgba(25,42,48,.6);
  position: relative;
  transition: background .25s;
}
.sp-card:hover { background: var(--navy-2); }
.sp-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .35s var(--easing);
}
.sp-card:hover::after { width: 100%; }
.sp-card-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; color: var(--sage);
  margin-bottom: 16px;
}
.sp-card-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--gold); letter-spacing: .02em;
  line-height: 1.35; margin-bottom: 10px;
}
.sp-card-desc {
  font-size: .83rem; font-weight: 300;
  color: var(--text-light-2); line-height: 1.8;
}

/* ── SUBPAGE WHY US ───────────────────────────── */
.sp-why {
  background: var(--cream-2);
  padding: 88px 0 80px;
}
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-light);
}
.sp-why-item {
  padding: 52px 44px;
  border-right: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.sp-why-item:last-child { border-right: none; }
.sp-why-item::before {
  content: attr(data-num);
  position: absolute; top: 28px; right: 32px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(25,42,48,.04); line-height: 1;
  pointer-events: none;
}
.sp-why-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
  letter-spacing: .02em;
}
.sp-why-title::before {
  content: attr(data-num) '. ';
  color: var(--gold);
}
.sp-why-desc {
  font-size: .875rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85;
}

/* ── SECTION TYPOGRAPHY ────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .67rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 18px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

.section-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 200; letter-spacing: .03em;
  line-height: 1.12; color: var(--text-dark); margin-bottom: 20px;
}
.section-title strong { font-weight: 700; }
.section-title-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 200; letter-spacing: .03em;
  line-height: 1.12; color: var(--gold); margin-bottom: 20px;
}
.section-title-gold strong { font-weight: 700; }
.section-sub {
  font-size: .92rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85;
}
.section-sub-light {
  font-size: .92rem; font-weight: 300;
  color: var(--text-light-2); line-height: 1.85;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px; display: inline-block;
  min-height: 48px; display: inline-flex; align-items: center;
  transition: all .25s; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn-navy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); background: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 36px; display: inline-block;
  min-height: 48px; display: inline-flex; align-items: center;
  transition: all .25s; cursor: pointer;
}
.btn-navy:hover { background: var(--navy-2); }

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: transparent;
  border: 1px solid var(--navy);
  padding: 13px 34px; display: inline-block;
  min-height: 48px; display: inline-flex; align-items: center;
  transition: all .25s; cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

.btn-ghost-light {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light-2);
  padding: 14px 0;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .25s;
}
.btn-ghost-light:hover { color: var(--text-light); }

/* ── SERVICE FEATURE LIST ──────────────────────── */
.feature-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .875rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.6;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0; margin-top: 10px;
}

/* ── CTA BAND ──────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200; letter-spacing: .04em;
  color: var(--navy); margin-bottom: 14px;
}
.cta-band h2 strong { font-weight: 700; }
.cta-band p {
  font-size: .9rem; font-weight: 300;
  color: rgba(25,42,48,.65);
  margin-bottom: 40px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ── FORM ──────────────────────────────────────── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-group.submit-col { grid-column: span 2; margin-top: 4px; }
.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .64rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(237,232,220,.06);
  border: 1px solid rgba(237,232,220,.14);
  border-bottom-color: rgba(237,232,220,.3);
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-size: .875rem; font-weight: 300;
  padding: 12px 16px; outline: none;
  transition: border-color .25s, background .25s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,232,220,.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(190,179,145,.08);
}
.form-group select { -webkit-appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-2); color: var(--text-light); }
.form-group textarea { min-height: 110px; resize: vertical; }
/* Light form variant (for cream backgrounds) */
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: rgba(25,42,48,.04);
  border: 1px solid rgba(25,42,48,.12);
  border-bottom-color: rgba(25,42,48,.22);
  color: var(--text-dark);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: rgba(25,42,48,.3); }
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus {
  border-color: var(--navy); background: rgba(25,42,48,.04);
}
.form-light .form-group label { color: var(--navy); }

.btn-submit {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 15px 36px; cursor: pointer;
  transition: all .25s; width: 100%;
}
.btn-submit:hover { background: var(--gold-2); border-color: var(--gold-2); }

/* ── FOOTER ────────────────────────────────────── */
footer { background: var(--navy); padding: 80px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-mark {
  width: 34px; height: 34px;
  border: 1px solid rgba(190,179,145,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--gold); }
.footer-brand-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-light);
}
.footer-tagline {
  font-size: .82rem; font-weight: 300;
  color: rgba(237,232,220,.35); line-height: 1.82; max-width: 280px;
}
.footer-col-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: .67rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .82rem; font-weight: 300;
  color: rgba(237,232,220,.38); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem; font-weight: 300;
  letter-spacing: .04em;
  color: rgba(237,232,220,.22);
}
.footer-bottom a { color: rgba(237,232,220,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 28px; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes shimmerSweep {
  0%   { transform: translateX(-100%) skewX(-12deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(200%) skewX(-12deg); opacity: 0; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(190,179,145,0); }
  50%       { box-shadow: 0 0 0 6px rgba(190,179,145,.18); }
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .72s var(--easing), transform .72s var(--easing);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }
.rd5 { transition-delay: .40s; }

/* ── SCROLL PROGRESS BAR ───────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 400;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold), var(--gold-2));
  background-size: 200% auto;
  transition: width .08s linear;
  pointer-events: none;
}

/* ── SECTION LABEL LINE DRAW ───────────────────── */
.section-label::before {
  transition: width .65s var(--easing);
  width: 0;
}
.section-label.line-visible::before { width: 28px; }

/* ── CTA BAND SHIMMER ──────────────────────────── */
.cta-band { overflow: hidden; }
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: shimmerSweep 4.5s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

/* ── STAT CARD TILT ────────────────────────────── */
.stats-grid { perspective: 1200px; }
.stat-card {
  transform-style: preserve-3d;
  transform: rotateX(0) rotateY(0);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
  will-change: transform;
}

/* ── PAGE LOAD FADE ────────────────────────────── */
body { animation: fadeIn .4s ease forwards; }

/* ── BREADCRUMB ────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(237,232,220,.45);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(237,232,220,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(190,179,145,.7); }

/* ── LOGO IMAGES ───────────────────────────────── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── SHARED SVG ICONS (hidden defs) ────────────── */
/* Include in each HTML file's <body> */

/* ── RESPONSIVE ────────────────────────────────── */

/* Tablet & small desktop */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  /* Navbar */
  .nav-links, .nav-cta, .nav-dropdown-menu { display: none; }
  .burger { display: flex; }

  /* Mobile menu — navy-tinted to match navbar */
  .mobile-menu {
    background: rgba(25,42,48,.97);
    backdrop-filter: blur(32px) saturate(2);
    -webkit-backdrop-filter: blur(32px) saturate(2);
  }
  .mobile-menu a { color: rgba(237,232,220,.75); border-bottom-color: rgba(237,232,220,.08); }
  .mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
  .mobile-menu .mob-sub { color: rgba(237,232,220,.42); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full, .form-group.submit-col { grid-column: span 1; }

  /* Subpage layouts */
  .sp-intro { padding: 72px 0 60px; }
  .sp-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-services { padding: 72px 0 60px; }
  .sp-cards-grid { grid-template-columns: 1fr 1fr; }
  .sp-card { padding: 32px 28px; }
  .sp-why { padding: 72px 0 60px; }
  .sp-why-grid { grid-template-columns: 1fr; }
  .sp-why-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 40px 32px; }
  .sp-why-item:last-child { border-bottom: none; }

  /* CTA band */
  .cta-band { padding: 64px 0; }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Hero content */
  .hero-content { padding: 72px 0 48px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer { padding: 60px 0 28px; }

  /* Page hero */
  .page-hero { min-height: 50vh; }
  .page-hero-content { padding: 96px 0 52px; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .page-hero-sub { font-size: .9rem; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Subpage cards */
  .sp-cards-grid { grid-template-columns: 1fr; }
  .sp-intro { padding: 56px 0 48px; }
  .sp-services { padding: 56px 0 48px; }
  .sp-why { padding: 56px 0 48px; }
  .sp-why-item { padding: 36px 24px; }
  .sp-card { padding: 28px 24px; }

  /* Buttons — full width on small screens */
  .btn-gold, .btn-navy, .btn-outline { padding: 13px 28px; min-height: 44px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Section headings */
  .section-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

/* Very small phones (320px) */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .nav-logo-img { height: 38px; }
}

/* ── SHARED JS BEHAVIOURS ──────────────────────── */
/* Navbar, mobile menu, and reveal handled by shared script below */
