/* ============================================================
   THE AUCTION COMPANY — Design System
   Concept: The Catalogue (modern auction-house editorial)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Colours — brand: red #B51B34 · charcoal #323134 · white · greys (Round 2) */
  --ink: #1a1a1c;
  --ink-soft: #323134;
  --bluestone: #323134;
  --bluestone-dk: #242325;
  --bluestone-lt: #4a4a4d;
  --parchment: #f0eef0;
  --parchment-dk: #e2e0e3;
  --paper: #ffffff;
  --paper-warm: #f6f5f7;
  --brass: #b51b34;
  --brass-lt: #d23a52;
  --brass-dk: #8f1428;
  --vermillion: #b51b34;
  --stone: #4a494c;
  --stone-lt: #6f6d72;
  --rule: #d4d2d6;
  --rule-soft: #e7e5e9;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Type scale (fluid) */
  --fs-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --fs-sm: clamp(0.82rem, 0.8rem + 0.15vw, 0.9rem);
  --fs-base: clamp(0.95rem, 0.92rem + 0.2vw, 1.05rem);
  --fs-lg: clamp(1.1rem, 1.05rem + 0.3vw, 1.25rem);
  --fs-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.6rem);
  --fs-2xl: clamp(1.7rem, 1.4rem + 1.4vw, 2.2rem);
  --fs-3xl: clamp(2.1rem, 1.6rem + 2.5vw, 3.2rem);
  --fs-4xl: clamp(2.6rem, 1.8rem + 4vw, 4.4rem);
  --fs-5xl: clamp(3.2rem, 2rem + 6vw, 6rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6.5rem;
  --sp-10: 9rem;

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 920px;
  --max-w-text: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Misc */
  --header-h: 88px;
  --header-h-mobile: 68px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); -webkit-text-size-adjust: 100%; }
@media (max-width: 880px) { html { scroll-padding-top: calc(var(--header-h-mobile) + 16px); } }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--fs-5xl); font-weight: 500; letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-xl); font-weight: 500; }
h4 { font-size: var(--fs-lg); font-weight: 500; }
p { color: var(--stone); max-width: 65ch; }
p + p { margin-top: var(--sp-4); }
strong, b { font-weight: 600; color: var(--ink); }
em, i { font-style: italic; }

/* Lot-number label — the signature device */
.lot-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.lot-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.lot-label.no-rule::before { display: none; }
.lot-label.center { justify-content: center; }

/* Display italic — for emphasis in body */
.display-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--text { max-width: var(--max-w-text); }
.section { padding: var(--sp-9) 0; }
.section--tight { padding: var(--sp-7) 0; }
.section--dark { background: var(--bluestone); color: var(--parchment); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper); }
.section--dark p { color: rgba(235, 226, 207, 0.78); }
.section--dark .lot-label { color: var(--brass-lt); }
.section--dark .lot-label::before { background: var(--brass-lt); }
.section--parchment { background: var(--paper-warm); }
.section--paper { background: var(--paper); }

/* Section header pattern (lot label + H2) */
.section-head { margin-bottom: var(--sp-7); max-width: var(--max-w-text); }
.section-head .lot-label { margin-bottom: var(--sp-4); }
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head p { font-size: var(--fs-lg); color: var(--stone); line-height: 1.5; }
.section--dark .section-head p { color: rgba(235, 226, 207, 0.72); }

/* Rule */
.rule { height: 1px; background: var(--rule); border: 0; margin: var(--sp-6) 0; }
.rule--brass { background: var(--brass); height: 2px; width: 56px; margin: var(--sp-4) 0; }
.rule--double { height: 5px; background: linear-gradient(to bottom, var(--rule) 0, var(--rule) 1px, transparent 1px, transparent 4px, var(--rule) 4px, var(--rule) 5px); margin: var(--sp-6) 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 238, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  height: 56px;
}
.site-header__logo svg { height: 100%; width: auto; max-width: 380px; }
.nav { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--brass-dk); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--brass);
}
.nav__cta {
  margin-left: var(--sp-3);
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav__cta:hover { background: var(--brass-dk); transform: translateY(-1px); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.menu-toggle__bar {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  display: block;
}
.menu-toggle__bar::before, .menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.menu-toggle__bar::before { top: -6px; }
.menu-toggle__bar::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .site-header__inner { height: var(--header-h-mobile); }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h-mobile) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-5) var(--gutter);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--rule-soft);
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__link { padding: 0.95rem 0; font-size: 0.86rem; border-bottom: 1px solid var(--rule-soft); }
  .nav__cta { margin: var(--sp-5) 0 0 0; text-align: center; padding: 1rem; }
  .site-header__logo svg { height: 40px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.92;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.55) 0%, rgba(20, 24, 28, 0.7) 60%, rgba(20, 24, 28, 0.85) 100%);
  z-index: -1;
}
.hero__inner { padding: var(--sp-9) 0; }
.hero__lot { color: var(--brass-lt); margin-bottom: var(--sp-5); }
.hero__lot::before { background: var(--brass-lt); }
.hero h1 { color: var(--paper); max-width: 16ch; margin-bottom: var(--sp-5); }
.hero__lede {
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem);
  line-height: 1.5;
  color: rgba(235, 226, 207, 0.88);
  max-width: 48ch;
  margin-bottom: var(--sp-6);
  font-weight: 300;
}
.hero__cta-row { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero--compact { min-height: clamp(360px, 50vh, 480px); }
.hero--compact h1 { font-size: var(--fs-4xl); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
}
.btn::after {
  content: "→";
  font-family: var(--font-body);
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}
.btn:hover::after { transform: translateX(3px); }
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: var(--brass-lt); color: #fff; }
.btn--primary:visited, .btn--primary:focus, .btn--primary:active { color: #fff; }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--bluestone-lt); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(235, 226, 207, 0.5);
}
.btn--ghost:hover { border-color: var(--brass-lt); color: var(--brass-lt); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--parchment);
  padding: var(--sp-7) 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.trust-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 2vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--brass-lt);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.trust-stat__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235, 226, 207, 0.7);
}
@media (max-width: 720px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}

