/* =====================================================================
   HALSTEAD INSURANCE AGENCY — Design System
   Hand-coded. Portable into GoHighLevel custom-code blocks.
   Brand: maroon/burgundy #782F40  |  Modern Trust / Premium
   ===================================================================== */

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* Brand */
  --maroon-900: #4a1c2a;
  --maroon-800: #5f2536;
  --maroon-700: #782f40;   /* primary brand */
  --maroon-600: #8d3a4d;
  --maroon-500: #a8485f;
  --maroon-300: #d9a9b5;
  --maroon-100: #f5e7eb;
  --maroon-50:  #fbf4f6;

  /* Accent — warm gold for trust/premium highlights */
  --gold-600: #b8893b;
  --gold-500: #c99a4e;
  --gold-300: #e8c98a;
  --gold-100: #f7edd8;

  /* Neutrals */
  --ink-900: #14161a;
  --ink-800: #1e2228;
  --ink-700: #2b313a;
  --ink-600: #424a56;
  --ink-500: #5d6675;
  --ink-400: #8a93a3;
  --ink-300: #c3cad5;
  --ink-200: #e2e7ee;
  --ink-100: #eef1f6;
  --ink-50:  #f7f9fc;
  --white:   #ffffff;

  /* Semantic */
  --bg:        #ffffff;
  --bg-soft:   #f7f9fc;
  --bg-tint:   #fbf4f6;
  --text:      #2b313a;
  --text-soft: #5d6675;
  --heading:   #14161a;
  --border:    #e2e7ee;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #8d3a4d 0%, #782f40 45%, #5f2536 100%);
  --grad-brand-soft: linear-gradient(160deg, #fbf4f6 0%, #ffffff 60%);
  --grad-ink: linear-gradient(155deg, #1e2228 0%, #14161a 100%);
  --grad-gold: linear-gradient(135deg, #e8c98a 0%, #c99a4e 100%);
  --grad-sheen: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,0) 60%);
  --grad-hero-veil: linear-gradient(180deg, rgba(20,22,26,.30) 0%, rgba(74,28,42,.78) 100%);

  /* Shadows — layered, soft, premium */
  --shadow-xs: 0 1px 2px rgba(20,22,26,.06);
  --shadow-sm: 0 2px 6px rgba(20,22,26,.07), 0 1px 2px rgba(20,22,26,.05);
  --shadow-md: 0 8px 24px -8px rgba(20,22,26,.16), 0 2px 6px rgba(20,22,26,.06);
  --shadow-lg: 0 20px 48px -16px rgba(20,22,26,.24), 0 6px 14px -8px rgba(20,22,26,.12);
  --shadow-xl: 0 36px 80px -24px rgba(20,22,26,.32), 0 10px 24px -12px rgba(20,22,26,.16);
  --shadow-brand: 0 16px 36px -12px rgba(120,47,64,.42);
  --shadow-gold: 0 12px 28px -10px rgba(184,137,59,.45);
  --ring: 0 0 0 4px rgba(120,47,64,.16);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;

  /* Spacing / shape */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1200px;
  --container-wide: 1340px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ----------  RESET  ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--maroon-500); outline-offset: 2px; border-radius: 4px; }

