/* ==========================================================================
   Kings Limousine Service — Memphis
   site.css · mobile-first, fluid, no framework
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* colour */
  --ink:        #0b0b0d;
  --ink-2:      #121216;
  --surface:    #17171c;
  --surface-2:  #1e1e25;
  --line:       rgba(255,255,255,.10);
  --line-2:     rgba(255,255,255,.16);

  --gold:       #c8a951;
  --gold-lift:  #e0c47c;
  --gold-deep:  #9c8038;

  --cream:      #f6f2e8;
  --text:       #e8e6e1;
  --muted:      #a5a29b;
  --muted-2:    #78756f;

  /* type */
  --display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid scale */
  --step--1: clamp(.82rem, .79rem + .14vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.09rem);
  --step-1:  clamp(1.22rem, 1.14rem + .38vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.34rem + .78vw, 2.1rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.45vw, 3rem);
  --step-4:  clamp(2.35rem, 1.8rem + 2.7vw, 4.4rem);

  /* space */
  --gutter: clamp(1.15rem, .9rem + 1.2vw, 2rem);
  --section: clamp(3.5rem, 2.4rem + 5vw, 7rem);
  --measure: 68ch;
  --shell: 1240px;

  --radius: 14px;
  --radius-sm: 9px;

  --shadow: 0 18px 50px -22px rgba(0,0,0,.85);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: #fff;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { text-wrap: pretty; }

a { color: var(--gold-lift); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-lift);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--gold); color: #14120c; }

.skip {
  position: absolute; left: -9999px;
  background: var(--gold); color: #14120c;
  padding: .8rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 600; z-index: 200;
}
.skip:focus { left: 0; top: 0; }

/* ---------- Layout primitives ---------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.4rem, 1.8rem + 3vw, 4.5rem); }

.stack > * + * { margin-top: 1.1rem; }
.lede { font-size: var(--step-1); color: var(--muted); max-width: var(--measure); line-height: 1.5; }
.prose { max-width: var(--measure); color: var(--muted); }
.prose p + p { margin-top: 1.05rem; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::after {
  content: ""; height: 1px; flex: 0 0 3rem;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}
@media (max-width: 34em) {
  .eyebrow { letter-spacing: .14em; }
  .eyebrow::after { display: none; }
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { display: none; }

/* Keyword line folded into the H1 — renders exactly like the old .eyebrow
   above it, but the words now sit inside the heading. */
.h1-kicker {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.h1-kicker::after {
  content: ""; height: 1px; flex: 0 0 3rem;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}
@media (max-width: 34em) {
  .h1-kicker { letter-spacing: .14em; }
  .h1-kicker::after { display: none; }
}

.section-head { margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.4rem); }
.section-head .eyebrow { margin-bottom: .9rem; }
.section-head p { color: var(--muted); max-width: 60ch; margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #14120c;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: var(--step-0); letter-spacing: .01em;
  border: 1px solid transparent; border-radius: 999px;
  text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--gold-lift); color: #14120c; transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(200,169,81,.7); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; box-shadow: none; }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,13,.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s var(--ease);
}
.header__bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: #fff; margin-right: auto;
  padding-block: .4rem;
}
.brand img { width: 34px; height: auto; flex: none; }
.brand__name {
  font-family: var(--display); font-weight: 700;
  font-size: 1.12rem; line-height: 1.05; letter-spacing: -.01em;
}
.brand__sub {
  display: block;
  font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-top: .18rem;
}

