@import url('/assets/fonts/fonts.css');

/* ==========================================================================
   Platinum Decks & Outdoor Living Ltd
   Design system — dark editorial / warm brass
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ink:        #0b0e0d;
  --ink-2:      #111614;
  --ink-3:      #19201d;
  --ink-4:      #222b27;

  /* Light surfaces */
  --bone:       #f4f1ea;
  --bone-2:     #ebe6db;
  --bone-3:     #ddd6c7;

  /* Ink on dark */
  --fg:         #f4f1ea;
  --fg-dim:     #b9b7b0;
  --fg-mute:    #8a8d88;

  /* Ink on light */
  --fg-dark:      #141a17;
  --fg-dark-dim:  #4d554f;
  --fg-dark-mute: #737b75;

  /* Accent */
  --brass:      #bc8c4d;
  --brass-lt:   #dcb47c;
  --brass-dk:   #8f6a37;

  /* Lines */
  --line:       rgba(244, 241, 234, .13);
  --line-str:   rgba(244, 241, 234, .26);
  --line-dark:  rgba(20, 26, 23, .14);
  --line-dark-str: rgba(20, 26, 23, .28);

  /* Type */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Rhythm */
  --wrap: 1280px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --sect-y: clamp(4.5rem, 9vw, 9rem);
  --r: 2px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 40;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* figure and blockquote carry a UA default of `margin: 1em 40px`. Left in
   place they eat 80px off every testimonial card and again off the quote
   inside it, collapsing the text to a few words per line. */
figure, blockquote, figcaption, dl, dd, pre { margin: 0; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brass-lt);
  outline-offset: 3px;
  border-radius: var(--r);
}