/* ----------  TYPE  ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--heading); line-height: 1.1; font-weight: 600; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; font-weight: 600; }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-600); line-height: 1.6; }
strong { color: var(--ink-800); font-weight: 600; }

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }
.maxw-640 { max-width: 640px; }
.grid { display: grid; gap: 28px; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--grad-brand-soft); }
.bg-ink { background: var(--grad-ink); color: #d9dee7; }
.bg-ink h1,.bg-ink h2,.bg-ink h3 { color: #fff; }

/* ----------  EYEBROW / KICKER  ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--maroon-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.bg-ink .eyebrow { color: var(--gold-300); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
  will-change: transform; position: relative; overflow: hidden; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -12px rgba(120,47,64,.55); }
.btn-primary::after { content:""; position:absolute; inset:0; background: var(--grad-sheen); opacity:0; transition: opacity .3s; }
.btn-primary:hover::after { opacity:1; }
.btn-gold { background: var(--grad-gold); color: var(--maroon-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(184,137,59,.6); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--maroon-700); border-color: var(--ink-200); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--maroon-300); color: var(--maroon-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--maroon-700); font-family: var(--font-sans); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------  HEADER / NAV  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.topbar { background: var(--grad-ink); color: #c3cad5; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 8px; }
.topbar a { color: #d9dee7; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar .sep { color: var(--ink-500); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { display: inline-flex; }
.topbar svg { width: 15px; height: 15px; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-ico { display: inline-flex; width: 54px; height: 54px; flex-shrink: 0; }
.brand-ico svg { width: 100%; height: 100%; }
.brand-mark { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--maroon-800); letter-spacing: -.015em; }
.brand-name em { font-style: italic; font-weight: 400; color: var(--maroon-600); margin-left: .28em; }
.brand-sub { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; margin-top: 3px; }
/* footer brand uses the wordmark only */
.footer-brand .brand-name { font-size: 1.5rem; }
.footer-brand .brand-name em { color: var(--gold-300); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 10px; font-weight: 500; font-size: .96rem; color: var(--ink-700);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--maroon-700); background: var(--maroon-50); }
.nav-link svg { width: 14px; height: 14px; opacity: .6; transition: transform .25s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .26s var(--ease-out); z-index: 50;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 10px; transition: background .2s; }
.nav-dropdown a:hover { background: var(--maroon-50); }
.nav-dropdown a span.t { font-weight: 600; color: var(--ink-800); font-size: .95rem; }
.nav-dropdown a:hover span.t { color: var(--maroon-700); }
.nav-dropdown a span.d { font-size: .8rem; color: var(--ink-400); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-800); font-size: .95rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--maroon-700); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: 0; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-800); border-radius: 2px; transition: .3s; }
.nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px);
  background: #fff; z-index: 200; transform: translateX(100%); transition: transform .4s var(--ease-out);
  box-shadow: var(--shadow-xl); overflow-y: auto; padding: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(20,22,26,.5); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.mobile-close { background: var(--ink-50); border: 0; border-radius: 10px; width: 42px; height: 42px; font-size: 1.4rem; color: var(--ink-700); }
.m-group { border-top: 1px solid var(--border); padding: 8px 0; }
.m-group > a, .m-acc-trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 14px 6px; font-weight: 600; color: var(--ink-800); background: none; border: 0; text-align: left; font-size: 1.02rem; }
.m-acc-trigger svg { width: 18px; height: 18px; transition: transform .3s; }
.m-acc-trigger.open svg { transform: rotate(180deg); }
.m-acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.m-acc-panel a { display: block; padding: 11px 18px; color: var(--ink-600); font-size: .95rem; }
.mobile-cta { margin-top: 22px; display: grid; gap: 12px; }

/* ----------  HERO  ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero--brand { background: var(--grad-ink); }
.hero--brand::before { content:""; position:absolute; inset:0; z-index:-1; background:
  radial-gradient(1200px 480px at 78% -10%, rgba(120,47,64,.55), transparent 60%),
  radial-gradient(900px 500px at 0% 110%, rgba(95,37,54,.45), transparent 60%); }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero-veil); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1; }
.hero-inner { padding: clamp(80px, 13vw, 168px) 0 clamp(72px, 11vw, 140px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .hero-sub { color: rgba(255,255,255,.9); font-size: clamp(1.1rem, 1.7vw, 1.35rem); max-width: 50ch; margin-top: 22px; }
.hero .btn-row { margin-top: 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 52px; }
.hero-badge { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.92); font-size: .92rem; font-weight: 500; }
.hero-badge svg { width: 22px; height: 22px; color: var(--gold-300); flex-shrink: 0; }

/* glass quote card on hero */
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.quote-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,.6);
}
.quote-card h3 { font-size: 1.5rem; }
.quote-card .sub { color: var(--ink-500); margin-top: 6px; font-size: .95rem; }

