/* ==========================================================================
   Tradition Locksmith — design system
   Coastal boutique identity: navy + gold, classic serif display + spaced sans.
   Intentionally distinct from Swift Key & Lock's dark/gold Bebas Neue identity.
   ========================================================================== */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-900-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/jost-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jost-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/jost-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/jost-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/jost-latin-700-normal.woff2") format("woff2");
}

:root {
  /* Brand palette, sampled from the Tradition Locksmith logo */
  --navy-900: #0d2e51;
  --navy-800: #143a60;
  --navy-700: #1b3a5c;
  --navy-600: #24486e;
  --navy-500: #2f5c86;
  --gold-600: #a67a37;
  --gold-ink: #7a5620; /* AA-contrast gold for text on light backgrounds */
  --gold-500: #c49249;
  --gold-400: #d9a855;
  --gold-300: #e8c98a;
  --sand-100: #faf6ee;
  --sand-200: #f2ead8;
  --sea-300: #9dc0cd;
  --sea-200: #cfe2e7;
  --white: #ffffff;
  --ink: #1c2733;
  --ink-soft: #4a5765;
  --line: #e4dcc9;
  --success: #2f7d5e;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(13, 46, 81, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 46, 81, 0.14);
  --shadow-lg: 0 24px 60px rgba(13, 46, 81, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* Default inline icon size — every larger usage below overrides this explicitly. */
svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
  box-shadow: var(--shadow-md);
}
.btn--navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-700);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--outline {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn--outline:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn--sm {
  padding: 0.6em 1.15em;
  font-size: 0.88rem;
}
.btn--block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(196, 146, 73, 0.25);
}
.site-header__bar {
  max-width: var(--container);
  margin-inline: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand__mark {
  width: 52px;
  height: auto;
}
.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand__name em {
  font-style: normal;
  color: var(--gold-400);
  font-weight: 600;
  margin-left: 0.32em;
}
.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-300);
  font-weight: 500;
}
.main-nav {
  margin-inline: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 6px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown__caret {
  width: 0.7em;
  height: 0.7em;
  transition: transform 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--navy-800);
  border: 1px solid rgba(196, 146, 73, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.nav-dropdown__menu a::after {
  display: none;
}
.nav-dropdown__menu a:hover {
  background: rgba(196, 146, 73, 0.14);
  color: var(--gold-300);
}

.mobile-nav a.mobile-nav__sublink {
  padding-left: 24px;
  font-size: 0.92em;
  color: rgba(255, 255, 255, 0.65);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.header-hours {
  display: none;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 6px;
  cursor: pointer;
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
}
.nav-toggle__close {
  display: none;
}
.mobile-nav {
  display: none;
  background: var(--navy-800);
  padding: 8px 24px 20px;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.nav-open .mobile-nav {
  display: block;
}
body.nav-open .nav-toggle__open {
  display: none;
}
body.nav-open .nav-toggle__close {
  display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4.5rem, 10vw, 8rem);
}
.hero-skyline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.hero--split .hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  color: var(--gold-300);
}
.hero h1 {
  color: var(--white);
  margin-top: 0.35em;
}
.hero__lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.6em;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 2.4em;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero__badge svg {
  width: 1.3em;
  height: 1.3em;
  color: var(--gold-400);
  flex: none;
}
.hero__panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}

/* breadcrumb */
.breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2em;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs a:hover {
  color: var(--gold-300);
}
.breadcrumbs span[aria-hidden] {
  margin-inline: 0.5em;
  opacity: 0.5;
}

/* ==========================================================================
   Sections & cards
   ========================================================================== */
.section-head {
  max-width: 62ch;
  margin-bottom: 2.6rem;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  margin-bottom: 0.4em;
}
.service-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.service-card ul li svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--gold-500);
  flex: none;
  margin-top: 0.2em;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 18px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.92rem;
}
.service-card__link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.15s ease;
}
.service-card__link:hover svg {
  transform: translateX(3px);
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand-200);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.icon-chip svg {
  width: 22px;
  height: 22px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-900);
  color: var(--white);
  padding: 22px 0;
}
.trust-bar__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: rgba(255, 255, 255, 0.9);
}
.trust-bar__item svg {
  width: 1.3em;
  height: 1.3em;
  color: var(--gold-400);
}

