/* ==========================================================================
   TXO MOBILE SERVICES — Design System
   Dark-luxury theme derived from the client logo (black / metallic gold / silver).
   Mobile-first. All text/background pairs checked for WCAG 2.1 AA contrast.

   Section rhythm is tonal, not alternating: sections step between four dark
   surfaces and use hairlines, gradients and whitespace for separation rather
   than flipping between black and cream.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand — sampled from the TXO logo */
  --black-0:      #08080A;   /* deepest surface */
  --black:        #0B0B0C;   /* base page */
  --black-2:      #101012;   /* raised */
  --black-3:      #16161A;   /* panel / card */
  --black-4:      #1D1D21;   /* inputs, inner surfaces */

  --gold:         #D9AE3C;
  --gold-light:   #EFCF7A;
  --gold-deep:    #7A5C12;   /* AA-safe gold on cream */
  --silver:       #D8D8DC;
  --silver-dim:   #9C9CA4;

  /* Neutrals */
  --cream:        #FAF7F1;
  --cream-2:      #F1ECE2;
  --ink:          #16161A;
  --ink-muted:    #55534E;
  --white:        #FFFFFF;

  /* Semantic — dark surfaces (default) */
  --bg:           var(--black);
  --surface:      var(--black-3);
  --surface-2:    var(--black-4);
  --text:         #F5F3EF;   /* 17:1 on --black */
  --text-muted:   #B9B4AA;   /*  8:1 on --black */
  --hairline:     rgba(216, 216, 220, .10);
  --hairline-2:   rgba(216, 216, 220, .16);
  --gold-line:    rgba(217, 174, 60, .28);
  --gold-wash:    rgba(217, 174, 60, .07);
  --accent:       var(--gold);
  --accent-text:  var(--gold-light);
  --focus:        #EFCF7A;

  /* Status */
  --ok:           #7FD1A2;
  --error:        #FF9E9E;

  /* Type */
  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --step--2: clamp(.72rem, .70rem + .08vw, .78rem);
  --step--1: clamp(.83rem, .81rem + .10vw, .89rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.08rem);
  --step-1:  clamp(1.13rem, 1.07rem + .30vw, 1.32rem);
  --step-2:  clamp(1.35rem, 1.22rem + .60vw, 1.75rem);
  --step-3:  clamp(1.60rem, 1.38rem + 1.08vw, 2.30rem);
  --step-4:  clamp(1.90rem, 1.52rem + 1.88vw, 3.05rem);
  --step-5:  clamp(2.25rem, 1.65rem + 2.90vw, 4.00rem);

  /* Space (8px base) */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(3.5rem, 2.2rem + 5.2vw, 7rem);

  /* Shape */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 18px;  --r-xl: 26px;  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
  --shadow-md: 0 10px 30px -12px rgba(0,0,0,.7);
  --shadow-lg: 0 30px 70px -24px rgba(0,0,0,.8);
  --glow-gold: 0 0 0 1px rgba(217,174,60,.30), 0 16px 34px -16px rgba(217,174,60,.38);

  /* Layout */
  --wrap: 76rem;
  --wrap-narrow: 46rem;
  --header-h: 68px;
  --actionbar-h: 60px;
}

/* Optional light band. Kept in the system for future use (long-form articles,
   local landing pages); the current pages are intentionally all-dark. */
.band-light {
  --bg:          var(--cream);
  --surface:     var(--white);
  --surface-2:   var(--cream-2);
  --text:        var(--ink);
  --text-muted:  var(--ink-muted);
  --hairline:    rgba(11,11,12,.10);
  --hairline-2:  rgba(11,11,12,.16);
  --gold-line:   rgba(122,92,18,.30);
  --gold-wash:   rgba(122,92,18,.06);
  --accent-text: var(--gold-deep);
  --focus:       #0B0B0C;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Safety net: the email address is the only string long enough to force a
     horizontal scrollbar on a 320px screen. Break it rather than clip it. */
  overflow-wrap: break-word;
}