/* ----------  FORMS  ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--ink-200); border-radius: 11px;
  font: inherit; font-size: .96rem; color: var(--ink-800); background: var(--ink-50); transition: border .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--maroon-500); background: #fff; box-shadow: var(--ring); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill label { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border: 1px solid var(--ink-200); border-radius: 999px; font-size: .88rem; font-weight: 500; margin: 0; cursor: pointer; transition: .2s; color: var(--ink-600); }
.check-pill input:checked + label { background: var(--maroon-50); border-color: var(--maroon-500); color: var(--maroon-700); }
.form-note { font-size: .8rem; color: var(--ink-400); margin-top: 12px; text-align: center; }
.embed-slot { border: 2px dashed var(--ink-200); border-radius: var(--radius); padding: 28px; text-align: center; color: var(--ink-400); background: var(--ink-50); font-size: .9rem; }

/* ----------  CARDS  ---------- */
.cards { display: grid; gap: 26px; }
.cards-2 { grid-template-columns: repeat(2,1fr); }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.cards-4 { grid-template-columns: repeat(4,1fr); }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--maroon-100); }
.card-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--grad-brand-soft); border: 1px solid var(--maroon-100); color: var(--maroon-700);
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card .link-arrow { margin-top: 18px; }
.card-top-accent::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.card-top-accent:hover::before { transform: scaleX(1); }

/* feature card with image */
.feature-card { padding: 0; }
.feature-card .fc-img { aspect-ratio: 16/10; overflow: hidden; }
.feature-card .fc-img img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.feature-card:hover .fc-img img { transform: scale(1.06); }
.feature-card .fc-body { padding: 26px 28px 30px; }

/* ----------  STAT STRIP  ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.1rem); font-weight: 600; color: var(--maroon-700); line-height: 1; letter-spacing: -.02em; }
.bg-ink .stat .num { color: var(--gold-300); }
.stat .lab { margin-top: 10px; font-size: .9rem; color: var(--ink-500); font-weight: 500; }
.bg-ink .stat .lab { color: #aeb6c2; }

/* ----------  SPLIT / MEDIA  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.media-frame { position: relative; }
.media-frame::after { content:""; position:absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--maroon-200,#e6c7cf); border-radius: var(--radius-lg); z-index:-1; }
.media-badge {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 24px;
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
}
.media-badge .mb-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon-700); font-weight: 600; line-height: 1; }
.media-badge .mb-lab { font-size: .82rem; color: var(--ink-500); }

/* ----------  GRAPHIC PANEL (branded gradient stand-in for photos)  ---------- */
.graphic-panel { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; min-height: 340px; padding: 44px; border-radius: var(--radius-lg); background: var(--grad-brand); box-shadow: var(--shadow-lg); isolation: isolate; }
.graphic-panel .gp-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(440px 240px at 82% -5%, rgba(232,201,138,.38), transparent 60%), radial-gradient(380px 260px at 0% 105%, rgba(255,255,255,.12), transparent 60%); }
.graphic-panel .gp-ico { width: 86px; height: 86px; }
.graphic-panel .gp-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: #fff; max-width: 22ch; line-height: 1.25; }
.story-photo .graphic-panel { min-height: 400px; }

/* ----------  STORY (stacked image-over-content)  ---------- */
.story-photo { position: relative; max-width: 1040px; margin: 0 auto clamp(40px, 6vw, 64px); }
.story-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.story-photo .media-badge { left: auto; right: 32px; transform: none; }
.story-body { max-width: 760px; margin-inline: auto; }
@media (max-width: 680px) {
  .story-photo .media-badge { right: 50%; transform: translateX(50%); }
}

/* ----------  CHECK LIST  ---------- */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist .ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--maroon-50); color: var(--maroon-700); display: grid; place-items: center; margin-top: 2px; }
.checklist .ic svg { width: 15px; height: 15px; }
.checklist li span.tx { color: var(--ink-700); }
.checklist li strong { color: var(--ink-800); }

