/*
Theme Name: Pestle and Mortar
Theme URI: https://pestle-and-mortar.pages.dev/
Author: Fresh Digital
Description: WordPress theme converted from the Pestle and Mortar 2026 static mockup.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: pestle-and-mortar
*/

/* Pestle & Mortar — premium hospitality consultancy
   Design system v1 */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Roboto:wght@400;500;700&family=Manrope:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  /* Surfaces */
  --ink: #0E0D0A;
  --ink-2: #15130F;
  --ink-3: #1F1C17;
  --bone: #F2EEE5;
  --bone-2: #E8E3D6;
  --bone-3: #DDD7C7;
  --paper: #FBFAF6;

  /* Type */
  --char: #2B2823;
  --char-2: #4A4640;
  --mute: #8A857B;
  --mute-dim: #B4AFA3;
  --line-dark: rgba(255,255,255,0.10);
  --line-light: rgba(20,18,14,0.12);

  /* Accent */
  --gold: #B89867;
  --gold-dim: #7C6845;
  --gold-soft: rgba(184,152,103,0.18);

  /* Type families */
  --f-display: "DM Sans", -apple-system, system-ui, sans-serif;
  --f-body: "DM Sans", -apple-system, system-ui, sans-serif;
  --f-mono: "Roboto", -apple-system, system-ui, sans-serif;

  /* Geometry */
  --maxw: 1360px;
  --gutter: clamp(20px, 3vw, 48px);
  --section-y: clamp(56px, 6.5vw, 96px);
}

/* ====== TWEAK · PALETTE VARIANTS ====================== */
body[data-palette="ink"] {
  --ink: #0B0F1A;
  --ink-2: #121826;
  --ink-3: #1A2233;
  --gold: #7D9BCC;
  --gold-dim: #5B7AAB;
  --gold-soft: rgba(125,155,204,0.18);
}
body[data-palette="olive"] {
  --ink: #0E110B;
  --ink-2: #161A11;
  --ink-3: #1F2418;
  --gold: #A6B26B;
  --gold-dim: #7E8A47;
  --gold-soft: rgba(166,178,107,0.18);
}
body[data-palette="rust"] {
  --ink: #14100D;
  --ink-2: #1C1612;
  --ink-3: #251D17;
  --gold: #C4724A;
  --gold-dim: #8E4F2F;
  --gold-soft: rgba(196,114,74,0.18);
}

/* ====== TWEAK · TYPE PAIRS ============================ */
body[data-type="editorial"] {
  --f-display: "Instrument Serif", Georgia, serif;
}
body[data-type="editorial"] .display-xl,
body[data-type="editorial"] .display-l,
body[data-type="editorial"] .display-m,
body[data-type="editorial"] h1,
body[data-type="editorial"] h2 {
  font-weight: 400;
  letter-spacing: -0.015em;
}
body[data-type="geometric"] {
  --f-display: "Manrope", -apple-system, system-ui, sans-serif;
  --f-body: "Manrope", -apple-system, system-ui, sans-serif;
}
body[data-type="geometric"] .display-xl,
body[data-type="geometric"] .display-l,
body[data-type="geometric"] h1,
body[data-type="geometric"] h2 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* ====== TWEAK · IMAGERY TONE ========================== */
body[data-tone="mono"] .img-ph.has-img { filter: grayscale(1) contrast(1.05); }
body[data-tone="warm"] .img-ph.has-img { filter: sepia(0.32) saturate(1.1) hue-rotate(-8deg); }
body[data-tone="high"] .img-ph.has-img { filter: contrast(1.12) saturate(1.18) brightness(0.96); }

/* ====== ICONS ========================================= */
.icn {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
}
.svc-card .svc-icn {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 22px;
  stroke-width: 1.3;
}
.industries .ind .icn {
  width: 18px;
  height: 18px;
  color: var(--gold);
  opacity: 0.9;
}
.hm-icn {
  width: 14px;
  height: 14px;
  color: var(--gold);
  display: inline-block;
  margin-right: 10px;
  vertical-align: -2px;
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--char);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ====== TYPE ========================================== */

.display-xl, .display-l, .display-m, .display-s, h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-wrap: pretty;
}

.display-xl { font-size: 70px; letter-spacing: -0.04em; line-height: 0.96; font-weight: 700; }
.display-l  { font-size: 70px;    letter-spacing: -0.035em; line-height: 0.98; font-weight: 700; }
.display-m  { font-size: clamp(32px, 4.4vw, 60px);  letter-spacing: -0.03em; line-height: 1.02; font-weight: 600; }
.display-s  { font-size: clamp(24px, 2.8vw, 36px);  letter-spacing: -0.022em; line-height: 1.12; font-weight: 600; }

h1 { font-size: 70px; letter-spacing: -0.035em; font-weight: 700; }
h2 { font-size: clamp(32px, 4.4vw, 60px); letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; font-weight: 600; }
h4 { font-size: 17px; letter-spacing: -0.01em; font-weight: 600; }

p { margin: 0 0 1em; text-wrap: pretty; }

.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--char-2); font-weight: 400; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-line::before { display: none; }
.eyebrow.no-line { gap: 0; }

.section-num {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* Dark surface variants */
.dark {
  background: var(--ink);
  color: var(--bone);
}
.dark .lead { color: var(--mute-dim); }
.dark .eyebrow { color: var(--mute-dim); }
.dark .section-num { color: var(--mute-dim); }

.bone { background: var(--bone); color: var(--char); }
.paper-bg { background: var(--paper); color: var(--char); }

/* ====== LAYOUT ======================================= */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(36px, 4.5vw, 64px);
  align-items: start;
}
.section-head .sh-left .section-num { display: block; margin-bottom: 16px; }
.section-head .sh-left h2 { max-width: 14ch; }
.section-head .sh-right { padding-top: 14px; max-width: 56ch; }
.section-head .sh-right:has(.loc-card) { max-width: none; }
.section-head.compact { margin-bottom: 40px; }

/* Stacked variant: headline fills full row, lead sits below */
.section-head.section-head-stack {
  grid-template-columns: 1fr;
  gap: 28px;
}
.section-head.section-head-stack .sh-left h2 { max-width: none; }
.section-head.section-head-stack .sh-right { padding-top: 0; max-width: 64ch; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .sh-right { padding-top: 0; }
  .section-head--even { grid-template-columns: 1fr; gap: 20px; }
}

/* Balanced two-column intros: anchor a direct-contact block to the bottom of
   the left column so it matches the right column's height (no orphaned space). */
