/* ============================================
   WILLOW ROAD BARBER SHOP
   styles — v3 premium refinement
   ============================================ */

/* --- Tokens --- */
:root {
  /* Backgrounds — deeper, near-black with warm undertone */
  --bg:          #09080a;
  --bg-2:        #0d0b0c;
  --bg-3:        #120f10;

  /* Foreground — warm bone */
  --fg:          #eee8df;
  --fg-dim:      #9c9390;
  --fg-muted:    rgba(238,232,223,0.70);

  /* Accent — oxblood / barber red system (no gold) */
  --accent:         #b32020;      /* primary CTA — barber red */
  --accent-h:       #cc2e2e;      /* hover — richer red */
  --accent-deep:    #7c1818;      /* deep wine — subtle dark accents */
  --accent-text:    #c04040;      /* warm crimson — labels / markers on dark bg */
  --accent-text-light: #7a1818;   /* dark red — labels on light/cream bg */

  /* Borders */
  --border:      rgba(238,232,223,0.055);
  --border-md:   rgba(238,232,223,0.10);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', Helvetica, Arial, sans-serif;

  /* Layout */
  --max:     1280px;
  --pad-x:   clamp(24px, 5vw, 80px);
  --pad-s:   clamp(88px, 10vw, 140px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================================
   ACCESSIBILITY — Skip link + focus styles (AODA / WCAG 2.1 AA)
   ============================================ */

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transform: translateY(-200%);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 2px;
  transition: outline-offset 0.12s ease;
}
.btn-primary:focus-visible,
.header-cta:focus-visible,
.mb-call:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}
.g-item:focus-within {
  outline: 2px solid var(--accent-text);
  outline-offset: -2px;
}

@media (forced-colors: active) {
  .btn-primary, .btn-ghost, .header-cta,
  .mobile-bar a, .skip-link {
    border: 1px solid CanvasText;
  }
  :focus-visible { outline: 2px solid Highlight; }
}

/* ============================================
   BASE
   ============================================ */
body {
  background-color: var(--bg);
  /* Subtle atmospheric depth — near-invisible warm oxblood vignettes */
  background-image:
    radial-gradient(ellipse 110% 45% at 50% -5%,  rgba(140,20,20,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 50%  55% at 0%   72%,  rgba(100,15,15,0.032) 0%, transparent 55%),
    radial-gradient(ellipse 60%  40% at 100% 40%,  rgba(80,10,10,0.022)  0%, transparent 50%);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.003em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga' 1, 'kern' 1, 'calt' 1, 'ss01' 1;
}

/* Grain texture — applied via fixed pseudo on html to cover all dark sections */
html::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 1;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Layout --- */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* --- Eyebrow --- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent-text);
  flex-shrink: 0;
  opacity: 0.55;
}

/* Gallery eyebrow — on light background */
.gallery--light .eyebrow { color: var(--accent-text-light); }
.gallery--light .eyebrow::before { background: var(--accent-text-light); }

/* --- Accent text --- */
.accent { color: var(--accent-text); }
.gallery .accent,
.gallery--light .accent { color: var(--accent-text-light); }

/* --- Section Title --- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(50px, 6.2vw, 90px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.028em;
  margin-top: 20px;
  text-wrap: balance;
  font-optical-sizing: auto;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.30s ease, box-shadow 0.30s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 22px rgba(180,30,30,0.22);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 40px;
  border: 1px solid var(--border-md);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.28s, color 0.28s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(238,232,223,0.40); color: var(--fg); }

/* ============================================
   HEADER ENTRANCE ANIMATIONS
   ============================================ */
@keyframes logo-reveal {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(-3px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes header-fade-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,8,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}

/* Logo — larger presence, cinematic entrance */
.site-logo {
  animation: logo-reveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
.site-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.3s ease;
}
.site-logo:hover img { opacity: 1; }

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-info {
  text-align: right;
  font-size: 11.5px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
  animation: header-fade-down 0.65s ease 0.50s both;
}
.header-info strong { color: var(--fg); font-weight: 600; }

/* Nav */
.header-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  animation: header-fade-down 0.65s ease 0.50s both;
}
.header-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.22s ease;
}
.header-nav a:hover { color: var(--fg); }

/* Header CTA */
.header-cta {
  display: inline-block;
  padding: 11px 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.28s ease, box-shadow 0.28s ease;
  animation: header-fade-down 0.65s ease 0.70s both;
}
.header-cta:hover {
  background: var(--accent-h);
  box-shadow: 0 3px 16px rgba(180,30,30,0.22);
}

@media (max-width: 900px) { .header-nav { display: none; } }
@media (max-width: 680px) { .header-info { display: none; } }
@media (max-width: 420px) {
  .site-logo img { height: 28px; }
  .header-cta { padding: 9px 18px; font-size: 10px; letter-spacing: 0.18em; }
}