/* Room for the mobile action bar. */
@media (max-width: 63.99em) {
  body { padding-bottom: var(--actionbar-h); }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  text-wrap: balance;
  color: var(--text);
}
h1 { font-size: var(--step-5); letter-spacing: -.025em; }
h2 { font-size: var(--step-4); letter-spacing: -.02em; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }
p + p { margin-top: var(--sp-4); }

a { color: var(--accent-text); text-underline-offset: .18em; }
a:hover { color: var(--gold-light); }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: var(--sp-2); }

strong { font-weight: 650; color: var(--text); }
small { font-size: var(--step--1); }

fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }

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

::selection { background: var(--gold); color: var(--black); }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
@media (min-width: 48em) { .wrap { width: min(100% - 4rem, var(--wrap)); } }
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--mid { max-width: 60rem; }

.section {
  background: var(--bg);
  color: var(--text);
  padding-block: var(--section-y);
  position: relative;
}
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.25rem); }

/* --- Surface variants: tonal steps rather than black/cream alternation --- */
.section--deep  { background: var(--black-0); }
.section--raise { background: linear-gradient(180deg, #101012 0%, #0B0B0C 100%); }
.section--panel {
  background: var(--black-2);
  border-block: 1px solid var(--hairline);
}
.section--glow { isolation: isolate; }
.section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(70% 90% at 20% 0%, rgba(217,174,60,.11), transparent 60%);
  pointer-events: none;
}
/* Very quiet diagonal texture — reads as material, not pattern. */
.section--texture { isolation: isolate; }
.section--texture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(216,216,220,.022) 0 1px,
    transparent 1px 9px
  );
}
/* Hairline that reads as a seam between two dark sections. */
.section--seam { border-top: 1px solid var(--hairline); }

.section-head { max-width: 46rem; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head > * + * { margin-top: var(--sp-4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0;
}
.eyebrow::before { content: ""; width: 1.6rem; height: 1px; background: currentColor; flex: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 1.6rem; height: 1px; background: currentColor; flex: none; }
.section-head--center .eyebrow::after { content: ""; width: 1.6rem; height: 1px; background: currentColor; flex: none; }

.lede { font-size: var(--step-1); color: var(--text-muted); line-height: 1.6; }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 40em) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 46em) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 62em) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
  .split--media-first > .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
}

.stack > * + * { margin-top: var(--sp-4); }
.stack--lg > * + * { margin-top: var(--sp-6); }

.center { text-align: center; }

.mt-sm { margin-top: var(--sp-4); }
.mt-md { margin-top: var(--sp-5); }
.mt-lg { margin-top: var(--sp-6); }
.mt-xl { margin-top: 2.5rem; }
.mt-2xl { margin-top: var(--sp-7); }
.mb-md { margin-bottom: var(--sp-5); }
.mb-lg { margin-bottom: var(--sp-6); }
/* Heading that sits inside a panel and should not shout at full h2 scale. */
.h-inline { font-size: var(--step-2); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: var(--sp-4); top: var(--sp-4);
  z-index: 200;
  transform: translateY(-200%);
  background: var(--gold);
  color: var(--black);
  font-weight: 650;
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.rule-gold {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 15%, var(--gold) 50%, var(--gold-line) 85%, transparent);
  opacity: .8;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & LINKS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: .005em;
  padding: .9rem 1.5rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #14100A;
  box-shadow: var(--glow-gold);
}
.btn--primary:hover { color: #14100A; background: linear-gradient(180deg, #F6DC96, #E0B84A); }

.btn--secondary { background: transparent; color: var(--text); border-color: var(--gold-line); }
.btn--secondary:hover { background: var(--gold-wash); border-color: var(--gold); color: var(--text); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--hairline-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--text); }

.band-light .btn--secondary { color: var(--ink); }
.band-light .btn--ghost { color: var(--ink); }