.section-head.sh-balanced,
.grid-2.sh-balanced { align-items: stretch; }
.section-head.sh-balanced > .sh-left,
.grid-2.sh-balanced > div:first-child { display: flex; flex-direction: column; }
.section-head.sh-balanced > .sh-right:has(.memb-head-meta) { display: flex; flex-direction: column; }
.section-head.sh-balanced > .sh-right > .memb-head-meta { margin-top: auto; }
.section-head.sh-balanced > .sh-right:has(.sh-right-cta) { display: flex; flex-direction: column; }
.section-head.sh-balanced > .sh-right > .sh-right-cta { margin-top: auto; padding-top: 34px; }
@media (max-width: 720px) {
  .memb-head-meta { display: grid !important; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
  .memb-head-meta .shm-cell { flex-direction: column !important; border-bottom: 0 !important; padding: 0 !important; }
  .memb-head-meta .shm-label { text-align: left !important; }
}

.divider {
  height: 1px;
  background: var(--line-light);
  border: 0;
  margin: 0;
}
.dark .divider { background: var(--line-dark); }

.gold-rule {
  height: 1px;
  background: var(--gold);
  width: 56px;
  display: block;
  margin: 0 0 20px;
}

/* ====== NAV =========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,13,10,0.86);
  backdrop-filter: saturate(140%) blur(12px);
  color: var(--bone);
  border-bottom: 1px solid var(--line-dark);
}
.nav .nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-brand {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  /* logo file is dark-friendly gold-on-transparent */
}
.brand-logo-lg { height: 56px; }
.brand-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dim);
  padding-left: 14px;
  border-left: 1px solid var(--line-dark);
  font-weight: 500;
  line-height: 1.1;
  max-width: 13ch;
}
@media (max-width: 720px) {
  .brand-tag { display: none; }
  .brand-logo { height: 34px; }
}
.nav-brand .mark {
  width: 18px; height: 18px; border: 1px solid var(--gold); display: inline-block;
  position: relative;
}
.nav-brand .mark::after{
  content:""; position: absolute; inset: 4px; background: var(--gold);
}
.nav-brand small {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute-dim);
  margin-left: 8px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
}
.nav-links > .nav-item { position: relative; }
.nav-links > .nav-item > a {
  color: var(--bone);
  opacity: 0.86;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s ease;
}
.nav-links > .nav-item > a:hover { opacity: 1; }
.nav-links > .nav-item.has-drop > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: 0.6;
}
.nav-item.active > a { opacity: 1; color: var(--gold); }

.nav-drop {
  position: absolute;
  top: calc(100% + 0px);
  left: -16px;
  min-width: 280px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-item.has-drop:hover > .nav-drop,
.nav-item.has-drop:focus-within > .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop a {
  display: block;
  padding: 11px 14px;
  color: var(--bone);
  font-size: 14px;
  opacity: 0.82;
  border-left: 1px solid transparent;
}
.nav-drop a:hover { opacity: 1; border-left-color: var(--gold); background: var(--ink-3); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: #C9A878; }
.nav-cta .arrow { width: 14px; height: 14px; }

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--bone);
  margin-left: auto;
  padding: 8px;
  cursor: pointer;
}
.nav-mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--ink-2);
    align-items: stretch;
    padding: 20px var(--gutter) 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-mobile-open .nav-links .nav-item > a { padding: 12px 0; }
  .nav-mobile-open .nav-drop {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0;
    padding: 0 0 8px 14px;
    border-left: 1px solid var(--line-dark);
    margin-bottom: 8px;
  }
  .nav-mobile-open .nav-cta { margin-top: 16px; justify-content: center; }
}

/* ====== BUTTONS ====================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
}
.btn .arrow {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: #C9A878; border-color: #C9A878; }

.btn-dark { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-dark:hover { background: #000; }

.btn-light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-light:hover { background: #fff; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }

.dark .btn-outline { color: #fff; border-color: #fff; }
.dark .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero .btn-outline { color: #fff; border-color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-final .btn-outline { color: #fff; border-color: #fff; }
.cta-final .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.page-hero .btn-outline { color: #fff; border-color: #fff; }
.page-hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-ghost {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 4px;
  min-height: auto;
  color: inherit;
}
.btn-ghost:hover { color: var(--gold); }

.actions-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ====== IMAGE PLACEHOLDER ============================ */

.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #1c1a16 0%, #100E0B 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  color: var(--mute-dim);
}

/* When a real image is supplied via inline style, hide placeholder chrome */
.img-ph.has-img .ph-label,
.img-ph.has-img .ph-meta { display: none; }
.img-ph.has-img { border-color: transparent; }
.img-ph.has-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(14,13,10,0.55) 100%);
  pointer-events: none;
}
.img-ph.tone-warm.has-img::before {
  background: linear-gradient(180deg, rgba(14,13,10,0.15) 0%, rgba(14,13,10,0.45) 100%);
}
.bone .img-ph, .paper-bg .img-ph {
  background:
    repeating-linear-gradient(135deg, rgba(20,18,14,0.05) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #DCD6C6 0%, #C9C2AF 100%);
  border-color: var(--line-light);
  color: var(--char-2);
}
.img-ph .ph-label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--bone);
}
.bone .img-ph .ph-label, .paper-bg .img-ph .ph-label {
  background: rgba(255,255,255,0.78);
  border-color: rgba(20,18,14,0.12);
  color: var(--char);
}
.img-ph .ph-meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.7;
}

.img-ph.with-glow::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 100%, rgba(184,152,103,0.18), transparent 70%);
  pointer-events: none;
}

/* ====== METRICS / STATS ============================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats .stat {
  padding: 28px 28px 28px 0;
  border-left: 1px solid var(--line-dark);
  padding-left: 28px;
}
.stats .stat:first-child { border-left: 0; padding-left: 0; }
.dark .stat-num,
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.stat-num .unit { color: var(--gold); }
.stat-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.dark .stat-label { color: var(--mute-dim); }
.bone .stat .stat-label { color: var(--char-2); }
.bone .stats .stat { border-left-color: var(--line-light); }

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 24px; }
  .stats .stat:first-child { border-top: 0; padding-top: 0; }
  .bone .stats .stat { border-top-color: var(--line-light); }
}

/* ====== SERVICE CARDS =============================== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.dark .svc-grid { background: var(--line-dark); border-color: var(--line-dark); }
.svc-card {
  background: var(--bone);
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: background .2s ease;
}
.dark .svc-card { background: var(--ink); }
.svc-card:hover { background: var(--bone-2); }
.dark .svc-card:hover { background: var(--ink-2); }
.svc-card .svc-num {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-bottom: 28px;
}
.svc-card h3 { margin-bottom: 14px; max-width: none; }
.svc-card p { color: var(--char-2); font-size: 15.5px; line-height: 1.6; flex: 1; max-width: none; }
.dark .svc-card p { color: var(--mute-dim); }
.svc-card .svc-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
  color: var(--char);
  align-self: flex-start;
}
.dark .svc-card .svc-link { color: var(--bone); }
.svc-card .svc-link .arrow { width: 14px; transition: transform .2s ease; }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

@media (max-width: 820px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid > .svc-card { grid-column: auto !important; }
  .svc-card { min-height: 260px; padding: 32px 24px; }
}

/* ====== CASE STUDIES ================================ */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--ink-2);
  color: var(--bone);
  display: flex;
  flex-direction: column;
}
.case-card .case-img {
  height: 200px;
  width: 100%;
}
.case-card .case-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.case-card .case-meta {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.case-card h3 { margin-bottom: 16px; font-size: 22px; line-height: 1.2; }
.case-card .case-row {
  font-size: 14.5px;
  color: var(--mute-dim);
  margin-bottom: 8px;
}
.case-card .case-row strong { color: var(--bone); font-weight: 500; display: block; font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; color: var(--mute); }
.case-card .case-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.case-card .case-kpi {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--gold);
  line-height: 1;
}
.case-card .case-kpi-label {
  font-size: 14px;
  color: var(--mute-dim);
}

@media (max-width: 980px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .case-grid { grid-template-columns: 1fr; } }

