/* Tampa Handy Pro LLC — main stylesheet (no build step, no external fonts) */

:root {
  /* REPLACEABLE IMAGES — swap a file in assets/ or point these at a new one */
  --img-pattern: url("assets/pattern-blueprint.svg");
  /* END REPLACEABLE IMAGES */

  /* Brand — taken from the navy/gold business card */
  --navy-950: #050f24;
  --navy-900: #071530;
  --navy-800: #0e2248;
  --navy-700: #1a3263;
  --gold-400: #e2bd5c;
  --gold-500: #d4a53a;
  --gold-600: #b98b24;
  --gold-text: #86621a; /* gold that passes contrast on light backgrounds */
  --cream: #f7f4ee;
  --sand: #ece6da;
  --ink: #15192a;
  --ink-soft: #4a5063;
  --white: #fff;
  --line: #ddd6c8;

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.45rem, 1.25rem + 0.8vw, 1.8rem);
  --step-3: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.5rem + 2.6vw, 3.5rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: clamp(3.5rem, 2.5rem + 4vw, 6rem);

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(7, 21, 48, .06), 0 8px 24px rgba(7, 21, 48, .08);
  --shadow-lg: 0 2px 4px rgba(7, 21, 48, .08), 0 18px 48px rgba(7, 21, 48, .16);
  --wrap: 1180px;
  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  padding-bottom: 72px; /* room for the mobile action bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-underline-offset: .18em; }
a:hover { color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--navy-700); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible, .action-bar :focus-visible, .section-dark :focus-visible { outline-color: var(--gold-400); }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.15; color: var(--navy-900); }
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--gold-500); color: var(--navy-900); padding: .6rem 1rem; border-radius: var(--radius); font-weight: 700; }
.skip-link:focus { top: 1rem; }
.visually-hidden, .hp { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-text);
}
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.on-dark .kicker, .kicker.on-dark { color: var(--gold-400); }
.lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons (one vocabulary: "Get a Free Estimate" + "Call") ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .8rem 1.4rem;
  border: 2px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 6px 18px rgba(185, 139, 36, .35); }
.btn-primary:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.on-dark .btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.on-dark .btn-outline:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-lg { min-height: 58px; padding: .95rem 1.7rem; font-size: 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.text-link { font-weight: 700; color: var(--navy-700); display: inline-flex; align-items: center; gap: .4rem; }
.text-link svg { width: 1.1em; height: 1.1em; }
.on-dark .text-link { color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-900); color: var(--white);
  border-bottom: 1px solid rgba(226, 189, 92, .25);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--white); text-decoration: none; margin-right: auto; flex: 1 1 0; min-width: 0; }
.brand:hover { color: var(--white); }
.brand img { width: 48px; height: 48px; border-radius: 10px; }
.brand-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .02em; line-height: 1.1; }
.brand-sub { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); }
.header-call { display: none; color: var(--white); text-decoration: none; font-weight: 700; align-items: center; gap: .45rem; }
.header-call svg { width: 1.1em; height: 1.1em; color: var(--gold-400); }
.header-call:hover { color: var(--gold-400); }
.header-cta { display: none; min-height: 44px; padding: .55rem 1.1rem; }

.nav-toggle {
  display: none; align-items: center; gap: .4rem;
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  padding: .5rem .9rem; font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; min-height: 44px;
}
.nav-toggle svg { width: 1.2em; height: 1.2em; }
.site-nav { width: 100%; order: 5; }
.site-nav ul { list-style: none; display: flex; gap: .25rem; overflow-x: auto; padding-bottom: .6rem; }
.site-nav a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  color: rgba(255,255,255,.88); text-decoration: none; font-weight: 600; white-space: nowrap;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav a[aria-current="page"] { color: var(--gold-400); }

/* With JS: collapsible menu on small screens */
.js .nav-toggle { display: inline-flex; }
.js .site-nav { display: none; }
.js .site-nav.is-open { display: block; }
.js .site-nav.is-open ul { flex-direction: column; padding: .25rem 0 1rem; }
.js .site-nav.is-open a { padding: .8rem .6rem; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }

@media (min-width: 900px) {
  .header-inner { flex-wrap: nowrap; }
  .js .nav-toggle { display: none; }
  .site-nav, .js .site-nav { display: block; width: auto; order: 0; }
  .site-nav ul, .js .site-nav.is-open ul { flex-direction: row; padding: 0; overflow: visible; }
  .header-call { display: inline-flex; }
  .header-cta { display: inline-flex; }
}
@media (min-width: 1100px) { .site-nav a { padding: .55rem .95rem; } }
/* Keep logo + Menu button on one row on narrow phones */
@media (max-width: 479px) {
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .66rem; letter-spacing: .1em; }
  .nav-toggle { padding: .45rem .75rem; }
}