::selection { background: var(--brass); color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.wrap--wide { max-width: 1560px; }
.wrap--narrow { max-width: 880px; }

.section { padding-block: var(--sect-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.section--bone { background: var(--bone); color: var(--fg-dark); }
.section--bone h1, .section--bone h2, .section--bone h3, .section--bone h4 { color: var(--fg-dark); }
.section--ink2 { background: var(--ink-2); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: .85rem 1.4rem;
  background: var(--brass);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   4. Typography scale
   -------------------------------------------------------------------------- */
.display-xl {
  font-size: clamp(2.75rem, 7.2vw, 5.75rem);
  font-variation-settings: 'opsz' 120;
  letter-spacing: -.03em;
  line-height: .98;
}

.display-lg {
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
  font-variation-settings: 'opsz' 90;
  letter-spacing: -.024em;
  line-height: 1.04;
}

.display-md {
  font-size: clamp(1.6rem, 2.9vw, 2.35rem);
  font-variation-settings: 'opsz' 60;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.display-sm {
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  font-variation-settings: 'opsz' 30;
  letter-spacing: -.012em;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 1.68;
  color: var(--fg-dim);
}
.section--bone .lede { color: var(--fg-dark-dim); }

.prose p + p { margin-top: 1.15em; }
.prose { color: var(--fg-dim); }
.section--bone .prose { color: var(--fg-dark-dim); }

/* Eyebrow — numbered editorial label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin: 0 0 1.4rem;
}
.section--bone .eyebrow { color: var(--brass-dk); }

.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .32;
  max-width: 5.5rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }
.eyebrow--center::before {
  content: '';
  width: 2.2rem; height: 1px;
  background: currentColor; opacity: .32;
}

.eyebrow__num {
  font-variant-numeric: tabular-nums;
  opacity: .6;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brass);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass-dk);
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
  z-index: -1;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(0,0,0,.6); }
.btn:hover::before { transform: translateY(0); }

.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border: 1px solid var(--line-str);
}
.btn--ghost::before { background: var(--fg); }
.btn--ghost:hover { color: var(--ink); border-color: var(--fg); }

.section--bone .btn--ghost {
  --btn-fg: var(--fg-dark);
  border-color: var(--line-dark-str);
}
.section--bone .btn--ghost::before { background: var(--fg-dark); }
.section--bone .btn--ghost:hover { color: var(--bone); border-color: var(--fg-dark); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.4rem;
}

/* Text link with underline sweep */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brass-lt);
  padding-bottom: .35rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .45s var(--ease-out);
}
.tlink:hover { background-size: 100% 1px; }
.tlink svg { transition: transform .35s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }
.section--bone .tlink { color: var(--brass-dk); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}

.hdr.is-stuck,
.hdr.is-open {
  background: rgba(11, 14, 13, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
  transition: min-height .45s var(--ease);
}
.hdr.is-stuck .hdr__inner { min-height: 4.35rem; }

/* The mark is a bordered badge containing the full wordmark, so it needs real
   height to stay legible — a boxed lockup turns to mush below ~40px. */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img {
  height: clamp(2.9rem, 4.4vw, 3.65rem);
  width: auto;
  transition: height .45s var(--ease);
}
.hdr.is-stuck .brand img { height: clamp(2.5rem, 3.4vw, 2.9rem); }

/* Desktop nav */
.nav { display: none; }

@media (min-width: 1080px) {
  .nav { display: flex; align-items: center; gap: 2.1rem; }

  .nav__item { position: relative; }

  .nav__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--fg-dim);
    padding-block: .6rem;
    transition: color .3s var(--ease);
  }
  .nav__link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: .1rem;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease-out);
  }
  .nav__link:hover, .nav__link[aria-current="page"] { color: var(--fg); }
  .nav__link:hover::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .nav__link[aria-current="page"] { color: var(--brass-lt); }

  .nav__caret { transition: transform .3s var(--ease); opacity: .7; }
  .nav__item:hover .nav__caret { transform: rotate(180deg); }

  /* Dropdown */
  .subnav {
    position: absolute;
    top: calc(100% + .9rem);
    left: 50%;
    translate: -50% 0;
    min-width: 20rem;
    padding: .6rem;
    background: rgba(17, 22, 20, .97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 26px 60px -24px rgba(0,0,0,.85);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .35s var(--ease-out), visibility .3s;
  }
  .nav__item:hover .subnav,
  .nav__item:focus-within .subnav {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .subnav::before {
    content: '';
    position: absolute;
    top: -.9rem; left: 0; right: 0; height: .9rem;
  }

  .subnav__link {
    display: block;
    padding: .78rem .95rem;
    border-radius: var(--r);
    transition: background .3s var(--ease);
  }
  .subnav__link:hover { background: rgba(188, 140, 77, .13); }
  .subnav__link strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: .12rem;
  }
  .subnav__link span { font-size: .77rem; color: var(--fg-mute); line-height: 1.45; display: block; }
}

.hdr__cta { display: none; }
@media (min-width: 1080px) { .hdr__cta { display: inline-flex; } }

.hdr__phone {
  display: none;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--fg);
  transition: color .3s var(--ease);
}
.hdr__phone:hover { color: var(--brass-lt); }
.hdr__phone svg { color: var(--brass); flex-shrink: 0; }
@media (min-width: 700px) { .hdr__phone { display: inline-flex; } }

.hdr__actions { display: flex; align-items: center; gap: 1.4rem; }

/* Burger */
.burger {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border: 1px solid var(--line-str);
  border-radius: var(--r);
  flex-shrink: 0;
}
@media (min-width: 1080px) { .burger { display: none; } }

.burger__box { width: 1.1rem; height: .68rem; position: relative; }
.burger__box span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--fg);
  transition: transform .4s var(--ease-out), opacity .25s var(--ease), width .4s var(--ease-out);
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 50%; translate: 0 -50%; width: 72%; }
.burger__box span:nth-child(3) { bottom: 0; }

.hdr.is-open .burger__box span:nth-child(1) { transform: translateY(.33rem) rotate(45deg); }
.hdr.is-open .burger__box span:nth-child(2) { opacity: 0; width: 0; }
.hdr.is-open .burger__box span:nth-child(3) { transform: translateY(-.33rem) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 7rem var(--gut) 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
@media (min-width: 1080px) { .drawer { display: none; } }

.drawer__list { border-top: 1px solid var(--line); }

.drawer__item {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}
.drawer.is-open .drawer__item {
  animation: drawerIn .55s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 80ms);
}
@keyframes drawerIn { to { opacity: 1; transform: none; } }

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem .2rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.02em;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.drawer__link:hover, .drawer__link[aria-current="page"] { color: var(--brass-lt); padding-left: .7rem; }
.drawer__link i {
  font-style: normal;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--brass);
  opacity: .75;
}