/* ====== INDUSTRIES TICKER =========================== */

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.dark .industries { border-top-color: var(--line-dark); }
.industries .ind {
  flex: 1 1 33%;
  min-width: 240px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
}
.dark .industries .ind { border-bottom-color: var(--line-dark); }
.industries .ind .idx {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--mute);
  font-weight: 400;
}

/* ====== INDUSTRIES (2-col stacked variant) ============= */
.industries-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.industries-left { display: flex; flex-direction: column; }
.industries-left h2 { max-width: 14ch; }
.ind-image {
  margin-top: 32px;
  flex: 1 1 auto;
  min-height: 200px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  filter: grayscale(0.15) contrast(1.02);
}
.ind-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,10,0.72) 0%, rgba(14,13,10,0.12) 42%, rgba(14,13,10,0) 70%);
  border-radius: 4px;
}
.ind-image-cap {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.industries-right .ind-stack { border-top: 1px solid var(--line-light); }
.industries-right .ind {
  display: grid;
  grid-template-columns: 28px 36px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  font-weight: 600;
}
.industries-right .ind .icn { color: var(--gold); width: 22px; height: 22px; opacity: 0.95; }
.industries-right .ind .idx {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--mute);
  font-weight: 400;
  text-align: right;
}
@media (max-width: 820px) {
  .industries-grid { grid-template-columns: 1fr; }
  .ind-image { flex: 0 0 auto; min-height: 220px; max-height: 280px; margin-top: 28px; }
  .industries-right .ind { grid-template-columns: 22px 32px 1fr; gap: 12px; font-size: 18px; }
}

/* ====== FAQ ========================================== */

.faq-list { border-top: 1px solid var(--line-light); }
.dark .faq-list { border-top-color: var(--line-dark); }

/* FAQ side-by-side variant for service pages */
.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.faq-split .faq-split-left { position: sticky; top: 96px; }
.faq-split .faq-split-left h2 { max-width: 14ch; }
.faq-split .faq-split-left .lead { max-width: 40ch; margin-top: 18px; color: var(--char-2); }
.dark .faq-split .faq-split-left .lead { color: var(--mute-dim); }
.faq-split .faq-list { border-top-color: var(--line-light); }
.faq-split .faq-q { padding-right: 16px; }

.faq-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.dark .faq-cta { border-top-color: var(--line-dark); }
.faq-cta .faq-cta-copy {
  font-size: 14px;
  color: var(--char-2);
  margin: 0;
  max-width: 32ch;
  line-height: 1.5;
}
.dark .faq-cta .faq-cta-copy { color: var(--mute-dim); }

@media (max-width: 820px) {
  .faq-split { grid-template-columns: 1fr; }
  .faq-split .faq-split-left { position: static; }
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
  padding: 22px 0;
  cursor: pointer;
}
.dark .faq-item { border-bottom-color: var(--line-dark); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--line-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dark .faq-toggle { border-color: var(--line-dark); }
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-toggle::before { width: 14px; height: 1px; }
.faq-toggle::after { width: 1px; height: 14px; transition: transform .25s ease; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: 15.5px;
  color: var(--char-2);
  max-width: 70ch;
  padding-right: 60px;
}
.dark .faq-a { color: var(--mute-dim); }
.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 18px;
}

/* ====== LOCATION PAGE — rebuilt long-form ============ */
.loc-section-head { max-width: 62ch; margin-bottom: clamp(28px,3.4vw,48px); }
.loc-section-head h2 { margin-top: 18px; max-width: 20ch; }

.loc-overview { display:grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(36px,5vw,80px); align-items:stretch; }
.loc-overview > * { min-width: 0; }
.loc-overview .lo-copy { display:flex; flex-direction:column; }
.loc-overview .lo-copy > .lo-copy-cta { margin-top:auto; padding-top:34px; }
.loc-overview .lo-copy:not(:has(.lo-copy-cta)) > .img-ph { margin-top:auto; }
.loc-overview .lo-figure-fill { display:flex; flex-direction:column; }
.loc-overview .lo-figure-fill > .lo-figure-cta { margin-top:auto; padding-top:34px; }
.img-ph { max-width: 100%; }
.loc-overview .lo-copy p { font-size:17px; line-height:1.72; color:var(--char-2); margin:0 0 20px; }
.loc-overview .lo-copy p:last-child { margin-bottom:0; }
.dark .loc-overview .lo-copy p { color:var(--mute-dim); }
.loc-overview .lo-figure { position:sticky; top:96px; }
.loc-overview .lo-figure .img-ph { width:100%; aspect-ratio:4/5; }
@media (max-width:900px){
  .loc-overview { grid-template-columns:1fr; gap:32px; }
  .loc-overview .lo-figure { position:static; order:-1; }
  .loc-overview .lo-figure .img-ph { aspect-ratio:16/10; }
}

.loc-prose { max-width:72ch; }
.loc-prose p { font-size:17px; line-height:1.72; color:var(--char-2); margin:0 0 20px; }
.loc-prose p:last-child { margin-bottom:0; }
.dark .loc-prose p { color:var(--mute-dim); }

.loc-list { list-style:none; margin:30px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:16px 48px; max-width:1040px; }
.loc-list.cols-1 { grid-template-columns:1fr; }
.loc-list.cols-4 { grid-template-columns:repeat(4,1fr); max-width:none; gap:18px 48px; }
@media (max-width:900px){ .loc-list.cols-4 { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .loc-list.cols-4 { grid-template-columns:1fr; } }
.loc-list li { position:relative; padding-left:26px; font-size:16px; line-height:1.5; color:var(--char-2); }
.dark .loc-list li { color:var(--bone); }
.loc-list li::before { content:""; position:absolute; left:0; top:12px; width:13px; height:1px; background:var(--gold); }
@media (max-width:640px){ .loc-list { grid-template-columns:1fr; gap:13px; } }

.loc-quote { font-family:var(--f-display); font-weight:500; font-size:clamp(26px,3.4vw,40px); line-height:1.18; letter-spacing:-0.02em; color:var(--char); margin:0; }
.dark .loc-quote { color:var(--bone); }

.loc-coverage { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.loc-coverage .lc-chip { font-family:var(--f-mono); font-size:14px; text-transform:uppercase; letter-spacing:0.12em; color:var(--mute); border:1px solid var(--line-light); border-radius:999px; padding:8px 14px; }
.dark .loc-coverage .lc-chip { color:var(--mute-dim); border-color:var(--line-dark); }

/* ====== MARKETS ACCORDION (location pages) =========== */
.markets { border-top: 1px solid var(--line-light); margin-top: 8px; }
.dark .markets { border-top-color: var(--line-dark); }
.market-item { border-bottom: 1px solid var(--line-light); }
.dark .market-item { border-bottom-color: var(--line-dark); }
.market-head {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  cursor: pointer;
}
.market-head .m-idx {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex: 0 0 auto;
  width: 36px;
  padding-top: 10px;
}
.market-head .m-titles { flex: 1 1 auto; }
.market-head .m-title {
  font-family: var(--f-display);
  font-size: clamp(23px, 2.3vw, 31px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--char);
}
.dark .market-head .m-title { color: var(--bone); }
.market-head .m-region {
  display: block;
  font-family: var(--f-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-top: 12px;
}
.market-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  margin-top: 6px;
  color: var(--char-2);
}
.dark .market-toggle { border-color: var(--line-dark); color: var(--mute-dim); }
.market-toggle::before,
.market-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.market-toggle::before { width: 14px; height: 1px; }
.market-toggle::after { width: 1px; height: 14px; transition: transform .25s ease; }
.market-item.open .market-toggle::after { transform: scaleY(0); }

.market-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s ease;
}
.market-item.open .market-body { grid-template-rows: 1fr; }
.market-body > .market-body-clip { overflow: hidden; min-height: 0; }
.market-body-inner {
  padding: 2px 60px 44px 64px;
  max-width: 78ch;
}
.market-body-inner p {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--char-2);
  margin: 0 0 18px;
}
.dark .market-body-inner p { color: var(--mute-dim); }
.market-body-inner .m-sub {
  font-family: var(--f-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin: 30px 0 16px;
}
.market-body-inner ul.m-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.market-body-inner ul.m-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--char-2);
}
.dark .market-body-inner ul.m-list li { color: var(--mute-dim); }
.market-body-inner ul.m-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 1px;
  background: var(--gold);
}
.market-body-inner .m-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--f-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 6px;
  transition: gap .2s ease, border-color .2s ease;
}
.market-body-inner .m-cta:hover { gap: 16px; border-color: var(--gold); }
.market-body-inner .m-cta .arrow { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .market-head { gap: 16px; padding: 24px 0; }
  .market-head .m-idx { width: 26px; font-size: 14px; }
  .market-body-inner { padding: 2px 0 32px 0; }
  .market-body-inner ul.m-list { grid-template-columns: 1fr; gap: 9px; }
}