/* pill chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: .9rem; font-weight: 500; color: var(--ink-700); box-shadow: var(--shadow-xs); transition: .25s; }
.chip:hover { border-color: var(--maroon-300); color: var(--maroon-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip svg { width: 16px; height: 16px; color: var(--maroon-600); }

/* ----------  TESTIMONIALS  ---------- */
.testi { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); position: relative; transition: .35s var(--ease-out); }
.testi:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi .stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 16px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote { font-size: 1.05rem; color: var(--ink-700); line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.testi .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); }
.testi .who .nm { font-weight: 600; color: var(--ink-800); font-size: .95rem; }
.testi .who .mt { font-size: .82rem; color: var(--ink-400); }

/* ----------  CARRIER LOGO WALL  ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.logo-cell { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); height: 96px; display: grid; place-items: center; padding: 16px; transition: .3s var(--ease-out); }
.logo-cell:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--maroon-100); }
.logo-cell img { max-height: 52px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .3s; }
.logo-cell:hover img { filter: grayscale(0); opacity: 1; }
.logo-cell--text span { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--ink-600); text-align: center; line-height: 1.2; transition: color .3s; }
.logo-cell--text:hover span { color: var(--maroon-700); }
/* monogram avatars (team) */
.team-photo--mono { display: grid; place-items: center; background: var(--grad-brand); }
.team-photo--mono span { font-family: var(--font-display); color: #fff; font-size: 2.6rem; font-weight: 600; letter-spacing: .02em; }

/* marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 50px; align-items: center; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img { height: 38px; width: auto; filter: grayscale(1); opacity: .6; }
.marquee-track .cn { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--ink-400); white-space: nowrap; display: inline-flex; align-items: center; }
.marquee-track .cn::after { content: "•"; margin-left: 50px; color: var(--maroon-300); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------  PROCESS STEPS  ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: .35s var(--ease-out); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .step-n { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-brand); }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { font-size: .94rem; }

/* ----------  CTA BAND  ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(40px,6vw,72px); background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); isolation: isolate; }
.cta-band::before { content:""; position:absolute; width: 420px; height: 420px; border-radius:50%; background: radial-gradient(circle, rgba(232,201,138,.4), transparent 70%); top: -160px; right: -120px; z-index:-1; }
.cta-band::after { content:""; position:absolute; width: 360px; height: 360px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); bottom: -180px; left: -100px; z-index:-1; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 52ch; margin-top: 14px; font-size: 1.08rem; }
.cta-band .btn-row { margin-top: 30px; }

/* ----------  FAQ ACCORDION  ---------- */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--maroon-100); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 26px; background: none; border: 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink-800); }
.faq-q .fic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--maroon-50); color: var(--maroon-700); display: grid; place-items: center; transition: .3s; }
.faq-item.open .fic { background: var(--maroon-700); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-600); }