/* ---------- Editorial blocks ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
  align-items: start;
}
.editorial__media { position: relative; }
.editorial__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.editorial__media::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 30%;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
  pointer-events: none;
}
.editorial__copy h2 { margin-bottom: var(--sp-5); }
.editorial__copy p { font-size: var(--fs-lg); line-height: 1.6; }
.editorial--reverse { grid-template-columns: 1.4fr 1fr; }
.editorial--reverse .editorial__media { order: 2; }
@media (max-width: 880px) {
  .editorial, .editorial--reverse { grid-template-columns: 1fr; gap: var(--sp-6); }
  .editorial--reverse .editorial__media { order: 0; }
  .editorial__media img { aspect-ratio: 4/3; }
}

/* ---------- Service / value cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.card {
  background: var(--paper);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
}
.section--dark .cards { background: rgba(235, 226, 207, 0.15); border-color: rgba(235, 226, 207, 0.15); }
.section--dark .card { background: var(--bluestone); }
.card__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brass);
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-4);
}
.card h3 { font-family: var(--font-display); font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.card p { color: var(--stone); }
.section--dark .card p { color: rgba(235, 226, 207, 0.72); }
.card__link {
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dk);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section--dark .card__link { color: var(--brass-lt); }
.card__link::after { content: "→"; font-family: var(--font-body); transition: transform 0.2s var(--ease); }
.card__link:hover::after { transform: translateX(3px); }

/* ---------- Service list (long-form) ---------- */
.service-list {
  display: grid;
  gap: 0;
}
.service-list__item {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-list__item:first-child { border-top: 1px solid var(--rule); }
.service-list__num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--brass); letter-spacing: 0.18em; padding-top: 6px; }
.service-list__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 500; }
.service-list__body p { color: var(--stone); }
@media (max-width: 720px) {
  .service-list__item { grid-template-columns: 1fr; gap: var(--sp-3); padding: var(--sp-5) 0; }
}

/* ---------- Testimonials ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: var(--sp-6) 0;
}
.pull-quote::before {
  content: "“";
  font-size: 5em;
  line-height: 0.6;
  color: var(--brass);
  display: block;
  margin-bottom: 0.2em;
}
.section--dark .pull-quote { color: var(--paper); }
.pull-quote__attr {
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

/* Testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-5);
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--sp-6);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--brass);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.testimonial__stars {
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-3);
}
.testimonial__attr {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
}
.testimonial__name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--stone-lt);
  margin-top: var(--sp-1);
}

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.team-member { }
.team-member__photo {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  margin-bottom: var(--sp-4);
}
.team-member__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  margin-bottom: 4px;
}
.team-member__role {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: var(--sp-3);
}
.team-member__bio { font-size: var(--fs-sm); color: var(--stone); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: var(--sp-5) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.2s var(--ease);
}
.faq-item__q:hover { color: var(--brass-dk); }
.faq-item__icon {
  width: 26px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--brass);
  transition: transform 0.3s var(--ease);
}
.faq-item__icon::before { top: 12px; left: 4px; right: 4px; height: 1.5px; }
.faq-item__icon::after { left: 12px; top: 4px; bottom: 4px; width: 1.5px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); }
.faq-item__a {
  padding: 0 0 var(--sp-5) 0;
  color: var(--stone);
  max-width: 65ch;
  line-height: 1.65;
}
.faq-item__a p + p { margin-top: var(--sp-3); }
.section--dark .faq, .section--dark .faq-item { border-color: rgba(235, 226, 207, 0.15); }
.section--dark .faq-item__q { color: var(--paper); }
.section--dark .faq-item__a { color: rgba(235, 226, 207, 0.78); }

/* ---------- Contact form ---------- */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-block { grid-template-columns: 1fr; gap: var(--sp-6); }
}
.contact-info dl { display: grid; gap: var(--sp-5); }
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: var(--sp-2);
}
.section--dark .contact-info dt { color: var(--brass-lt); }
.contact-info dd { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--ink); line-height: 1.4; }
.section--dark .contact-info dd { color: var(--paper); }
.contact-info dd a { transition: color 0.2s var(--ease); }
.contact-info dd a:hover { color: var(--brass-dk); }
.section--dark .contact-info dd a:hover { color: var(--brass-lt); }

.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: grid; gap: var(--sp-2); }
.form__field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.section--dark .form__field label { color: rgba(235, 226, 207, 0.7); }
.form__field input, .form__field textarea, .form__field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: var(--fs-base);
  color: var(--ink);
  border-radius: 0;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: none;
  border-color: var(--brass);
}
.section--dark .form__field input, .section--dark .form__field textarea, .section--dark .form__field select {
  background: rgba(235, 226, 207, 0.06);
  border-color: rgba(235, 226, 207, 0.18);
  color: var(--paper);
}
.section--dark .form__field input::placeholder, .section--dark .form__field textarea::placeholder { color: rgba(235, 226, 207, 0.45); }
.form__field textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.form__honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin-top: var(--sp-3); justify-self: start; }
.form__msg { display: none; padding: var(--sp-4); border: 1px solid var(--rule); }
.form__msg--success { display: block; border-color: var(--brass); background: rgba(168, 136, 74, 0.08); color: var(--ink); }
.form__msg--error { display: block; border-color: var(--vermillion); background: rgba(162, 61, 44, 0.08); color: var(--vermillion); }

/* ---------- Map ---------- */
.map-embed {
  width: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(0.95);
}
.map-embed--footer { aspect-ratio: 21/9; min-height: 180px; }
.map-embed--large { aspect-ratio: 16/9; min-height: 380px; margin-top: var(--sp-6); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--brass); margin-left: 0.25rem; }
.breadcrumbs a { color: var(--stone); transition: color 0.2s var(--ease); }
.breadcrumbs a:hover { color: var(--brass-dk); }
.breadcrumbs li:last-child { color: var(--ink); font-weight: 600; }

