/* ============================================================
   CITYSIDE CONVEYANCING - MAIN CSS v2.0
   Premium Design System
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --navy:       #0E1F3B;
  --navy-deep:  #071527;
  --navy-mid:   #162d4e;
  --gold:       #C9A84C;
  --gold-lt:    #dbbe6d;
  --gold-pale:  #f2e8cc;
  --gold-dim:   rgba(201,168,76,.15);
  --cream:      #F5F0E8;
  --cream-dk:   #EAE4D8;
  --white:      #FFFFFF;
  --text:       #1a2332;
  --text-md:    #3d4d61;
  --text-lt:    #64748b;
  --border:     rgba(14,31,59,.09);
  --border-gold:rgba(201,168,76,.22);

  /* Typography */
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Outfit', system-ui, sans-serif;
  --italic:   'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  96px;
  --sp-2xl: 128px;

  /* Effects */
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --r:         6px;
  --r-lg:      12px;
  --shadow:    0 4px 24px rgba(14,31,59,.07);
  --shadow-md: 0 8px 40px rgba(14,31,59,.11);
  --shadow-lg: 0 20px 60px rgba(14,31,59,.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); line-height: 1.12; color: var(--navy); }
h1 { font-size: clamp(2.6rem,5.5vw,4.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem,3.8vw,3.2rem); font-weight: 600; letter-spacing: -.018em; }
h3 { font-size: clamp(1.15rem,2vw,1.4rem); font-weight: 600; font-family: var(--sans); }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--sans); }
p  { line-height: 1.82; color: var(--text-md); font-size: .97rem; }
.lead { font-size: 1.12rem; line-height: 1.72; color: var(--text-md); }
.serif-italic { font-family: var(--italic); font-style: italic; font-weight: 400; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.sp  { padding: var(--sp-xl) 0; }
.sp-lg { padding: var(--sp-2xl) 0; }
@media(max-width:768px) {
  .container, .container-sm { padding: 0 24px; }
  .sp { padding: 72px 0; }
  .sp-lg { padding: 96px 0; }
}

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 2px; width: 0%;
  background: var(--gold);
  transition: width .1s linear;
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 9px 24px;
  font-size: .74rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  z-index: 200;
}
.ann-bar a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.35); }
.ann-bar .sep { opacity: .3; margin: 0 12px; }

/* ── NAVIGATION ── */
nav#mainnav {
  position: sticky; top: 0; z-index: 150;
  background: rgba(7,21,39,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: box-shadow .3s;
}
nav#mainnav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.35); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 16px;
}
@media(max-width:640px) { .nav-inner { padding: 0 24px; height: 68px; } }

/* Logo */
.nav-logo {
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
  padding: 6px 12px 6px 8px;
  background: rgba(255,255,255,.95);
  border-radius: 8px;
  transition: background .2s;
}
.nav-logo:hover { background: rgba(255,255,255,1); }
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo-text { display: none; }
.nav-logo-text span { color: var(--gold); }
.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; fill: var(--navy-deep); }
@media(max-width:480px) {
  .nav-logo img { height: 32px; }
  .nav-logo { padding: 5px 8px 5px 6px; }
}

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.68);
  padding: 8px 13px; border-radius: 5px;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links > li > a .chev {
  width: 10px; height: 10px; opacity: .5; transition: transform .2s;
}
.nav-links > li:hover > a .chev,
.nav-links > li.dd-open > a .chev { transform: rotate(180deg); opacity: .8; }

/* Dropdown */
/* Invisible hover-bridge: covers the gap between trigger and panel so the
   pointer never leaves the hover area travelling from one to the other. */
.nav-has-dd::after {
  content: ""; position: absolute; left: 0; right: 0;
  top: 100%; height: 16px; display: none;
}
.nav-has-dd:hover::after,
.nav-has-dd.dd-open::after { display: block; }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  background: var(--navy-deep);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-links > li:hover .nav-dropdown,
.nav-links > li.dd-open .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 9px 14px;
  font-size: .79rem; font-weight: 500;
  color: rgba(255,255,255,.62);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(201,168,76,.1); }
.nav-dropdown .dd-label {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); padding: 6px 14px 4px;
}
.nav-dropdown .dd-divider {
  height: 1px; background: rgba(255,255,255,.07); margin: 6px 0;
}

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta {
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  padding: 9px 20px; border-radius: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-phone {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7);
  border-radius: 2px; transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 11px 0;
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.68);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mob-label {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); padding: 14px 0 4px;
}

@media(max-width:900px) { .nav-links { display: none; } .nav-phone { display: none; } }
@media(max-width:900px) { .nav-burger { display: flex; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600;
  border-radius: var(--r); transition: all .2s; cursor: pointer; border: none;
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
  font-size: .92rem; padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(201,168,76,.28);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.38); }