/* ============================================
   HERO — KEYFRAMES
   ============================================ */
@keyframes hero-ken-burns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -6% -2%;
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 8, 6, 0.88) 0%,
      rgba(10, 8, 6, 0.72) 35%,
      rgba(10, 8, 6, 0.30) 62%,
      rgba(10, 8, 6, 0.18) 100%
    ),
    radial-gradient(
      ellipse 55% 70% at 78% 52%,
      rgba(180, 120, 60, 0.18) 0%,
      transparent 65%
    ),
    url('images/willow-road-barbershop-barber-cutting-hair-guelph.webp');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  filter: contrast(1.05) saturate(1.05);
  will-change: transform;
  animation: hero-ken-burns 7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 5, 4, 0.55) 0%,
    transparent 35%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: hero-fade-in 0.6s ease 0.1s forwards;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 8.5vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  font-optical-sizing: auto;
}

.hero-line {
  display: block;
  opacity: 0;
}

.hero-line--1 {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.hero-line--2 {
  font-weight: 500;
  animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.54s forwards;
}

.hero-heading .accent {
  color: var(--accent-text);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
  margin: 0 0 2.4rem;
  opacity: 0;
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.96s forwards;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  opacity: 0;
  animation: hero-fade-in 0.7s ease 1.1s forwards;
  padding-bottom: 0.2rem;
}

.hero-stat {
  text-align: center;
  padding: 1.4rem 2rem;
}

.hero-stat--link {
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-stat--link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-optical-sizing: auto;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.65rem;
}

.hero-stat-meta {
  margin-top: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-rule {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-top: clamp(5.5rem, 18vh, 8rem);
    padding-bottom: clamp(4rem, 8vh, 6rem);
  }
  .hero-sub { max-width: 100%; }
  .hero-aside {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .hero-stat { padding: 0.8rem 1.6rem; }
  .hero-rule { width: 36px; height: 1px; }
  .hero-stat-num { font-size: clamp(2.2rem, 7vw, 2.8rem); }
}

@media (max-width: 420px) {
  .hero-stat { padding: 0.8rem 1.1rem; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.trust-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  max-width: var(--max);
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 24px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-align: center;
  color: var(--fg-dim);
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item span:last-child {
  min-width: 0;
}

.trust-item--link {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.trust-item--link:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

/* Major items take more space */
.trust-item--major {
  flex: 1.4;
}

.trust-item strong {
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-text);
  flex-shrink: 0;
  opacity: 0.55;
}

/* Tablet — collapse to 2 columns with row structure */
@media (max-width: 980px) {
  .trust-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding-inline: 0;
  }
  .trust-item,
  .trust-item--major {
    flex: unset;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }
  .trust-item:nth-child(even) {
    border-right: none;
  }
  .trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .trust-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
}

/* Mobile — flush stacked list, hairline dividers only, no pills */
@media (max-width: 640px) {
  .trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .trust-strip .container {
    display: block;
    padding-inline: var(--pad-x);
  }
  .trust-item,
  .trust-item--major,
  .trust-item:not(.trust-item--major),
  .trust-item:last-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .trust-dot {
    width: 4px;
    height: 4px;
    flex-shrink: 0;
  }
  .trust-item strong {
    display: inline;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding-block: var(--pad-s);
  background: #f3efe6;
  color: #16110d;
  border-top: 1px solid rgba(20,15,10,0.08);
  /* Very faint warm atmospheric depth */
  background-image: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(100,15,15,0.025) 0%, transparent 60%);
}
.services .eyebrow {
  color: var(--accent-text-light);
}
.services .eyebrow::before {
  background: var(--accent-text-light);
}
.services .accent {
  color: var(--accent-text-light);
}
.services .section-title,
.services .svc-group-title,
.services .svc-name,
.services .svc-price,
.services .services-note-value {
  color: #16110d;
}
.services .svc-group-title,
.services .svc-row,
.services-foot,
.services-note-grid,
.services-note-item + .services-note-item {
  border-color: rgba(20,15,10,0.10);
}
.services .svc-note,
.services .services-note-label,
.services .services-note-copy,
.services .services-note-secondary,
.services .services-note-intro {
  color: rgba(22,17,13,0.62);
}
.services-note-intro::before {
  background: var(--accent-text-light);
}
.section-head {
  margin-bottom: clamp(56px, 6vw, 80px);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
.svc-group-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  color: var(--fg);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
}
.svc-group-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 1px;
  background: var(--accent-text-light);
}
.svc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 21px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.svc-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.003em;
}
.svc-note {
  font-size: 10.5px;
  color: var(--fg-dim);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.svc-price {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--fg);
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  opacity: 0.92;
}
.services-foot {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}
.services-note {
  max-width: 920px;
}
.services-note-intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.services-note-intro::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent-text);
}
.services-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.services-note-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 24px 28px 22px 0;
}
.services-note-item + .services-note-item {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.10);
}
.services-note-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.services-note-value {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.services-note-copy {
  max-width: 24ch;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.services-note-secondary {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,232,223,0.58);
}

.services-foot-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 280px;
}