/* ---------- News / blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-6); }
.post-card { display: flex; flex-direction: column; }
.post-card__img { aspect-ratio: 16/10; width: 100%; object-fit: cover; margin-bottom: var(--sp-4); }
.post-card__meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-dk); margin-bottom: var(--sp-3); }
.post-card__title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: var(--sp-3); line-height: 1.3; }
.post-card__excerpt { color: var(--stone); font-size: var(--fs-sm); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding-top: var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: var(--sp-4);
}
.footer-col a, .footer-col p { color: rgba(235, 226, 207, 0.72); transition: color 0.2s var(--ease); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--brass-lt); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-logo { margin-bottom: var(--sp-4); }
.footer-logo svg { height: 56px; width: auto; max-width: 320px; }
.footer-blurb { line-height: 1.55; font-size: var(--fs-sm); max-width: 36ch; }
.social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(235, 226, 207, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  color: var(--parchment);
}
.social-icon:hover { border-color: var(--brass-lt); color: var(--brass-lt); }
.social-icon svg { width: 18px; height: 18px; }

.footer-map { padding: 0 0 var(--sp-6); }

.footer-bar {
  border-top: 1px solid rgba(235, 226, 207, 0.14);
  padding: var(--sp-5) 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 226, 207, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bar a { color: rgba(235, 226, 207, 0.5); }
.footer-bar a:hover { color: var(--brass-lt); }

/* ---------- Process / steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  counter-reset: step;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  padding: var(--sp-5) 0;
  border-top: 2px solid var(--brass);
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-3);
}
.process-step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.process-step p { font-size: var(--fs-sm); color: var(--stone); }
.section--dark .process-step p { color: rgba(235, 226, 207, 0.7); }

/* ---------- Misc ---------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; }

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

/* Lockup — small reusable */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: var(--sp-3);
}
.section--dark .eyebrow { color: var(--brass-lt); }

/* Two-column text */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: var(--sp-5); } }
.two-col p { font-size: var(--fs-base); }

/* Stat callout */
.stat-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5);
  border-left: 2px solid var(--brass);
  background: var(--paper-warm);
  margin: var(--sp-5) 0;
}
.section--dark .stat-callout { background: rgba(235, 226, 207, 0.04); }
.stat-callout__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-style: italic;
  color: var(--brass-dk);
  line-height: 1;
}
.section--dark .stat-callout__num { color: var(--brass-lt); }
.stat-callout__txt { font-size: var(--fs-sm); color: var(--stone); align-self: center; }
.section--dark .stat-callout__txt { color: rgba(235, 226, 207, 0.7); }

/* Inline call to action (text link with arrow) */
.inline-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dk);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.25rem;
}
.inline-cta::after { content: "→"; transition: transform 0.2s var(--ease); }
.inline-cta:hover::after { transform: translateX(3px); }

/* ============================================================
   2026-07 REVISION — added components
   Nav dropdowns · service tiers · price tables · training
   programs · resource grids · agency portal · form extras
   ============================================================ */

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

/* ---------- Nav: tighter tracking for the expanded menu ---------- */
.nav__link { padding: 0.6rem 0.62rem; font-size: 0.68rem; letter-spacing: 0.11em; }
.nav__link[aria-current="page"]::after { left: 0.62rem; right: 0.62rem; }
.nav__cta { margin-left: var(--sp-2); padding: 0.65rem 0.95rem; font-size: 0.67rem; letter-spacing: 0.13em; }

/* ---------- Nav dropdowns ---------- */
.nav__group { position: relative; display: flex; align-items: center; }
.nav__link--parent { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav__caret {
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
  transition: transform 0.2s var(--ease);
}
.nav__expand { display: none; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-top: 2px solid var(--brass);
  box-shadow: 0 18px 40px -18px rgba(20, 24, 28, 0.35);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 60;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__group:hover .nav__caret { transform: rotate(180deg); }
.nav__sublink {
  display: block;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--ink);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__sublink:hover { background: var(--paper-warm); color: var(--brass-dk); }

@media (max-width: 1180px) {
  .site-header__inner { height: var(--header-h-mobile); }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h-mobile) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-5) var(--gutter) var(--sp-8);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--rule-soft);
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__link { padding: 0.95rem 0; font-size: 0.86rem; letter-spacing: 0.16em; border-bottom: 1px solid var(--rule-soft); }
  .nav__link[aria-current="page"]::after { left: 0; right: auto; width: 28px; }
  .nav__cta { margin: var(--sp-5) 0 0 0; text-align: center; padding: 1rem; font-size: 0.78rem; }
  .site-header__logo svg { height: 40px; }

  .nav__group { display: block; position: relative; }
  .nav__group .nav__link { border-bottom: 1px solid var(--rule-soft); }
  .nav__caret { display: none; }
  .nav__expand {
    display: block;
    position: absolute;
    top: 0; right: 0;
    width: 52px; height: 52px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .nav__expand::before, .nav__expand::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 13px; height: 1.5px; background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform 0.2s var(--ease);
  }
  .nav__expand::after { transform: translate(-50%, -50%) rotate(90deg); }
  .nav__expand[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(0deg); }
  .nav__dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--brass);
    background: var(--paper-warm);
    margin: 0 0 0 0.5rem;
    padding: 0;
    display: none;
  }
  .nav__dropdown[data-open="true"] { display: block; }
  .nav__sublink { padding: 0.8rem 1rem; border-bottom: 1px solid var(--rule-soft); }
  .nav__sublink:last-child { border-bottom: 0; }
}

@media (min-width: 1181px) {
  .nav__link { white-space: nowrap; }
}