.nav { display: none; }
.nav a {
  color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 500;
  padding: .5rem .1rem; position: relative; transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .1rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__cta { display: none; }

/* Facebook link in the header — icon only, so it carries an aria-label */
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none;
  margin-left: .55rem;
  color: var(--muted);
  border: 1px solid var(--line-2); border-radius: 50%;
  transition: color .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.social svg { width: 19px; height: 19px; }
.social:hover, .social:focus-visible { color: var(--gold-lift); border-color: var(--gold); background: rgba(200,169,81,.09); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  background: transparent; border: 1px solid var(--line-2); border-radius: 10px;
}
.burger span {
  display: block; width: 19px; height: 1.5px; background: #fff; position: relative;
  transition: background-color .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px; background: #fff;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
  border-top: 0 solid var(--line);
  overflow: hidden;
}
.mobile-nav[data-open="true"] { grid-template-rows: 1fr; border-top-width: 1px; }
.mobile-nav__inner { min-height: 0; overflow: hidden; }
.mobile-nav ul { list-style: none; padding: .6rem 0 1.2rem; margin: 0; }
.mobile-nav a {
  display: block; padding: .95rem .2rem; min-height: 48px;
  color: var(--text); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: 1.1rem; }

@media (min-width: 62em) {
  .burger, .mobile-nav { display: none; }
  .nav { display: flex; align-items: center; gap: clamp(1.1rem, .4rem + 1.3vw, 2rem); }
  .header__cta { display: inline-flex; margin-left: .9rem; }
  .social { margin-left: 1.3rem; }
  .header__bar { min-height: 84px; }
  .brand img { width: 42px; }
  .brand__name { font-size: 1.3rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid; align-items: end;
  min-height: clamp(560px, 84svh, 860px);
  padding-block: clamp(4rem, 3rem + 8vw, 8rem) clamp(3rem, 2rem + 5vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,13,.86) 0%, rgba(11,11,13,.42) 32%, rgba(11,11,13,.80) 74%, var(--ink) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(11,11,13,.72), transparent 62%);
}
.hero__inner { max-width: 34ch; }
@media (min-width: 34em) { .hero__inner { max-width: 46ch; } }
@media (min-width: 62em) { .hero__inner { max-width: 52ch; } }
.hero h1 { margin-block: .7rem 1.1rem; }
.hero h1 em {
  font-style: normal; display: block;
  background: linear-gradient(100deg, var(--gold-lift), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: #cfccc6; font-size: var(--step-1); line-height: 1.5; }
.hero .btn-row { margin-top: 1.9rem; }

.hero__strip {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  margin-top: 2.4rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: var(--step--1); color: var(--muted);
}
.hero__strip span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__strip span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none;
}

/* page banner (interior pages) */
.banner {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(3.4rem, 2.6rem + 4.5vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}
.banner__media { position: absolute; inset: 0; z-index: -2; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,13,.88), rgba(11,11,13,.72) 55%, rgba(11,11,13,.95));
}
.banner .eyebrow { margin-bottom: .8rem; }
.banner p { color: var(--muted); max-width: 58ch; margin-top: 1rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, .7rem + 1.1vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow); }

/* Fleet images are only 300px wide natively — the frame caps display size so
   nothing is upscaled past its native resolution. */
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0e0e11;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__seats {
  position: absolute; left: .75rem; bottom: .75rem;
  background: rgba(11,11,13,.82); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  color: var(--cream); font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.card__tag {
  position: absolute; right: .75rem; top: .75rem;
  background: rgba(11,11,13,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--muted); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 999px;
}
.card__tag--new {
  background: var(--gold); color: #14120c;
  border-color: transparent;
}
.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card__body h3 { font-size: 1.16rem; }
.card__body p { font-size: var(--step--1); color: var(--muted); }

/* service tiles — typographic, no thumbnails */
.tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .22s var(--ease), background-color .22s var(--ease), transform .22s var(--ease);
  overflow: hidden;
}
.tile::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.tile:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
.tile:hover::before { transform: scaleY(1); }
.tile__icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: 11px;
  color: var(--gold); background: rgba(200,169,81,.07);
  margin-bottom: .3rem;
}
.tile__icon svg { width: 20px; height: 20px; }
.tile h3 { font-size: 1.1rem; }
.tile p { font-size: var(--step--1); color: var(--muted); }

/* numbered steps */
.steps { counter-reset: s; }
.step { position: relative; padding-left: 3.6rem; }
.step::before {
  counter-increment: s; content: counter(s,decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-family: var(--display); font-size: 1.9rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px var(--gold-deep);
}
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: var(--step--1); }

/* ---------- Split feature ---------- */
.split {
  display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 4rem);
  align-items: center;
}
@media (min-width: 54em) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
/* For a tall or multi-panel image: show it whole instead of cropping to the frame. */
.split__media--tall { aspect-ratio: auto; align-self: start; }
.split__media--tall img { height: auto; object-fit: contain; }
.split__body .eyebrow { margin-bottom: .9rem; }
.split__body h2 { margin-bottom: 1rem; }