/* ---------- Mobile action bar ---------- */
.action-bar {
  position: fixed; inset: auto 0 0 0; z-index: 60;
  display: grid; grid-template-columns: auto 48px 1fr; gap: .5rem;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(7, 21, 48, .97); border-top: 1px solid rgba(226, 189, 92, .3);
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 48px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .95rem;
  color: var(--white); border: 1px solid rgba(255,255,255,.3); padding: 0 1rem;
}
.action-bar a.icon-only { padding: 0; }
.action-bar a svg { width: 1.15em; height: 1.15em; }
.action-bar a.primary { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
@media (min-width: 900px) { .action-bar { display: none; } }

/* ---------- Sections ---------- */
.section { padding-block: var(--space-5); }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy-900); color: rgba(255,255,255,.86); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: var(--space-4); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head p { color: var(--ink-soft); }
.section-dark .section-head p { color: rgba(255,255,255,.78); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900) var(--img-pattern) center / 640px repeat;
  color: rgba(255,255,255,.88);
  padding-block: clamp(2.25rem, 1.5rem + 4vw, 5rem) clamp(3rem, 2rem + 4vw, 5.5rem);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 6px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
}
.hero-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
.hero h1 { color: var(--white); }
@media (min-width: 900px) { .hero h1 { max-width: 16ch; } }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 1.75rem; }
.hero .btn-row { margin-bottom: 1.25rem; }
.hero-alt-contact { font-size: .98rem; color: rgba(255,255,255,.78); margin: 0; }
.hero-alt-contact a { color: var(--gold-400); font-weight: 700; }
.checks { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.75rem; }
.checks li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .98rem; color: var(--white); }
.checks svg { width: 1.2em; height: 1.2em; color: var(--gold-400); flex: none; }

.hero-photo { margin: 0; position: relative; }
.hero-photo img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(226, 189, 92, .35);
}
.hero-photo figcaption {
  margin-top: .8rem; font-size: .9rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: .5rem;
}
.hero-photo figcaption::before { content: ""; width: 20px; height: 2px; background: var(--gold-500); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy-900) var(--img-pattern) center / 640px repeat;
  color: rgba(255,255,255,.85);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  border-bottom: 6px solid var(--gold-500);
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lead { color: rgba(255,255,255,.82); }
.page-hero .btn-row { margin-top: 1.5rem; }

/* ---------- Promise strip ---------- */
.promises { background: var(--white); border-bottom: 1px solid var(--line); }
.promise-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); }
.promise-list li { padding: 1.4rem 1rem; display: flex; gap: .8rem; align-items: flex-start; }
.promise-list svg { width: 30px; height: 30px; color: var(--gold-600); flex: none; }
.promise-list strong { display: block; color: var(--navy-900); line-height: 1.25; }
.promise-list span { font-size: .92rem; color: var(--ink-soft); line-height: 1.45; display: block; margin-top: .15rem; }
@media (min-width: 900px) {
  .promise-list { grid-template-columns: repeat(4, 1fr); }
  .promise-list li + li { border-left: 1px solid var(--line); }
  .promise-list li { padding: 1.8rem 1.4rem; }
}

/* ---------- Service cards ---------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.service-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card::before {
  content: ""; width: 44px; height: 4px; border-radius: 2px; background: var(--gold-500); margin-bottom: 1.2rem;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card h3 { font-size: 1.3rem; margin-bottom: .45rem; }
.service-card p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.service-card a { margin-top: auto; font-weight: 700; text-decoration: none; color: var(--navy-700); }
.service-card a::after { content: " →"; }
.service-card a:hover { text-decoration: underline; }
.section-foot { margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- Gallery (natural aspect ratios — nothing cropped) ---------- */
.gallery { display: grid; gap: 1.25rem; align-items: start; }
.gallery figure { margin: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: auto; }
.gallery figcaption { padding: .9rem 1.1rem; font-weight: 600; color: var(--navy-900); font-size: .98rem; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Split / about blocks ---------- */
.split { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }
.photo-frame { margin: 0; }
.photo-frame img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.photo-frame figcaption { margin-top: .75rem; font-size: .92rem; color: var(--ink-soft); }
.quote-block {
  margin: 1.5rem 0; padding: 1.25rem 1.4rem; border-left: 4px solid var(--gold-500);
  background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--navy-900);
}
.section-alt .quote-block { background: var(--cream); }