.services-foot-cta {
  align-self: flex-start;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  background: #16110d;
  color: #f3efe6;
  border: 1px solid rgba(20,15,10,0.82);
  box-shadow: none;
  letter-spacing: 0.16em;
}

.services-foot-cta:hover {
  background: #211913;
  color: #fff7ef;
  border-color: #211913;
  box-shadow: 0 14px 28px rgba(20,15,10,0.10);
}

.services-foot-caption {
  max-width: 26ch;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(22,17,13,0.56);
}

@media (max-width: 640px) {
  .services-layout { grid-template-columns: 1fr; gap: 52px; }
  .services-foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services-note-intro {
    margin-bottom: 18px;
  }
  .services-note-grid {
    grid-template-columns: 1fr;
  }
  .services-note-item {
    padding: 18px 0 16px;
  }
  .services-note-item + .services-note-item {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .services-note-value {
    font-size: clamp(26px, 8vw, 34px);
  }
  .services-note-secondary {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.10em;
  }
  .services-foot-action {
    min-width: 0;
  }
  .services-foot-caption {
    max-width: none;
  }
  .services-foot-cta {
    width: 100%;
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(124,24,24,0.14) 0%, rgba(9,8,10,0) 58%),
    linear-gradient(180deg, #0c0a0b 0%, #09080a 100%);
  color: var(--fg);
  padding: 0;
  border-top: 1px solid rgba(238,232,223,0.06);
}
.gallery--light .eyebrow { color: var(--accent-text); }
.gallery--light .eyebrow::before { background: var(--accent-text); }

.gallery-head {
  padding: clamp(108px, 12vw, 176px) var(--pad-x) clamp(52px, 5.5vw, 76px);
}
.gallery-head-inner {
  max-width: 1280px;
  margin-inline: auto;
}
.gallery-title {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.034em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.gallery-title span {
  display: block;
  font-size: clamp(78px, 11.5vw, 178px);
  color: #f4ede3;
  text-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.gallery-title em {
  display: block;
  margin-top: 2px;
  font-size: clamp(66px, 8.8vw, 150px);
  font-style: italic;
  font-weight: 400;
  color: rgba(244,237,227,0.58);
  text-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
.gallery-title .accent {
  background: linear-gradient(180deg, #c74c4c 0%, #8f1d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Gallery stagger animations */
.gallery-band .g-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  1.1s cubic-bezier(0.22,1,0.36,1),
    transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.gallery-band.is-visible .g-item           { opacity: 1; transform: none; }
.gallery-band.is-visible .g-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-band.is-visible .g-item:nth-child(2) { transition-delay: 0.14s; }
.gallery-band.is-visible .g-item:nth-child(3) { transition-delay: 0.23s; }
.gallery-band.is-visible .g-item:nth-child(4) { transition-delay: 0.32s; }
.gallery-band.is-visible .g-item:nth-child(5) { transition-delay: 0.41s; }
.gallery-band.is-visible .g-item:nth-child(6) { transition-delay: 0.50s; }
.gallery-band.is-visible .g-item:nth-child(7) { transition-delay: 0.59s; }
.gallery-band.is-visible .g-item:nth-child(8) { transition-delay: 0.68s; }

.gallery-band {
  width: 100%;
  padding-bottom: clamp(14px, 1.4vw, 20px);
}
.gallery-grid--impact {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* Three explicit rows — no auto-row generation, no gaps */
  grid-template-rows: repeat(3, clamp(200px, 22vw, 320px));
  gap: clamp(5px, 0.6vw, 9px);
  padding-inline: clamp(8px, 0.8vw, 12px);
}
.g-item {
  overflow: hidden;
  position: relative;
  background: #151214;
}
.g-item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.g-item img,
.g-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.02) brightness(0.94);
  transform: scale(1.04);
  transition:
    transform 1.0s cubic-bezier(0.22,1,0.36,1),
    filter    0.7s ease;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,3,4,0.38) 0%, rgba(4,3,4,0.08) 45%, transparent 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 0%, transparent 22%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.g-item:hover img,
.g-item:hover video {
  transform: scale(1.07);
  filter: saturate(0.98) contrast(1.08) brightness(0.98);
}
.g-item:hover::after { opacity: 0.45; }

/* Live pulse badge on video tiles */
.g-item--video::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0b870;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.35),
    0 0 16px rgba(220,180,110,0.50);
  z-index: 2;
  opacity: 0.80;
  animation: g-live-pulse 2.4s ease-in-out infinite;
}
@keyframes g-live-pulse {
  0%, 100% { opacity: 0.50; transform: scale(1);   }
  50%       { opacity: 1;    transform: scale(1.28); }
}
@media (prefers-reduced-motion: reduce) {
  .g-item--video::before { animation: none; opacity: 0.80; }
}

/* ─── Primary grid placement — scoped, gap-free, no overlaps ─── */
/* Row coverage verified: each row sums to exactly 12 columns     */
/* Row 1–2: item1(4w×2h) + item2(3w×2h portrait) + item3+4(5w×1h each) */
/* Row 3:   four equal 3-column cells                             */
.gallery-grid--impact .g-item:nth-child(1) { grid-column: 1 / 5;   grid-row: 1 / 3; } /* 4w × 2h */
.gallery-grid--impact .g-item:nth-child(2) { grid-column: 5 / 8;   grid-row: 1 / 3; } /* 3w × 2h — portrait */
.gallery-grid--impact .g-item:nth-child(3) { grid-column: 8 / 13;  grid-row: 1 / 2; } /* 5w × 1h */
.gallery-grid--impact .g-item:nth-child(4) { grid-column: 8 / 13;  grid-row: 2 / 3; } /* 5w × 1h */
.gallery-grid--impact .g-item:nth-child(5) { grid-column: 1 / 4;   grid-row: 3 / 4; } /* 3w × 1h */
.gallery-grid--impact .g-item:nth-child(6) { grid-column: 4 / 7;   grid-row: 3 / 4; } /* 3w × 1h */
.gallery-grid--impact .g-item:nth-child(7) { grid-column: 7 / 10;  grid-row: 3 / 4; } /* 3w × 1h */
.gallery-grid--impact .g-item:nth-child(8) { grid-column: 10 / 13; grid-row: 3 / 4; } /* 3w × 1h */

/* Reveal system */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   1.05s cubic-bezier(0.22,1,0.36,1),
    transform 1.05s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.42s; }

@media (max-width: 980px) {
  .gallery-head { padding-top: clamp(80px, 12vw, 112px); }
  .gallery-grid--impact {
    grid-template-columns: repeat(6, 1fr);
    /* 4 explicit rows — verified gap-free for 8 items */
    grid-template-rows:
      clamp(220px, 30vw, 310px)
      clamp(180px, 24vw, 250px)
      clamp(220px, 30vw, 310px)
      clamp(220px, 30vw, 310px);
    gap: 8px;
    padding-inline: 8px;
  }
  /* Row 1: two halves — each 3 cols */
  .gallery-grid--impact .g-item:nth-child(1) { grid-column: 1/4; grid-row: 1/2; }
  .gallery-grid--impact .g-item:nth-child(2) { grid-column: 4/7; grid-row: 1/2; }
  /* Row 2: three equal cells */
  .gallery-grid--impact .g-item:nth-child(3) { grid-column: 1/3; grid-row: 2/3; }
  .gallery-grid--impact .g-item:nth-child(4) { grid-column: 3/5; grid-row: 2/3; }
  .gallery-grid--impact .g-item:nth-child(5) { grid-column: 5/7; grid-row: 2/3; }
  /* Row 3: two halves */
  .gallery-grid--impact .g-item:nth-child(6) { grid-column: 1/4; grid-row: 3/4; }
  .gallery-grid--impact .g-item:nth-child(7) { grid-column: 4/7; grid-row: 3/4; }
  /* Row 4: full width feature */
  .gallery-grid--impact .g-item:nth-child(8) { grid-column: 1/7; grid-row: 4/5; }
}

@media (max-width: 640px) {
  .gallery-head { padding-inline: 24px; padding-bottom: 40px; }
  .gallery-title { line-height: 0.90; }
  .gallery-title span { font-size: clamp(56px, 15vw, 84px); }
  .gallery-title em  { font-size: clamp(48px, 13vw, 72px); }

  .gallery-grid--impact {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: clamp(200px, 44vw, 260px);
    gap: 5px;
    padding-inline: 5px;
  }
  /* Reset all explicit placements from desktop/tablet */
  .gallery-grid--impact .g-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  /* First two items get portrait height (2 rows tall) */
  .gallery-grid--impact .g-item:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
  .gallery-grid--impact .g-item:nth-child(2) { grid-column: 2/3; grid-row: 1/3; }
  /* Items 3–8 auto-flow cleanly into 2-column grid */
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding-block: var(--pad-s);
  background: #f3efe6;
  color: #16110d;
  border-top: 1px solid rgba(20,15,10,0.08);
  background-image: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(100,15,15,0.022) 0%, transparent 60%);
}
.about .eyebrow {
  color: var(--accent-text-light);
}
.about .eyebrow::before {
  background: var(--accent-text-light);
}
.about .accent {
  color: var(--accent-text-light);
}
.about .section-title,
.about .pillar-title {
  color: #16110d;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 108px);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.82) saturate(0.72);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 55%; height: 55%;
  border: 1px solid rgba(20,15,10,0.14);
  pointer-events: none;
}
.about-copy .section-title { margin-bottom: 30px; }
.about-body {
  font-size: 17px;
  color: rgba(22,17,13,0.72);
  line-height: 1.84;
  letter-spacing: 0.001em;
}
.about-body p + p { margin-top: 18px; }
.about-pillars {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 38px;
}
.pillar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16110d;
  margin-bottom: 7px;
}
.pillar-body {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: rgba(22,17,13,0.62);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .about .container { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-wrap::after { display: none; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding-block: var(--pad-s);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  margin-top: clamp(48px, 5.5vw, 68px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.review-card {
  background: var(--bg);
  padding: clamp(32px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Decorative opening quote — deep wine, very subtle */
.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 92px;
  line-height: 0.72;
  color: var(--accent-deep);
  opacity: 0.30;
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg { width: 10px; height: 10px; fill: var(--accent-text); }
.review-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.0vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.46;
  color: var(--fg);
  flex: 1;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.review-attr {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.review-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.review-src {
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}
.reviews-agg {
  margin-top: 56px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.reviews-agg-num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.reviews-agg-text {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 840px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding-block: var(--pad-s);
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  background-image: radial-gradient(ellipse 80% 60% at 100% 100%, rgba(100,15,15,0.025) 0%, transparent 55%);
}
.visit .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 108px);
  align-items: start;
}
.visit-heading {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6.8vw, 98px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.026em;
  margin-bottom: 30px;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.visit-heading em {
  font-style: italic;
  color: rgba(238,232,223,0.50);
}
.visit-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.80;
  max-width: 42ch;
  margin-bottom: 42px;
  letter-spacing: 0.001em;
}
.visit-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-block {
  padding-block: 24px;
  border-bottom: 1px solid var(--border);
}
.detail-block:first-child { padding-top: 0; }
.detail-block:last-child { border-bottom: none; }
.detail-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 12px;
}
.detail-val {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.74;
  letter-spacing: 0.005em;
}
.detail-val a:hover { color: var(--accent-h); }

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

/* ============================================
   FOOTER — Redesign
   ============================================ */
.site-footer {
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, rgba(124,24,24,0.12) 0%, rgba(9,8,10,0) 55%),
    linear-gradient(180deg, #0c0a0b 0%, #09080a 100%);
  border-top: 1px solid rgba(238,232,223,0.08);
  padding: clamp(40px, 5.2vw, 60px) 0 18px;
}

.site-footer .container {
  max-width: 1280px;
}

.footer-shell {
  display: grid;
  gap: 20px;
}

.footer-brand-block {
  display: grid;
  gap: 10px;
  max-width: 470px;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.footer-kicker::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-text);
}

.footer-logo img {
  width: clamp(156px, 16vw, 214px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-lede {
  max-width: 27ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.48;
  color: rgba(238,232,223,0.66);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: clamp(20px, 2.1vw, 30px);
  padding-top: 18px;
  border-top: 1px solid rgba(238,232,223,0.08);
}

.footer-panel {
  display: grid;
  gap: 10px;
}

.footer-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.footer-addr {
  display: grid;
  gap: 6px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(238,232,223,0.84);
}

.footer-addr a {
  color: rgba(238,232,223,0.84);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-addr a:hover {
  color: #fff;
}

.footer-address-link {
  display: inline-block;
}

.footer-phone-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text) !important;
  margin-top: 2px;
}

.footer-phone-link:hover {
  color: #fff !important;
}

.footer-hours {
  display: grid;
  gap: 6px;
}

.footer-hours div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(238,232,223,0.06);
  font-size: 12px;
  color: rgba(238,232,223,0.72);
}

.footer-hours strong {
  font-weight: 600;
  color: var(--fg);
}

.footer-social-copy {
  max-width: 22ch;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(238,232,223,0.60);
}

.footer-social {
  display: grid;
  gap: 6px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(238,232,223,0.10);
  text-decoration: none;
  color: var(--fg);
  transition:
    border-color 0.26s ease,
    background-color 0.26s ease,
    transform 0.26s ease;
}

.footer-social a:hover {
  border-color: rgba(238,232,223,0.22);
  background: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}

.footer-social-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(238,232,223,0.10);
  color: rgba(238,232,223,0.72);
}

.footer-social svg {
  width: 13px;
  height: 13px;
}

.footer-base {
  padding-top: 12px;
  border-top: 1px solid rgba(238,232,223,0.06);
}

.footer-copy {
  font-size: 9px;
  color: rgba(238,232,223,0.42);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: left;
}

/* ── BB Credit — override standalone styles when inline ── */
.site-footer .bb-credit {
  margin-top: 22px;
  padding: 0;
  border-top: none;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-hours div {
    max-width: 420px;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding-top: 34px;
  }
  .footer-brand-block {
    gap: 8px;
  }
  .footer-hours div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-social a {
    padding: 13px 14px;
  }
  .footer-copy {
    line-height: 1.6;
  }
}

/* ============================================
   MOBILE ACTION BAR
   ============================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(9,8,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-md);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.mobile-bar .mb-call { background: var(--accent); color: #fff; }
.mobile-bar .mb-call:hover {
  background: var(--accent-h);
  box-shadow: 0 0 16px rgba(180,30,30,0.25);
}
.mobile-bar .mb-dir {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-md);
}
.mobile-bar .mb-dir:hover { border-color: var(--fg-dim); }
.mobile-bar svg { width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 680px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

/* ============================================
   GLOBAL REDUCED-MOTION (AODA / WCAG 2.3.3)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal-up { opacity: 1; transform: none; }
  .hero-bg { animation: none; transform: scale(1); }
  .g-item img, .g-item video { transform: none; }
  .g-item--video::before { animation: none; opacity: 0.80; }
  video[autoplay] { animation-play-state: paused; }
}

/* ============================================
   GALLERY — EXPAND & LIGHTBOX ADDITIONS
   ============================================ */

.g-item--clickable { cursor: zoom-in; }
.g-item--clickable:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: -2px;
}

/* ── View More button row ──────────────────── */
.gallery-expand-row {
  display: flex;
  justify-content: center;
  padding: clamp(36px, 4vw, 56px) var(--pad-x) clamp(16px, 2vw, 28px);
}

.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  background: transparent;
  border: 1px solid rgba(238,232,223,0.20);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.30s ease, background 0.30s ease;
}
.gallery-more-btn:hover {
  border-color: rgba(238,232,223,0.48);
  background: rgba(238,232,223,0.05);
}
.gallery-more-btn:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}
.gallery-more-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.40s cubic-bezier(0.22,1,0.36,1);
}
.gallery-more-btn[aria-expanded="true"] .gallery-more-icon {
  transform: rotate(180deg);
}