.btn--full { width: 100%; }
.btn--sm { padding: .58rem 1.05rem; min-height: 40px; font-size: var(--step--1); }
.btn--lg { padding: 1.05rem 1.9rem; min-height: 54px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow::after { content: "\2192"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,10,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
  padding: .3rem 0;
}
.brand img { width: 40px; height: 40px; border-radius: 50%; flex: none; }
@media (min-width: 48em) { .brand img { width: 46px; height: 46px; } }
.brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.05;
  display: block;
}
@media (min-width: 48em) { .brand__name { font-size: 1.1rem; } }
.brand__name span { color: var(--gold); }
.brand__tag {
  display: block;
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-top: .2rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid var(--hairline-2);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: .5rem .75rem;
  min-height: 42px;
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--black-2);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3) 0 var(--sp-5);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.site-nav.is-open { display: block; }

.site-nav__list { list-style: none; margin: 0; padding: 0 1rem; }
.site-nav__list li + li { margin-top: 0; }

.site-nav__link {
  display: block;
  padding: .85rem .4rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--hairline);
}
.site-nav__link:hover { color: var(--gold-light); }
.site-nav__link[aria-current="page"] { color: var(--gold); }

/* Mobile: a real accordion, so aria-expanded always matches what is on screen. */
.site-nav__sub {
  list-style: none;
  margin: 0;
  padding: .25rem 0 .6rem .9rem;
  border-bottom: 1px solid var(--hairline);
  display: none;
}
.has-sub.is-open > .site-nav__sub { display: block; }
.site-nav__sub a {
  display: block;
  padding: .6rem .4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
}
.site-nav__sub a:hover { color: var(--gold-light); }
.site-nav__sub a[aria-current="page"] { color: var(--gold); }

.site-nav__cta { padding: var(--sp-4) 1rem 0; display: grid; gap: var(--sp-3); }
.site-nav__sub-sep { display: none; }

.header-cta { display: none; }

/* Phone number beside the header CTA — desktop only, where there is room. */
.header-tel { display: none; }
@media (min-width: 64em) {
  .header-tel {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .header-tel svg { width: 1rem; height: 1rem; color: var(--gold); }
  .header-tel:hover { color: var(--gold-light); }
}
@media (min-width: 64em) and (max-width: 74em) {
  .header-tel { display: none; }
}

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    max-height: none;
  }
  .site-nav__list { display: flex; align-items: center; gap: .15rem; padding: 0; }
  .site-nav__link {
    border-bottom: 0;
    padding: .55rem .85rem;
    border-radius: var(--r-sm);
    font-size: .94rem;
    font-weight: 550;
    position: relative;
  }
  .site-nav__link[aria-current="page"] { color: var(--gold); }
  .site-nav__link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: .85rem; right: .85rem; bottom: .2rem;
    height: 1px;
    background: var(--gold);
  }

  .has-sub { position: relative; }
  .site-nav__sub {
    position: absolute;
    top: calc(100% + .55rem);
    left: 0;
    min-width: 20.5rem;
    background: linear-gradient(180deg, #141416, #0D0D0F);
    border: 1px solid var(--gold-line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: .45rem;
    display: none;
  }
  /* Bridge the visual gap so the pointer never crosses a dead zone. */
  .site-nav__sub::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: calc(-.55rem - 1px);
    height: calc(.55rem + 1px);
  }
  .has-sub.is-open > .site-nav__sub { display: block; }
  .site-nav__sub a {
    padding: .65rem .8rem;
    border-radius: var(--r-sm);
    font-size: .9rem;
    color: var(--text);
  }
  .site-nav__sub a:hover { background: var(--gold-wash); }
  .site-nav__sub li + li { margin-top: .1rem; }
  .site-nav__sub-sep {
    display: block;
    height: 1px;
    background: var(--hairline);
    margin: .4rem .5rem;
    list-style: none;
  }

  .site-nav__cta { display: none; }
  .header-cta { display: inline-flex; }
}