/* ---------- Service tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
@media (max-width: 780px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
}
.tier--featured { border-color: var(--brass); border-top: 3px solid var(--brass); background: var(--paper-warm); }
.tier__name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dk);
  font-weight: 500;
}
.tier__price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: 1;
  color: var(--ink);
  margin-top: 0.4rem;
  letter-spacing: -0.02em;
}
.tier__sub { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--stone-lt); margin-top: 0.35rem; letter-spacing: 0.08em; }
.tier__lead { font-weight: 600; color: var(--brass-dk); margin-top: var(--sp-4); font-size: var(--fs-sm); }
.tier__list { list-style: none; padding: 0; margin: var(--sp-4) 0 0 0; display: grid; gap: 0.7rem; }
.tier__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--stone);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
}
.tier__note {
  margin-top: auto;
  padding: var(--sp-4);
  background: rgba(162, 61, 44, 0.07);
  border-left: 2px solid var(--vermillion);
  color: var(--vermillion);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.5;
  margin-block-start: var(--sp-5);
}

/* ---------- Price table ---------- */
.price-table-wrap { max-width: var(--max-w-narrow); margin: 0 auto; }
.price-table__title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dk);
  font-weight: 500;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--rule);
}
.price-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-2); }
.price-table thead th {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-lt);
  font-weight: 500;
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.price-table thead th:last-child { text-align: right; }
.price-table tbody th {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--ink);
  text-align: left;
  padding: 0.9rem 1rem 0.9rem 0;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.45;
}
.price-table tbody td {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--brass-dk);
  text-align: right;
  white-space: nowrap;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.price-table__note { margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--stone-lt); }
.tbc {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vermillion);
  background: rgba(162, 61, 44, 0.09);
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
}

/* ---------- Training programs ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-7);
}
@media (max-width: 880px) { .program-grid { grid-template-columns: 1fr; } }
.program-col { display: flex; flex-direction: column; gap: var(--sp-4); }
.program-col__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--brass);
}
.program {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--sp-5);
}
.program__name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dk);
  font-weight: 500;
}
.program__price {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.05;
  margin-top: 0.3rem;
  letter-spacing: -0.02em;
}
.program__price span { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--stone-lt); letter-spacing: 0; }
.program__sub { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.1em; color: var(--stone-lt); margin-top: 0.3rem; }
.program__list { list-style: none; padding: 0; margin: var(--sp-4) 0 0 0; display: grid; gap: 0.6rem; }
.program__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-sm);
  color: var(--stone);
  line-height: 1.5;
}
.program__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 1px;
  background: var(--brass);
}

/* ---------- Chips (refresher topics) ---------- */
.chip-list { list-style: none; padding: 0; margin: var(--sp-6) 0 0 0; display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.chip {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 0.7rem 1.15rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.chip--tbc { border-style: dashed; color: var(--stone-lt); }

/* ---------- Resource grid ---------- */
.resource-grid {
  list-style: none;
  padding: 0;
  margin: var(--sp-7) 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 780px) { .resource-grid { grid-template-columns: 1fr; } }
.resource-item {
  border-top: 2px solid var(--brass);
  background: var(--paper);
  padding: var(--sp-5);
  border-left: 1px solid var(--rule-soft);
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.resource-item__title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: 0.6rem; }
.resource-item__status {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin-top: var(--sp-4);
}

/* ---------- Team groups ---------- */
.team-group { margin-top: var(--sp-7); }
.team-group__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--rule);
}

/* ---------- Agency portal ---------- */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 880px) { .portal-grid { grid-template-columns: 1fr; } }
.portal-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--sp-6);
}
.portal-panel--alt { background: var(--bluestone); border-color: var(--bluestone-lt); }
.portal-panel--alt h2, .portal-panel--alt p, .portal-panel--alt .tier__list li { color: var(--parchment); }
.portal-panel--alt .lot-label { color: var(--brass-lt); }
.form--portal { margin-top: var(--sp-5); }
.build-note {
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--brass);
  background: var(--paper-warm);
  font-size: var(--fs-sm);
  color: var(--stone);
  max-width: none;
}

/* ---------- Form extras ---------- */
.form__field--hidden { display: none; }
.form__field--hidden.is-visible { display: block; }
.form__fieldset { border: 1px solid var(--rule-soft); padding: var(--sp-4); }
.form__fieldset legend {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-lt);
  padding: 0 0.5rem;
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
@media (max-width: 680px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--stone);
  line-height: 1.4;
  cursor: pointer;
}
.checkbox input { margin-top: 0.25rem; accent-color: var(--brass-dk); flex-shrink: 0; }
.contact-note { display: block; font-size: var(--fs-sm); color: var(--stone-lt); margin-top: 0.35rem; }

/* ---------- Misc ---------- */
code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--paper-warm);
  border: 1px solid var(--rule-soft);
  padding: 0.1rem 0.35rem;
}

/* ---------- Header revision: utility bar + wrapping nav ---------- */
html, body { overflow-x: clip; }

.header-utility {
  background: var(--bluestone-dk);
  color: var(--parchment);
  border-bottom: 1px solid rgba(168, 136, 74, 0.35);
}
.header-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 34px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.header-utility__contact { display: inline-flex; align-items: center; gap: 0.6rem; }
.header-utility a { color: var(--parchment); transition: color 0.2s var(--ease); }
.header-utility a:hover { color: var(--brass-lt); }
.header-utility__hours { color: var(--parchment); opacity: 0.65; }
@media (max-width: 1180px) { .header-utility { display: none; } }

/* Give the nav its own line so all ten items fit without truncation */
@media (min-width: 1181px) {
  .site-header__inner {
    height: auto;
    flex-wrap: wrap;
    row-gap: 0;
    padding-top: 0.55rem;
    align-items: center;
  }
  .site-header__logo { height: 48px; }
  .site-header__logo svg { max-width: 330px; }
  .nav {
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid var(--rule-soft);
    margin-top: 0.55rem;
    padding: 0.15rem 0;
    row-gap: 0;
  }
  .nav__cta { margin-left: auto; }
}