/* amenity list */
.amenities { list-style: none; padding: 0; display: grid; gap: .55rem .9rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); margin-top: 1.4rem; }
.amenities li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: var(--step--1); color: var(--muted); line-height: 1.45;
}
.amenities li::before {
  content: ""; flex: none; margin-top: .55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

/* ---------- Gallery ----------
   First figure spans two columns where there is room; every tile is a fixed
   frame so mixed-resolution source photos still line up. */
.gallery {
  display: grid; gap: clamp(.6rem, .4rem + .8vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
.gallery figure {
  margin: 0; overflow: hidden; border-radius: var(--radius-sm);
  border: 1px solid var(--line); aspect-ratio: 4 / 3; background: #0e0e11;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
@media (min-width: 46em) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}

/* ---------- Testimonials ---------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 1rem;
  break-inside: avoid;
}
.quote__mark {
  font-family: var(--display); font-size: 2.6rem; line-height: .6;
  color: var(--gold-deep); height: 1rem;
}
.quote blockquote { font-size: var(--step-0); color: var(--text); line-height: 1.6; }
.quote figcaption { font-size: var(--step--1); color: var(--muted); }
.quote figcaption b { color: var(--cream); font-weight: 600; display: block; }

.masonry { columns: 1; column-gap: clamp(1rem, .7rem + 1.1vw, 1.6rem); }
.masonry > * { margin-bottom: clamp(1rem, .7rem + 1.1vw, 1.6rem); }
@media (min-width: 46em) { .masonry { columns: 2; } }
@media (min-width: 74em) { .masonry { columns: 3; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(3rem, 2.2rem + 4vw, 5.5rem);
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,13,.9), rgba(11,11,13,.82));
}
.cta-band h2 { margin-bottom: .9rem; }
.cta-band p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 1.8rem; }

.phone-xl {
  display: inline-block;
  font-family: var(--display); font-weight: 700;
  font-size: var(--step-3); color: #fff; text-decoration: none;
  letter-spacing: -.01em;
}
.phone-xl:hover { color: var(--gold-lift); }

/* ---------- Form ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1.4vw, 2.2rem);
}
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--cream); }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: #fff;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: #101014; outline: none;
}
.field-row { display: grid; gap: 0 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.form__note { font-size: var(--step--1); color: var(--muted-2); margin-top: .9rem; }

/* contact detail list */
.details { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.details h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; font-weight: 600; }
.details a { color: #fff; text-decoration: none; font-size: var(--step-1); font-family: var(--display); font-weight: 700; }
.details a:hover { color: var(--gold-lift); }
.details p { color: var(--muted); font-size: var(--step--1); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.6rem, 2rem + 2.5vw, 4rem) 1.5rem;
}
.footer__grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.footer h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--muted); text-decoration: none; font-size: var(--step--1); }
.footer a:hover { color: #fff; }
.footer__brand p { color: var(--muted); font-size: var(--step--1); margin-top: .9rem; max-width: 34ch; }
.fb-link { display: inline-flex; align-items: center; gap: .5rem; }
.fb-link svg { width: 15px; height: 15px; flex: none; color: var(--gold-deep); transition: color .18s var(--ease); }
.fb-link:hover svg { color: var(--gold-lift); }
/* Credentials strip — affiliations and accepted cards.
   Held back at rest so it reads as reassurance, not advertising. */
.credentials {
  margin-top: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap;
  gap: 1.6rem clamp(2rem, 1.4rem + 3vw, 4.5rem);
}
.cred h4 {
  font-family: var(--sans); font-size: .64rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
  margin-bottom: .7rem;
}
.cred ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
}
.cred img {
  height: 32px; width: auto;
  border-radius: 4px;
  opacity: .62; filter: saturate(.35);
  transition: opacity .2s var(--ease), filter .2s var(--ease);
}
.credentials:hover img, .cred img:hover { opacity: 1; filter: saturate(1); }
@media (prefers-reduced-motion: reduce) { .cred img { transition: none; } }

.footer__crest {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  text-align: center;
}
.footer__crest img {
  width: min(100%, 420px);
  height: auto;
  margin-inline: auto;
  opacity: .9;
}
.footer__bottom {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: var(--step--1); color: var(--muted-2);
}

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-2);
  border-top: 1px solid var(--line-2);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 56px; text-decoration: none; font-weight: 600; font-size: .95rem;
  background: var(--ink-2); color: #fff;
}
.callbar a.is-primary { background: var(--gold); color: #14120c; }
.callbar svg { width: 17px; height: 17px; }
body { padding-bottom: 57px; }
@media (min-width: 62em) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Utilities ---------- */
.hr { height: 1px; background: var(--line); border: 0; }
.muted { color: var(--muted); }
.small { font-size: var(--step--1); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