.drawer__sub { padding: 0 0 1rem .2rem; display: grid; gap: .1rem; }
.drawer__sub a {
  display: block;
  padding: .5rem 0 .5rem 1.6rem;
  font-size: .93rem;
  color: var(--fg-dim);
  position: relative;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.drawer__sub a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: .85rem; height: 1px;
  background: var(--brass);
  opacity: .5;
}
.drawer__sub a:hover { color: var(--fg); padding-left: 2rem; }

.drawer__foot {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
.drawer__foot .btn { width: 100%; }
.drawer__meta { display: grid; gap: .45rem; font-size: .9rem; color: var(--fg-dim); margin-top: 1rem; }
.drawer__meta a:hover { color: var(--brass-lt); }

/* --------------------------------------------------------------------------
   7. Hero — home
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(94svh, 62rem);
  display: flex;
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 15s var(--ease-out) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,13,.86) 0%, rgba(11,14,13,.32) 32%, rgba(11,14,13,.72) 72%, rgba(11,14,13,.96) 100%),
    linear-gradient(100deg, rgba(11,14,13,.8) 0%, rgba(11,14,13,.22) 58%, transparent 100%);
}

.hero__inner { width: 100%; }
.hero__body { max-width: 46rem; }

.hero__title { margin-bottom: 1.5rem; }
.hero__title em {
  font-style: italic;
  color: var(--brass-lt);
  font-variation-settings: 'opsz' 120;
}

.hero__lede { max-width: 40rem; color: #d8d5cd; }

/* Trust strip beneath hero copy */
.hero__strip {
  margin-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-top: 1.85rem;
  border-top: 1px solid var(--line-str);
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 780px) { .hero__strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.hero__stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 60;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--fg);
}
.hero__stat span {
  display: block;
  margin-top: .5rem;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.hero__scroll {
  position: absolute;
  right: var(--gut);
  bottom: clamp(2.5rem, 5vw, 4.5rem);
  display: none;
  align-items: center;
  gap: .7rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  writing-mode: vertical-rl;
}
@media (min-width: 1080px) { .hero__scroll { display: flex; } }
.hero__scroll::after {
  content: '';
  width: 1px; height: 3.5rem;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .35; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }

/* --------------------------------------------------------------------------
   8. Page hero — inner pages
   -------------------------------------------------------------------------- */
.phero {
  position: relative;
  padding-top: clamp(8.5rem, 13vw, 11.5rem);
  padding-bottom: var(--sect-y);
  overflow: hidden;
}

.phero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(188,140,77,.15), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  z-index: -1;
}

.phero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .phero__grid { grid-template-columns: 1.05fr .85fr; }
}

.phero__title { margin-bottom: 1.4rem; }
.phero__title em { font-style: italic; color: var(--brass-lt); }

.phero__media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
.phero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.phero__media::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--fg-mute);
  margin-bottom: 1.6rem;
}
.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--brass-lt); }
.crumbs li { display: flex; align-items: center; gap: .5rem; }
.crumbs li + li::before { content: '/'; opacity: .4; }
.crumbs [aria-current] { color: var(--fg-dim); }

/* --------------------------------------------------------------------------
   9. Section headers
   -------------------------------------------------------------------------- */