/* ---------- Brand logo (real lockup, replaces the interim SVG wordmark) ---------- */
.brand-logo { height: 100%; width: auto; display: block; }
.site-header__logo { height: 62px; }
.site-header__logo .brand-logo { height: 62px; }
.footer-logo { height: 76px; }
.footer-logo .brand-logo { height: 76px; }
@media (max-width: 1180px) {
  .site-header__logo { height: 44px; }
  .site-header__logo .brand-logo { height: 44px; }
}

/* ---------- Header shrink on scroll ----------
   Three stacked rows (utility / logo / nav) is a tall sticky header. Once the
   page scrolls, collapse the utility bar and shrink the logo. Purely additive:
   if the JS never runs, the header simply stays at full height. */
.site-header .header-utility {
  overflow: hidden;
  transition: max-height 0.25s var(--ease), opacity 0.2s var(--ease);
  max-height: 34px;
  opacity: 1;
}
.site-header.is-scrolled .header-utility { max-height: 0; opacity: 0; }
.site-header__logo,
.site-header__logo .brand-logo { transition: height 0.25s var(--ease); }
@media (min-width: 1181px) {
  .site-header.is-scrolled .site-header__logo,
  .site-header.is-scrolled .site-header__logo .brand-logo { height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .header-utility,
  .site-header__logo,
  .site-header__logo .brand-logo { transition: none; }
}

/* ---------- Round 2: prominent booking button + right-aligned dropdown ---------- */
.nav__group--cta { margin-left: auto; }
.nav__book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brass);            /* brand red */
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.7rem 1.05rem;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}
.nav__book:hover { background: var(--brass-dk); color: #fff; }
.nav__book .nav__caret { border-top-color: #fff; opacity: 0.85; }
.nav__group--cta:hover .nav__caret { transform: rotate(180deg); }
.nav__dropdown--right { left: auto; right: 0; }
.nav__cta {
  background: var(--ink);
  color: var(--paper);
}
.nav__cta:hover { background: var(--bluestone); color: #fff; }

@media (min-width: 1181px) {
  /* booking button + portal sit together at the right end of the nav row */
  .nav__group--cta { margin-left: auto; }
  .nav__cta { margin-left: var(--sp-3); }
}
@media (max-width: 1180px) {
  .nav__group--cta { margin-left: 0; }
  .nav__book {
    justify-content: center;
    margin-top: var(--sp-5);
    padding: 1rem;
    font-size: 0.78rem;
    position: relative;
  }
  .nav__book .nav__caret { display: none; }
  .nav__expand--cta { height: 56px; }
  .nav__expand--cta::before, .nav__expand--cta::after { background: #fff; }
  .nav__dropdown--right { border-left-color: var(--brass); }
}

/* ---------- Round 2: radio row + coming-soon + events + reviews carousel + FAQ page ---------- */
.radio-row { display: flex; gap: var(--sp-5); margin-top: 0.35rem; }
.radio { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--stone); cursor: pointer; }
.radio input { accent-color: var(--brass-dk); }

/* Coming soon */
.coming-soon { min-height: 52vh; display: flex; align-items: center; }
.coming-soon__badge {
  display: inline-block; margin: 0 auto var(--sp-4);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.24em;
  text-transform: uppercase; color: #fff; background: var(--brass);
  padding: 0.45rem 1rem;
}
.coming-soon h1 { margin-bottom: var(--sp-4); }
.coming-soon__blurb { font-size: var(--fs-lg); color: var(--ink); margin-bottom: var(--sp-5); }
.coming-soon .btn { margin-top: var(--sp-4); }

/* Events banner */
.lot-label--light { color: var(--brass-lt); }
.events__head { max-width: var(--max-w-text); margin-bottom: var(--sp-6); }
.events__head h2, .events__intro { color: var(--parchment); }
.events__intro { color: var(--parchment-dk); margin-top: var(--sp-3); }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 860px) { .events__grid { grid-template-columns: 1fr; } }
.event-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--bluestone-lt);
  border-top: 2px solid var(--brass); padding: var(--sp-5);
}
.event-card__tag {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass-lt);
}
.event-card__title { color: var(--parchment); font-size: var(--fs-lg); margin: 0.5rem 0 0.6rem; }
.event-card__detail { color: var(--parchment-dk); font-size: var(--fs-sm); }
.event-card__link {
  display: inline-block; margin-top: var(--sp-4); color: var(--brass-lt);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
}
.event-card__link:hover { color: #fff; }

/* Reviews carousel */
.reviews__viewport { overflow: hidden; margin-top: var(--sp-6); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews__track { display: flex; gap: var(--sp-5); width: max-content; animation: reviews-marquee 60s linear infinite; }
.reviews__viewport:hover .reviews__track, .reviews__viewport.is-paused .reviews__track { animation-play-state: paused; }
.review-slide {
  flex: 0 0 clamp(280px, 32vw, 420px); margin: 0; background: var(--paper);
  border: 1px solid var(--rule); border-top: 2px solid var(--brass); padding: var(--sp-5);
  display: flex; flex-direction: column;
}
.review-slide__stars { color: var(--brass); letter-spacing: 2px; font-size: 0.9rem; }
.review-slide blockquote { margin: var(--sp-3) 0 var(--sp-4); font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.4; color: var(--ink); }
.review-slide figcaption { margin-top: auto; display: flex; flex-direction: column; }
.review-slide__name { font-weight: 600; color: var(--ink); }
.review-slide__org { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.08em; color: var(--stone-lt); }
.reviews__foot { margin-top: var(--sp-6); text-align: center; }
@keyframes reviews-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .reviews__viewport { -webkit-mask-image: none; mask-image: none; overflow: visible; }
}

/* Consolidated FAQ page */
.faq-jump { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--sp-7); }
.faq-jump a {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.08em;
  color: var(--stone); border: 1px solid var(--rule); padding: 0.45rem 0.8rem;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.faq-jump a:hover { background: var(--brass); color: #fff; border-color: var(--brass); }
.faq-group { margin-bottom: var(--sp-7); scroll-margin-top: 120px; }
.faq-group__title {
  font-family: var(--font-display); font-size: var(--fs-xl);
  padding-bottom: var(--sp-3); margin-bottom: var(--sp-4); border-bottom: 2px solid var(--brass);
}

/* ---------- Team member profile pages ---------- */
.team-member__photo-link { display: block; overflow: hidden; }
.team-member__photo-link img { transition: transform 0.4s var(--ease); }
.team-member__photo-link:hover img { transform: scale(1.04); }
.team-member__name a { color: inherit; }
.team-member__name a:hover { color: var(--brass-dk); }
.team-member__link {
  display: inline-block; margin-top: 0.6rem;
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-dk);
}
.team-member__link:hover { color: var(--ink); }

.profile-hero { padding-top: calc(var(--header-h) + var(--sp-7)); }
.profile-back { margin-bottom: var(--sp-5); }
.profile-back a {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.08em;
  color: var(--stone-lt);
}
.profile-back a:hover { color: var(--brass-dk); }
.profile {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}
@media (max-width: 820px) { .profile { grid-template-columns: 1fr; } }
.profile__media {
  border-top: 3px solid var(--brass); background: var(--paper-warm);
  border-left: 1px solid var(--rule-soft); border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.profile__media img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.profile__role {
  font-family: var(--font-mono); font-size: var(--fs-sm); letter-spacing: 0.06em;
  color: var(--brass-dk); margin: 0.4rem 0 var(--sp-5);
}
.profile__bio p { margin-bottom: var(--sp-4); font-size: var(--fs-base); }
.profile__creds {
  margin-top: var(--sp-5); padding: var(--sp-5); background: var(--paper-warm);
  border-left: 3px solid var(--brass);
}
.profile__cred-list { list-style: none; padding: 0; margin: var(--sp-3) 0 0; display: grid; gap: 0.55rem; }
.profile__cred-list li {
  position: relative; padding-left: 1.3rem; font-size: var(--fs-sm); color: var(--stone);
}
.profile__cred-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px;
  background: var(--brass); border-radius: 50%;
}
.profile__cta { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.btn--ghost-dark { border-color: var(--rule); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.profile-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-5); margin-top: var(--sp-6); }
.profile-quote { margin: 0; background: var(--paper); border: 1px solid var(--rule); border-top: 2px solid var(--brass); padding: var(--sp-5); }
.profile-quote__stars { color: var(--brass); letter-spacing: 2px; font-size: 0.85rem; }
.profile-quote blockquote { margin: var(--sp-3) 0; font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.4; color: var(--ink); }
.profile-quote figcaption { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em; color: var(--stone-lt); }


/* ====== Round 2: Upcoming Events section on home ====== */
.upcoming-events { position: relative; }
.upcoming-events__foot { margin-top: 2rem; text-align: center; color: var(--stone); font-size: var(--fs-sm); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.event-card { background: var(--paper); border: 1px solid var(--rule-soft); border-left: 3px solid var(--brass); padding: 1.5rem; display: flex; flex-direction: column; transition: transform 200ms ease, box-shadow 200ms ease; }
.event-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(50, 49, 52, 0.08); }
.event-card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.75rem; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; }
.event-card__type { color: var(--brass); font-weight: 600; }
.event-card__date { color: var(--stone-lt); }
.event-card__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 500; line-height: 1.2; margin: 0 0 0.75rem; color: var(--ink); }
.event-card__body { color: var(--stone); line-height: 1.55; flex-grow: 1; margin-bottom: 1rem; }
.event-card__link { color: var(--brass); font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; font-weight: 600; align-self: flex-start; }
.event-card__link:hover { text-decoration: underline; }