.sub-toggle { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 0; font: inherit; cursor: pointer; }
.sub-toggle::after {
  content: "";
  width: .42rem; height: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.has-sub.is-open > .site-nav__link .sub-toggle::after { transform: rotate(-135deg) translateY(-2px); }

button.site-nav__link {
  width: 100%;
  text-align: left;
  background: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
@media (min-width: 64em) { button.site-nav__link { width: auto; font-weight: 550; } }

/* --------------------------------------------------------------------------
   6. MOBILE ACTION BAR
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(8,8,10,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line);
  transition: transform .25s ease;
}
.action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  min-height: var(--actionbar-h);
  padding: .5rem .35rem;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.action-bar a + a { border-left: 1px solid var(--hairline); }
.action-bar svg { width: 1.1rem; height: 1.1rem; color: var(--gold); }
.action-bar a:hover { color: var(--gold-light); background: var(--gold-wash); }
.action-bar.is-hidden { transform: translateY(110%); }
@media (min-width: 64em) { .action-bar { display: none; } }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--black-0);
  padding-block: clamp(2.75rem, 1.8rem + 5vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto -20%;
  height: 85%;
  z-index: -2;
  background: radial-gradient(50% 55% at 30% 0%, rgba(217,174,60,.17), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 25%, rgba(217,174,60,.55) 50%, var(--gold-line) 75%, transparent);
}

.hero__grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 64em) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 4vw, 4.5rem); }
}
.hero__content > * + * { margin-top: var(--sp-5); }
.hero h1 { max-width: 15ch; }
.hero__lede { font-size: var(--step-1); color: var(--text-muted); max-width: 44ch; }

/* Location chip above the H1 */
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .85rem .4rem .65rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  background: var(--gold-wash);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__loc svg { width: .95rem; height: .95rem; }

/* The three service areas, stated plainly under the lede */
.hero__services { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: 0; }
.hero__services li { margin: 0; }
.chip {
  display: inline-block;
  padding: .42rem .85rem;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 500;
  color: var(--silver);
  background: rgba(255,255,255,.02);
}

/* Hours: three compact columns rather than one long line */
.hours-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: 0;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
  max-width: 30rem;
}
.hours-inline div + div { border-left: 1px solid var(--hairline); padding-left: var(--sp-3); }
.hours-inline dt {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.hours-inline dd { margin: .2rem 0 0; font-size: .88rem; font-weight: 600; color: var(--text); }
.hours-inline dd.is-closed { color: var(--text-muted); font-weight: 500; }
.hours-note { font-size: var(--step--1); color: var(--text-muted); margin-top: .7rem; }

/* Hero media: framed so a real photograph drops straight in */
.hero__media { position: relative; }
.frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--black-2);
  box-shadow: var(--shadow-lg);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--4x5 { aspect-ratio: 4 / 5; }
.frame--3x2 { aspect-ratio: 3 / 2; }
.frame--16x10 { aspect-ratio: 16 / 10; }
.frame--1x1 { aspect-ratio: 1 / 1; }

.hero__media .frame { aspect-ratio: 4 / 5; }
@media (min-width: 40em) { .hero__media .frame { aspect-ratio: 3 / 2; } }
@media (min-width: 64em) { .hero__media .frame { aspect-ratio: 4 / 5; } }

/* Gold corner accent — restrained, not a glow */
.hero__media::after {
  content: "";
  position: absolute;
  right: -10px; bottom: -10px;
  width: 42%; height: 32%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-bottom-right-radius: var(--r-xl);
  opacity: .55;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  left: -.4rem; bottom: 1.25rem;
  background: rgba(8,8,10,.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-md);
  max-width: 14rem;
}
.hero__badge strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; }
.hero__badge span { font-size: var(--step--2); color: var(--text-muted); letter-spacing: .04em; }

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--black-0);
  padding-block: clamp(2.25rem, 1.6rem + 3.6vw, 4.5rem);
  border-bottom: 1px solid var(--hairline);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 110% at 12% 0%, rgba(217,174,60,.13), transparent 62%);
}
.page-hero__inner { max-width: 50rem; }
.page-hero__inner > * + * { margin-top: var(--sp-4); }
.page-hero--soft::before {
  background: radial-gradient(65% 110% at 50% 0%, rgba(216,216,220,.07), transparent 62%);
}