.value-list { list-style: none; display: grid; gap: 1rem; margin: 1.5rem 0; }
.value-list li { display: flex; gap: .9rem; align-items: flex-start; }
.value-list svg { width: 26px; height: 26px; color: var(--gold-600); flex: none; margin-top: .15rem; }
.value-list strong { display: block; color: var(--navy-900); }
.value-list span { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step; position: relative;
  background: var(--navy-800); border: 1px solid rgba(226, 189, 92, .2); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-400); line-height: 1; margin-bottom: .9rem;
}
.steps h3 { color: var(--white); margin-bottom: .4rem; }
.steps p { margin: 0; color: rgba(255,255,255,.78); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-900) var(--img-pattern) center / 640px repeat;
  color: rgba(255,255,255,.85);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  border-top: 6px solid var(--gold-500);
}
.cta-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-inner h2 { color: var(--white); margin-bottom: .35rem; }
.cta-inner p { margin: 0; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.3fr auto; } }

/* ---------- Services page ---------- */
.jump { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.jump a {
  display: inline-block; padding: .5rem .95rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); color: var(--white); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.jump a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }

.service-detail { padding-block: var(--space-5); border-bottom: 1px solid var(--line); }
.service-detail:nth-of-type(even) { background: var(--white); }
.service-detail .tagline { font-weight: 700; color: var(--gold-text); letter-spacing: .04em; margin-bottom: 1rem; }
.detail-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1.1fr .9fr; } .detail-grid.no-photo { grid-template-columns: 1.1fr .9fr; } }
.included {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem;
}
.service-detail:nth-of-type(odd) .included { background: var(--white); }
.included h3 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-text); margin-bottom: .9rem; }
.tick-list { list-style: none; display: grid; gap: .55rem; }
.tick-list li { position: relative; padding-left: 1.85rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .32rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--navy-900);
}
.tick-list li::after {
  content: ""; position: absolute; left: .42rem; top: .5rem;
  width: .3rem; height: .58rem; border: solid var(--gold-400); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.detail-photos { display: grid; gap: 1rem; }
.detail-photos.two { grid-template-columns: 1fr 1fr; align-items: start; }
.detail-photos figure { margin: 0; }
.detail-photos img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-photos figcaption { font-size: .88rem; color: var(--ink-soft); margin-top: .5rem; }
.service-detail .btn-row { margin-top: 1.5rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.35fr 1fr; } }
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.form-card h2 { font-size: var(--step-2); }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 700; color: var(--navy-900); margin-bottom: .35rem; font-size: .98rem; }
.field .req { color: var(--gold-text); }
.field .hint { display: block; font-weight: 400; color: var(--ink-soft); font-size: .88rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .95rem; min-height: 50px;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy-700); background: var(--white); box-shadow: 0 0 0 4px rgba(212, 165, 58, .3);
}
.form-note { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.form-note a { font-weight: 700; }
.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: .5rem; }
.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius); font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status.ok { background: #e6f3ea; color: #164a2a; border: 1px solid #b7dcc3; }
.form-status.err { background: #fbeceb; color: #7a1f1a; border: 1px solid #efc4c0; }
.form-status a { color: inherit; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

.contact-card { background: var(--navy-900); color: rgba(255,255,255,.85); border-radius: var(--radius-lg); padding: 1.75rem 1.6rem; }
.contact-card h2 { color: var(--white); font-size: var(--step-2); }
.contact-list { list-style: none; display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold-400); flex: none; margin-top: .2rem; }
.contact-list small { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact-list a { color: var(--white); font-weight: 700; text-decoration: none; word-break: break-word; }
.contact-list a:hover { color: var(--gold-400); text-decoration: underline; }

.faq { margin-top: 2rem; }
.faq h2 { font-size: var(--step-2); }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .6rem; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 2.8rem 1rem 1.1rem; position: relative;
  font-weight: 700; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--gold-600);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.1rem 1rem; margin: 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding-top: var(--space-5); font-size: .98rem; }
.footer-grid { display: grid; gap: 2.25rem; padding-bottom: var(--space-4); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h2 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1rem; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--gold-400); text-decoration: underline; }
.site-footer .btn-primary, .site-footer .btn-primary:hover { color: var(--navy-900); text-decoration: none; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .slogan { font-family: var(--font-display); font-style: italic; color: var(--gold-400); font-size: 1.1rem; }
.footer-list { list-style: none; display: grid; gap: .55rem; }
.footer-list .contact-line { display: flex; gap: .6rem; align-items: flex-start; }
.footer-list svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: .25rem; }
.social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social a {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .92rem; font-weight: 600;
}
.social a:hover { border-color: var(--gold-400); text-decoration: none; }
.social svg { width: 18px; height: 18px; }
.fine-print { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; font-size: .85rem; color: rgba(255,255,255,.58); }
.fine-print p { margin: 0 0 .35rem; }
.fine-print a { color: rgba(255,255,255,.75); text-decoration: underline; }