/* ── Secondary gallery ─────────────────────── */
.gallery-secondary {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 1.1s cubic-bezier(0.22,1,0.36,1),
    opacity    0.45s ease;
  padding-inline: clamp(8px, 0.8vw, 12px);
  padding-top: 0;
}
.gallery-secondary.is-open {
  max-height: 8000px;
  opacity: 1;
  padding-top: clamp(5px, 0.6vw, 9px);
}

.gallery-secondary.is-open .g-item {
  animation: g-reveal 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.gallery-secondary.is-open .g-item:nth-child(1)  { animation-delay: 0.06s; }
.gallery-secondary.is-open .g-item:nth-child(2)  { animation-delay: 0.10s; }
.gallery-secondary.is-open .g-item:nth-child(3)  { animation-delay: 0.14s; }
.gallery-secondary.is-open .g-item:nth-child(4)  { animation-delay: 0.18s; }
.gallery-secondary.is-open .g-item:nth-child(5)  { animation-delay: 0.22s; }
.gallery-secondary.is-open .g-item:nth-child(6)  { animation-delay: 0.26s; }
.gallery-secondary.is-open .g-item:nth-child(7)  { animation-delay: 0.30s; }
.gallery-secondary.is-open .g-item:nth-child(8)  { animation-delay: 0.34s; }
.gallery-secondary.is-open .g-item:nth-child(9)  { animation-delay: 0.38s; }
.gallery-secondary.is-open .g-item:nth-child(10) { animation-delay: 0.42s; }
.gallery-secondary.is-open .g-item:nth-child(11) { animation-delay: 0.46s; }
.gallery-secondary.is-open .g-item:nth-child(12) { animation-delay: 0.50s; }
.gallery-secondary.is-open .g-item:nth-child(13) { animation-delay: 0.54s; }
.gallery-secondary.is-open .g-item:nth-child(14) { animation-delay: 0.58s; }

@keyframes g-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Editorial 3-column grid with staggered featured spans */
.gallery-grid--secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(240px, 24vw, 360px);
  gap: clamp(5px, 0.6vw, 9px);
  padding-bottom: clamp(14px, 1.4vw, 20px);
}