/* ====== Round 2: Section CTA row (used on About > Values) ====== */
.section-cta { display: flex; justify-content: center; }

/* ---------- Service card CTA ---------- */
.card__cta { margin-top: auto; padding-top: var(--sp-5); }

/* ---------- Conditional form branches ---------- */
.form__branch { display: grid; gap: var(--sp-4); }
.form__branch[hidden] { display: none; }
.form__hint { margin-top: 0.4rem; font-size: var(--fs-sm); color: var(--stone-lt); }

/* ============================================================
   NAV — second-level dropdown (Services › Auctioneer Services)
   ============================================================ */

/* Scope the first-level reveal to direct children so the nested
   panel is not dragged open with its parent. */
.nav__group:hover > .nav__dropdown,
.nav__group:focus-within > .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav__subgroup { position: relative; display: block; }

.nav__sublink--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.nav__subcaret {
  width: 0; height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 4px solid currentColor;
  opacity: 0.55;
  flex: none;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav__subgroup:hover .nav__subcaret,
.nav__subgroup:focus-within .nav__subcaret { opacity: 1; }

.nav__dropdown--sub {
  top: -0.4rem;
  left: 100%;
  min-width: 240px;
  border-top: 1px solid var(--rule-soft);
  border-left: 2px solid var(--brass);
  transform: translateX(-6px);
}
.nav__subgroup:hover > .nav__dropdown--sub,
.nav__subgroup:focus-within > .nav__dropdown--sub {
  opacity: 1; visibility: visible; transform: translateX(0);
}
/* Flip the flyout to the left if it would run off the viewport edge. */
.nav__dropdown--right .nav__dropdown--sub { left: auto; right: 100%; }

@media (max-width: 1180px) {
  .nav__subgroup { position: relative; display: block; }
  .nav__subcaret { display: none; }
  .nav__sublink--parent { border-bottom: 1px solid var(--rule-soft); }
  .nav__expand--sub {
    display: block;
    width: 46px; height: 46px;
  }
  .nav__dropdown--sub {
    position: static;
    transform: none;
    border-top: 0;
    border-left: 2px solid var(--brass-lt);
    background: var(--paper);
    margin-left: 0.75rem;
  }
  .nav__sublink--parent + .nav__expand--sub + .nav__dropdown--sub { margin-top: 0; }
}

/* ============================================================
   SERVICES LANDING — pillar cards
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-6, 2.5rem);
  margin-top: var(--sp-6, 2.5rem);
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: minmax(0, 1fr); }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-top: 3px solid var(--brass);
  padding: var(--sp-6, 2.25rem) var(--sp-5, 1.9rem) var(--sp-5, 1.9rem);
  box-shadow: 0 18px 40px -28px rgba(20, 24, 28, 0.35);
}

.pillar-card__eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.9rem;
}

.pillar-card__title { margin: 0 0 0.9rem; }

.pillar-card__lede { margin: 0 0 1.4rem; }

.pillar-card__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pillar-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.pillar-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  background: var(--brass);
}

.pillar-card__actions { margin: auto 0 1.1rem; }

.pillar-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.9rem;
}
.pillar-card__links a { font-weight: 600; color: var(--brass-dk); }

.cta-row { margin-top: 1.75rem; }


/* ============================================================
   Round 3 — header lockup, red-button contrast, in-page anchors
   ============================================================ */

/* --- Red buttons always read white, including hand-set inline colours --- */
.btn--primary,
.btn--primary[style] { color: #fff !important; }
.btn--primary::after { color: #fff; }

/* --- Header: logo hard left, larger, nav on the same row --- */
@media (min-width: 1181px) {
  .site-header__inner {
    height: auto;
    flex-wrap: nowrap;
    row-gap: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    align-items: center;
    gap: var(--sp-6);
  }
  .site-header__logo,
  .site-header__logo .brand-logo { height: 84px; }
  .site-header__logo svg { max-width: 460px; }
  .nav {
    flex-basis: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    border-top: 0;
    margin-top: 0;
    padding: 0;
    row-gap: 0;
  }
  .nav__cta { margin-left: var(--sp-3); }
  /* Scroll-shrink: keep the lockup prominent but reclaim some height */
  .site-header.is-scrolled .site-header__logo,
  .site-header.is-scrolled .site-header__logo .brand-logo { height: 56px; }
}

/* Slightly larger lockup on tablet/mobile too */
@media (max-width: 1180px) {
  .site-header__logo,
  .site-header__logo .brand-logo { height: 56px; }
}

/* --- In-page anchor targets clear the sticky header --- */
#our-story,
#auctioneers-trainers,
#operations-team,
#pricing,
#faq,
#contact { scroll-margin-top: 140px; }

/* ============================================================
   FAQ hub — search + topic cards
   ============================================================ */

/* ---- Search ---- */
.faq-search { max-width: 780px; margin: 0 auto var(--sp-7); }
.faq-search__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.7rem;
}
.faq-search__field { position: relative; }
.faq-search__box {
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-search__box:focus-within {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(181, 27, 52, 0.12);
}
.faq-search__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-left: 1.1rem;
}
.faq-search__icon::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 12px; height: 12px;
  border: 1.5px solid var(--stone-lt);
  border-radius: 50%;
}
.faq-search__icon::after {
  content: "";
  position: absolute;
  right: 1px; bottom: 1px;
  width: 7px; height: 1.5px;
  background: var(--stone-lt);
  transform: rotate(45deg);
  transform-origin: right center;
}
.faq-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 1.05rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink);
}
.faq-search__input::placeholder { color: var(--stone-lt); }
.faq-search__input::-webkit-search-cancel-button { display: none; }
.faq-search__clear {
  flex: 0 0 auto;
  position: relative;
  width: 40px; height: 40px;
  margin-right: 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.faq-search__clear::before, .faq-search__clear::after {
  content: "";
  position: absolute;
  left: 13px; top: 19px;
  width: 14px; height: 1.5px;
  background: var(--stone);
}
.faq-search__clear::before { transform: rotate(45deg); }
.faq-search__clear::after  { transform: rotate(-45deg); }
.faq-search__clear:hover::before, .faq-search__clear:hover::after { background: var(--brass); }

.faq-search__hint { margin-top: 0.6rem; font-size: var(--fs-sm); color: var(--stone-lt); }
.faq-search__status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.faq-search__panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0; right: 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 46px rgba(26, 26, 28, 0.16);
  max-height: min(60vh, 480px);
  overflow: auto;
}
.faq-search__col { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.faq-search__col--pages { border-left: 1px solid var(--rule-soft); background: var(--paper-warm); }
.faq-search__coltitle {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin: 0 0 0.6rem;
}
.faq-search__list { list-style: none; margin: 0; padding: 0; }
.faq-search__list button, .faq-search__list a {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.6rem;
  margin-left: -0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
}
.faq-search__list button:hover, .faq-search__list a:hover,
.faq-search__list [aria-selected="true"] { background: var(--parchment); color: var(--brass-dk); }
.faq-search__list mark { background: rgba(181, 27, 52, 0.14); color: inherit; font-weight: 600; padding: 0 1px; }
.faq-search__topic {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-lt);
  margin-top: 0.2rem;
}
.faq-search__list--pages a { color: var(--brass-dk); font-weight: 500; }
.faq-search__none { font-size: var(--fs-sm); color: var(--stone-lt); margin: 0.3rem 0 0; }