/* ====== LOGO STRIP ================================== */

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.logo-strip .ls-cell {
  padding: 32px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--mute-dim);
  text-transform: uppercase;
  font-variant: small-caps;
}
.logo-strip .ls-cell:last-child { border-right: 0; }
.bone .logo-strip, .paper-bg .logo-strip { border-top-color: var(--line-light); border-bottom-color: var(--line-light); }
.bone .logo-strip .ls-cell, .paper-bg .logo-strip .ls-cell { border-right-color: var(--line-light); color: var(--char-2); }

@media (max-width: 820px) {
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .logo-strip .ls-cell { padding: 20px; border-bottom: 1px solid var(--line-dark); }
  .bone .logo-strip .ls-cell, .paper-bg .logo-strip .ls-cell { border-bottom-color: var(--line-light); }
  .logo-strip .ls-cell:nth-child(2n) { border-right: 0; }
}

/* ====== CTA CLOSING ================================= */

.cta-final {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

/* New stacked CTA layout: full-width headline + 2-col body below */
.cta-final .cta-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.cta-final .cta-stack .gold-rule { margin-left: auto; margin-right: auto; }
.cta-final .cta-headline {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 70px;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 700;
  margin-top: 18px;
}
.cta-final .cta-row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  padding-top: 0;
  border-top: none;
}
.cta-final .cta-row .lead {
  max-width: 56ch;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
@media (max-width: 820px) {
  .cta-final .cta-row { gap: 24px; }
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(184,152,103,0.18), transparent 70%);
  pointer-events: none;
}
.cta-final .cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
.cta-final h2 { max-width: 18ch; }
.cta-final .lead { margin-top: 18px; max-width: 50ch; }
.cta-final .actions-row { justify-content: center; flex-wrap: wrap; }
@media (max-width: 820px) {
  .cta-final .cta-grid { grid-template-columns: 1fr; gap: 32px; align-items: center; }
}

/* ====== FOOTER ======================================= */

.footer {
  background: #07060500;
  background: var(--ink);
  color: var(--bone);
  padding-top: 64px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line-dark);
}
.footer .foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer h5 {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a { color: var(--bone); opacity: 0.78; }
.footer ul a:hover { opacity: 1; color: var(--gold); }
.foot-brand .nav-brand { font-size: 18px; margin-bottom: 22px; color: var(--bone); }
.foot-brand p { color: var(--mute-dim); max-width: 36ch; font-size: 14px; line-height: 1.6; }
.foot-contact { margin-top: 24px; font-size: 14px; color: var(--mute-dim); display: flex; flex-direction: column; gap: 6px; }
.foot-contact a:hover { color: var(--gold); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .footer .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ====== BOLD STATS STRIP (4-up with icon) ============= */
.bold-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2px, 0.6vw, 8px);
  margin-top: clamp(32px, 4vw, 56px);
}
.bold-stat {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  transition: background .2s ease, border-color .2s ease;
}
.bold-stat:hover {
  background: var(--ink-3);
  border-color: var(--gold);
}
.bold-stat .bs-icn {
  width: 36px;
  height: 36px;
  color: var(--gold);
  stroke-width: 1.3;
}
.bold-stat .bs-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-weight: 700;
  color: var(--bone);
  margin-top: auto;
}
.bold-stat .bs-num .unit { color: var(--gold); font-weight: 600; }
.bold-stat .bs-label {
  font-size: 14px;
  color: var(--mute-dim);
  line-height: 1.45;
  max-width: 28ch;
}
@media (max-width: 980px) {
  .bold-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .bold-stats { grid-template-columns: 1fr; }
}

/* ====== TAB STRIP (segmented header) =================== */
.tab-strip {
  display: inline-flex;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 4px;
  gap: 2px;
  flex-wrap: wrap;
}
.tab-strip .tab {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 12px 22px;
  background: transparent;
  border: 0;
  color: var(--mute-dim);
  cursor: pointer;
  transition: all .15s ease;
}
.tab-strip .tab:hover { color: var(--bone); }
.tab-strip .tab.active {
  background: var(--bone);
  color: var(--ink);
}
.tab-content { margin-top: 28px; }
.tab-pane { display: none; max-width: 60ch; }
.tab-pane.active { display: block; animation: tabIn .35s ease; }
@keyframes tabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ====== SERVICES SECTION head meta ===================== */
.services-head-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.services-head-meta .shm-cell { display: flex; flex-direction: column; gap: 6px; }
.services-head-meta .shm-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
}
.services-head-meta .shm-num .unit { color: var(--gold); font-weight: 600; font-size: 0.55em; margin-left: 4px; letter-spacing: 0; }
.services-head-meta .shm-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.4;
  max-width: 22ch;
}
.dark .services-head-meta { border-top-color: var(--line-dark); }
.dark .services-head-meta .shm-num { color: var(--bone); }
.dark .services-head-meta .shm-label { color: var(--mute-dim); }

/* ====== RESULTS header — full-bleed heading + distributed meta row === */
.results-head { margin-bottom: clamp(36px, 4.5vw, 64px); }
.results-head .rh-top .section-num { display: block; margin-bottom: 16px; }
.results-head .rh-top h2 {
  max-width: 22ch;
  font-family: var(--f-display);
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-weight: 700;
}
.results-head .rh-meta {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 28px 48px;
  align-items: start;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.results-head .rh-meta .lead { margin: 0; max-width: 46ch; }
.results-head .rh-meta .rhm-cell { display: flex; flex-direction: column; gap: 8px; }
.results-head .rh-meta .rhm-num {
  font-family: var(--f-display);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1;
  font-weight: 700;
  color: var(--bone);
}
.results-head .rh-meta .rhm-num .unit { color: var(--gold); font-weight: 600; font-size: 0.45em; margin-left: 5px; letter-spacing: 0; }
.results-head .rh-meta .rhm-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-dim);
  line-height: 1.4;
  max-width: 24ch;
}
@media (max-width: 820px) {
  .results-head .rh-meta { grid-template-columns: 1fr 1fr; }
  .results-head .rh-meta .lead { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .results-head .rh-meta { grid-template-columns: 1fr; gap: 18px; }
}

.services-quote {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}
.services-quote .sq-icn { width: 28px; height: 28px; color: var(--gold); stroke-linecap: round; stroke-linejoin: round; }
.services-quote p {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--char);
  font-weight: 500;
  margin: 0;
  max-width: 48ch;
}
.dark .services-quote p { color: var(--bone); }