/* ----------  TEAM  ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: .4s var(--ease-out); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--ink-100); }
.team-photo img { width:100%; height:100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease-out); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 20px 22px 24px; }
.team-body .nm { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink-900); }
.team-body .ti { color: var(--maroon-700); font-size: .88rem; font-weight: 600; margin: 4px 0 12px; }
.team-body .ph { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--ink-500); }
.team-body .ph svg { width: 15px; height: 15px; color: var(--maroon-600); }

/* ----------  LOCATIONS  ---------- */
.loc-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition:.4s var(--ease-out); display:flex; flex-direction:column; }
.loc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.loc-card .loc-head { background: var(--grad-brand); color:#fff; padding: 22px 26px; }
.loc-card .loc-head h3 { color:#fff; font-size:1.35rem; }
.loc-card .loc-head .tag { font-size:.82rem; color: rgba(255,255,255,.85); margin-top:4px; }
.loc-card .loc-body { padding: 24px 26px; display:grid; gap:14px; flex:1; }
.loc-row { display:flex; gap:12px; align-items:flex-start; font-size:.95rem; color: var(--ink-600); }
.loc-row svg { width:18px; height:18px; color: var(--maroon-600); flex-shrink:0; margin-top:2px; }
.loc-card .loc-foot { padding: 0 26px 26px; }

/* ----------  BREADCRUMB  ---------- */
.crumb { display:none; gap:8px; align-items:center; font-size:.85rem; color: var(--ink-400); padding-block: 18px; flex-wrap: wrap; }
.crumb a { color: var(--ink-500); }
.crumb a:hover { color: var(--maroon-700); }
.crumb svg { width:13px; height:13px; opacity:.6; }
.crumb .cur { color: var(--maroon-700); font-weight:600; }
.page-hero { background: var(--grad-ink); color:#fff; position:relative; overflow:hidden; isolation:isolate; }
.page-hero::before { content:""; position:absolute; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(120,47,64,.55), transparent 70%); top:-200px; right:-120px; z-index:-1; }
.page-hero::after { content:""; position:absolute; width:380px; height:380px; border-radius:50%; background: radial-gradient(circle, rgba(184,137,59,.22), transparent 70%); bottom:-180px; left:-100px; z-index:-1; }
.page-hero .inner { padding: clamp(48px,8vw,96px) 0 clamp(40px,6vw,72px); }
.page-hero h1 { color:#fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 56ch; margin-top: 18px; }
.page-hero .crumb { color: rgba(255,255,255,.55); }
.page-hero .crumb a { color: rgba(255,255,255,.7); }
.page-hero .crumb .cur { color: var(--gold-300); }

/* ----------  FOOTER  ---------- */
.site-footer { background: var(--grad-ink); color: #aeb6c2; padding-top: clamp(56px,8vw,88px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color:#fff; }
.footer-brand p { color: #97a0ad; margin-top: 16px; font-size: .94rem; max-width: 34ch; }
.footer-social { display:flex; gap:12px; margin-top: 22px; }
.footer-social a { width:40px; height:40px; border-radius:11px; background: rgba(255,255,255,.06); display:grid; place-items:center; transition:.25s; }
.footer-social a:hover { background: var(--maroon-700); transform: translateY(-3px); }
.footer-social svg { width:18px; height:18px; color:#fff; }
.footer-col h4 { color:#fff; font-family: var(--font-sans); font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom: 18px; }
.footer-col a { display:block; padding: 7px 0; color:#9aa3b0; font-size:.94rem; transition:.2s; }
.footer-col a:hover { color:#fff; padding-left: 4px; }
.footer-contact-row { display:flex; gap:11px; align-items:flex-start; margin-bottom: 14px; font-size:.92rem; color:#9aa3b0; }
.footer-contact-row svg { width:17px; height:17px; color: var(--gold-300); flex-shrink:0; margin-top:3px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap; padding-block: 26px; font-size:.84rem; color:#7c8593; }
.footer-bottom a { color:#9aa3b0; }
.footer-bottom a:hover { color:#fff; }

/* ----------  ANIMATION UTILITIES  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.float-soft { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .logo-wall { grid-template-columns: repeat(4,1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .media-frame::after { display:none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .cards-2, .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 28px 18px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .logo-wall { grid-template-columns: repeat(3,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .topbar-left .hide-sm { display:none; }
  .footer-top { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .hero-badges { gap: 14px 22px; }
  .brand-logo { height: 64px; }
}
@media (max-width: 420px) {
  .team-grid, .logo-wall { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

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

/* print niceties */
@media print { .site-header, .site-footer, .cta-band { box-shadow:none; } }

/* ----------  REAL PHOTOS (migrated from original site)  ---------- */
.media-frame > img.photo { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); display:block; }
.loc-photo { width:100%; aspect-ratio:16/7; object-fit:cover; display:block; }
.team-banner { margin: 0 auto clamp(32px,5vw,48px); max-width:1040px; }
.team-banner img { width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); display:block; }
