/* ============================================================
   TAMPA DOCK BUILDERS — DESIGN SYSTEM
   Edit values in :root below to update the entire site.
   ============================================================ */

:root {
  /* ⬇⬇⬇ EDIT PHONE HERE — one place, every page updates ⬇⬇⬇ */
  --phone-display: "(813) 536-3984";
  --phone-link: "+18135363984";

  /* ⬇⬇⬇ EDIT BUSINESS INFO HERE ⬇⬇⬇ */
  --biz-email: "hello@tampadockbuilders.com";
  --biz-address: "1234 Bayshore Blvd, Tampa, FL 33606";

  /* ⬇⬇⬇ EDIT BRAND COLORS HERE ⬇⬇⬇ */
  --navy:     #0d1b2a;
  --navy-2:   #142436;
  --navy-3:   #1b2e44;
  --navy-4:   #243a55;
  --gold:     #f4b942;
  --gold-2:   #ffd166;
  --gold-dim: #c9933a;
  --bone:     #f4f1ea;
  --bone-dim: #a8b0bd;
  --line:     rgba(255,255,255,0.08);
  --line-2:   rgba(244,185,66,0.18);

  --display: 'Anton', Impact, sans-serif;
  --body:    'Archivo', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;

  --container: 1280px;
  --container-narrow: 1100px;
  --radius:    3px;
  --radius-lg: 6px;

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.35);
  --shadow-gold: 0 8px 24px rgba(244,185,66,0.28);
}

/* ============ RESETS ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--bone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) {
  .container, .container-narrow { padding: 0 40px; }
}

/* ============ TYPE ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--display); font-weight: 400;
  letter-spacing: 0.01em; line-height: 1.05; text-transform: uppercase;
}
h1 { font-size: clamp(40px, 8vw, 96px); }
h2 { font-size: clamp(30px, 5.5vw, 60px); }
h3 { font-size: clamp(20px, 2.6vw, 28px); }
h4 { font-size: clamp(18px, 2.2vw, 22px); }
h5 { font-size: 16px; letter-spacing: 0.06em; }

.eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}

/* Phone text auto-fill via CSS variable */
.phone-text::after { content: var(--phone-display); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 17px 30px;
  font-family: var(--display); font-size: 17px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: all 0.2s ease; cursor: pointer;
  min-height: 56px; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-secondary:hover { background: var(--bone); color: var(--navy); transform: translateY(-2px); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }
.btn svg { width: 20px; height: 20px; }

/* ============ TOP BAR ============ */
.top-bar { background: #07111c; border-bottom: 1px solid var(--line); font-size: 13px; padding: 9px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left { color: var(--bone-dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.top-bar-left .gold-dot { color: var(--gold); }
.top-bar-right a { color: var(--bone); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.top-bar-right a:hover { color: var(--gold); }
@media (max-width: 600px) { .top-bar-left { display: none; } }

/* ============ NAV ============ */
.nav { background: var(--navy); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 20px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; display: block; }
@media (min-width: 900px) { .logo img { height: 64px; } }

.nav-links { display: none; gap: 28px; align-items: center; list-style: none; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-dropdown-trigger {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--bone);
  background: none; border: none; cursor: pointer;
  padding: 10px 0; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.nav-links > li > a::after, .nav-dropdown-trigger::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links > li > a:hover::after, .nav-links > li > a.active::after,
.nav-dropdown:hover .nav-dropdown-trigger::before, .nav-dropdown.open .nav-dropdown-trigger::before { transform: scaleX(1); }
.nav-links > li > a:hover, .nav-links > li > a.active,
.nav-dropdown-trigger:hover, .nav-dropdown.open > .nav-dropdown-trigger { color: var(--gold); }
.nav-dropdown-trigger::after { content: '▾'; font-size: 9px; transition: transform 0.2s; margin-left: 2px; }
.nav-dropdown.open .nav-dropdown-trigger::after { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-2); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  min-width: 260px; padding: 14px 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110; box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu li a {
  display: block; padding: 11px 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--bone); transition: all 0.15s;
  border-left: 3px solid transparent;
}
.nav-dropdown-menu li a:hover, .nav-dropdown-menu li a.active { color: var(--gold); background: var(--navy-3); border-left-color: var(--gold); padding-left: 26px; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 12px 22px; font-family: var(--display); font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-2); box-shadow: var(--shadow-gold); }

/* Mobile menu toggle */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; position: relative; z-index: 190; }
@media (min-width: 900px) { .nav-toggle { display: none !important; } }
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--bone); transition: 0.2s; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: 85vw; max-width: 360px;
  background: var(--navy-2); padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s;
  visibility: hidden;
  z-index: 200; box-shadow: -8px 0 30px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 150; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--bone); cursor: pointer; padding: 4px; }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-nav > ul > li > a {
  display: block; padding: 18px 0;
  font-family: var(--display); font-size: 20px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone);
}
.mobile-nav > ul > li > a:hover, .mobile-nav > ul > li > a.active { color: var(--gold); }