@media (max-width: 700px) {
  .faq-search__panel { grid-template-columns: 1fr; }
  .faq-search__col--pages { border-left: 0; border-top: 1px solid var(--rule-soft); }
}

/* ---- Topic cards ---- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: start; }
@media (min-width: 1000px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5) var(--sp-6); } }

.faq-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule-soft);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  margin-bottom: 0;
  scroll-margin-top: 140px;
}
.faq-card .faq-group__title {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: var(--fs-xl);
  margin: 0 0 var(--sp-3);
  padding: 0;
  border: 0;
}
.faq-card__count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--stone-lt);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
}
.faq-card .faq-group__intro { font-size: var(--fs-sm); color: var(--stone); margin: 0 0 var(--sp-4); }
.faq-card .faq { border-top: 1px solid var(--rule); }
.faq-card .faq-item__q { font-size: var(--fs-base); padding: 0.95rem 2.2rem 0.95rem 0; }
.faq-card .faq-item__a { font-size: var(--fs-sm); }

/* Extra questions: visible by default, collapsed by script so the page still
   works (and reads in full) with JavaScript disabled. */
.faq-more[data-collapsed="true"] { display: none; }

.faq-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-4);
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dk);
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.faq-more-toggle:hover { color: var(--ink); }
.faq-more-toggle__icon {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s var(--ease);
}
.faq-more-toggle[aria-expanded="true"] .faq-more-toggle__icon { transform: rotate(180deg); }