@media (max-width: 720px) {
  .services-head-meta {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding-top: 20px;
  }
  .services-head-meta .shm-cell {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
  }
  .services-head-meta .shm-cell:last-child { border-bottom: 0; }
  .dark .services-head-meta .shm-cell { border-bottom-color: var(--line-dark); }
  .services-head-meta .shm-num { flex: 0 0 auto; }
  .services-head-meta .shm-label { max-width: none; text-align: right; flex: 1 1 auto; }
  .services-quote { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .services-quote .sq-icn { width: 22px; height: 22px; }
  .services-quote p { font-size: 16.5px; max-width: none; }
}

/* ====== BADGE on service cards ========================= */.svc-card .svc-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.svc-card .svc-badge.muted {
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--mute);
}
.dark .svc-card .svc-badge.muted { border-color: var(--line-dark); color: var(--mute-dim); }

/* ====== UTIL ========================================= */

/* Location page side card — fills the section-head right column */
.loc-card {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 28px 24px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}
.loc-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 100%, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.loc-card .loc-card-head {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
}
.loc-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  position: relative;
}
.loc-card ul li {
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 14.5px;
  color: var(--bone);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}
.loc-card ul li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.loc-card-cta {
  width: 100%;
  justify-content: space-between;
}

/* Background watermark — stock image at low opacity behind a dark section.
   Usage: <section class="section dark with-bg-watermark" style="--watermark-bg:url('...')">  */
.with-bg-watermark { position: relative; isolation: isolate; overflow: hidden; }
.with-bg-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--watermark-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  filter: contrast(1.05) brightness(0.95);
}
.with-bg-watermark > .wrap { position: relative; z-index: 1; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }

.spacer { height: var(--section-y); }

.mono { font-family: var(--f-mono); }

.hairline {
  height: 1px; background: var(--line-light); margin: 32px 0;
}
.dark .hairline { background: var(--line-dark); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  color: var(--gold);
}

/* anchor highlight */
.anchor-num {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

/* ====== HERO (homepage + service heroes) ============= */

.hero {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: 0;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hero h1 { max-width: 14ch; }
.hero .lead { max-width: 48ch; margin-top: 28px; }
.hero .actions-row { margin-top: 40px; }

.hero-meta-inline {
  display: flex;
  gap: 28px 56px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.hero-meta-inline .hm-k {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.hero-meta-inline .hm-v {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.hero-footnote {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.hero-footnote .hfn-l {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.hero-footnote .hfn-v {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--bone);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual .hero-image {
  height: clamp(420px, 56vw, 720px);
  width: 100%;
}
.hero-overlay-card {
  position: absolute;
  left: -16%;
  bottom: -28px;
  width: min(360px, 78%);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 24px 26px 22px;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.hero-overlay-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-overlay-card .hoc-num {
  font-family: var(--f-display);
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
}
.hero-overlay-card .hoc-label {
  font-size: 14px;
  color: var(--mute-dim);
  max-width: 28ch;
  line-height: 1.5;
}
.hero-overlay-card .hoc-divider {
  height: 1px;
  background: var(--line-dark);
  margin: 18px 0 14px;
}
.hero-overlay-card .hoc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-overlay-card .hoc-tag { color: var(--gold); }
.hero-overlay-card .hoc-loc { color: var(--mute-dim); margin-left: auto; }
.hero-overlay-card .hoc-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,152,103, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,152,103, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(184,152,103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184,152,103, 0); }
}

.hero-meta-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-top: clamp(40px, 5vw, 64px);
}
.hero-meta-bar .hm {
  padding: 28px 0;
  border-left: 1px solid var(--line-dark);
  padding-left: 28px;
}
.hero-meta-bar .hm:first-child { border-left: 0; padding-left: 0; }
.hero-meta-bar .hm .hm-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.hero-meta-bar .hm .hm-value {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  color: var(--bone);
  font-weight: 500;
}

@media (max-width: 1020px) {
  .hero-overlay-card { left: -8%; }
}
@media (max-width: 820px) {
  .hero-top { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual .hero-image { height: clamp(320px, 60vw, 480px); }
  .hero-overlay-card { left: 16px; right: auto; width: min(320px, 76%); bottom: -16px; }
  .hero-meta-bar { grid-template-columns: 1fr; }
  .hero-meta-bar .hm { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 20px; }
  .hero-meta-bar .hm:first-child { border-top: 0; padding-top: 0; }
  .hero-footnote { grid-template-columns: 1fr 1fr; }
}

.hero-aside {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-dim);
  pointer-events: none;
}
.hero-aside .ha-line { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.hero-aside .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
@media (max-width: 1100px) { .hero-aside { display: none; } }

/* ====== TESTIMONIAL ================================== */

.testimonial {
  background: var(--bone);
}
.testimonial blockquote {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 500;
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
}
.testimonial cite {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  font-style: normal;
}
.testimonial cite .ct-avatar {
  width: 56px; height: 56px;
  background: var(--bone-3);
  border: 1px solid var(--line-light);
}
.testimonial cite .ct-meta { font-size: 14px; }
.testimonial cite .ct-meta strong { display: block; font-weight: 500; }
.testimonial cite .ct-meta span { color: var(--mute); }

/* ====== QUOTE / PULL ================================ */

.pull {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 500;
  max-width: 28ch;
}
.pull .gold-em { color: var(--gold); }

/* ====== SERVICE DETAIL PAGE ========================= */

.svc-detail-hero {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(56px, 8vw, 112px);
  background: var(--ink);
  color: var(--bone);
}
.svc-detail-hero .crumbs {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.svc-detail-hero .crumbs a { color: inherit; }
.svc-detail-hero .crumbs a:hover { color: var(--gold); }
.svc-detail-hero .crumbs .sep { margin: 0 10px; color: var(--mute); }

.svc-detail-hero h1 { max-width: 18ch; }
.svc-detail-hero .lead { max-width: 56ch; margin-top: 24px; }

.svc-bloc {
  padding: clamp(48px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--line-light);
}
.svc-bloc:last-of-type { border-bottom: 0; }

.svc-bloc-head {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-areas:
    "label  aside"
    "head   aside"
    "body   aside";
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 24px;
  align-items: start;
}
.svc-bloc-content {
  display: contents;
}
.svc-bloc-content > .b-label {
  grid-area: label;
  margin-bottom: 0;
}
.svc-bloc-content > h2 {
  grid-area: head;
  max-width: none;
  width: 100%;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
}
.svc-bloc-content > p,
.svc-bloc-content > .lead {
  grid-area: body;
  max-width: 60ch;
  margin: 0;
}
.svc-bloc-content > .deliverables { grid-area: body; max-width: none; margin-top: 12px; }
.svc-bloc-content > .stats { grid-area: body; max-width: none; margin-top: 16px; }
.svc-bloc-content > .block-cta {
  grid-area: body;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.svc-bloc-content > .block-cta .block-cta-note {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* When a block has inline stats, make the headline span both columns so it
   sits above the stats, then stats + aside share the row below */
.svc-bloc-head:has(.stats) {
  grid-template-areas:
    "label  label"
    "head   head"
    "body   aside";
}
.svc-bloc-head:has(.stats) > .svc-bloc-aside,
.svc-bloc-head:has(.stats) .svc-bloc-content > .stats {
  align-self: start;
}
.svc-bloc-aside {
  grid-area: aside;
  min-width: 0;
  align-self: start;
}

.svc-bloc .b-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.svc-bloc .b-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.svc-bloc h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 44px);
}
.svc-bloc-content > p,
.svc-bloc-content > .lead {
  max-width: none;
  margin-top: 24px;
}
.svc-bloc-content > p:not(:first-of-type) { margin-top: 14px; }

.svc-bloc-aside { min-width: 0; }
.svc-bloc-aside .aside-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.svc-bloc-aside .aside-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,10,0) 60%, rgba(14,13,10,0.45) 100%);
}
.svc-bloc-aside .aside-caption {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.svc-bloc-aside .aside-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  padding: 32px 28px 28px;
}
.svc-bloc-aside .aside-card-head {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.svc-bloc-aside .aside-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.svc-bloc-aside .aside-card ul li {
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  font-size: 15px;
  color: var(--char);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.45;
}
.svc-bloc-aside .aside-card ul li:first-child { border-top: 0; padding-top: 0; }
.svc-bloc-aside .aside-card ul li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.svc-bloc-aside .aside-stat {
  background: var(--ink);
  color: var(--bone);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
}
.svc-bloc-aside .aside-stat::before {
  content: "";
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 100%, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.svc-bloc-aside .aside-stat .as-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 14px;
  color: var(--gold);
}
.svc-bloc-aside .aside-stat .as-label {
  font-size: 15px;
  color: var(--mute-dim);
  max-width: 30ch;
  position: relative;
}

.svc-bloc-extra { margin-top: clamp(40px, 5vw, 72px); }

/* full-width tables inside blocks */
.svc-bloc .deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line-light);
  padding: 0;
  margin: 0;
}
/* When deliverables live inside the content column, stack them */
.svc-bloc-content .deliverables {
  grid-template-columns: 1fr;
  margin-top: 36px;
}
.svc-bloc .deliverables li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 16px;
}
.svc-bloc .deliverables li .di {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  width: 28px;
}
.svc-bloc ul { padding: 0; margin: 0; }

@media (max-width: 820px) {
  .svc-bloc-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "head"
      "body"
      "aside";
    row-gap: 20px;
  }
  .svc-bloc-aside .aside-image { aspect-ratio: 16 / 11; }
  .svc-bloc .deliverables { grid-template-columns: 1fr; gap: 0; }
}

/* Page hero with background image */
.page-hero.with-bg {
  background-size: cover;
  background-position: center;
}
.page-hero.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,10,0.82) 0%, rgba(14,13,10,0.90) 100%);
  z-index: 0;
}
.page-hero.with-bg > * { position: relative; z-index: 1; }
.page-hero.with-bg::after {
  z-index: 0;
}
.hero.with-bg {
  background-size: cover;
  background-position: center;
}
.hero.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,10,0.78) 0%, rgba(14,13,10,0.94) 100%);
  z-index: 0;
}
.hero.with-bg > * { position: relative; z-index: 1; }