/* Featured wide images — alternate left/right */
.gallery-grid--secondary .g-item:nth-child(1)  { grid-column: span 2; }
.gallery-grid--secondary .g-item:nth-child(7)  { grid-column: span 2; }
/* Full-width finale */
.gallery-grid--secondary .g-item:nth-child(14) { grid-column: span 3; }

@media (max-width: 980px) {
  .gallery-grid--secondary {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(200px, 30vw, 300px);
  }
  .gallery-grid--secondary .g-item:nth-child(1)  { grid-column: span 2; }
  .gallery-grid--secondary .g-item:nth-child(7)  { grid-column: auto; }
  .gallery-grid--secondary .g-item:nth-child(14) { grid-column: span 2; }
  .gallery-secondary.is-open { max-height: 10000px; }
}

@media (max-width: 640px) {
  .gallery-grid--secondary {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(200px, 48vw, 280px);
    gap: 5px;
    padding-inline: 5px;
  }
  .gallery-grid--secondary .g-item:nth-child(1),
  .gallery-grid--secondary .g-item:nth-child(7),
  .gallery-grid--secondary .g-item:nth-child(14) { grid-column: auto; }
  .gallery-secondary.is-open { max-height: 14000px; }
  .gallery-more-btn { padding: 16px 36px; }
}