.shead { max-width: 46rem; margin-bottom: clamp(2.75rem, 5vw, 4rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead__title { margin-bottom: 1.15rem; }
.shead__title em { font-style: italic; color: var(--brass); }
.section--bone .shead__title em { color: var(--brass-dk); }

.shead--split {
  max-width: none;
  display: grid;
  gap: 1.5rem 3rem;
  align-items: end;
}
@media (min-width: 900px) {
  .shead--split { grid-template-columns: 1.15fr .85fr; }
}

/* --------------------------------------------------------------------------
   10. Intro / offset editorial block
   -------------------------------------------------------------------------- */
.offset {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .offset { grid-template-columns: .92fr 1.08fr; }
  .offset--flip .offset__media { order: 2; }
}

.offset__media { position: relative; }
.offset__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
}
.offset__media--wide img { aspect-ratio: 4 / 3; }

/* Brass frame accent */
.offset__frame::before {
  content: '';
  position: absolute;
  inset: auto -1.1rem -1.1rem auto;
  width: 58%; height: 58%;
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  opacity: .5;
  pointer-events: none;
}
.offset--flip .offset__frame::before {
  inset: -1.1rem auto auto -1.1rem;
  border: 0;
  border-left: 1px solid var(--brass);
  border-top: 1px solid var(--brass);
}

/* Floating badge on image */
.offset__badge {
  position: absolute;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  background: rgba(11, 14, 13, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-str);
  border-radius: var(--r);
  padding: .95rem 1.3rem;
  max-width: 15rem;
}
.offset__badge b {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brass-lt);
}
.offset__badge span {
  display: block;
  margin-top: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* --------------------------------------------------------------------------
   11. Services index (editorial list w/ hover image)
   -------------------------------------------------------------------------- */
.sindex { position: relative; border-top: 1px solid var(--line-dark); }

.srow {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem 1.6rem;
  padding: clamp(1.5rem, 3.2vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left .5s var(--ease-out);
}
@media (min-width: 900px) {
  .srow { grid-template-columns: auto minmax(0, 22rem) 1fr auto; gap: 2.5rem; }
  .srow:hover { padding-left: 1.5rem; }
}

.srow__num {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--brass-dk);
  font-variant-numeric: tabular-nums;
}

.srow__name {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 60;
  letter-spacing: -.022em;
  line-height: 1.1;
  transition: color .35s var(--ease);
}
.srow:hover .srow__name { color: var(--brass-dk); }

.srow__desc {
  grid-column: 1 / -1;
  font-size: .96rem;
  line-height: 1.6;
  color: var(--fg-dark-dim);
  max-width: 34rem;
}
@media (min-width: 900px) {
  .srow__desc { grid-column: auto; margin: 0; }
}

.srow__go {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-dk);
}
@media (min-width: 900px) {
  .srow__go {
    grid-column: auto;
    justify-self: end;
    width: 3.1rem; height: 3.1rem;
    border: 1px solid var(--line-dark-str);
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
  }
  .srow__go span { display: none; }
  .srow:hover .srow__go { background: var(--brass); border-color: var(--brass); color: #fff; }
}
.srow__go svg { transition: transform .4s var(--ease); }
.srow:hover .srow__go svg { transform: translate(3px, -3px); }

/* Full-row link overlay */
.srow__link { position: absolute; inset: 0; z-index: 2; }

/* Hover preview image (desktop only) */
.sindex__peek {
  position: fixed;
  top: 0; left: 0;
  width: 20rem;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
  transition: opacity .4s var(--ease), transform .55s var(--ease-out);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.6);
  display: none;
}
@media (min-width: 1080px) and (hover: hover) { .sindex__peek { display: block; } }
.sindex__peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.sindex__peek img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile service cards (used where a grid reads better) */
.scards {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 640px) { .scards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .scards--4 { grid-template-columns: repeat(4, 1fr); } }

.scard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .45s var(--ease);
}
.scard:hover { transform: translateY(-6px); border-color: rgba(188,140,77,.45); }

.scard__media { overflow: hidden; }
.scard__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.scard:hover .scard__media img { transform: scale(1.06); }

.scard__body { padding: clamp(1.25rem, 2.4vw, 1.75rem); display: flex; flex-direction: column; flex: 1; gap: .7rem; }
.scard__name { font-size: 1.22rem; font-variation-settings: 'opsz' 30; }
.scard__desc { font-size: .93rem; color: var(--fg-dim); line-height: 1.6; flex: 1; }
.scard__go {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass-lt); margin-top: .35rem;
}
.scard__go svg { transition: transform .35s var(--ease); }
.scard:hover .scard__go svg { transform: translateX(4px); }
.scard__link { position: absolute; inset: 0; z-index: 2; }

/* --------------------------------------------------------------------------
   12. Feature grid (benefits / brands)
   -------------------------------------------------------------------------- */