/* Mobile accordion sub-menu */
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-grouptrigger {
  width: 100%; padding: 18px 0; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-size: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--bone); cursor: pointer; text-align: left;
}
.mobile-nav-grouptrigger::after { content: '+'; font-size: 24px; color: var(--gold); transition: transform 0.2s; }
.mobile-nav-group.open .mobile-nav-grouptrigger::after { transform: rotate(45deg); }
.mobile-nav-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-nav-group.open .mobile-nav-submenu { max-height: 800px; padding-bottom: 16px; }
.mobile-nav-submenu li a {
  display: block; padding: 10px 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim);
}
.mobile-nav-submenu li a:hover, .mobile-nav-submenu li a.active { color: var(--gold); }

.mobile-nav-cta { display: block; margin-top: 24px; }
body.nav-open { overflow: hidden; }

/* ============ BREADCRUMBS ============ */
.crumbs { padding: 18px 0; background: var(--navy-2); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px 10px; list-style: none; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim); }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 10px; color: var(--gold); }
.crumbs a { color: var(--bone-dim); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold); }
.crumbs li:last-child { color: var(--gold); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; padding: 80px 0 100px; overflow: hidden; isolation: isolate; }
.hero-sm { min-height: auto; padding: 60px 0 70px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.94) 0%, rgba(13,27,42,0.78) 55%, rgba(13,27,42,0.95) 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.hero-content h1 { color: var(--bone); margin-bottom: 22px; }
.hero-content h1 .gold { color: var(--gold); }
.hero-content h1 .underline-accent { position: relative; display: inline-block; }
.hero-content h1 .underline-accent::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 4px; background: var(--gold); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--gold); font-weight: 700; }
.hero-lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--bone-dim); max-width: 580px; margin-bottom: 32px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 520px; }
.hero-stat { border-top: 2px solid var(--gold); padding-top: 14px; }
.hero-stat-num { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); color: var(--bone); line-height: 1; }
.hero-stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); margin-top: 6px; }