/* ── Lightbox ──────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(4,3,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lb-overlay[hidden] { display: none; }
.lb-overlay.lb-visible { opacity: 1; }

.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: min(88vw, 1080px);
  width: 100%;
}

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lb-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  transform: none !important;
  opacity: 0;
  transition: opacity 0.25s ease;
  border: none;
}
.lb-img.lb-img-loaded { opacity: 1; }

.lb-caption {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(238,232,223,0.34);
  text-align: center;
  max-width: 56ch;
  padding: 0 16px;
}

.lb-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238,232,223,0.26);
  pointer-events: none;
}

.lb-close {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(238,232,223,0.12);
  color: rgba(238,232,223,0.50);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s;
  z-index: 10;
}
.lb-close:hover {
  border-color: rgba(238,232,223,0.38);
  color: #fff;
}
.lb-close:focus-visible {
  outline: 1px solid rgba(238,232,223,0.5);
  outline-offset: 3px;
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(238,232,223,0.09);
  color: rgba(238,232,223,0.40);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  z-index: 10;
}
.lb-nav:hover {
  border-color: rgba(238,232,223,0.28);
  color: #fff;
  background: rgba(238,232,223,0.04);
}
.lb-nav:focus-visible {
  outline: 1px solid rgba(238,232,223,0.5);
  outline-offset: 3px;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }

@media (max-width: 680px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-nav  { width: 40px; height: 40px; }
  .lb-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lb-img { max-height: 70vh; }
  .lb-counter { bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .lb-overlay { transition: none; }
  .lb-img { transition: none; opacity: 1 !important; }
  .gallery-secondary { transition: none; }
  .gallery-secondary.is-open .g-item {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .gallery-more-icon { transition: none; }
}

/* ============================================
   BRINTON BUILDS CREDIT  — reusable component
   Copy this block + the HTML markup to any
   Brinton Builds site to add the credit.
   ============================================ */