.fgrid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 640px) { .fgrid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .fgrid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .fgrid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fgrid--4 { grid-template-columns: repeat(4, 1fr); } }

.feat {
  position: relative;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.section--bone .feat { border-top-color: var(--line-dark); }

.feat::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 2.6rem; height: 1px;
  background: var(--brass);
  transition: width .55s var(--ease-out);
}
.feat:hover::before { width: 100%; }

.feat__num {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--brass);
  margin-bottom: .85rem;
  font-variant-numeric: tabular-nums;
}
.section--bone .feat__num { color: var(--brass-dk); }

.feat__title {
  font-size: 1.16rem;
  font-variation-settings: 'opsz' 24;
  margin-bottom: .6rem;
}
.feat__title small {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .3rem;
}
.section--bone .feat__title small { color: var(--brass-dk); }

.feat__desc { font-size: .93rem; line-height: 1.62; color: var(--fg-dim); }
.section--bone .feat__desc { color: var(--fg-dark-dim); }

/* Feature with image */
.feat--media { padding-top: 0; border-top: 0; }
.feat--media::before { display: none; }
.feat--media .feat__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 1.35rem;
}

/* --------------------------------------------------------------------------
   13. Stats / counters
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.section--bone .stat { border-top-color: var(--line-dark); }

.stat__val {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 120;
  letter-spacing: -.035em;
  line-height: .95;
  color: var(--brass-lt);
  font-variant-numeric: tabular-nums;
}
.section--bone .stat__val { color: var(--brass-dk); }

.stat__label {
  margin-top: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg);
}
.section--bone .stat__label { color: var(--fg-dark); }

.stat__desc { margin-top: .6rem; font-size: .88rem; line-height: 1.6; color: var(--fg-mute); }
.section--bone .stat__desc { color: var(--fg-dark-mute); }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}
@media (min-width: 780px)  { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* A lone quote shouldn't stretch to a full-width slab */
.quotes:has(> .quote:only-child) { grid-template-columns: minmax(0, 34rem); justify-content: center; }

.quote {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  /* The card owns its own alignment. Without this, a centred ancestor centres
     the quote text and byline while the stars and avatar stay flex-left. */
  text-align: left;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .45s var(--ease), transform .5s var(--ease-out), background .45s var(--ease);
}
.quote:hover { border-color: rgba(188, 140, 77, .38); transform: translateY(-4px); background: var(--ink-3); }

.section--bone .quote { background: #fff; border-color: var(--line-dark); }
.section--bone .quote:hover { background: #fff; border-color: rgba(143, 106, 55, .4); }

/* Brass hairline that draws across the top on hover — matches .feat */
.quote::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3.25rem; height: 2px;
  background: var(--brass);
  transition: width .6s var(--ease-out);
}
.quote:hover::after { width: 100%; }

/* Oversized opening mark, set behind the text as a watermark */
.quote::before {
  content: '\201C';
  position: absolute;
  top: 1.15rem; right: 1.1rem;
  z-index: -1;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: .74;
  color: var(--brass);
  opacity: .15;
  pointer-events: none;
}
.section--bone .quote::before { opacity: .18; }

.quote__stars { display: flex; gap: .25rem; color: var(--brass); }
.quote__stars svg { width: .88rem; height: .88rem; }
.section--bone .quote__stars { color: var(--brass-dk); }

.quote__text {
  flex: 1;
  font-size: clamp(.96rem, 1.05vw, 1.03rem);
  line-height: 1.72;
  color: var(--fg-dim);
  text-wrap: pretty;
}
.section--bone .quote__text { color: var(--fg-dark-dim); }

.quote__by {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.section--bone .quote__by { border-top-color: var(--line-dark); }

.quote__avatar {
  width: 2.6rem; height: 2.6rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brass-lt), var(--brass-dk));
  color: #fff;
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
}

/* Stacked, and able to shrink inside the flex row without overflowing */
.quote__meta { display: grid; gap: .18rem; min-width: 0; }

.quote__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  font-variation-settings: 'opsz' 20;
  line-height: 1.2;
  color: var(--fg);
}
.section--bone .quote__name { color: var(--fg-dark); }

.quote__role {
  display: block;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  line-height: 1.3;
}
.section--bone .quote__role { color: var(--fg-dark-mute); }

