:root {
  --navy:       #3f2a1e;
  --navy-mid:   #5a3b29;
  --navy-light: #7b553e;
  --gold:       #D4A574;
  --gold-light: #DEB896;
  --gold-pale:  #ebd8c5;
  --btn-accent: #d69a78;
  --btn-accent-hover: #c98864;
  --btn-accent-soft: #edd0bb;
  --cream:      #f1e8de;
  --white:      #ffffff;
  --text:       #2c241d;
  --muted:      #6f5f50;
  --shadow-soft: 0 12px 30px rgba(46, 31, 22, .08);
  --shadow-card: 0 18px 40px rgba(46, 31, 22, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Frutiger', 'Trebuchet MS', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

::selection {
  background: rgba(212, 165, 116, .25);
  color: var(--navy);
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

/* ── NAVBAR ───────────────────────────── */
.navbar {
  background: rgba(255,255,255,.96) !important;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: -webkit-sticky;
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(63,42,30,.06);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: .02em;
  max-width: calc(100% - 95px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-brand span { color: var(--gold); }

.nav-link {
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .5rem 1rem !important;
  transition: color .2s;
  position: relative;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  background: var(--btn-accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 7px !important;
  padding: .45rem 1.3rem !important;
  transition: background .2s !important;
}
.btn-nav-cta:hover { background: var(--btn-accent-hover) !important; }

.navbar-toggler {
  border-color: rgba(63,42,30,.25);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2863,42,30,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ─────────────────────────────── */
.hero {
  background:
    linear-gradient(110deg, rgba(43, 27, 18, .68) 0%, rgba(63, 42, 30, .56) 44%, rgba(123, 85, 62, .34) 100%),
    url('../assets/images/landing-page-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,165,116,.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at -10% 80%, rgba(212,165,116,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  border: 1px solid rgba(200,151,58,.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 248, 241, .92);
  border: 1px solid rgba(255,255,255,.55);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 24px rgba(24, 14, 8, .18);
}

.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  color: #fff8f1;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: .01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero .lead {
  font-size: 1.25rem;
  color: rgba(255, 248, 241, .86);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.4rem;
}

.btn-gold {
  background: var(--btn-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: .8rem 1.9rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: all .2s;
}
.btn-gold:hover {
  background: var(--btn-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 67, 45, .28);
}

.btn-ghost-white {
  background: rgba(255,255,255,.14);
  color: #fff8f1;
  font-weight: 600;
  font-size: .92rem;
  padding: .8rem 1.9rem;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  backdrop-filter: blur(6px);
  transition: all .2s;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(24, 14, 8, .2);
}
.sec-cta .btn-ghost-white {
  background: rgba(212, 165, 116, .18);
  color: var(--navy);
  border: 2px solid var(--btn-accent);
}
.sec-cta .btn-ghost-white:hover {
  background: var(--btn-accent);
  border-color: var(--btn-accent-hover);
  color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255, 248, 241, .72);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* Quote card */
.quote-card {
  background: #fff;
  border: 1px solid rgba(63,42,30,.14);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.2rem;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.quote-card h4 { font-size: 1.4rem; color: var(--navy); margin-bottom: .35rem; }
.quote-card p  { font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; }

.quote-disclaimer {
  font-size: .74rem;
  color: #958170;
  text-align: center;
  margin-top: .72rem;
  margin-bottom: 0;
}

.vtab {
  display: flex;
  background: #eee1d3;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 1.25rem;
}
.vtab button {
  flex: 1;
  background: transparent;
  border: none;
  color: #7e6a5b;
  font-size: .99rem;
  font-weight: 500;
  padding: .5rem;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  transition: all .2s;
}
.vtab button.active { background: var(--btn-accent); color: #fff; font-weight: 700; }

.q-input {
  background: #fffdfb;
  border: 1px solid rgba(63,42,30,.18);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  padding: .65rem 1rem;
  width: 100%;
  margin-bottom: .65rem;
  outline: none;
  transition: border-color .2s;
  font-family: 'Frutiger', 'Trebuchet MS', 'Segoe UI', sans-serif;
}
.q-input::placeholder { color: rgba(63,42,30,.42); }
.q-input:focus { border-color: var(--btn-accent); }
.q-input option { background: #fff; color: var(--text); }

.btn-quote {
  width: 100%;
  background: var(--btn-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: .8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-quote:hover { background: var(--btn-accent-hover); transform: translateY(-1px); }

.q-input:focus-visible,
.btn-quote:focus-visible,
.btn-gold:focus-visible,
.btn-ghost-white:focus-visible,
.btn-plan:focus-visible,
.soc-btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid rgba(212, 165, 116, .55);
  outline-offset: 2px;
}

/* ── TRUST BAR ────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1.1rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  padding: .25rem .5rem;
  border-radius: 8px;
}

/* ── SECTION COMMONS ──────────────────── */
.section-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}
.section-title {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--navy); }
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.section-sub.light { color: var(--muted); }

/* ── COVERAGE ─────────────────────────── */
.sec-coverage { padding: 100px 0; background: var(--cream); }

.cov-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 22, 16, .05);
}
.cov-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.cov-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(200,151,58,.2); }
.cov-card:hover::after { transform: scaleX(1); }

.cov-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.cov-icon svg { color: var(--gold); width: 21px; height: 21px; }

.cov-card h5 { font-size: 1.35rem; color: var(--navy); margin-bottom: .5rem; }
.cov-card p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .98rem; color: var(--text); margin-bottom: .4rem;
}
.check-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 13px; height: 13px; }

/* ── HOW IT WORKS ─────────────────────── */
.sec-hiw { padding: 100px 0; background: #faf7f2; }

.step-box { text-align: center; padding: 1.5rem 1rem; }
.step-box {
  border-radius: 14px;
  transition: background-color .25s ease, transform .25s ease;
}
.step-box:hover {
  background: rgba(245, 232, 217, .45);
  transform: translateY(-2px);
}
.step-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(200,151,58,.13);
  line-height: 1;
}
.step-icon {
  width: 62px; height: 62px;
  background: rgba(200,151,58,.1);
  border: 1px solid rgba(200,151,58,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-icon svg { color: var(--gold); width: 22px; height: 22px; }
.step-box h5 { color: var(--navy); font-size: 1.3rem; margin-bottom: .45rem; }
.step-box p  { color: var(--muted); font-size: 1rem; line-height: 1.7; margin: 0; }

/* ── PLANS ────────────────────────────── */
.sec-plans { padding: 100px 0; background: #fff; }

.plan-card {
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all .3s;
  background: #fff;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.plan-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(200,151,58,.15); }

.plan-head {
  padding: 1.8rem 1.8rem 1.4rem;
  background: #f7efe6;
}
.plan-card.featured .plan-head {
  background: linear-gradient(135deg, #fff7ef 0%, #f8e8d9 100%);
}

.plan-badge-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gold); color: var(--navy);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .22rem .65rem; border-radius: 50px;
  margin-bottom: .9rem;
}

.plan-veh-icon {
  width: 46px; height: 46px;
  background: rgba(200,151,58,.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.plan-veh-icon svg { color: var(--gold); width: 20px; height: 20px; }

.plan-name { font-size: 1.6rem; color: var(--navy); margin-bottom: .25rem; }
.plan-card.featured .plan-name { color: var(--navy); }
.plan-desc { font-size: 1rem; color: var(--muted); }
.plan-card.featured .plan-desc { color: #7b685a; }

.plan-price-row {
  padding: 1.1rem 1.8rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.07);
}
.plan-from { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.plan-price span { font-size: .95rem; font-family: 'DM Sans',sans-serif; font-weight: 400; color: var(--muted); }

.plan-feats { list-style: none; padding: 1.4rem 1.8rem 1.8rem; margin: 0; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: 1rem; color: var(--text);
  padding: .38rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.plan-feats li:last-child { border: none; }
.plan-feats li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }

.btn-plan {
  display: block; margin: 0 1.8rem 1.8rem;
  padding: .72rem; text-align: center;
  border-radius: 8px; font-weight: 600; font-size: 1.02rem;
  text-decoration: none; transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-plan-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-plan-outline:hover { background: var(--navy); color: #fff; }
.btn-plan-fill { background: var(--btn-accent); color: #fff; border: none; }
.btn-plan-fill:hover { background: var(--btn-accent-hover); transform: translateY(-1px); color: #fff; }

.plans-note {
  color: var(--muted);
  font-size: .84rem;
}

/* ── WHY ──────────────────────────────── */
.sec-why { padding: 100px 0; background: var(--cream); }

.why-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  height: 100%;
  transition: box-shadow .3s, transform .25s ease;
}
.why-card:hover { box-shadow: 0 12px 30px rgba(31,22,16,.1); transform: translateY(-3px); }

.why-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { color: var(--gold); width: 18px; height: 18px; }
.why-card h6 { font-size: 1.15rem; color: var(--navy); margin-bottom: .3rem; }
.why-card p  { font-size: 1rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── TESTIMONIALS ─────────────────────── */
.sec-testi { padding: 100px 0; background: #fff; }

.testi-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0 6px 18px rgba(31, 22, 16, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31, 22, 16, .09);
}
.testi-stars { color: var(--gold); letter-spacing: .08em; margin-bottom: .9rem; }
.testi-quote { font-size: 1.05rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6e7d8, #ead2bd);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; color: var(--navy); font-size: 1.05rem;
}
.testi-name { font-weight: 600; font-size: 1.02rem; color: var(--navy); }
.testi-veh  { font-size: .76rem; color: var(--muted); }

/* ── FAQ ──────────────────────────────── */
.sec-faq { padding: 100px 0; background: var(--cream); }

.accordion-item {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 10px !important;
  margin-bottom: .7rem;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion-item:hover {
  border-color: rgba(200,151,58,.35) !important;
  box-shadow: 0 8px 24px rgba(31,22,16,.06);
}
.accordion-button {
  font-weight: 600; font-size: 1.1rem;
  color: var(--navy); background: #fff;
  box-shadow: none !important;
  padding: 1.2rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
}
.accordion-button:not(.collapsed) { color: var(--gold); background: #fff; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8973a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body { font-size: 1.05rem; color: var(--muted); line-height: 1.8; padding: 0 1.4rem 1.2rem; }

/* ── CTA ──────────────────────────────── */
.sec-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff, #f5ece2);
  position: relative; overflow: hidden;
}
.sec-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 70% 50%, rgba(200,151,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.sec-cta h2 { color: var(--navy); font-size: clamp(2.4rem,5vw,3.6rem); margin-bottom: 1rem; }
.sec-cta p  { color: var(--muted); font-size: .98rem; margin-bottom: 2rem; max-width: 470px; }

/* ── FOOTER ───────────────────────────── */
footer {
  background: linear-gradient(145deg, #6d4c3a 0%, #7b553e 52%, #8d6a4f 100%);
  color: rgba(255,255,255,.82);
  padding: 82px 0 28px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,165,116,.4);
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 100% at 18% 120%, rgba(212,165,116,.22) 0%, transparent 72%),
    radial-gradient(ellipse 55% 90% at 92% -10%, rgba(255,255,255,.08) 0%, transparent 75%);
  pointer-events: none;
}

.ft-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.ft-brand span { color: var(--gold-light); }

.ft-tagline {
  margin-top: .7rem;
  color: rgba(255,255,255,.74);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ft-social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.soc-btn:hover {
  border-color: var(--gold-light);
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.soc-btn svg { width: 14px; height: 14px; }

.ft-head {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-links li { margin-bottom: .6rem; }
.ft-links a {
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: color .2s ease;
}
.ft-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.ft-contact {
  display: flex;
  align-items: flex-start;
  gap: .58rem;
  font-size: .95rem;
  color: rgba(255,255,255,.84);
  margin-bottom: .65rem;
  line-height: 1.45;
}
.ft-contact svg {
  width: 14px;
  height: 14px;
  margin-top: .2rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.ft-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  margin: 1.7rem 0 1rem;
}

.ft-copy {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .02em;
}

/* ── CONTACT MAP ──────────────────────── */
.contact-section-wrapper {
  background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
  padding: 90px 0 60px;
  position: relative;
}

.contact-section-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,165,116,.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.contact-map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 22, 16, .15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(31, 22, 16, .2);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 500px;
}

.contact-card {
  background: #fff;
  border-left: 4px solid var(--btn-accent);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 8px 24px rgba(31, 22, 16, .08);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,165,116,.05) 0%, transparent 100%);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(31, 22, 16, .12);
  border-left-color: var(--gold-light);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-pale), #f0e4d0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(212,165,116,.15);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
  stroke-width: 2;
}

.contact-card-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}

.contact-card-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-card-text a {
  color: var(--btn-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
  overflow-wrap: anywhere;
}

.ft-contact,
.ft-contact a {
  overflow-wrap: anywhere;
}

.contact-card-text a:hover {
  color: var(--btn-accent-hover);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-section-wrapper {
    padding: 70px 0 50px;
  }

  .contact-map {
    height: 380px;
  }

  .contact-cards-stack {
    height: auto;
    justify-content: flex-start;
    gap: 1rem;
  }

  .contact-card {
    flex: none;
    padding: 1.4rem;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ── ANIMATIONS ───────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.fu  { opacity:0; animation:fadeUp .7s ease forwards; }
.d1  { animation-delay:.12s; }
.d2  { animation-delay:.26s; }
.d3  { animation-delay:.4s; }
.d4  { animation-delay:.54s; }

@media (max-width:991px) {
  .hero { padding:60px 0 50px; min-height:auto; }
  .quote-card { margin-top:2.5rem; }
  .hero .lead { font-size: 1.12rem; }
  footer { padding: 68px 0 24px; }
  .ft-head { margin-top: .35rem; }
}

@media (max-width:575px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-brand {
    font-size: 1.35rem;
    max-width: calc(100% - 86px);
  }

  .navbar {
    padding: .8rem 0;
  }

  .navbar-toggler {
    padding: .45rem .6rem;
  }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-stats { gap: 1.2rem; }
  .ft-brand { font-size: 1.8rem; }
  .ft-copy { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