.bb-credit {
  margin-top: 8px;
  padding: 14px var(--pad-x, clamp(24px,5vw,80px)) 22px;
  border-top: 1px solid var(--border, rgba(238,232,223,0.055));
  display: flex;
  justify-content: center;
  align-items: center;
}

.bb-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(238, 232, 223, 0.24);
  text-decoration: none;
  transition: color 0.32s ease;
}

.bb-credit-link:hover {
  color: #c86828;
}

.bb-credit-link:focus-visible {
  outline: 1px solid rgba(200, 104, 40, 0.48);
  outline-offset: 5px;
  color: #c86828;
}

.bb-credit-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-credit-mark svg {
  display: block;
  width: auto;
  height: 13px;
}

.bb-credit-link:hover .bb-credit-mark {
  transform: translateY(-1px);
}

.bb-credit-text {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 480px) {
  .bb-credit { padding-bottom: 18px; }
}

/* ============================================
   TESTIMONIALS — Premium Social Proof
   ============================================ */
.testimonials {
  padding-block: var(--pad-s);
  background: var(--bg);
  border-top: 1px solid var(--border);
  background-image:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(100,15,15,0.030) 0%, transparent 65%);
}

/* Header meta row — rating + review count */
.testimonials-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.testimonials-rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.testimonials-rating--link {
  text-decoration: none;
  color: inherit;
  border-radius: 999px;
  padding: 10px 14px;
  margin: -10px -14px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.testimonials-rating--link:hover {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.testimonials-rating-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
}

.testimonials-rating-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.testimonials-meta-rule {
  width: 1px;
  height: 30px;
  background: var(--border-md);
  flex-shrink: 0;
}

.testimonials-meta-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}

.testimonials-meta-link {
  text-decoration: none;
  position: relative;
}

.testimonials-meta-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: rgba(224, 184, 112, 0.45);
  transform: scaleX(0.7);
  transform-origin: left center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.testimonials-meta-link:hover::after {
  transform: scaleX(1);
  background: rgba(224, 184, 112, 0.75);
}

/* ── Featured quote ─────────────────────── */
.testi-featured {
  margin-top: clamp(52px, 6vw, 72px);
  padding: clamp(44px, 5.5vw, 72px) clamp(36px, 8vw, 112px);
  border: 1px solid var(--border-md);
  background: var(--bg);
  position: relative;
  text-align: center;
}