/* Brand illustration — hand-built SVG line art standing in for real
   photography (see the PLACEHOLDER NOTE at the top of illustrations.js). */
.brand-illustration-wrap {
  position: relative;
  aspect-ratio: var(--ratio, 4 / 3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 146, 73, 0.3);
}
.brand-illustration {
  display: block;
  width: 100%;
  height: 100%;
}

/* Location cards */
.location-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.location-card__county {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 0.4em;
}
.location-card h3 {
  margin-bottom: 0.5em;
}
.location-card p {
  flex: 1;
  font-size: 0.94rem;
}
.location-card__link {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

/* Highlight / featured banner (used for Tradition-specific callout) */
.highlight-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.highlight-banner__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(196, 146, 73, 0.18);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-banner__icon svg {
  width: 32px;
  height: 32px;
}
.highlight-banner h2,
.highlight-banner h3 {
  color: var(--white);
}
.highlight-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* FAQ accordion */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary svg {
  flex: none;
  width: 1.2em;
  height: 1.2em;
  color: var(--gold-500);
  transition: transform 0.2s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 4px 22px;
  max-width: 68ch;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 0.2em;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600));
  color: var(--white);
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-band h2 {
  color: var(--white);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
  margin-inline: auto;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.8em;
}

/* Alt background section */
.section--sand {
  background: var(--sand-200);
}
.section--navy {
  background: var(--navy-900);
  color: var(--white);
}
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}
.section--navy p {
  color: rgba(255, 255, 255, 0.82);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial__quote {
  width: 30px;
  height: 30px;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.testimonial__stars svg {
  width: 16px;
  height: 16px;
}
.testimonial__name {
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 12px;
  display: block;
}
.testimonial__meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Forms */
.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
  border-color: var(--gold-500);
}
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--checkbox label {
  font-weight: 400;
  color: var(--ink-soft);
}

/* Map + info split */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-list__item {
  display: flex;
  gap: 16px;
}
.info-list__item h3 {
  margin-bottom: 0.2em;
  font-size: 1.05rem;
}

/* Neighborhood chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-size: 0.86rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sand-200);
  color: var(--navy-800);
  font-weight: 500;
  border: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
}
.site-footer__grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-col a:hover {
  color: var(--gold-400);
}
.footer-col--brand .brand__name {
  font-size: 1.15rem;
}
.footer-col__tagline {
  margin: 14px 0 6px;
  font-size: 0.86rem;
  color: var(--sea-300);
  letter-spacing: 0.03em;
}
.footer-col__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}
.footer-contact li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact li svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--gold-400);
  flex: none;
  margin-top: 0.15em;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__bottom p {
  color: inherit;
  margin: 0;
}

/* Mobile call FAB */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  border-radius: 999px;
  padding: 14px 20px;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.mobile-call-fab svg {
  width: 1.2em;
  height: 1.2em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 900px) {
  .header-hours {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .site-header__actions .btn--gold span {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero--split .hero__content {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-split .brand-illustration-wrap {
    aspect-ratio: 16 / 9;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__bar {
    padding: 10px 16px;
  }
  .brand__mark {
    width: 42px;
  }
  .brand__name {
    font-size: 1.05rem;
  }
  .site-header__actions .btn--gold {
    padding: 0.6em 0.75em;
  }
  .container {
    padding-inline: 18px;
  }
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .highlight-banner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    padding: 40px 20px 28px;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .mobile-call-fab {
    display: inline-flex;
  }
  main {
    padding-bottom: 76px;
  }
  .hero__panel {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