/* --------------------------------------------------------------------------
   8. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb { padding-block: var(--sp-3); font-size: var(--step--1); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; color: var(--text-muted); }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--gold); opacity: .6; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); text-decoration: underline; }

/* --------------------------------------------------------------------------
   9. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--black);
  border-bottom: 1px solid var(--hairline);
  padding-block: var(--sp-5);
}
.trust-strip__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
@media (min-width: 40em) { .trust-strip__list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-6); } }
@media (min-width: 64em) { .trust-strip__list { grid-template-columns: repeat(4, 1fr); } }
.trust-strip__list li {
  margin: 0;
  display: flex;
  gap: .7rem;
  align-items: center;
  font-size: .92rem;
  font-weight: 550;
  color: var(--text);
}
@media (min-width: 64em) {
  .trust-strip__list li + li { border-left: 1px solid var(--hairline); padding-left: var(--sp-6); }
}
.trust-strip svg { width: 1.2rem; height: 1.2rem; color: var(--gold); flex: none; }

/* --------------------------------------------------------------------------
   10. SERVICE CARDS
   -------------------------------------------------------------------------- */
.svc-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 46em) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #141417 0%, #0D0D0F 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.svc-card:hover, .svc-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-md);
}
.svc-card__media {
  aspect-ratio: 16 / 10;
  background: var(--black-2);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}
.svc-card__title { font-size: var(--step-1); line-height: 1.25; }
.svc-card__title a { color: var(--text); text-decoration: none; }
.svc-card__title a::after { content: ""; position: absolute; inset: 0; }
.svc-card:hover .svc-card__title a { color: var(--gold-light); }
.svc-card__desc { color: var(--text-muted); font-size: .94rem; }
.svc-card__tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .3rem .55rem; }
.svc-card__tags li {
  margin: 0;
  font-size: var(--step--1);
  color: var(--silver-dim);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.svc-card__tags li + li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .8; }
.svc-card__cta {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 650;
  color: var(--gold);
}
.svc-card__cta::after { content: "\2192"; transition: transform .18s ease; }
.svc-card:hover .svc-card__cta::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   11. AUDIENCE GROUPS (flat, no cards)
   -------------------------------------------------------------------------- */
.aud-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 46em) { .aud-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) var(--sp-7); } }
@media (min-width: 64em) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }

.aud__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--gold-line);
}
.aud__head svg { width: 1.25rem; height: 1.25rem; color: var(--gold); flex: none; }
.aud__head h3 { font-size: var(--step-1); }
.aud ul { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; gap: .55rem; }
.aud li { margin: 0; position: relative; padding-left: 1.2rem; color: var(--text-muted); font-size: .94rem; }
.aud li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: .5rem; height: 1px;
  background: var(--gold);
  opacity: .8;
}

/* --------------------------------------------------------------------------
   12. PROCESS
   -------------------------------------------------------------------------- */
.process { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-6); position: relative; }
.process li { margin: 0; position: relative; padding-left: 4.25rem; }
.process__num {
  position: absolute;
  left: 0; top: 0;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--black-0);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 1;
}
.process h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.process p { color: var(--text-muted); font-size: .95rem; }
/* Vertical connector on small screens */
.process::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  top: 2.9rem;
  bottom: 2.9rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-line), rgba(217,174,60,.10));
}
@media (min-width: 64em) {
  .process { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
  .process li { padding-left: 0; padding-top: 4rem; }
  .process__num { top: 0; left: 0; }
  .process::before {
    left: 1.45rem;
    right: 1.45rem;
    top: 1.45rem;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-line), rgba(217,174,60,.45), var(--gold-line));
  }
}