/* Decorative opening quote — oxblood, very subtle */
.testi-featured::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.70;
  color: var(--accent-deep);
  opacity: 0.22;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.testi-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testi-stars {
  color: var(--accent-text);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.testi-rating-note {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.testi-featured-blockquote > p {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.2vw, 29px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--fg);
  max-width: 40ch;
  margin: 0 auto;
  text-wrap: pretty;
}

.testi-featured-attr {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Shared name + source styles */
.testi-name {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.testi-src {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.testi-src--link {
  text-decoration: none;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.testi-src--link:hover {
  color: var(--accent-text);
  letter-spacing: 0.14em;
}

/* ── Supporting grid ────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1px; /* seamless join with featured border */
  border-bottom: 1px solid var(--border-md);
}

.testi-card {
  background: var(--bg);
  padding: clamp(32px, 3.5vw, 52px) clamp(28px, 4vw, 56px);
}

.testi-quote {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.45vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.008em;
  color: rgba(238,232,223,0.84);
  text-wrap: pretty;
}

.testi-card-attr {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.testi-cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.testi-review-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(224, 184, 112, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 34px rgba(0,0,0,0.16);
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.testi-review-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(224,184,112,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 40px rgba(0,0,0,0.22);
}

/* ── Trust signals ──────────────────────── */
.testi-trust {
  margin-top: clamp(44px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.testi-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-text);
  opacity: 0.38;
  flex-shrink: 0;
}

/* ── Visit CTA nudge ────────────────────── */
.visit-cta-nudge {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 22px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 720px) {
  .testi-featured {
    padding: clamp(36px, 7vw, 52px) clamp(24px, 6vw, 36px);
    text-align: left;
  }
  .testi-featured::before {
    text-align: left;
  }
  .testi-rating-row {
    justify-content: flex-start;
  }
  .testi-featured-attr {
    justify-content: flex-start;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-trust {
    justify-content: flex-start;
    gap: 10px 14px;
  }
  .testi-cta-row {
    justify-content: flex-start;
  }
  .testimonials-meta {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-meta-rule { display: none; }
}

/* ============================================
   TYPOGRAPHY UPGRADE — v3.1
   Playfair Display headline system
   ============================================ */

/* Token: swap display serif from Cormorant Garamond to Playfair Display */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* Hero heading — cinematic scale & weight */
.hero-heading {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* Both lines unified to 600 — confidence over elegance */
.hero-line--1 {
  font-weight: 600;
}
.hero-line--2 {
  font-weight: 600;
}

/* Accent word ("sharp.") punches harder */
.hero-heading .accent {
  font-weight: 700;
}

/* Section titles — Playfair Display at editorial scale */
.section-title {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Eyebrow / section labels — tighten tracking slightly */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
}

/* Category headings — strong sans anchors, not decorative serif */
.svc-group-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  font-optical-sizing: normal;
}

/* Price list — service names: readable weight, not thin */
.svc-name {
  font-size: 18px;
  font-weight: 500;
}

/* Price list — amounts: switch to bold sans, drop serif opacity */
.svc-price {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 1;
}

/* ============================================
   VISIT — Premium Off-White Editorial Upgrade
   ============================================ */

/* Section shell */
.visit {
  background: #f5f4f2;
  background-image: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Heading — three-part stacked rhythm */
.visit-heading {
  color: #1c1714;
}

/* "Come" — bold serif anchor */
.visit-line-come {
  display: block;
  font-weight: 700;
  color: #1c1714;
}

/* "Find" — italic, stepped back */
.visit-heading em {
  font-style: italic;
  color: rgba(28,23,20,0.46);
  font-weight: 400;
}

/* "Us." — brand red */
.visit-heading .accent {
  color: #b32626;
}

/* Body paragraph */
.visit-body {
  color: #555;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 42px;
}

/* CTA nudge line */
.visit-cta-nudge {
  color: #999;
}

/* Buttons — adapted for light background */
.visit .btn-primary {
  background: #b32626;
}
.visit .btn-primary:hover {
  background: #8f1e1e;
  box-shadow: 0 4px 22px rgba(179,38,38,0.16);
}

.visit .btn-ghost {
  border: 1px solid #111;
  color: #111;
}
.visit .btn-ghost:hover {
  border-color: #444;
  color: #444;
}

/* Detail blocks — light dividers */
.visit .detail-block {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.visit .detail-block:first-child {
  border-top: none;
  padding-top: 0;
}
.visit .detail-block:last-child {
  border-bottom: none;
}

/* Detail labels — brand red, tracked */
.visit .detail-label {
  color: #b32626;
  letter-spacing: .12em;
}

/* Detail values — dark, legible */
.visit .detail-val {
  color: #2a2520;
  line-height: 1.74;
}
.visit .detail-val a {
  color: #2a2520;
}
.visit .detail-val a:hover {
  color: #b32626;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .hero, .gallery, .mobile-bar, .footer-social,
  .hero-aside, .hero-actions, .trust-dot { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .site-header, .site-footer { border: 0; background: transparent; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
}