/* Featured single testimonial — editorial pull quote, not a card */
.pquote {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.pquote__mark {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: .55;
  color: var(--brass);
  opacity: .5;
  height: .5em;
}
.section--bone .pquote__mark { color: var(--brass-dk); opacity: .45; }

.pquote__text {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
  font-variation-settings: 'opsz' 60;
  font-style: italic;
  line-height: 1.34;
  letter-spacing: -.015em;
  color: var(--fg);
  text-wrap: balance;
}
.section--bone .pquote__text { color: var(--fg-dark); }

.pquote__by {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-align: left;
  margin-top: .5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  width: min(100%, 17rem);
  justify-content: center;
}
.section--bone .pquote__by { border-top-color: var(--line-dark); }

/* --------------------------------------------------------------------------
   15. Gallery
   -------------------------------------------------------------------------- */
.gal {
  display: grid;
  gap: clamp(.7rem, 1.4vw, 1.1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .gal { grid-template-columns: repeat(4, 1fr); } }

.gal__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--ink-3);
  cursor: zoom-in;
}
.gal__item img {
  width: 100%; height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .85s var(--ease-out), filter .5s var(--ease);
}
.gal__item:hover img { transform: scale(1.07); filter: brightness(.72); }

.gal__item--tall { grid-row: span 2; }
.gal__item--tall img { aspect-ratio: 1 / 2; }
.gal__item--wide { grid-column: span 2; }
.gal__item--wide img { aspect-ratio: 2 / 1; }

.gal__zoom {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(11,14,13,.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .45s var(--ease-out);
}
.gal__item:hover .gal__zoom { opacity: 1; transform: none; }

/* Lightbox */
.lbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 8, 7, .95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lbox.is-open { opacity: 1; visibility: visible; }

.lbox__img {
  max-width: min(100%, 82rem);
  max-height: 82svh;
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
  transform: scale(.94);
  transition: transform .45s var(--ease-out);
}
.lbox.is-open .lbox__img { transform: scale(1); }

.lbox__btn {
  position: absolute;
  width: 3.1rem; height: 3.1rem;
  display: grid; place-items: center;
  border: 1px solid var(--line-str);
  border-radius: 50%;
  color: var(--fg);
  background: rgba(11,14,13,.55);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lbox__btn:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.lbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lbox__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; translate: 0 -50%; }
.lbox__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; translate: 0 -50%; }

.lbox__count {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%; translate: -50% 0;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   16. Marquee — areas covered
   -------------------------------------------------------------------------- */
.marquee {
  --dur: 38s;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(1.1rem, 2.2vw, 1.6rem);
  background: var(--ink-2);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--dur) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding-inline: clamp(.75rem, 1.6vw, 1.4rem);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 40;
  letter-spacing: -.01em;
  color: var(--fg-dim);
  white-space: nowrap;
}
.marquee__item::after {
  content: '';
  width: .34rem; height: .34rem;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,14,13,.9), rgba(11,14,13,.8)),
              radial-gradient(80% 70% at 50% 50%, rgba(188,140,77,.16), transparent 70%);
}
.cta__inner { max-width: 48rem; margin-inline: auto; }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */
.cgrid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 980px) { .cgrid { grid-template-columns: 1fr .82fr; } }

.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .5rem; }
.field--row { grid-template-columns: 1fr; }
@media (min-width: 620px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; } }

.label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.label span { color: var(--brass); }