/* --------------------------------------------------------------------------
   13. EXPERIENCE LIST (flat rows with hairlines)
   -------------------------------------------------------------------------- */
.exp-grid { display: grid; gap: 0; }
@media (min-width: 52em) { .exp-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-7); } }
.exp-item {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--hairline);
}
.exp-item svg { width: 1.35rem; height: 1.35rem; color: var(--gold); flex: none; margin-top: .25rem; }
.exp-item h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 650; letter-spacing: 0; margin-bottom: .25rem; }
.exp-item p { color: var(--text-muted); font-size: .94rem; }

/* --------------------------------------------------------------------------
   14. CARDS / PANELS (used sparingly)
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.card h3 { font-size: var(--step-1); }
.card p { color: var(--text-muted); font-size: .95rem; }
.card__foot { margin-top: auto; padding-top: var(--sp-2); }

.panel {
  background: linear-gradient(180deg, #131316, #0C0C0E);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.panel--gold { border-color: var(--gold-line); }

.icon-badge {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  flex: none;
}
.icon-badge svg { width: 1.4rem; height: 1.4rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.checklist li { margin: 0; display: flex; gap: .7rem; align-items: flex-start; color: var(--text-muted); }
.checklist li::before {
  content: "";
  flex: none;
  width: 1.3rem; height: 1.3rem;
  margin-top: .18rem;
  border-radius: 50%;
  background-color: var(--gold-wash);
  border: 1px solid var(--gold-line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9AE3C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: .8rem;
}
.checklist li strong { color: var(--text); }
@media (min-width: 48em) { .checklist--2col { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-6); } }

/* Plain bullet list with gold dashes — lighter than a checklist */
.dash-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.dash-list li { margin: 0; position: relative; padding-left: 1.2rem; color: var(--text-muted); }
.dash-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: .5rem; height: 1px; background: var(--gold); }
.dash-list li strong { color: var(--text); }

.note {
  border-left: 2px solid var(--gold);
  background: var(--gold-wash);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--text-muted);
  font-size: .94rem;
}
.note strong { color: var(--text); }

.pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-list li { margin: 0; }
.pill-list--center { justify-content: center; }
.pill {
  display: inline-block;
  padding: .45rem .9rem;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-pill);
  font-size: var(--step--1);
  color: var(--text-muted);
  text-decoration: none;
}
a.pill:hover { border-color: var(--gold); color: var(--gold-light); }

/* --------------------------------------------------------------------------
   15. SPLIT DEFINITION BLOCKS (service breakdowns)
   -------------------------------------------------------------------------- */
.def-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 46em) { .def-grid { grid-template-columns: repeat(3, 1fr); } }
.def {
  padding: var(--sp-5);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md);
  background: linear-gradient(180deg, rgba(217,174,60,.05), transparent 55%);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  height: 100%;
}
.def h3 { font-size: var(--step-1); }
.def > p { color: var(--text-muted); font-size: .94rem; }
.def__meta {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
  font-size: var(--step--1);
  color: var(--silver-dim);
}
.def__meta strong { color: var(--silver); font-weight: 600; }

/* --------------------------------------------------------------------------
   15b. TESTING REASONS (flat definition rows, no cards)
   -------------------------------------------------------------------------- */
.reason-grid { display: grid; gap: 0; margin: 0; }
@media (min-width: 46em) { .reason-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-7); } }
@media (min-width: 64em) { .reason-grid { grid-template-columns: repeat(3, 1fr); } }
.reason { padding-block: var(--sp-4); border-top: 1px solid var(--hairline); }
.reason dt {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 650;
  font-size: 1rem;
  color: var(--text);
}
.reason dt::before {
  content: "";
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.reason dd { margin: .3rem 0 0 1.05rem; color: var(--text-muted); font-size: .92rem; }

/* --------------------------------------------------------------------------
   16. OWNER FEATURE (About)
   -------------------------------------------------------------------------- */
.owner { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 64em) { .owner { grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 5vw, 5rem); } }