/* ============ QUOTE FORM CARD ============ */
.quote-form-card { background: var(--navy-2); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 32px 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.quote-form-card .form-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.quote-form-card h3 { color: var(--bone); margin-bottom: 8px; font-size: 26px; }
.quote-form-card .form-sub { color: var(--bone-dim); font-size: 14px; margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; background: var(--navy); border: 1px solid var(--line); color: var(--bone); font-family: var(--body); font-size: 15px; border-radius: var(--radius); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-foot { font-size: 11px; color: var(--bone-dim); margin-top: 12px; text-align: center; }
.hp { position: absolute; left: -9999px; }
.form-success { text-align: center; padding: 30px 12px; }
.form-success-icon { width: 64px; height: 64px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 900; margin: 0 auto 20px; }
.quote-form-card button[type="submit"] { width: 100%; }

/* ============ TICKER ============ */
.ticker { background: var(--gold); color: var(--navy); padding: 14px 0; overflow: hidden; font-family: var(--display); font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.ticker-track { display: inline-flex; gap: 40px; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; }
.ticker-item .dot { width: 8px; height: 8px; background: var(--navy); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
@media (min-width: 900px) { section { padding: 100px 0; } }
section.alt { background: var(--navy-2); }
section.tight { padding: 60px 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.section-header h2 { color: var(--bone); margin-bottom: 16px; }
.section-header h2 .gold { color: var(--gold); }
.section-header p { color: var(--bone-dim); font-size: 17px; }
.section-header.left { text-align: left; margin-left: 0; }

/* ============ INTRO BAND ============ */
.intro-band { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 900px) { .intro-band { grid-template-columns: 1fr 1.1fr; gap: 70px; } }
.intro-image { position: relative; aspect-ratio: 5/4; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--line); pointer-events: none; }
.intro-content .eyebrow { margin-bottom: 12px; }
.intro-content h2 { color: var(--bone); margin-bottom: 22px; }
.intro-content h2 .gold { color: var(--gold); }
.intro-content p { color: var(--bone-dim); font-size: 17px; margin-bottom: 18px; }

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden; }
section.alt .service-card { background: var(--navy); }
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,0) 50%, rgba(13,27,42,0.55) 100%); }
.service-body { padding: 28px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.service-body h3 { color: var(--bone); margin-bottom: 12px; }
.service-body p { color: var(--bone-dim); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.service-link { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 14px; }
.service-link::after { content: '→'; transition: transform 0.2s; }

/* ============ PROCESS ============ */
.process-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.process-step { padding: 0 6px; }
.process-num { font-family: var(--display); font-size: 64px; color: var(--gold); line-height: 1; margin-bottom: 16px; display: inline-block; border-bottom: 3px solid var(--gold); padding-bottom: 8px; }
.process-step h3 { color: var(--bone); margin-bottom: 12px; font-size: 22px; }
.process-step p { color: var(--bone-dim); font-size: 15px; }

/* ============ WHY US ============ */
.why-split { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 1000px) { .why-split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.why-image-stack { position: relative; padding-bottom: 30px; padding-right: 20px; }
@media (min-width: 1000px) { .why-image-stack { padding-right: 40px; } }
.why-image-main { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-image-inset { position: absolute; bottom: 0; right: 0; width: 55%; aspect-ratio: 4/3; overflow: hidden; border: 5px solid var(--navy); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.why-image-inset img { width: 100%; height: 100%; object-fit: cover; }
.why-image-badge { position: absolute; top: 24px; left: 24px; background: var(--gold); color: var(--navy); padding: 16px 22px; border-radius: var(--radius); z-index: 2; box-shadow: var(--shadow-sm); }
.why-image-badge .badge-num { font-family: var(--display); font-size: 38px; line-height: 1; }
.why-image-badge .badge-text { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }
.why-content h2 { color: var(--bone); margin-bottom: 22px; }
.why-content h2 .gold { color: var(--gold); }
.why-list { list-style: none; margin-top: 30px; }
.why-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.why-list li:last-child { border-bottom: none; }
.why-list .check-circle { flex-shrink: 0; width: 32px; height: 32px; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; margin-top: 2px; border-radius: 50%; }
.why-list strong { color: var(--bone); font-family: var(--display); font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.why-list span { color: var(--bone-dim); font-size: 15px; }

/* ============ TESTIMONIALS ============ */
.reviews-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: all 0.3s; }
section.alt .review-card { background: var(--navy); }
.review-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.review-text { color: var(--bone); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-text::before { content: '"'; font-family: var(--display); font-size: 64px; color: var(--gold); line-height: 0.4; display: block; margin-bottom: 12px; }
.review-author { font-family: var(--display); font-size: 18px; color: var(--bone); letter-spacing: 0.04em; text-transform: uppercase; }
.review-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ============ FAQ ============ */
/* FAQs use <h3> tags but styled to be sized larger than the answer text */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--navy); border: 1px solid var(--line); margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; transition: border 0.2s; }
section.alt .faq-item { background: var(--navy); }
.faq-item.open { border-color: var(--gold); }
.faq-q { width: 100%; background: none; border: none; color: var(--bone); padding: 22px 26px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q h3 {
  font-family: var(--display); font-size: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--bone); margin: 0; line-height: 1.25; flex: 1;
  font-weight: 400;
}
.faq-item.open .faq-q h3 { color: var(--gold); }
.faq-q-icon { color: var(--gold); font-size: 28px; transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { padding: 0 26px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--bone-dim); font-size: 15px; line-height: 1.7; }
.faq-a p { padding-bottom: 4px; }
.faq-item.open .faq-a { padding: 0 26px 22px; max-height: 800px; }

/* ============ RELATED CARDS ============ */
.related-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card { display: block; background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: all 0.3s; }
section.alt .related-card { background: var(--navy); }
.related-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.related-card-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.related-card h4 { color: var(--bone); margin-bottom: 12px; font-size: 20px; }
.related-card p { color: var(--bone-dim); font-size: 14px; margin-bottom: 16px; }
.related-card-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.related-card-link::after { content: ' →'; }

/* ============ LAYOUT WITH SIDEBAR (inner pages) ============ */
.page-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1000px) { .page-layout { grid-template-columns: 1fr 320px; gap: 50px; } }
.page-main { min-width: 0; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
@media (max-width: 999px) { .sidebar { position: static; } }
.sidebar-card { background: var(--navy-2); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 24px 22px; border-radius: var(--radius); }
.sidebar-card h4 { font-family: var(--display); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { margin-bottom: 2px; }
.sidebar-card ul li a {
  display: block; padding: 10px 12px; border-radius: var(--radius);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bone-dim);
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.sidebar-card ul li a:hover { color: var(--gold); background: var(--navy); border-left-color: var(--gold); padding-left: 14px; }
.sidebar-card ul li a.active { color: var(--gold); background: var(--navy); border-left-color: var(--gold); }
.sidebar-card ul li a::after { content: '→'; float: right; opacity: 0; transition: opacity 0.15s; }
.sidebar-card ul li a:hover::after { opacity: 1; }

/* Sidebar CTA card */
.sidebar-cta { background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%); border: 1px solid var(--gold); padding: 26px 22px; border-radius: var(--radius); text-align: center; }
.sidebar-cta .eyebrow { margin-bottom: 10px; }
.sidebar-cta h4 { font-family: var(--display); font-size: 22px; color: var(--bone); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; line-height: 1.1; }
.sidebar-cta p { color: var(--bone-dim); font-size: 13px; margin-bottom: 18px; }
.sidebar-cta .sidebar-phone { display: block; font-family: var(--display); font-size: 28px; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.02em; }
.sidebar-cta .sidebar-phone:hover { color: var(--gold-2); }
.sidebar-cta .btn { width: 100%; padding: 14px 18px; font-size: 14px; }

/* Sidebar trust card */
.sidebar-trust { background: var(--navy-2); border: 1px solid var(--line); padding: 22px 20px; border-radius: var(--radius); }
.sidebar-trust h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sidebar-trust ul { list-style: none; }
.sidebar-trust ul li { padding: 8px 0; color: var(--bone); font-size: 13px; display: flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); }
.sidebar-trust ul li:last-child { border-bottom: none; }
.sidebar-trust ul li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ============ PROSE BLOCKS ============ */
.prose { max-width: 100%; }
.prose h2 { color: var(--bone); margin: 50px 0 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h2 .gold { color: var(--gold); }
.prose h3 { color: var(--bone); margin: 38px 0 16px; font-size: 24px; }
.prose p { color: var(--bone-dim); font-size: 16px; margin-bottom: 18px; line-height: 1.75; }
.prose ul, .prose ol { color: var(--bone-dim); margin: 0 0 22px 22px; }
.prose li { margin-bottom: 10px; line-height: 1.6; }
.prose li strong { color: var(--bone); }
.prose a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.prose a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.prose .callout { background: var(--navy-2); border-left: 3px solid var(--gold); padding: 24px 28px; margin: 30px 0; border-radius: var(--radius); }
.prose .callout p:last-child { margin-bottom: 0; }
.prose-image { margin: 30px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.prose-image img { width: 100%; height: auto; display: block; }
.prose-image-caption { background: var(--navy-2); padding: 12px 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-dim); }

/* ============ VALUES GRID ============ */
.values-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--navy); border: 1px solid var(--line); padding: 32px 26px; border-radius: var(--radius); }
section.alt .value-card { background: var(--navy); }
.value-num { font-family: var(--display); font-size: 32px; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.value-card h3 { color: var(--bone); margin-bottom: 12px; font-size: 20px; }
.value-card p { color: var(--bone-dim); font-size: 14px; }

/* ============ CONTACT CARDS ============ */
.contact-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: var(--navy); border: 1px solid var(--line); padding: 32px 26px; border-radius: var(--radius); text-align: center; transition: all 0.3s; }
section.alt .contact-card { background: var(--navy); }
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.contact-card-icon { width: 56px; height: 56px; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border-radius: 50%; }
.contact-card h4 { color: var(--bone); margin-bottom: 8px; font-size: 18px; }
.contact-card a, .contact-card p { color: var(--bone-dim); font-size: 14px; word-break: break-word; }
.contact-card a:hover { color: var(--gold); }

/* ============ STATS BAND ============ */
.stats-band { padding: 60px 0; background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-big { font-family: var(--display); font-size: clamp(40px, 6vw, 64px); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bone-dim); }

/* ============ SERVICE AREA PILLS ============ */
.area-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 40px auto 0; }
@media (min-width: 700px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-pill { background: var(--navy); border: 1px solid var(--line); padding: 14px 18px; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone); transition: all 0.2s; border-radius: var(--radius); }
section.alt .area-pill { background: var(--navy); }
.area-pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============ IMAGE PAIR (for service / area pages) ============ */
.image-pair { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 30px 0; }
@media (min-width: 700px) { .image-pair { grid-template-columns: 1fr 1fr; } }
.image-pair-item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.image-pair-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============ FINAL CTA ============ */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: 'TAMPA'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: 28vw; color: var(--gold); opacity: 0.05; letter-spacing: 0.04em; pointer-events: none; z-index: 0; line-height: 1; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--bone); margin-bottom: 18px; }
.final-cta h2 .gold { color: var(--gold); }
.final-cta p { color: var(--bone-dim); font-size: 18px; max-width: 600px; margin: 0 auto 30px; }
.final-cta-phone { display: inline-block; font-family: var(--display); font-size: clamp(40px, 8vw, 72px); color: var(--gold); letter-spacing: 0.04em; margin-bottom: 24px; line-height: 1; }
.final-cta-phone:hover { color: var(--gold-2); }
.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ============ FOOTER ============ */
footer { background: #07111c; padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 60px; width: auto; }
.footer-brand p { color: var(--bone-dim); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-creds { font-family: var(--mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-creds span { color: var(--gold); }
.footer-col h4 { color: var(--bone); font-size: 16px; margin-bottom: 18px; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--bone-dim); font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; color: var(--bone-dim); font-size: 14px; }
.footer-contact a { color: var(--bone); font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; color: var(--bone-dim); font-size: 12px; }
.footer-bottom a { color: var(--bone-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ STICKY MOBILE CALL BAR ============ */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--gold); color: var(--navy); padding: 12px 14px; z-index: 90; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
@media (max-width: 899px) {
  .callbar { display: flex; gap: 10px; }
  body { padding-bottom: 70px; }
}
.callbar a { flex: 1; text-align: center; padding: 10px; font-family: var(--display); font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: var(--radius); }
.callbar a.primary { background: var(--navy); color: var(--gold); }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
}