.btn-outline {
  background: transparent; color: var(--white);
  font-size: .92rem; padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-navy {
  background: var(--navy); color: var(--white);
  font-size: .92rem; padding: 14px 28px;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-ghost {
  color: var(--gold); font-size: .88rem; font-weight: 700;
  padding: 0; background: none; gap: 6px;
}
.btn-ghost .arr { transition: transform .2s; display: inline-block; }
.btn-ghost:hover .arr { transform: translateX(4px); }
.btn-ghost-dark {
  color: var(--navy); font-size: .88rem; font-weight: 700;
  background: none; padding: 0; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost-dark .arr { transition: transform .2s; display: inline-block; }
.btn-ghost-dark:hover .arr { transform: translateX(4px); }

/* ── LABEL / EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .69rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block; width: 24px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow-light { color: rgba(201,168,76,.7); }
.eyebrow-light::before { background: rgba(201,168,76,.7); }

/* ── SECTION HEADERS ── */
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center p { max-width: 600px; margin: 12px auto 0; }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { margin-top: 12px; }

/* ── GOLD RULE ── */
.gold-rule {
  display: block; height: 1.5px; background: var(--gold);
  width: 48px; margin: 18px 0;
}
.gold-rule.center { margin: 18px auto; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-r.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-deep);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
/* Photo variant - applied via inline background-image on the element */
.page-hero-photo {
  background: var(--navy-deep);
}
.page-hero-photo .page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-photo .page-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg,
      rgba(7,19,36,.90) 0%,
      rgba(7,19,36,.78) 50%,
      rgba(7,19,36,.55) 100%
    ),
    linear-gradient(to top,
      rgba(4,12,22,.70) 0%,
      transparent 50%
    );
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .lead { color: rgba(255,255,255,.62); max-width: 600px; font-size: 1.08rem; }
.page-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px; padding: 6px 14px;
  font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.65);
}
.page-hero-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.page-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy); border-bottom: 1px solid rgba(201,168,76,.12);
}
.stats-strip-inner {
  display: flex; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: .73rem; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
@media(max-width:640px) { .stats-strip-inner { padding: 0 24px; } .stat-item { min-width: 140px; padding: 22px 16px; } }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-gold-top { border-top: 3px solid var(--gold); }
.card-body { padding: 28px 28px 32px; }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--gold); }

/* ── SERVICE GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 0 0 36px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.service-thumb {
  position: relative; width: 100%; height: 160px;
  overflow: hidden; background: var(--navy);
}
.service-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.93) saturate(.95);
  transition: transform .5s var(--ease);
}
.service-card:hover .service-thumb img { transform: scale(1.05); }
.service-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,31,59,.12) 0%, rgba(14,31,59,.42) 100%);
}
.service-card > .service-num,
.service-card > h3,
.service-card > p,
.service-card > .link-arrow { margin-left: 30px; margin-right: 30px; }
.service-card > .service-num { margin-top: 22px; }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(201,168,76,.25);
  box-shadow: 0 12px 40px rgba(14,31,59,.1);
  transform: translateY(-3px);
}
.service-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: rgba(201,168,76,.12); line-height: 1; margin-bottom: 14px;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(201,168,76,.22); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.08rem; }
.service-card p { font-size: .87rem; color: var(--text-lt); line-height: 1.72; margin-bottom: 18px; }
.service-card a.link-arrow {
  font-size: .8rem; font-weight: 700; color: var(--gold);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.service-card a.link-arrow:hover { gap: 9px; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--gold-pale); line-height: 1; margin-bottom: 16px;
  display: block;
}
.process-step h4 { color: var(--navy); margin-bottom: 10px; font-size: .97rem; font-weight: 700; }
.process-step p { font-size: .84rem; color: var(--text-lt); line-height: 1.72; }
@media(max-width:768px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* ── WHY CITYSIDE – SPLIT ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-grid-rev { direction: rtl; }
.why-grid-rev > * { direction: ltr; }
@media(max-width:820px) { .why-grid, .why-grid-rev { grid-template-columns: 1fr; gap: 48px; } }
.why-visual {
  border-radius: 16px; overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 36px 32px 32px; position: relative;
  border: 1px solid rgba(201,168,76,.1);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: rgba(201,168,76,.18); line-height: 1;
  position: absolute; top: 20px; left: 26px;
}
.testimonial-card p {
  font-family: var(--italic); font-style: italic;
  font-size: 1.04rem; line-height: 1.75;
  color: rgba(255,255,255,.8); margin-bottom: 20px;
  padding-top: 16px;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); border: 1.5px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .9rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85); }
.testimonial-role { font-size: .74rem; color: rgba(255,255,255,.4); margin-top: 1px; }
.stars { color: var(--gold); font-size: .72rem; letter-spacing: 1px; margin-bottom: 10px; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer; border: none; background: none; text-align: left;
}
.faq-q-text {
  font-family: var(--sans); font-size: .96rem; font-weight: 600;
  color: var(--navy); line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: var(--navy-deep); }
.faq-body { display: none; padding: 0 0 20px; }
.faq-body p { font-size: .9rem; color: var(--text-lt); line-height: 1.78; }
.faq-item.open .faq-body { display: block; }

/* FAQ category tabs */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 8px; }
.faq-tab {
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--border); border-radius: 40px;
  padding: 9px 20px; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.faq-tab:hover { border-color: rgba(201,168,76,.5); }