.owner__photo { position: relative; }
.owner__photo .frame { aspect-ratio: 4 / 5; }
.owner__photo::before {
  content: "";
  position: absolute;
  left: -14px; top: -14px;
  width: 45%; height: 35%;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  border-top-left-radius: var(--r-xl);
  opacity: .55;
  pointer-events: none;
}
.owner__caption {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
}
.owner__name { font-family: var(--font-display); font-size: var(--step-2); color: var(--text); line-height: 1.15; }
.owner__role {
  display: block;
  margin-top: .3rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.owner__body > * + * { margin-top: var(--sp-4); }
.owner__intro { font-size: var(--step-1); color: var(--text); line-height: 1.55; }

/* --------------------------------------------------------------------------
   17. CERTIFICATIONS
   -------------------------------------------------------------------------- */
.cert-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 46em) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(217,174,60,.06), transparent 60%);
}
.cert h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 650; letter-spacing: 0; }
.cert p { color: var(--text-muted); font-size: .93rem; margin-top: .35rem; }

/* --------------------------------------------------------------------------
   18. WORD OF MOUTH / FUTURE REVIEWS
   -------------------------------------------------------------------------- */
.wom { max-width: 44rem; margin-inline: auto; text-align: center; }
.wom__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
}
/* Ready for real Google reviews. Add .review-grid markup and delete [hidden]
   from the wrapper once genuine reviews exist. Never populate with invented text. */
.review-grid { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); text-align: left; }
@media (min-width: 46em) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--black-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.review__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review__text { color: var(--text-muted); font-size: .95rem; }
.review__who { margin-top: auto; font-size: var(--step--1); color: var(--silver-dim); }
[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   19. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--black-0);
  border-top: 1px solid var(--hairline);
  padding-block: var(--section-y);
  text-align: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 120% at 50% 100%, rgba(217,174,60,.14), transparent 62%);
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 50ch; margin-inline: auto; color: var(--text-muted); margin-top: var(--sp-4); }
.cta-band .btn-row { margin-top: var(--sp-6); }
.cta-band__meta { margin-top: var(--sp-5); font-size: var(--step--1); color: var(--silver-dim); }

/* --------------------------------------------------------------------------
   20. FAQ
   -------------------------------------------------------------------------- */
.faq-cat + .faq-cat { margin-top: var(--sp-7); }
.faq-cat__head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  padding-bottom: .7rem;
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--gold-line);
}
.faq-cat__head h2 { font-size: var(--step-2); }
.faq-cat__count { font-size: var(--step--1); color: var(--silver-dim); }

.faq { display: grid; gap: .6rem; }
.faq__item {
  background: var(--black-3);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .18s ease;
}
.faq__item[open] { border-color: var(--gold-line); }
.faq__item:hover { border-color: var(--hairline-2); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  font-weight: 620;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  min-height: 48px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: .65rem; height: .65rem;
  margin-top: .45rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__q:hover { color: var(--gold-light); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-muted); font-size: .95rem; }
.faq__a > * + * { margin-top: var(--sp-3); }

/* --------------------------------------------------------------------------
   21. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 0; }
.form__group + .form__group {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hairline);
}
.form__legend {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.form__fields { display: grid; gap: var(--sp-4); }
@media (min-width: 40em) { .form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }

.field { display: grid; gap: .35rem; }
.field > label { font-weight: 600; font-size: .9rem; color: var(--text); }
.field .hint { font-size: var(--step--1); color: var(--text-muted); }
.req { color: var(--gold); }
.band-light .req { color: var(--gold-deep); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.band-light input[type="text"], .band-light input[type="email"], .band-light input[type="tel"],
.band-light select, .band-light textarea { background: var(--white); }

textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9AE3C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 1.05rem;
  padding-right: 2.6rem;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: .7; }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,174,60,.2);
  outline: none;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
/* Briefly highlight a field filled in from the URL */
.is-prefilled { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(217,174,60,.16); }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--step--1); color: var(--text-muted); }
.consent input[type="checkbox"] { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--gold); flex: none; }