/* ====== METHODOLOGY (about page) ===================== */

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line-light);
  align-items: baseline;
}
.method-step:last-child { border-bottom: 1px solid var(--line-light); }
.dark .method-step,
.dark .method-step:last-child { border-color: var(--line-dark); }
.method-step .ms-num {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.method-step h3 { max-width: 16ch; }
.method-step p { color: var(--char-2); font-size: 15.5px; margin: 0; }
.dark .method-step p { color: var(--mute-dim); }

@media (max-width: 820px) {
  .method-step { grid-template-columns: 1fr; gap: 12px; }
}

/* ====== LOCATIONS PAGE ============================== */

.loc-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
  width: 100%;
}
.loc-tab {
  padding: 20px 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  color: var(--mute);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
  text-align: center;
}
.loc-tab:hover { color: var(--bone); }
.loc-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
@media (max-width: 820px) {
  .loc-tabs { grid-template-columns: repeat(2, 1fr); }
}

/* ====== MEMBERSHIP TIERS ============================= */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-light);
}
.dark .tiers { border-color: var(--line-dark); }
.tier {
  padding: 44px 36px 36px;
  border-right: 1px solid var(--line-light);
  display: flex; flex-direction: column;
}
.tier:last-child { border-right: 0; }
.dark .tier { border-right-color: var(--line-dark); }
.tier .tier-label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.tier h3 { font-size: 28px; margin-bottom: 10px; }
.tier .tier-price {
  font-family: var(--f-display);
  font-size: 40px;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 18px 0 8px;
}
.tier .tier-price small { font-family: var(--f-mono); font-size: 14px; color: var(--mute); letter-spacing: 0.14em; text-transform: uppercase; margin-left: 8px; font-weight: 500; }
.tier .tier-desc { color: var(--char-2); font-size: 15px; max-width: 32ch; margin-bottom: 24px; }
.dark .tier .tier-desc { color: var(--mute-dim); }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; font-size: 14.5px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier ul li { display: flex; align-items: flex-start; gap: 12px; }
.tier ul li::before {
  content: ""; flex-shrink: 0;
  width: 14px; height: 1px; background: var(--gold); margin-top: 11px;
}
.tier.featured { background: var(--ink); color: var(--bone); }
.tier.featured .tier-desc { color: var(--mute-dim); }
.tier.featured .tier-label { color: var(--gold); }

@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .dark .tier { border-bottom-color: var(--line-dark); }
  .tier:last-child { border-bottom: 0; }
}

/* ====== CONTACT FORM ================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.form-row { display: grid; gap: 8px; margin-bottom: 22px; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--f-body);
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 0;
  color: var(--bone);
  outline: none;
  transition: border-color .2s ease;
}
.dark .form-row input,
.dark .form-row select,
.dark .form-row textarea { color: var(--bone); }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--mute); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ====== TIMELINE / PROCESS ========================== */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.process .pr {
  padding: 36px 28px 36px 0;
  border-left: 1px solid var(--line-dark);
  padding-left: 28px;
  position: relative;
}
.process .pr:first-child { border-left: 0; padding-left: 0; }
.process .pr-num {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}
.process .pr h4 { font-size: 18px; margin-bottom: 10px; letter-spacing: -0.015em; font-weight: 500; }
.process .pr p { font-size: 14px; color: var(--mute-dim); line-height: 1.55; }
.bone .process { border-top-color: var(--line-light); }
.bone .process .pr { border-left-color: var(--line-light); }
.bone .process .pr p { color: var(--char-2); }

@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; }
  .process .pr { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 28px; }
  .process .pr:first-child { border-top: 0; padding-top: 0; }
  .bone .process .pr { border-top-color: var(--line-light); }
}

/* ====== ANIM ========================================= */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

.kinetic-num {
  display: inline-block;
  position: relative;
}