.faq-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-cat { display: none; }
.faq-cat.active { display: block; }
.faq-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
@media(max-width:760px) { .faq-cat-grid { grid-template-columns: 1fr; } }
.faq-cat-note {
  font-size: .88rem; color: var(--text-lt); line-height: 1.7;
  margin: 18px 0 4px; padding: 16px 20px;
  background: var(--gold-pale); border-radius: 10px;
  border: 1px solid rgba(201,168,76,.2);
}
.faq-cat-note strong { color: var(--navy); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy-deep); padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
/* Homepage CTA: subtle warm-home photo, heavily overlaid with navy */
.cta-section-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(7,19,36,.92), rgba(7,19,36,.94)),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1600&q=85&auto=format&fit=crop');
  background-size: cover; background-position: center;
  pointer-events: none;
}
.cta-section-photo .container { position: relative; z-index: 2; }
.cta-inner h2 { color: var(--white); margin-bottom: 14px; }
.cta-inner .lead { color: rgba(255,255,255,.56); margin-bottom: 36px; }
.cta-phone {
  font-family: var(--serif); font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 6px;
  transition: opacity .2s;
}
.cta-phone:hover { opacity: .82; }
.cta-hours { font-size: .76rem; color: rgba(255,255,255,.3); margin-bottom: 28px; letter-spacing: .04em; }
.cta-or { color: rgba(255,255,255,.3); font-size: .82rem; margin: 14px 0; }

/* ── FOOTER ── */
footer {
  background: #040e1a;
  border-top: 2px solid rgba(201,168,76,.28);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.15fr 1.15fr;
  gap: 36px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px 60px;
}
@media(max-width:1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media(max-width:640px) { .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 48px; gap: 32px; } }
@media(max-width:400px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,.95);
  border-radius: 8px;
  padding: 10px 14px 10px 10px;
  margin-bottom: 18px;
}
.footer-logo-wrap img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px; display: none;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-family: var(--italic); font-style: italic;
  font-size: .88rem; color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-trust {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px;
}
.footer-trust-item {
  font-size: .72rem; color: rgba(255,255,255,.32);
  display: flex; align-items: center; gap: 6px;
}
.footer-trust-item::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: .5; flex-shrink: 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .2s;
}
.footer-social a:hover { border-color: rgba(201,168,76,.3); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-family: var(--sans); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .81rem; color: rgba(255,255,255,.42); transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item strong {
  display: block; font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3);
  margin-bottom: 3px;
}
.footer-contact-item a,
.footer-contact-item p {
  font-size: .81rem; color: rgba(255,255,255,.55); line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
@media(max-width:640px) { .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 10px; } }
.footer-bottom-left p {
  font-size: .7rem; color: rgba(255,255,255,.25); line-height: 1.6;
}
.footer-bottom-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-right a {
  font-size: .72rem; color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,.6); }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  padding: 12px 20px; border-radius: 40px;
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
  transition: all .2s;
  display: flex; align-items: center; gap: 7px;
}
.float-call:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,.5); }
.float-call svg { width: 15px; height: 15px; }
@media(min-width:769px) { .float-call { display: none; } }

/* ── BACKGROUNDS ── */
.bg-navy  { background: var(--navy); }
.bg-deep  { background: var(--navy-deep); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ── UTILITY ── */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-lt); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }

/* ── GRAIN TEXTURE OVERLAY ── */
.grain::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .4;
}

/* ── INCLUDE BADGE ── */
.include-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.include-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--text-md); line-height: 1.5;
}
.include-item .tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,168,76,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.include-item .tick svg { width: 10px; height: 10px; stroke: var(--gold); }

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item .check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-item .check-dot svg { width: 11px; height: 11px; stroke: var(--navy-deep); stroke-width: 2.5; }
.check-item p { font-size: .9rem; color: var(--text-md); line-height: 1.6; }

/* ── TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--navy); color: var(--white);
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 14px 18px; text-align: left;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: .87rem; color: var(--text-md);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream); }
.compare-table .check-yes { color: var(--gold); font-weight: 700; }
.compare-table .check-no  { color: var(--text-lt); }

/* ── NOTICE BOX ── */
.notice-box {
  border-left: 3px solid var(--gold); background: var(--cream);
  padding: 18px 20px; border-radius: 0 var(--r) var(--r) 0;
}
.notice-box p { font-size: .87rem; color: var(--text-md); line-height: 1.72; }
.notice-box strong { color: var(--navy); }