/* Honeypot — hidden from real users, visible to most bots */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); font-size: .95rem; border: 1px solid; margin-bottom: var(--sp-5); }
.form-status--ok { background: rgba(127,209,162,.11); border-color: var(--ok); color: var(--text); }
.form-status--error { background: rgba(255,158,158,.10); border-color: var(--error); color: var(--text); }
.form-status strong { display: block; margin-bottom: .25rem; font-size: 1.02rem; }

.field-error { font-size: var(--step--1); color: var(--error); font-weight: 600; }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--error); }

.form-footer { margin-top: var(--sp-6); padding-top: var(--sp-6); border-top: 1px solid var(--hairline); display: grid; gap: var(--sp-4); }

/* --------------------------------------------------------------------------
   22. CONTACT METHODS
   -------------------------------------------------------------------------- */
.contact-methods { display: grid; gap: var(--sp-4); }
@media (min-width: 40em) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .contact-methods { grid-template-columns: repeat(4, 1fr); } }

.method {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #131316, #0C0C0E);
  transition: border-color .18s ease, transform .18s ease;
}
.method:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.method__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.method__label svg { width: 1rem; height: 1rem; }
.method__value { font-size: 1.08rem; font-weight: 650; color: var(--text); text-decoration: none; word-break: break-word; }
a.method__value:hover { color: var(--gold-light); text-decoration: underline; }
.method__note { font-size: var(--step--1); color: var(--text-muted); }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  margin: 0;
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding: .4rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: .9rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--text-muted); }
.hours .time { font-weight: 650; color: var(--text); }
.hours .time--closed { color: var(--text-muted); font-weight: 500; }

/* --------------------------------------------------------------------------
   23. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black-0);
  border-top: 1px solid var(--hairline);
  padding-block: var(--sp-8) var(--sp-5);
  color: var(--text-muted);
  font-size: .93rem;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.site-footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 46em) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7) var(--sp-6); } }
@media (min-width: 68em) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .5rem; }
.site-footer a { color: #DAD6CE; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }

.footer-brand img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: var(--sp-4); }
.footer-brand p { max-width: 32ch; }
.footer-area {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
  font-size: var(--step--1);
  color: var(--silver-dim);
}

.site-footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
}
.site-footer__legal { max-width: 62ch; color: #8E8A82; }

/* Social icons — markup kept, revealed once real profile URLs exist. */
.socials { display: flex; gap: .55rem; margin-top: var(--sp-4); list-style: none; padding: 0; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline-2);
  border-radius: 50%;
  color: var(--gold);
  transition: background-color .18s ease, transform .18s ease;
}
.socials a:hover { background: var(--gold-wash); transform: translateY(-2px); }
.socials svg { width: 1.1rem; height: 1.1rem; }

/* --------------------------------------------------------------------------
   24. 404
   -------------------------------------------------------------------------- */
.error-page { min-height: 58vh; display: grid; place-items: center; text-align: center; padding-block: var(--sp-9); }
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 3rem + 11vw, 8rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--sp-4);
}

/* --------------------------------------------------------------------------
   25. MOTION
   -------------------------------------------------------------------------- */
/* Applied by main.js only — with JS disabled nothing is ever hidden. */
.reveal-init { opacity: 0; transform: translateY(14px); }
.reveal-init.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-init { opacity: 1; transform: none; }
  .btn:hover, .svc-card:hover, .method:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   26. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .skip-link, .btn, .action-bar { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .section, .hero, .page-hero { background: #fff !important; color: #000 !important; padding-block: 1rem; }
  h1, h2, h3, p, li { color: #000 !important; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; }
}