/* ====== PRESSURE GRID (location pages) ============== */
.pressure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.pressure { background: var(--bone); padding: 36px 32px 32px; display: flex; flex-direction: column; gap: 8px; min-height: 220px; }
.pressure .pr-idx { font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 16px; }
.pressure h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.018em; font-weight: 500; }
.pressure p { font-size: 14.5px; color: var(--char-2); margin: 0; line-height: 1.55; }
@media (max-width: 820px) { .pressure-grid { grid-template-columns: 1fr; } }

/* ====== SUBPAGE HERO (lighter than main hero) ====== */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -80% -10%;
  height: 90%;
  background: radial-gradient(50% 60% at 70% 100%, rgba(184,152,103,0.10), transparent 70%);
  pointer-events: none;
}
.page-hero .crumbs {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { margin: 0 10px; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; margin-top: 24px; }

/* Hero header — fixed 70px across all pages (homepage hero + subpage page-hero) */
.hero h1.display-xl,
.page-hero h1,
.page-hero h1.display-xl {
  font-size: 70px;
  line-height: 1.0;
}
@media (max-width: 600px) {
  .hero h1.display-xl,
  .page-hero h1,
  .page-hero h1.display-xl {
    font-size: 44px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE — final pass
   Overrides for inline-styled heights/font-sizes set on
   individual pages plus a few extra grid stacks.
   ============================================================ */

@media (max-width: 820px) {
  /* Featured engagement image — reduce inline min-height */
  .grid-2 > .img-ph[style*="min-height:440px"],
  .grid-2 > .img-ph[style*="min-height: 440px"] {
    min-height: 300px !important;
  }
  /* Wayne portrait — reduce inline height */
  .img-ph.with-glow[style*="height: 638px"],
  .img-ph.with-glow[style*="height:638px"] {
    height: 480px !important;
  }
  /* SA hero lead — was given a fixed inline height */
  .page-hero .lead[style*="height: 198px"],
  .page-hero .lead[style*="height:198px"] {
    height: auto !important;
  }
  /* Make hero CTAs wrap nicely */
  .hero .actions-row .btn,
  .page-hero .actions-row .btn {
    flex: 1 1 auto;
  }
  /* Inline 22px body copy on svc-bloc — scale down */
  .svc-bloc-content p[style*="font-size: 22px"],
  .svc-bloc-content p[style*="font-size:22px"] {
    font-size: 18px !important;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: clamp(44px, 9vw, 72px);
  }

  /* Safety: no horizontal scrollbars. Use clip (not hidden) — hidden on body
     establishes a scroll container that breaks the sticky nav on mobile, while
     clip contains overflow without that side effect. */
  html, body { overflow-x: clip; }

  /* Page heroes: tighten padding */
  .page-hero { padding-top: 72px; padding-bottom: 48px; }
  .page-hero .crumbs { margin-bottom: 24px; }

  /* Featured engagement image — smaller on phones */
  .grid-2 > .img-ph[style*="min-height:440px"],
  .grid-2 > .img-ph[style*="min-height: 440px"] {
    min-height: 240px !important;
    aspect-ratio: 4 / 3;
  }
  /* Wayne portrait */
  .img-ph.with-glow[style*="height: 638px"],
  .img-ph.with-glow[style*="height:638px"] {
    height: 380px !important;
  }
  /* Sticky portrait in membership method — release sticky */
  .grid-2 > div[style*="position:sticky"],
  .grid-2 > div[style*="position: sticky"] {
    position: static !important;
  }

  /* Inline stat font-size overrides (e.g. style="font-size: 54px") */
  .stat-num[style*="font-size: 54px"],
  .stat-num[style*="font-size:54px"],
  .stat-num[style*="font-size: 50px"],
  .stat-num[style*="font-size:50px"] {
    font-size: 36px !important;
  }
  .stat-num[style*="font-size: 54px"] .unit,
  .stat-num[style*="font-size: 50px"] .unit {
    font-size: 0.55em !important;
  }

  /* CTA hero on home — keep big but cap */
  .cta-final .cta-headline { font-size: clamp(34px, 8.5vw, 52px); }

  /* Action buttons fill the row on phones */
  .actions-row { gap: 12px; }
  .actions-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Direct channels: smaller label column */
  .direct-row { grid-template-columns: 110px 1fr !important; gap: 12px !important; }

  /* Booking form: reduce padding inside the card */
  .booking-form { padding: 28px 20px !important; }

  /* Prevent iOS auto-zoom on form inputs */
  .form-row input,
  .form-row textarea,
  .form-row select { font-size: 16px; }

  /* Tier cards: tighten padding */
  .tier { padding: 32px 24px 28px !important; }

  /* Tighter display-xl on phones */
  .display-xl { font-size: clamp(40px, 12vw, 64px); }

  /* Section headings (display-l), incl. inline font-size:70px set per-page */
  .display-l { font-size: clamp(33px, 6.6vw, 50px) !important; }

  /* svc-bloc paragraph inline 22px override */
  .svc-bloc-content p[style*="font-size: 22px"],
  .svc-bloc-content p[style*="font-size:22px"] {
    font-size: 16.5px !important;
  }

  /* Hero overlay-card on subpages — soften */
  .hero-overlay-card .hoc-num { font-size: 44px; }

  /* Stacked process / pressure cards spacing */
  .pressure { padding: 28px 24px 24px; min-height: 0; }
}

@media (max-width: 480px) {
  /* Featured engagement image — even shorter */
  .grid-2 > .img-ph[style*="min-height:440px"],
  .grid-2 > .img-ph[style*="min-height: 440px"] {
    min-height: 200px !important;
  }
  .img-ph.with-glow[style*="height: 638px"],
  .img-ph.with-glow[style*="height:638px"] {
    height: 320px !important;
  }

  /* Stat font-size further down */
  .stat-num[style*="font-size: 54px"],
  .stat-num[style*="font-size:54px"],
  .stat-num[style*="font-size: 50px"],
  .stat-num[style*="font-size:50px"] {
    font-size: 30px !important;
  }

  /* Page hero crumbs allow wrap */
  .page-hero .crumbs { font-size: 14px; word-spacing: -2px; }
  .page-hero .crumbs .sep { margin: 0 6px; }

  /* Eyebrow row + section-num scale */
  .eyebrow, .section-num { font-size: 14px; letter-spacing: 0.14em; }

  /* Tighter contact card */
  .booking-form { padding: 22px 16px !important; }

  /* Inline-styled "font-size: 79px" Wayne heading */
  .display-l[style*="font-size: 79px"],
  .display-l[style*="font-size:79px"] {
    font-size: 44px !important;
  }
  /* Inline "font-size: 36px" location featured headings */
  .display-l[style*="font-size: 36px"],
  .display-l[style*="font-size:36px"] {
    font-size: 26px !important;
  }
  /* Outsized inline grid gaps stack vertically — tame them */
  .grid-2[style*="gap:96px"], .grid-2[style*="gap: 96px"],
  .grid-2[style*="gap:80px"], .grid-2[style*="gap: 80px"],
  .grid-2[style*="gap:64px"], .grid-2[style*="gap: 64px"] {
    gap: 32px !important;
  }
  /* svc-bloc oversized top padding */
  .svc-bloc[style*="padding: 93px"],
  .svc-bloc[style*="padding:93px"] {
    padding: 48px 0 0 !important;
  }
}

/* ====== SINGLE JOURNAL POST ========================= */

.journal-hero {
  min-height: clamp(420px, 54vw, 680px);
  display: flex;
  align-items: end;
}
.journal-hero .wrap {
  position: relative;
  z-index: 1;
}
.journal-hero h1 {
  max-width: 13ch;
}
.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute-dim);
}
.journal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.journal-meta span + span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.journal-body-section {
  background: var(--paper);
  color: var(--char);
  padding: clamp(56px, 7vw, 104px) 0;
}
.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 340px);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.journal-content {
  min-width: 0;
}
.journal-prose {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.78;
  color: var(--char);
}
.journal-prose > *:first-child {
  margin-top: 0;
}
.journal-prose p,
.journal-prose ul,
.journal-prose ol,
.journal-prose blockquote,
.journal-prose figure,
.journal-prose table {
  margin: 0 0 1.35em;
}
.journal-prose h2,
.journal-prose h3,
.journal-prose h4 {
  margin: 1.35em 0 0.55em;
  color: var(--char);
}
.journal-prose h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}
.journal-prose h3 {
  font-size: clamp(24px, 2.2vw, 32px);
}
.journal-prose a {
  color: var(--char);
  border-bottom: 1px solid var(--gold);
}
.journal-prose a:hover {
  color: var(--gold-dim);
}
.journal-prose ul,
.journal-prose ol {
  padding-left: 1.2em;
}
.journal-prose li + li {
  margin-top: 0.45em;
}
.journal-prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 28px;
  color: var(--char-2);
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
}
.journal-prose img {
  width: auto;
  height: auto;
}
.journal-prose figure img,
.journal-featured img {
  width: 100%;
  height: auto;
}
.journal-prose figcaption {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.journal-page-links,
.journal-tags {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.journal-tags a {
  color: var(--char);
  margin-left: 12px;
  border-bottom: 1px solid var(--gold);
}
.journal-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(40px, 5vw, 72px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.jpn-cell {
  min-height: 132px;
  padding: 24px;
  background: var(--paper);
}
.jpn-cell span,
.side-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.jpn-cell a {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--char);
}
.jpn-cell a:hover {
  color: var(--gold-dim);
}
.journal-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}
.journal-side-card {
  background: var(--ink);
  color: var(--bone);
  padding: 28px;
  border: 1px solid var(--line-dark);
}
.journal-side-card p {
  color: var(--mute-dim);
  font-size: 15px;
  line-height: 1.55;
}
.side-contact {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  font-size: 14px;
}
.side-contact a {
  color: var(--bone);
}
.side-contact a:hover {
  color: var(--gold);
}
.journal-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.journal-cat-list li {
  border-top: 1px solid var(--line-dark);
}
.journal-cat-list li:first-child {
  border-top: 0;
}
.journal-cat-list a {
  display: block;
  padding: 12px 0;
  color: var(--bone);
  font-size: 14px;
}
.journal-cat-list a:hover {
  color: var(--gold);
}
.journal-comments {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}

/* ====== DEFAULT WORDPRESS PAGE ====================== */

.default-page-hero {
  min-height: clamp(360px, 42vw, 560px);
  display: flex;
  align-items: end;
}
.default-page-hero .wrap {
  position: relative;
  z-index: 1;
}
.default-page-hero h1 {
  max-width: 14ch;
}
.default-page-body-section {
  background: var(--paper);
  color: var(--char);
  padding: clamp(56px, 7vw, 104px) 0;
}
.default-page-layout {
  max-width: 980px;
}
.default-page-content {
  max-width: 780px;
}
.default-page-prose {
  padding-bottom: 12px;
}
.default-page-prose .alignwide {
  width: min(100vw - (var(--gutter) * 2), 1120px);
  max-width: none;
}
.default-page-prose .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ====== JOURNAL INDEX =============================== */

.journal-index-hero h1 {
  max-width: 12ch;
}
.journal-index-section {
  background: var(--paper);
  color: var(--char);
  padding: clamp(56px, 7vw, 104px) 0;
}
.journal-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.journal-index-card {
  background: var(--bone);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.journal-index-image {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.journal-index-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-index-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.journal-index-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mute);
}
.journal-index-card h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.journal-index-card h2 a:hover {
  color: var(--gold-dim);
}
.journal-index-card p {
  color: var(--char-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.journal-index-link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
}
.journal-index-link .arrow {
  width: 14px;
  transition: transform .2s ease;
}
.journal-index-link:hover .arrow {
  transform: translateX(4px);
}
.journal-pagination {
  margin-top: 52px;
}
.journal-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.journal-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line-light);
  color: var(--char);
  font-family: var(--f-mono);
  font-size: 14px;
}
.journal-pagination .page-numbers.current,
.journal-pagination .page-numbers:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}
.journal-empty {
  max-width: 640px;
  padding: 48px;
  background: var(--bone);
  border: 1px solid var(--line-light);
}

