/* ═══════════════════════════════════════════════
   URBANFOLD — SHARED STYLESHEET
   Navy #1B2A6B · Gold #C9922A · White #FFFFFF
═══════════════════════════════════════════════ */

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

:root {
  --navy:       #081F63;
  --navy-dark:  #040f3a;
  --navy-mid:   #122d8a;
  --gold:       #C89B3C;
  --gold-light: #dbb355;
  --gold-pale:  #FBF3E3;
  --bg:         #FAF9F6;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --light:      #F0EDE6;
  --border:     #E8E4DC;
  --text:       #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #8888aa;
  --success:    #22c55e;
  --radius:     0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.font-display { font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }

h1,h2,h3,h4 { line-height: 1.15; }

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

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

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.gold-rule.center { margin: 1.25rem auto; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,155,60,0.22);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 28px rgba(200,155,60,0.40); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(8,31,99,0.18);
}
.btn-navy:hover { background: var(--navy-mid); box-shadow: 0 8px 28px rgba(8,31,99,0.30); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

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

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.65rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 0.78rem; }

/* ══════════════════════════════════════
   NAVBAR — Frosted Glass
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,146,42,0.20);
  box-shadow: 0 2px 24px rgba(27,42,107,0.09);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 32px rgba(27,42,107,0.13);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img { height: 60px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0B1537;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  user-select: none;
}
.nav-logo-text span { color: #C89B3C; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(11,21,55,0.70);
  padding: 0.4rem 0.75rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.75rem; right: 0.75rem;
  height: 1.5px;
  background: #C89B3C;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: #C89B3C; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #C89B3C; }
.nav-links a.active::after { transform: scaleX(1); }

/* Dashboard nav item — injected when customer is logged in */
#navDashItem a {
  border: 1.5px solid rgba(201,146,42,0.35);
  border-radius: 4px;
  color: #1B2A6B;
  background: rgba(201,146,42,0.04);
  font-weight: 700;
}
#navDashItem a::after { display: none; }
#navDashItem a:hover {
  border-color: #C89B3C;
  background: rgba(201,146,42,0.1);
  color: #C89B3C;
}
#navDashItem a.active {
  border-color: #C89B3C;
  background: rgba(201,146,42,0.1);
  color: #C89B3C;
}
/* Mobile dashboard link */
#mobDashLink {
  color: #1B2A6B !important;
  font-weight: 700 !important;
  border-bottom: 2px solid rgba(201,146,42,0.22) !important;
}
#mobDashLink.active { color: #C89B3C !important; }
#mobDashLink:hover { color: #C89B3C !important; }

.nav-actions { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }

/* Auth buttons */
.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
  line-height: 1;
  cursor: pointer;
}
.nav-auth-outline {
  border: 1.5px solid #C89B3C;
  color: #C89B3C;
  background: transparent;
}
.nav-auth-outline:hover {
  background: #C89B3C;
  color: #fff;
}
.nav-auth-gold {
  background: #C89B3C;
  color: #fff;
  border: 1.5px solid #C89B3C;
}
.nav-auth-gold:hover {
  background: #a8791f;
  border-color: #a8791f;
  color: #fff;
}
/* Desktop nav: separate Login (outlined) + Sign Up (filled gold) buttons */
.nav-auth-login {
  border: 1.5px solid #0B1537;
  color: #0B1537;
  background: transparent;
  border-radius: 4px;
}
.nav-auth-login:hover {
  background: #0B1537;
  color: #fff;
}
.nav-auth-signup {
  background: #C89B3C;
  color: #fff;
  border: 1.5px solid #C89B3C;
  border-radius: 4px;
}
.nav-auth-signup:hover {
  background: #a8791f;
  border-color: #a8791f;
  color: #fff;
}
.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1.5px solid #C89B3C;
  border-radius: 999px;
  background: rgba(201,155,60,0.04);
  color: #C89B3C;
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.nav-portal-btn:hover {
  background: #C89B3C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,146,42,0.22);
}
.nav-staff-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,21,55,0.38);
  padding: 7px 9px;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-staff-link:hover { color: #C89B3C; }
.nav-staff-sep {
  width: 1px;
  height: 16px;
  background: rgba(11,21,55,0.12);
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0B1537;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: #FAF8F3;
  border-top: 1px solid rgba(201,146,42,0.15);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,21,55,0.72);
  border-bottom: 1px solid rgba(11,21,55,0.07);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #C89B3C; }
.mobile-actions { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.mobile-actions .nav-portal-btn {
  width: 100%;
  min-height: 42px;
  padding: 12px 14px;
  font-size: 0.68rem;
}

/* ── UNIFIED AUTH DROPDOWN ── */
#navAuthWrap { position: relative; }
.auth-dd-caret {
  font-size: .5rem;
  display: inline-block;
  transition: transform .2s;
  margin-left: 4px;
  vertical-align: middle;
}
button.auth-dd-open .auth-dd-caret { transform: rotate(180deg); }
.auth-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid rgba(201,155,60,.18);
  box-shadow: 0 16px 48px rgba(27,42,107,.14);
  z-index: 9999;
}
.auth-dd-menu.show { display: block; }
.auth-dd-section-hd {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #8888aa;
  padding: 10px 16px 4px;
}
.auth-dd-section-hd:not(:first-child) {
  border-top: 1px solid #F0EDE6;
  padding-top: 12px;
}
.auth-dd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  font-size: .8rem;
  color: #1a1a2e;
  text-decoration: none;
  transition: background .15s, color .15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.auth-dd-item:hover { background: #FBF3E3; color: #C89B3C; }
.auth-dd-item.muted { font-size: .73rem; color: #8888aa; padding-top: 7px; padding-bottom: 7px; }
.auth-dd-item.muted:hover { color: #C89B3C; background: #FBF3E3; }
.auth-dd-item.danger:hover { background: #fee2e2; color: #991b1b; }
.auth-dd-divider { height: 1px; background: #F0EDE6; margin: 4px 0; }
.auth-dd-name {
  padding: 11px 16px 9px;
  font-size: .7rem;
  font-weight: 700;
  color: #0B1537;
  border-bottom: 1px solid #F0EDE6;
  letter-spacing: .04em;
}
/* Post-login profile button */
.nav-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1.5px solid rgba(27,42,107,.2);
  background: rgba(27,42,107,.04);
  color: #0B1537;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  max-width: 200px;
}
.nav-profile-btn:hover { border-color: #C89B3C; color: #C89B3C; }
.nav-profile-av {
  width: 24px; height: 24px;
  background: #C89B3C;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .64rem; color: #fff; font-weight: 700; flex-shrink: 0;
}
/* Mobile auth */
.mob-auth-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C89B3C;
  cursor: pointer;
  border-top: 1px solid rgba(11,21,55,.08);
  width: 100%;
}
.mob-auth-submenu { display: none; }
.mob-auth-submenu.show { display: block; }
.mob-auth-subhd {
  font-size: .54rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: #8888aa;
  padding: 9px 0 3px; border-top: 1px solid rgba(11,21,55,.06); margin-top: 6px;
}
.mob-auth-subhd:first-child { border-top: none; margin-top: 0; }
.mob-auth-link {
  display: block; padding: .65rem 0;
  font-size: .8rem; color: rgba(11,21,55,.72);
  border-bottom: 1px solid rgba(11,21,55,.05);
  text-decoration: none; transition: color .15s;
}
.mob-auth-link:hover { color: #C89B3C; }
.mob-auth-link.muted { font-size: .73rem; color: #8888aa; }
.mob-auth-link.muted:hover { color: #C89B3C; }
.mob-auth-link.danger { color: #dc2626; }
.mob-profile-info {
  padding: .75rem 0;
  font-size: .78rem; font-weight: 700; color: #0B1537;
  border-top: 1px solid rgba(11,21,55,.08); margin-top: 4px;
  display: flex; align-items: center; gap: 7px;
}
.mob-profile-av {
  width: 26px; height: 26px;
  background: #C89B3C; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #fff; font-weight: 700; flex-shrink: 0;
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); }
.float-ig { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ══════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(27,42,107,0.1); }

.card-gold-top { border-top: 3px solid var(--gold); }

/* ══════════════════════════════════════
   BADGES / STATUS
══════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold    { background: var(--gold-pale); color: var(--gold); }
.badge-navy    { background: rgba(27,42,107,0.08); color: var(--navy); }
.badge-green   { background: #d1fae5; color: #065f46; }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { resize: vertical; }

/* ══════════════════════════════════════
   SERVICES STRIP
══════════════════════════════════════ */
.services-strip {
  background: var(--gold);
  padding: 1rem 0;
}
.services-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.strip-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo-img { height: 46px; width: auto; flex-shrink: 0; background: rgba(255,255,255,.9); border-radius: 6px; padding: 3px; }
.footer-logo span { color: var(--gold); }
.footer p { font-size: 0.82rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 55%, #1a1a3e 100%);
  padding-top: 68px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,146,42,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,146,42,0.55);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.hero-divider span { display: block; width: 56px; height: 1px; background: rgba(201,146,42,0.5); }
.hero-divider i { color: var(--gold); font-style: normal; font-size: 0.65rem; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }

/* ══════════════════════════════════════
   WHY CARDS
══════════════════════════════════════ */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2.25rem 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(27,42,107,0.1); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; }
.why-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ══════════════════════════════════════
   MEMBERSHIP CARDS
══════════════════════════════════════ */
.mem-card {
  border: 1px solid rgba(201,146,42,0.3);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  background: rgba(255,255,255,0.04);
}
.mem-card:hover { transform: translateY(-6px); }
.mem-card.featured { background: var(--gold); border-color: var(--gold); }
.mem-featured-label {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  white-space: nowrap;
}
.mem-tier { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.mem-card.featured .mem-tier { color: rgba(255,255,255,0.8); }
.mem-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--white); }
.mem-price { font-size: 2.4rem; font-weight: 700; color: var(--gold); margin: 0.75rem 0 0.35rem; }
.mem-card.featured .mem-price { color: var(--white); }
.mem-discount { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 0.35rem; }
.mem-validity { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.mem-card.featured .mem-validity { color: rgba(255,255,255,0.7); }
.mem-perks { margin-bottom: 1.75rem; }
.mem-perks li { font-size: 0.82rem; color: rgba(255,255,255,0.7); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mem-perks li:last-child { border-bottom: none; }
.mem-card.featured .mem-perks li { color: rgba(255,255,255,0.88); }
.mem-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.mem-btn:hover { background: var(--gold); color: var(--white); }
.mem-card.featured .mem-btn { background: var(--white); border-color: var(--white); color: var(--gold); }
.mem-card.featured .mem-btn:hover { background: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════
   OFFER CARDS
══════════════════════════════════════ */
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}
.offer-card:hover { box-shadow: 0 10px 36px rgba(27,42,107,0.08); transform: translateX(4px); }
.offer-icon { font-size: 1.75rem; flex-shrink: 0; }
.offer-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.offer-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════
   PRICING TABLE
══════════════════════════════════════ */
.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ptab {
  padding: 0.55rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.ptab.active, .ptab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.subtab-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.stab {
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.stab.active, .stab:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
  background: var(--off-white);
}
.price-table td {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--light);
  color: var(--text);
}
.price-table tr:hover td { background: var(--off-white); }
.price-table tr:last-child td { border-bottom: none; }
.price-amount { font-weight: 700; color: var(--navy); }
.price-express { font-size: 0.75rem; color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 7rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.faq-q .icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.2rem; font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-box h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }
.contact-box p, .contact-box a { font-size: 0.9rem; color: var(--text-mid); }
.contact-box a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   REFERRAL
══════════════════════════════════════ */
.ref-step {
  text-align: center;
  padding: 1.5rem 1rem;
  flex: 1;
  min-width: 140px;
}
.ref-step-num {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 0.9rem;
}
.ref-step h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.ref-step p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.ref-reward {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,146,42,0.4);
  padding: 2rem 3rem;
  text-align: center;
}
.ref-reward-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
}
.ref-reward-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.review-area { font-size: 0.72rem; color: var(--text-light); margin-top: 0.2rem; }

/* ══════════════════════════════════════
   HERO — SPLIT LUXURY LAYOUT (45% text | 55% image)
══════════════════════════════════════ */
.hero-v2 {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  padding-top: 74px;
  background: #FAF9F6;
  overflow: hidden;
}

/* Left text column — 45%
   Section padding-top already clears the fixed navbar; no duplicate offset here */
.hero-v2-text {
  flex: 0 0 45%;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 3rem 4rem;
  background: #FAF9F6;
  align-self: stretch;
}

/* Right image column — 55%; align-self: stretch guarantees it matches the section height */
.hero-v2-img {
  flex: 0 0 55%;
  width: 55%;
  position: relative;
  overflow: hidden;
  background: #FAF9F6;
  align-self: stretch;
}

/* Cover fills the column completely — no cream gap possible with any viewport size.
   Root cause was object-fit:contain on a 1.43:1 landscape image leaving 201px empty
   at the bottom of a portrait-ish container. Cover eliminates that dead space. */
.hero-v2-img img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Soft left edge fade — disappears within 15% of image column */
.hero-v2-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, #F9F7F2 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Badge */
.hero-v2 .hero-badge {
  color: var(--navy);
  border-color: rgba(27,42,107,0.25);
  margin-bottom: 1rem;
}

.hero-v2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.hero-v2-title em { color: var(--gold); font-style: normal; }

.hero-v2-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}
.hero-v2-divider span { display: block; width: 48px; height: 1px; background: rgba(201,146,42,0.5); }
.hero-v2-divider i { color: var(--gold); font-style: normal; font-size: 0.65rem; }

.hero-v2-sub {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 1.5rem;
  max-width: 420px;
}
.hero-v2-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(27,42,107,0.5);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
  max-width: 100%;
}
.hero-promo-badge .promo-icon { font-size: 1.05rem; flex-shrink: 0; }
/* ══════════════════════════════════════
   SERVICES CARDS SECTION
══════════════════════════════════════ */
.svc-section {
  padding: 5.5rem 0 5rem;
  background: var(--white);
}
.svc-section-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem 1.25rem 1.75rem;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  cursor: default;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(27,42,107,0.1); border-color: rgba(201,146,42,0.35); }
.svc-card:hover::after { width: 55%; }
.svc-icon-wrap {
  width: 62px;
  height: 62px;
  border: 1.5px solid rgba(201,146,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: var(--off-white);
  color: var(--navy);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.svc-svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}
.svc-card:hover .svc-icon-wrap {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: scale(1.08);
  color: var(--gold);
}
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.svc-card p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.svc-link {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-block;
}
.svc-card:hover .svc-link { color: var(--navy); letter-spacing: 0.14em; }

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.4rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  min-width: 120px;
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-icon { font-size: 1.3rem; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  text-align: center;
  line-height: 1.35;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer {
  0%,100% { opacity: 0.4; } 50% { opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   MOBILE-ONLY COMPONENTS (hidden on desktop)
══════════════════════════════════════ */

/* ── Mobile nav auth buttons ── */
.nav-mob-auth {
  display: none;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.nav-mob-login {
  font-size: 0.73rem;
  font-weight: 600;
  color: #0B1537;
  text-decoration: none;
  padding: 5px 7px;
  white-space: nowrap;
}
.nav-mob-login:hover { color: #C89B3C; }
.nav-mob-signup {
  font-size: 0.72rem;
  font-weight: 700;
  background: #C89B3C;
  color: #fff;
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-mob-signup:hover { background: #a97a2a; }
.nav-mob-profile-link { display: flex; align-items: center; text-decoration: none; }

/* ── Mobile hero CTA button (below hero, above quick actions) ── */
.mobile-hero-cta { display: none; background: #C89B3C; }
.mobile-hero-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

/* ── Mobile Quick Actions ── */
.mobile-qa {
  display: none;
  background: #FAF8F3;
  border-top: 1px solid rgba(200,155,60,0.12);
  padding: 1rem 1rem 1.1rem;
}
.mobile-qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.mqa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.3rem;
  background: #fff;
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 11px;
  text-decoration: none;
  color: #0B1537;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.3;
  transition: border-color 0.2s, transform 0.15s;
}
.mqa-card:hover { border-color: #C89B3C; transform: translateY(-1px); }
.mqa-svg { width: 28px; height: 28px; color: #C89B3C; flex-shrink: 0; }
.mqa-label { color: #0B1537; }

/* ── Mobile Trust Stats ── */
.mobile-trust {
  display: none;
  background: #FAF8F3;
  padding: 1rem;
  border-top: 1px solid rgba(200,155,60,0.12);
}
.mobile-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.mts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  text-align: center;
  padding: 0.7rem 0.15rem;
  background: #fff;
  border: 1px solid rgba(200,155,60,0.15);
  border-radius: 12px;
}
.mts-svg { width: 22px; height: 22px; color: #C89B3C; }
.mts-val {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0B1537;
  line-height: 1.2;
}
.mts-lbl {
  font-size: 0.46rem;
  font-weight: 500;
  color: rgba(11,21,55,0.55);
  letter-spacing: 0.01em;
}

/* ── Mobile Sticky Bottom CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #C89B3C;
  padding: 0.85rem 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 16px rgba(200,155,60,0.28);
}
.mobile-sticky-cta a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1280px) {
  .hero-v2-text { flex: 0 0 48%; width: 48%; padding: 1.5rem 2rem 2.5rem 3rem; }
  .hero-v2-img  { flex: 0 0 52%; width: 52%; }
  .svc-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(3,1fr); }
  .hero-v2-text { flex: 0 0 50%; width: 50%; padding: 1rem 1.5rem 2rem 2.5rem; }
  .hero-v2-img  { flex: 0 0 50%; width: 50%; }
  .hero-v2-title { font-size: 2.8rem; }
  .trust-item { padding: 1.25rem 1.25rem; min-width: 100px; }
}

@media (max-width: 768px) {
  /* ── Nav: hide desktop dropdown, show mobile Login+SignUp, keep hamburger ── */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mob-auth { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1rem; gap: 0.4rem; height: 60px; }
  .nav-logo-img { height: 38px; }
  .nav-logo-text { font-size: 1.08rem; letter-spacing: 0.04em; }
  /* ── Grids ── */
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-content { padding: 3rem 1.25rem; }
  /* ── Hero: side-by-side (text left, image right), compact ── */
  .hero-v2 { flex-direction: row; height: auto; padding-top: 60px; padding-bottom: 0; min-height: 260px; }
  .hero-v2-text { flex: 0 0 48%; width: 48%; padding: 1.1rem 0.5rem 1.1rem 1rem; align-self: center; }
  .hero-v2-img  { flex: 0 0 52%; width: 52%; min-height: 260px; align-self: stretch; max-height: none; }
  .hero-v2-img img { object-fit: cover; object-position: center top; }
  .hero-v2-img::before { width: 0; }
  .hero-badge { display: none; }
  .hero-v2-divider { margin: 0.22rem 0 0.5rem; gap: 0.35rem; }
  .hero-v2-divider span { width: 20px; }
  .hero-v2-title { font-size: 1.85rem; line-height: 1.12; margin-bottom: 0.4rem; }
  .hero-v2-sub { font-size: 0.74rem; line-height: 1.52; display: block; margin-bottom: 0; }
  .hero-v2-actions { display: none; }
  .hero-promo-badge { display: none; }
  /* ── Services: 4-column compact on mobile ── */
  .svc-section { padding: 2.5rem 0; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 0.45rem; }
  .svc-card { padding: 0.85rem 0.25rem 0.8rem; border-radius: 10px; text-align: center; }
  .svc-icon-wrap { width: 40px; height: 40px; margin: 0 auto 0.5rem; }
  .svc-svg { width: 17px; height: 17px; }
  .svc-card h3 { font-size: 0.57rem; text-align: center; margin-bottom: 0; line-height: 1.3; }
  .svc-card p, .svc-link { display: none; }
  /* ── Hide desktop trust strip — mobile version shown instead ── */
  .trust-strip { display: none; }
  /* ── Show mobile-only sections ── */
  .mobile-hero-cta { display: block; }
  .mobile-qa { display: block; }
  .mobile-trust { display: block; }
  .mobile-sticky-cta { display: flex; }
  /* ── Floating buttons above sticky bar ── */
  .floating-btns { bottom: 4.5rem; }
  /* ── Body bottom padding so sticky bar doesn't cover content ── */
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .nav-logo-text { font-size: 0.95rem; }
  .hero-v2-title { font-size: 1.6rem; }
  .hero-v2-sub { font-size: 0.69rem; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 0.45rem; }
  .svc-card { padding: 0.85rem 0.25rem 0.8rem; border-radius: 10px; }
  .svc-card h3 { font-size: 0.57rem; }
  .svc-card p, .svc-link { display: none; }
  .svc-icon-wrap { width: 40px; height: 40px; margin: 0 auto 0.5rem; }
  .svc-svg { width: 17px; height: 17px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE PREMIUM REDESIGN
   Only modifies @media (max-width: 768px / 480px).
   Uses !important to override index.html inline <style>.
   Desktop rules are completely untouched.
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Page background: warm cream ── */
  body { background: #FAFAF8; }

  /* ── Hero ── */
  .hero-v2 { background: #FAFAF8; }
  .hero-v2-text { background: #FAFAF8; padding: 1.1rem 0.75rem 1.1rem 1rem; }
  /* "Our Responsibility." → gold italic */
  .hero-v2-title em { font-style: italic; }
  /* Subtitle: smaller, dark grey */
  .hero-v2-sub { font-size: 0.82rem; color: #4a4a6a; line-height: 1.52; margin-bottom: 0.85rem; }
  /* Show gold CTA button (was display:none on mobile) */
  .hero-v2-actions { display: flex !important; flex-direction: column; margin-bottom: 0; gap: 0; }
  .hero-v2-actions .btn-gold {
    width: 100%;
    justify-content: center;
    font-size: 0.67rem;
    padding: 0.82rem 0.5rem;
    border-radius: 8px;
  }
  /* Hide "View Pricing" outline button */
  .hero-v2-actions .btn-outline-navy { display: none !important; }
  /* Suppress the separate gold CTA strip below hero — button is now inside hero */
  .mobile-hero-cta { display: none !important; }

  /* ── Quick Actions: 2×2 grid, premium cards ── */
  .mobile-qa { background: #FAFAF8; padding: 0.75rem 1rem; border-top: none; }
  .mobile-qa-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mqa-card {
    padding: 1.1rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #E8E4DC;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1B2A6B;
    gap: 0.5rem;
  }
  .mqa-svg { width: 32px; height: 32px; }
  .mqa-label { font-size: 0.75rem; color: #1B2A6B; font-weight: 600; }

  /* ── Stats bar: horizontal flex row ── */
  .mobile-trust {
    background: #fff;
    border-top: 1px solid #E8E4DC;
    border-bottom: 1px solid #E8E4DC;
    padding: 0.75rem 0.25rem;
  }
  .mobile-trust-grid { display: flex; justify-content: space-around; }
  .mts-item {
    flex: 1;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0.4rem 0.1rem;
  }
  .mts-svg { width: 20px; height: 20px; }
  .mts-val { font-size: 0.75rem; color: #1B2A6B; font-weight: 700; }
  .mts-lbl { font-size: 0.46rem; color: #6b7280; }

  /* ── Services section: cream background ── */
  .svc-section { background: #F5F3EE; }
  .svc-section-hd { margin-bottom: 1.5rem; }
  /* 2-column grid instead of 4-column */
  .svc-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  /* Full-size premium cards */
  .svc-card {
    background: #fff !important;
    border: 1px solid #E8E4DC !important;
    border-radius: 12px !important;
    padding: 1.25rem 0.75rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .svc-icon-wrap {
    width: 50px !important;
    height: 50px !important;
    background: rgba(201,146,42,0.08) !important;
    border-color: rgba(201,146,42,0.2) !important;
    color: #C9922A !important;
    margin: 0 auto 0.65rem !important;
  }
  .svc-svg { width: 22px !important; height: 22px !important; }
  .svc-card h3 { font-size: 0.72rem !important; color: #1B2A6B !important; margin-bottom: 0 !important; }

  /* ── Fixed bottom CTA bar: 56px gold ── */
  .mobile-sticky-cta {
    height: 56px;
    background: #C9922A;
    padding: 0 1.5rem;
    z-index: 999;
  }
  .mobile-sticky-cta a { font-size: 0.77rem; font-weight: 700; letter-spacing: 0.1em; }

  /* ── Floating buttons: above bar, 44px ── */
  .floating-btns { bottom: 66px; }
  .float-btn { width: 44px; height: 44px; }
}

/* Keep 2-column services on small phones */
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .svc-card { padding: 1rem 0.5rem !important; border-radius: 12px !important; }
  .svc-card h3 { font-size: 0.68rem !important; }
  .svc-icon-wrap { width: 44px !important; height: 44px !important; }
  .svc-svg { width: 20px !important; height: 20px !important; }
}

/* ══════════════════════════════════════
   SKELETON LOADING
══════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════
   PAGE TRANSITIONS
══════════════════════════════════════ */
.page-transition {
  animation: pageFadeIn 0.25s ease-out;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   BOTTOM NAVIGATION — Mobile (Blinkit-style)
   Hidden on desktop via @media (min-width: 769px)
══════════════════════════════════════ */
@media (min-width: 769px) {
  .uf-bottom-nav { display: none !important; }
}

@media (max-width: 768px) {
  /* ── Bottom nav bar ── */
  .uf-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 62px;
    background: #1B2A6B;
    z-index: 1000;
    border-top: 2px solid rgba(201,146,42,0.4);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .uf-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 0;
  }
  .uf-bn-item.uf-bn-active,
  .uf-bn-item:active { color: #C9922A; }
  .uf-bn-icon { font-size: 1.35rem; margin-bottom: 2px; line-height: 1; }
  /* Center "Book" pill button */
  .uf-bn-center {
    background: #C9922A;
    border-radius: 50%;
    width: 52px; height: 52px;
    margin-top: -16px;
    flex: 0 0 52px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(201,146,42,0.5);
    color: #fff;
  }
  .uf-bn-center .uf-bn-label { display: none; }
  .uf-bn-center .uf-bn-icon { font-size: 1.5rem; margin: 0; }
  /* Body bottom padding: bottom nav (62px) + buffer */
  body { padding-bottom: 70px !important; }
  /* Floating buttons above bottom nav */
  .floating-btns { bottom: 76px !important; }
  /* Hide top navbar — bottom nav is the mobile navigation */
  .navbar { display: none !important; }
  /* Hide sticky CTA bar — Book tab in bottom nav replaces it */
  .mobile-sticky-cta { display: none !important; }
  /* Install banner sits above bottom nav on mobile */
  #installBanner { bottom: 62px !important; }
}

/* ══════════════════════════════════════
   SHARED PREMIUM PAGE HERO
   Used by offers.html · referral.html · faq.html
══════════════════════════════════════ */
.uf-page-hero {
  position: relative;
  overflow: hidden;
  background: #F5F2EC;
  padding: 108px 2rem 4rem;
  text-align: center;
}
.uf-page-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -160px;
  width: 500px; height: 500px;
  border: 1.5px solid rgba(200,155,60,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.uf-page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -120px;
  width: 420px; height: 420px;
  border: 1.5px solid rgba(200,155,60,0.13);
  border-radius: 50%;
  pointer-events: none;
}
.uf-ph-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.uf-ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.uf-ph-eyebrow span { display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.55; }
.uf-ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0;
}
.uf-ph-title em { color: var(--gold); font-style: italic; }
.uf-ph-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0.85rem auto 1.3rem;
}
.uf-ph-orn span { display: block; width: 36px; height: 1px; background: var(--gold); opacity: 0.45; }
.uf-ph-orn i { color: var(--gold); font-style: normal; font-size: 0.48rem; }
.uf-ph-sub { font-size: 0.98rem; color: var(--text-mid); line-height: 1.8; max-width: 440px; margin: 0 auto; }

/* ── Offer cards ── */
.uf-offer-card {
  background: #ffffff;
  border: 1px solid rgba(200,155,60,0.14);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27,42,107,0.07);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.uf-offer-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(27,42,107,0.12); }
.uf-offer-icon {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(200,155,60,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,60,0.06);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.uf-offer-highlights {
  background: #FBF3E3;
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.79rem;
  color: var(--navy);
  line-height: 1.65;
  margin-top: 1.25rem;
}

/* ── Referral step cards ── */
.uf-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.uf-step-card {
  background: #ffffff;
  border: 1px solid rgba(200,155,60,0.12);
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(27,42,107,0.05);
}
.uf-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(27,42,107,0.2);
}
.uf-step-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.uf-step-card p  { font-size: 0.76rem; color: var(--text-mid); line-height: 1.55; }

/* ── Referral reward cards ── */
.uf-reward-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 2.5rem 0; }
.uf-reward-card {
  background: #ffffff;
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(27,42,107,0.07);
  min-width: 200px;
}
.uf-reward-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.uf-reward-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }

/* ── Terms card ── */
.uf-terms-card {
  background: #ffffff;
  border: 1px solid rgba(200,155,60,0.14);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(27,42,107,0.05);
  max-width: 720px;
  margin: 2.5rem auto 0;
}

/* ── FAQ category headings ── */
.uf-faq-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,155,60,0.2);
  display: block;
}
.uf-faq-cat:first-child { margin-top: 0; }

/* ── Feedback star rating ── */
.star-rating { display: flex; gap: 8px; margin: 12px 0; }
.star { font-size: 2rem; cursor: pointer; color: #D4CFC8; transition: color 0.2s; user-select: none; }
.star.active { color: #C9922A; }

/* ── Mobile ── */
@media (max-width: 1024px) { .uf-step-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .uf-page-hero { padding: 88px 1.25rem 2.5rem; }
  .uf-ph-title { font-size: 2.4rem; }
  .uf-step-grid { grid-template-columns: 1fr 1fr; }
  .uf-offer-card { padding: 1.75rem; }
  .uf-terms-card { padding: 1.75rem; }
}
@media (max-width: 480px) {
  .uf-ph-title { font-size: 2rem; }
  .uf-step-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ══════════════════════════════════════
   FIX 14 — SHARED MEM-CARDS-GRID (matches membership.html)
══════════════════════════════════════ */
.mem-cards-grid{display:flex;gap:1.5rem;max-width:1100px;margin:0 auto;align-items:center}
.mem-cards-grid .mem-card{background:#fff;border:1px solid rgba(200,155,60,0.18);border-radius:22px;padding:2.75rem 2rem;text-align:center;position:relative;transition:transform 0.32s ease,box-shadow 0.32s ease;box-shadow:0 2px 28px rgba(8,31,99,0.06);flex:1;min-width:0}
.mem-cards-grid .mem-card:hover{transform:translateY(-9px);box-shadow:0 14px 44px rgba(8,31,99,0.13)}
.mem-cards-grid .mem-card.featured{background:var(--navy);border:2px solid var(--gold);border-radius:22px;padding:3.25rem 2rem;flex:1.06;box-shadow:0 10px 52px rgba(8,31,99,0.24)}
.mem-cards-grid .mem-card.featured:hover{transform:translateY(-11px);box-shadow:0 20px 60px rgba(8,31,99,0.32)}
.mem-cards-grid .mem-featured-label{position:absolute;top:-17px;left:50%;transform:translateX(-50%);background:var(--gold);color:#fff;font-family:'Montserrat',sans-serif;font-size:.58rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;padding:6px 20px;border-radius:100px;white-space:nowrap;box-shadow:0 2px 12px rgba(200,155,60,0.4)}
.mem-cards-grid .mem-tier{font-family:'Montserrat',sans-serif;font-size:.6rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:.65rem;display:flex;align-items:center;justify-content:center;gap:6px}
.mem-cards-grid .mem-card.featured .mem-tier{color:rgba(255,255,255,0.65)}
.mem-cards-grid .mem-name{font-family:'Cormorant Garamond',serif;font-size:2.5rem;font-weight:700;color:var(--navy);line-height:1;margin-bottom:0}
.mem-cards-grid .mem-card.featured .mem-name{color:#fff;font-size:2.75rem}
.mem-divider{display:flex;align-items:center;justify-content:center;gap:8px;margin:.85rem 0 1rem}
.mem-divider span{display:block;width:28px;height:1px;background:var(--gold);opacity:.4}
.mem-divider i{color:var(--gold);font-style:normal;font-size:.5rem;opacity:.8}
.mem-cards-grid .mem-card.featured .mem-divider span{opacity:.6}
.mem-cards-grid .mem-price{font-family:'Cormorant Garamond',serif;font-size:3.1rem;font-weight:700;color:var(--gold);line-height:1;margin:0 0 .85rem}
.mem-cards-grid .mem-card.featured .mem-price{font-size:3.5rem}
.mem-cards-grid .mem-discount{display:inline-block;background:rgba(200,155,60,0.1);border:1px solid rgba(200,155,60,0.3);color:var(--navy);font-size:.77rem;font-weight:700;letter-spacing:.02em;padding:5px 16px;border-radius:100px;margin-bottom:1rem}
.mem-cards-grid .mem-card.featured .mem-discount{background:var(--gold);border-color:var(--gold);color:#fff;font-size:.82rem;padding:7px 20px;box-shadow:0 2px 12px rgba(200,155,60,0.35)}
.mem-cards-grid .mem-validity{font-size:.76rem;color:var(--text-mid,#6b7280);margin-bottom:2rem;display:flex;align-items:center;justify-content:center;gap:6px;font-weight:500}
.mem-cards-grid .mem-card.featured .mem-validity{color:rgba(255,255,255,0.58)}
.mem-cards-grid .mem-validity svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.mem-cards-grid .mem-perks{display:none}
.mem-cards-grid .mem-btn{display:block;width:100%;padding:.9rem 1.5rem;font-family:'Montserrat',sans-serif;font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;border-radius:100px;border:1.5px solid var(--navy);color:var(--navy);background:transparent;text-decoration:none;text-align:center;transition:all .3s ease;cursor:pointer}
.mem-cards-grid .mem-btn:hover{background:var(--navy);color:#fff;box-shadow:0 4px 20px rgba(8,31,99,0.2)}
.mem-cards-grid .mem-card.featured .mem-btn{background:linear-gradient(135deg,#D9AF4A 0%,#C89B3C 50%,#B8880A 100%);border-color:transparent;color:#fff;padding:1rem 1.5rem;box-shadow:0 4px 22px rgba(200,155,60,0.45);font-size:.7rem}
.mem-cards-grid .mem-card.featured .mem-btn:hover{background:linear-gradient(135deg,#E5BD58 0%,#D4A843 50%,#C4940A 100%);box-shadow:0 7px 30px rgba(200,155,60,0.6)}
@media(max-width:768px){.mem-cards-grid{flex-direction:column;gap:1.25rem}.mem-cards-grid .mem-card,.mem-cards-grid .mem-card.featured{flex:none;width:100%}}

/* ══════════════════════════════════════
   FIX 15 — UNIVERSAL RESPONSIVE BASE
══════════════════════════════════════ */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; width: 100% !important; }
img, video, iframe { max-width: 100% !important; }
:root {
  --fluid-text-sm: clamp(0.75rem, 2.5vw, 0.875rem);
  --fluid-text-base: clamp(0.875rem, 3vw, 1rem);
  --fluid-text-lg: clamp(1rem, 3.5vw, 1.25rem);
  --fluid-text-xl: clamp(1.25rem, 4vw, 1.5rem);
  --fluid-text-2xl: clamp(1.5rem, 5vw, 2rem);
  --fluid-text-3xl: clamp(1.75rem, 6vw, 2.5rem);
}
@media (max-width: 380px) {
  .section { padding: 1.5rem 0.875rem !important; }
  .container { padding: 0 0.875rem !important; }
}
@media (min-width: 381px) and (max-width: 480px) {
  .section { padding: 1.75rem 1rem !important; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section { padding: 2rem 1.25rem !important; }
}

/* ══════════════════════════════════════
   PHASE 3 — HOMEPAGE CREAM + HERO
══════════════════════════════════════ */
/* Global cream background — matches Offers/Membership pages */
body { background: #F5F2EC; }

/* Hero — cream bg, larger image, no empty blue areas */
.hero-v2 {
  background: #F5F2EC !important;
  min-height: calc(100vh - 74px) !important;
  height: auto !important;
}
.hero-v2-text { background: #F5F2EC !important; flex: 0 0 42% !important; width: 42% !important; }
.hero-v2-img  { background: #F5F2EC !important; flex: 0 0 58% !important; width: 58% !important; }
.hero-v2-img::before { background: linear-gradient(to right, #F5F2EC 0%, transparent 100%) !important; }

/* Pricing hero — prevent giant navy blue gap */
.ph-banner { max-height: 360px !important; }

/* ══════════════════════════════════════
   PHASE 2 — COMPREHENSIVE RESPONSIVE
══════════════════════════════════════ */

/* ─ Base: no horizontal overflow on any element ─ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, svg { max-width: 100%; height: auto; }
table { width: 100%; }

/* ─ Responsive nav: prevent link overflow on 900-1024px ─ */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.62rem; }
  #navDashItem a { padding: 5px 8px; }
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }
  .nav-mob-auth { display: flex !important; }
  .hamburger { display: flex !important; }
}

/* ─ Hero responsive ─ */
@media (max-width: 900px) {
  .hero-v2 { flex-direction: column !important; height: auto !important; min-height: 0 !important; padding-top: 60px !important; }
  .hero-v2-text { flex: none !important; width: 100% !important; padding: 2rem 1.25rem 1.5rem !important; }
  .hero-v2-img  { flex: none !important; width: 100% !important; height: 52vw !important; min-height: 220px !important; max-height: 420px !important; position: relative !important; }
  .hero-v2-img img { position: absolute !important; top: 0; left: 0; right: 0; bottom: 0; width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .hero-v2-img::before { background: linear-gradient(to bottom, #F5F2EC 0%, transparent 100%) !important; width: 100% !important; height: 20% !important; }
  .hero-v2-title { font-size: clamp(2rem, 7vw, 3rem) !important; }
  .hero-v2-sub { font-size: 0.9rem !important; }
}
@media (max-width: 480px) {
  .hero-v2-img { height: 60vw !important; }
  .hero-v2-title { font-size: clamp(1.75rem, 8vw, 2.5rem) !important; }
  .hero-v2-actions { flex-direction: column; gap: 0.75rem; }
  .hero-v2-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ─ Pricing page hero ─ */
@media (max-width: 768px) {
  .ph-banner { max-height: none !important; flex-direction: column !important; height: auto !important; }
  .ph-img { height: 44vw !important; min-height: 160px !important; max-height: 260px !important; width: 100% !important; }
  .ph-text { padding: 1.5rem 1.25rem !important; }
  .pricing-hero { padding: 80px 1rem 1.5rem !important; }
}

/* ─ Section + container mobile ─ */
@media (max-width: 768px) {
  body { background: #F5F2EC !important; }
  .section { padding: 2.5rem 0 !important; }
  .container { padding: 0 1.25rem !important; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-stats { gap: 1rem !important; flex-wrap: wrap !important; }
}
@media (max-width: 480px) {
  .section { padding: 2rem 0 !important; }
  .container { padding: 0 1rem !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .btn-lg { padding: 12px 22px !important; font-size: 0.75rem !important; }
}
@media (max-width: 380px) {
  .section { padding: 1.5rem 0 !important; }
  .container { padding: 0 0.875rem !important; }
  h2, .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
}

/* ─ Tables scroll on mobile ─ */
@media (max-width: 768px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  th, td { min-width: 80px; }
}

/* ─ Mobile schedule / form ─ */
@media (max-width: 768px) {
  .sch-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .form-row { flex-direction: column !important; }
  .form-group { width: 100% !important; }
}

/* ─ 4K / large displays ─ */
@media (min-width: 1920px) {
  .container { max-width: 1600px; }
  body { font-size: 1.05rem; }
}

/* ─ Dashboard mobile quick-nav bottom padding ─ */
@media (max-width: 768px) {
  .content { padding-bottom: 70px; }
}

/* ─ Prevent emoji/icon overflow ─ */
.empty-icon, .mqa-svg { flex-shrink: 0; }

/* ─ Floating buttons — avoid bottom nav collision on mobile ─ */
@media (max-width: 768px) {
  .floating-btns { bottom: 80px; }
}

/* FIX 7 — Pricing hero already applied above */