.input, .textarea, .select {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--fg);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--fg-mute); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--ink-3);
}
.textarea { resize: vertical; min-height: 8.5rem; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bc8c4d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.select option { background: var(--ink-2); color: var(--fg); }

.file {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  background: var(--ink-2);
  border: 1px dashed var(--line-str);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  font-size: .88rem;
  color: var(--fg-mute);
}
.file:hover { border-color: var(--brass); background: var(--ink-3); }
.file input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file svg { color: var(--brass); flex-shrink: 0; }

.form__note { font-size: .8rem; color: var(--fg-mute); line-height: 1.55; }
.form__note--ok  { color: var(--brass-lt); }
.form__note--err { color: #e2896f; }

/* Honeypot — off-screen rather than display:none, which some bots skip */
.hp {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Inline field errors */
.field--invalid .input,
.field--invalid .textarea,
.field--invalid .select { border-color: #c8624a; }
.field__err { font-size: .78rem; color: #e2896f; }

.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* Contact details panel */
.cpanel {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.cpanel + .cpanel { margin-top: 1.25rem; }

.cdl { display: grid; gap: 1.35rem; }
.cdl__row { display: flex; gap: 1rem; align-items: flex-start; }
.cdl__ico {
  width: 2.6rem; height: 2.6rem;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-str);
  border-radius: 50%;
  color: var(--brass);
}
.cdl__k {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: .28rem;
}
.cdl__v { font-size: 1.02rem; font-weight: 500; color: var(--fg); line-height: 1.45; }
.cdl__v a { transition: color .3s var(--ease); }
.cdl__v a:hover { color: var(--brass-lt); }

.areas { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.15rem; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border: 1px solid var(--line-str);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--fg-dim);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.area-chip::before {
  content: '';
  width: .3rem; height: .3rem;
  border-radius: 50%;
  background: var(--brass);
}
.area-chip:hover { border-color: var(--brass); color: var(--fg); }

.map {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
}
.map iframe { width: 100%; height: clamp(18rem, 34vw, 24rem); border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.86); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.ftr {
  background: #070908;
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.ftr__top {
  display: grid;
  gap: 2.75rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .ftr__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .ftr__top { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 3rem; } }

.ftr__brand img { height: 4.75rem; width: auto; margin-bottom: 1.5rem; }
.ftr__about { font-size: .92rem; line-height: 1.68; color: var(--fg-mute); max-width: 26rem; }

.ftr__h {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 1.35rem;
}

.ftr__list { display: grid; gap: .7rem; }
.ftr__list a {
  font-size: .93rem;
  color: var(--fg-mute);
  transition: color .3s var(--ease), padding-left .35s var(--ease);
  display: inline-block;
}
.ftr__list a:hover { color: var(--fg); padding-left: .35rem; }

.ftr__contact { display: grid; gap: 1rem; }
.ftr__contact a, .ftr__contact p {
  display: flex; gap: .7rem;
  font-size: .93rem;
  color: var(--fg-mute);
  line-height: 1.5;
  transition: color .3s var(--ease);
}
.ftr__contact a:hover { color: var(--fg); }
.ftr__contact svg { color: var(--brass); flex-shrink: 0; margin-top: .18rem; }

.socials { display: flex; gap: .6rem; margin-top: 1.6rem; }
.social {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border: 1px solid var(--line-str);
  border-radius: 50%;
  color: var(--fg-dim);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.social:hover { background: var(--brass); border-color: var(--brass); color: #fff; transform: translateY(-3px); }

.ftr__bot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.75rem;
  font-size: .82rem;
  color: var(--fg-mute);
}
.ftr__bot nav { display: flex; flex-wrap: wrap; gap: 1.35rem; }
.ftr__bot a { transition: color .3s var(--ease); }
.ftr__bot a:hover { color: var(--fg); }

/* --------------------------------------------------------------------------
   20. Mobile sticky call bar
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(11, 14, 13, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
}
.callbar.is-on { transform: none; }
@media (min-width: 700px) { .callbar { display: none; } }

.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.callbar a + a { background: var(--brass); color: #fff; }
.callbar svg { flex-shrink: 0; }

body { padding-bottom: env(safe-area-inset-bottom); }
@media (max-width: 699px) { body.has-callbar { padding-bottom: 3.5rem; } }

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */
/* Scoped to .js so the page is never blank without JavaScript. The class is
   set by a tiny inline script in <head>, before first paint, so there is no
   flash of un-hidden content when scripting IS available. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   22. Utilities
   -------------------------------------------------------------------------- */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--bone .hr { background: var(--line-dark); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* --------------------------------------------------------------------------
   23. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
  .marquee__track { animation: none; }
}

/* --------------------------------------------------------------------------
   24. Print
   -------------------------------------------------------------------------- */
@media print {
  .hdr, .drawer, .callbar, .lbox, .hero__scroll, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