/* Result of a search jump */
.faq-item.is-target > .faq-item__q { color: var(--brass-dk); }
.faq-item.is-target { box-shadow: inset 3px 0 0 var(--brass); }

/* Topic chips */
.faq-jump { justify-content: flex-start; }


/* ============================================================
   Round 4 — 11 Sep 2026
   ============================================================ */

/* ---- The `hidden` attribute must always win --------------------
   `hidden` works through a browser default rule (display:none), so
   ANY rule of ours that sets `display` on the same element silently
   beats it. That is what kept the FAQ search dropdown on screen
   permanently: .faq-search__panel sets display:grid. Restore it
   globally so the trap cannot catch us again. */
[hidden] { display: none !important; }

/* ---- Topic boxes: equal height, controls aligned ---- */
.faq-grid { align-items: stretch; }
.faq-card { display: flex; flex-direction: column; }
.faq-card .faq { flex: 1 1 auto; }
.faq-card .faq-more-toggle { align-self: flex-start; }

/* ---- Buttons ---------------------------------------------------
   Red buttons: white text in every state, and a clear hover.
   Secondary buttons: outlined, inverting cleanly on hover. Inline
   `style="color:…"` left behind by the page editor is overridden so
   a button can never hover into unreadable text (which is what made
   "More about us" black out). */
.btn--primary,
.btn--primary:link,
.btn--primary:visited,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active,
.btn--primary[style] { color: #fff !important; }
.btn--primary:hover { background: var(--brass-dk); }

.btn--outline,
.btn--outline:link,
.btn--outline:visited { background: transparent; color: var(--ink) !important; border: 1px solid var(--ink); }
.btn--outline:hover,
.btn--outline:focus { background: var(--ink); color: var(--paper) !important; border-color: var(--ink); }

.btn--ghost,
.btn--ghost:link,
.btn--ghost:visited { background: transparent; color: var(--paper) !important; border: 1px solid rgba(255, 255, 255, 0.55); }
.btn--ghost:hover,
.btn--ghost:focus { background: var(--paper); color: var(--ink) !important; border-color: var(--paper); }

.btn--ghost-dark,
.btn--ghost-dark:link,
.btn--ghost-dark:visited { color: var(--ink) !important; border: 1px solid var(--rule); }
.btn--ghost-dark:hover,
.btn--ghost-dark:focus { background: var(--ink); color: var(--paper) !important; border-color: var(--ink); }

.btn:focus-visible { outline: 2px solid var(--brass-dk); outline-offset: 3px; }

/* ---- Text selection --------------------------------------------
   Solid brand red behind near-black text was close to unreadable.
   White on red reads cleanly in both directions. */
::selection { background: var(--brass); color: #fff; }
::-moz-selection { background: var(--brass); color: #fff; }
.section--dark ::selection { background: var(--brass-lt); color: #fff; }

/* ---- Footer: address and hours match the rest of the column ----
   Plain list text (address, opening hours) sat at body size and full
   opacity while the links beside it used --fs-sm at 72%, so the two
   read as different typefaces. This brings every footer list item to
   the same setting; the inline styles have been stripped from the
   markup so nothing overrides it. */
.footer-col ul li { color: rgba(235, 226, 207, 0.72); font-size: var(--fs-sm); line-height: 1.55; }
.footer-col ul li a { font-size: inherit; color: inherit; }
.footer-col ul li a:hover { color: var(--brass-lt); }
.footer-col__gap { margin-top: 0.5rem; }

/* ---- Form fields ------------------------------------------------
   .form__field is a grid, so in a two-column .form__row its rows were
   stretching to match the taller neighbour — which is what dropped the
   date box away from its label. Pack the rows to the top instead. */
.form__field { align-content: start; }
.form__field > input,
.form__field > select { align-self: start; }

/* Helper text that sits directly under a field label */
.form__hint--sub {
  margin: -0.15rem 0 0.15rem;
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--stone-lt);
  line-height: 1.4;
}
.section--dark .form__hint--sub { color: rgba(235, 226, 207, 0.6); }

.form__terms { margin: var(--sp-4) 0 var(--sp-3); font-size: var(--fs-sm); color: var(--stone); }
.form__terms a { color: var(--brass-dk); text-decoration: underline; }
.form__terms a:hover { color: var(--ink); }

/* ---- Booking terms & conditions page ---- */
#auctioneer-service-terms,
#audiovisual-service-terms { scroll-margin-top: 140px; }
.terms-intro { font-size: var(--fs-lg); color: var(--stone); margin-bottom: var(--sp-6); }
.container--text h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: var(--sp-6) 0 var(--sp-3);
}
.container--text h3 + p { margin-top: 0; }
.container--text p + p { margin-top: var(--sp-4); }
.terms-note { font-size: var(--fs-sm); color: var(--stone-lt); font-style: italic; }
.terms-table-wrap { overflow-x: auto; margin: var(--sp-4) 0 var(--sp-5); }
.terms-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.terms-table th,
.terms-table td { text-align: left; padding: 0.75rem 1rem; border: 1px solid var(--rule); }
.terms-table thead th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--parchment);
  font-weight: 500;
}
.terms-table td:last-child,
.terms-table th:last-child { width: 30%; white-space: nowrap; }