/* ====== FLOATING QUICK ACTIONS ====================== */

.pm-floating-actions {
  position: fixed;
  right: clamp(18px, 2.4vw, 30px);
  bottom: clamp(18px, 2.4vw, 30px);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.pm-contact-fab {
  position: relative;
  display: grid;
  justify-items: center;
  pointer-events: auto;
}
.pm-contact-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom center;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.pm-contact-fab.is-open .pm-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.pm-contact-item,
.pm-contact-toggle,
.pm-back-top {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, visibility .18s ease;
}
.pm-contact-item:hover,
.pm-contact-toggle:hover,
.pm-back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.30);
}
.pm-contact-item svg,
.pm-contact-toggle svg,
.pm-back-top svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.pm-contact-item span,
.pm-contact-toggle span,
.pm-back-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.pm-contact-toggle {
  background: var(--gold);
  color: #fff;
}
.pm-contact-toggle .pm-chat-close {
  display: none;
}
.pm-contact-fab.is-open .pm-contact-toggle .pm-chat-open {
  display: none;
}
.pm-contact-fab.is-open .pm-contact-toggle .pm-chat-close {
  display: block;
}
.pm-contact-email {
  background: var(--gold);
}
.pm-contact-map {
  background: #607D89;
}
.pm-contact-phone {
  background: #2F7F89;
}
.pm-contact-facebook {
  background: #3B66C4;
}
.pm-contact-line {
  background: #06C755;
}
.pm-back-top {
  width: 46px;
  height: 46px;
  background: rgba(14,13,10,0.92);
  color: var(--bone);
  border: 1px solid var(--line-dark);
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.pm-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pm-back-top.is-visible:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .journal-layout {
    grid-template-columns: 1fr;
  }
  .journal-sidebar {
    position: static;
  }
  .journal-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journal-hero {
    min-height: 0;
  }
  .journal-meta {
    display: grid;
    gap: 8px;
  }
  .journal-meta span + span::before {
    display: none;
  }
  .journal-post-nav {
    grid-template-columns: 1fr;
  }
  .journal-side-card {
    padding: 24px 20px;
  }
  .default-page-hero {
    min-height: 0;
  }
  .journal-index-grid {
    grid-template-columns: 1fr;
  }
  .journal-index-body,
  .journal-empty {
    padding: 24px 20px;
  }
  .pm-floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .pm-contact-item,
  .pm-contact-toggle {
    width: 50px;
    height: 50px;
  }
  .pm-contact-item svg,
  .pm-contact-toggle svg {
    width: 22px;
    height: 22px;
  }
  .pm-back-top {
    width: 42px;
    height: 42px;
  }
  .pm-back-top svg {
    width: 20px;
    height: 20px;
  }
}
