:root {
  --ink: #10100f;
  --ink-soft: #191a17;
  --cream: #f7f7f1;
  --paper: #f5f5ef;
  --gold: #f0dc00;
  --gold-light: #fff24a;
  --muted: #6a6b65;
  --line: rgba(16, 16, 15, .14);
  --header-h: 68px;
  --gutter: clamp(1.125rem, 4vw, 4.5rem);
  --serif: "Bahnschrift Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --sans: "Segoe UI", Arial, ui-sans-serif, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { object-fit: cover; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: rgba(217, 170, 85, .25); }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(10, 10, 9, .97);
  color: var(--cream);
  border-bottom: 0;
}
.header-inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { display: flex; gap: .35rem; font: 900 1.08rem/1 Arial, sans-serif; letter-spacing: .12em; }
.brand-copy strong span { color: var(--gold); }
.brand-copy strong b { color: #fff; font-weight: 850; }
.brand-copy small { margin-top: .32rem; color: #aaa; font-size: .46rem; font-weight: 700; letter-spacing: .17em; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 5px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle span { width: 26px; height: 1.5px; background: currentColor; transition: transform .25s ease, opacity .2s ease, width .2s ease; }
.menu-toggle span:nth-child(2) { width: 19px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  position: fixed;
  z-index: 52;
  top: calc(var(--header-h) + .75rem);
  left: .75rem;
  right: .75rem;
  max-height: calc(100svh - var(--header-h) - 1.5rem);
  overflow-y: auto;
  display: grid;
  padding: .75rem;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav a {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: .045em;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 1rem;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.site-nav a[aria-current="page"] { color: var(--gold); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .mobile-menu-directions { justify-content: center; margin-top: .75rem; color: var(--ink); background: var(--gold); border: 0; }
.site-nav .mobile-menu-directions::after { display: none; }
.menu-scrim {
  position: fixed;
  z-index: 51;
  inset: var(--header-h) 0 0;
  display: none;
  width: 100%;
  height: calc(100vh - var(--header-h));
  background: rgba(0,0,0,.58);
  border: 0;
}
.menu-open .menu-scrim { display: block; }

.hero { position: relative; display: grid; overflow: hidden; background: var(--ink); color: var(--cream); }
.hero-content {
  padding: calc(var(--header-h) + 2.25rem) var(--gutter) clamp(3rem, 10vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { display: none; }
.hero .eyebrow { color: #bdb6aa; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 800; letter-spacing: -.035em; line-height: .9; text-transform: uppercase; }
h1 { display: grid; font-size: clamp(4.4rem, 22vw, 8rem); line-height: .72; }
h1 > span { color: var(--gold); letter-spacing: .01em; }
h1 > small { margin-top: .7rem; color: #fff; font-size: .31em; font-weight: 700; letter-spacing: .32em; }
h2 { font-size: clamp(2.35rem, 7vw, 4.25rem); }
h2 em, .site-footer em { color: var(--gold); font-style: normal; font-weight: 800; }
.hero-tagline { margin: 1.8rem 0 0; font: 700 clamp(1.25rem, 6vw, 1.85rem)/1.1 var(--serif); letter-spacing: .02em; text-transform: uppercase; }
.hero-tagline strong { color: var(--gold); }
.hero-actions { margin-top: 1.65rem; display: grid; gap: 1rem; }
.button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.button::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -35%;
  width: 22%;
  background: rgba(255,255,255,.42);
  transform: skewX(-22deg) translateX(-220%);
  transition: transform .65s ease;
  pointer-events: none;
}
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button:active { transform: translateY(1px) scale(.99); }
.phone-link { min-height: 54px; display: flex; align-items: center; gap: .75rem; color: var(--cream); text-decoration: none; font-weight: 700; letter-spacing: .04em; }
.phone-link svg { width: 22px; fill: var(--gold); }
.phone-link span { display: grid; gap: .2rem; }
.phone-link small { color: #948e84; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.walk-in-note { margin: 2rem 0 0; color: #aaa; font-size: .78rem; line-height: 1.45; text-align: left; }
.walk-in-note strong { color: var(--cream); }
.hero-media {
  position: relative;
  min-height: 360px;
  margin-top: -1.5rem;
  overflow: hidden;
  background: var(--ink);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 100%);
}
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-position: center center; filter: brightness(.66) contrast(1.06) saturate(.82); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(5, 5, 4, .12); pointer-events: none; }

.section { padding: clamp(3.75rem, 9vw, 6.5rem) var(--gutter); }
.section-divider { width: 100%; height: 2px; margin: 0; padding: 0; background: #ffe000; border: 0; opacity: 1; }
.section-heading { display: grid; gap: 1.5rem; }
.section-heading > p { max-width: 32rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.cuts, .services, .gallery { padding-top: clamp(1.75rem, 3vw, 2.75rem); }
.cuts .section-heading { display: block; text-align: center; }
.cuts .section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); letter-spacing: .12em; }
.cut-grid { width: min(100%, 1080px); margin: 1.5rem auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.showcase-placeholder { min-width: 0; }
.placeholder-frame, .gallery-placeholder { position: relative; display: grid; place-items: center; overflow: hidden; color: var(--gold); background: linear-gradient(145deg, #171715, #292923); border: 1px solid rgba(240,220,0,.2); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.placeholder-frame { aspect-ratio: 4 / 5; }
.placeholder-frame::before, .gallery-placeholder::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(240,220,0,.14); }
.placeholder-frame span, .gallery-placeholder span { position: relative; z-index: 1; font: 800 clamp(1.4rem, 4vw, 2.3rem)/1 var(--serif); letter-spacing: .08em; }

.services { display: grid; gap: 3rem; color: var(--cream); background: var(--ink); }
.eyebrow-light { color: #aaa398; }
.services-intro > p:last-child { max-width: 29rem; margin: 1.5rem 0 0; color: #aaa398; line-height: 1.7; }
.service-list { border-top: 1px solid rgba(255,255,255,.15); }
.service-row { min-height: 116px; display: grid; grid-template-columns: 1.8rem 1fr auto; gap: .65rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,.15); transition: transform .3s ease, border-color .3s ease; }
.service-row > span { align-self: start; padding-top: 2.15rem; color: var(--gold); font: italic .85rem var(--serif); }
.service-row h3 { margin: 0; font: 800 clamp(1.3rem, 5.5vw, 1.8rem)/1.1 var(--serif); text-transform: uppercase; }
.service-row p { margin: .45rem 0 0; color: #8f8a81; font-size: .76rem; line-height: 1.45; }
.service-row strong { color: var(--gold-light); font: 400 clamp(1.45rem, 6vw, 2rem) var(--serif); }
.price-note { margin: 1rem 0 0; color: #77736c; font-size: .7rem; }

.gallery .gallery-heading { display: block; margin-bottom: 1.75rem; text-align: center; }
.gallery-grid { width: min(100%, 960px); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; }
.gallery-placeholder { min-width: 0; aspect-ratio: 4 / 3; }

.visit { padding-top: clamp(.75rem, 2vw, 1.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); color: var(--cream); background: var(--ink-soft); }
.location-title { margin: 0 0 .5rem; color: var(--gold); font-size: clamp(1.45rem, 6vw, 2rem); letter-spacing: .06em; text-transform: uppercase; }
.visit .eyebrow, .visit .detail-label { color: #a7a8a1; }
.visit-layout { display: grid; gap: 2rem; }
.map-block { min-width: 0; order: 0; }
.map-frame { position: relative; isolation: isolate; height: clamp(300px, 90vw, 380px); overflow: hidden; background: #ddd8cf; }
.shop-map { width: 100%; height: 100%; background: #d9d8d2; font-family: var(--sans); }
.shop-map .leaflet-tile-pane { filter: grayscale(.85) contrast(.92); }
.shop-map .leaflet-control-zoom a { color: var(--ink); }
.map-attribution-control { display: flex; align-items: stretch; margin: 0 6px 6px 0 !important; overflow: hidden; color: var(--cream); background: rgba(16,16,15,.94); box-shadow: 0 2px 8px rgba(0,0,0,.28); }
.map-attribution-details { display: flex; align-items: center; padding: 0 .65rem; font-size: .58rem; line-height: 1.25; white-space: nowrap; }
.map-attribution-details[hidden] { display: none; }
.map-attribution-details a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.map-attribution-toggle { width: 34px; height: 34px; padding: 0; color: var(--ink); background: var(--gold); border: 0; font: 900 .9rem/1 var(--serif); cursor: pointer; }
.map-attribution-toggle:hover, .map-attribution-toggle:focus-visible { background: var(--gold-light); }
.map-attribution-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
.lion-map-marker { background: transparent; border: 0; }
.lion-marker { position: relative; width: 54px; height: 64px; filter: drop-shadow(0 7px 5px rgba(0,0,0,.3)); }
.lion-marker svg { width: 54px; height: 64px; fill: var(--gold); stroke: var(--ink); stroke-width: 1; }
.lion-marker circle { fill: var(--ink); stroke: none; }
.shop-map .leaflet-popup-content-wrapper, .shop-map .leaflet-popup-tip { color: var(--cream); background: var(--ink); }
.shop-map .leaflet-popup-content { margin: .75rem 1rem; line-height: 1.4; }
.shop-map .leaflet-popup-content strong { color: var(--gold); font-family: var(--serif); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.map-fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; color: var(--ink); background: #ddd8cf; text-align: center; }
.button-wide { width: 100%; margin-top: .75rem; }
.visit-details { order: 1; }
.detail-block { padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.detail-label { margin: 0 0 1rem; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
address { font: normal 750 clamp(1.45rem, 7vw, 2.1rem)/1.25 var(--serif); text-transform: uppercase; }
.hours { margin: 0; display: grid; gap: .8rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; font-size: .86rem; }
.hours dt { color: #aaa; }
.hours dd { margin: 0; font-weight: 750; }
.visit-phone { min-height: 76px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; }
.visit-phone span { display: flex; align-items: center; gap: .45rem; color: #aaa; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visit-phone span svg { width: 15px; height: 15px; flex: 0 0 15px; fill: var(--gold); }
.visit-phone strong { margin-top: .35rem; font: 800 1.6rem var(--serif); }
.parking-note { display: flex; align-items: center; gap: .6rem; margin: 1.2rem 0 0; color: #999; font-size: .75rem; line-height: 1.45; }
.parking-note svg { width: 22px; flex: 0 0 22px; fill: var(--gold); }

.site-footer { padding: 3rem var(--gutter) 1rem; color: var(--cream); background: #090909; }
.footer-grid { display: grid; gap: 0; }
.footer-column { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); text-align: center; }
.footer-column h2 { margin: 0 0 1.25rem; color: #fff; font: 750 1.05rem/1 var(--serif); letter-spacing: .055em; text-transform: uppercase; }
.footer-contact h2 span { color: var(--gold); }
.footer-detail { min-height: 44px; display: flex; align-items: flex-start; gap: .8rem; width: fit-content; margin-inline: auto; padding: .25rem 0; color: #b7b5ae; text-align: left; text-decoration: none; font-size: .8rem; line-height: 1.45; }
.footer-detail + .footer-detail { margin-top: .5rem; align-items: center; }
.footer-detail svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: .1rem; fill: var(--gold); }
.footer-hours { width: min(100%, 22rem); margin: 0 auto; display: grid; gap: .65rem; }
.footer-hours div { display: flex; justify-content: space-between; gap: 1rem; color: #aaa8a2; font-size: .78rem; }
.footer-hours dd { margin: 0; color: #fff; font-weight: 750; white-space: nowrap; }
.social-links { display: flex; justify-content: center; gap: .65rem; }
.social-links a { width: 44px; height: 44px; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(240,220,0,.45); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.social-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.social-links .social-dot { fill: currentColor; stroke: none; }
.social-links .social-inner { fill: none; stroke: currentColor; stroke-width: 1.3; }
.footer-bottom { padding-top: 1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.25rem; color: #686761; font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; text-align: center; }

.mobile-action-bar {
  position: fixed;
  z-index: 45;
  left: max(.65rem, env(safe-area-inset-left));
  right: max(.65rem, env(safe-area-inset-right));
  bottom: max(.65rem, env(safe-area-inset-bottom));
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: var(--ink);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.mobile-action-bar.is-hidden { opacity: 0; visibility: hidden; transform: translateY(calc(100% + 2rem)); }
.mobile-action-bar a { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--cream); text-decoration: none; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobile-action-bar a + a { color: var(--ink); background: var(--gold); }
.mobile-action-bar svg { width: 19px; fill: currentColor; }

.motion-ready .hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.motion-ready.is-loaded .hero-content > * { opacity: 1; transform: translateY(0); }
.motion-ready.is-loaded .hero-content > :nth-child(1) { transition-delay: .08s; }
.motion-ready.is-loaded .hero-content > :nth-child(2) { transition-delay: .16s; }
.motion-ready.is-loaded .hero-content > :nth-child(3) { transition-delay: .26s; }
.motion-ready.is-loaded .hero-content > :nth-child(4) { transition-delay: .36s; }
.motion-ready.is-loaded .hero-content > :nth-child(5) { transition-delay: .46s; }
.motion-ready .hero-media { opacity: 0; transition: opacity 1.1s ease .12s; }
.motion-ready.is-loaded .hero-media { opacity: 1; }
.motion-ready.is-loaded .hero-media img { animation: hero-drift 16s ease-in-out 1.1s infinite alternate; }

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}
.motion-ready .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .section-divider.reveal-divider {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .85s cubic-bezier(.2,.7,.2,1);
}
.motion-ready .section-divider.reveal-divider.is-visible { transform: scaleX(1); }

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, -1%, 0); }
}
@keyframes marker-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (hover: hover) {
  .site-nav a:not(.nav-cta):hover { color: var(--gold); }
  .button:hover::after { transform: skewX(-22deg) translateX(720%); }
  .phone-link:hover, .footer-detail:hover { color: var(--gold-light); }
  .social-links a:hover { color: var(--ink); background: var(--gold); }
  .placeholder-frame:hover, .gallery-placeholder:hover { transform: translateY(-6px); border-color: rgba(240,220,0,.62); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
  .service-row:hover { transform: translateX(7px); border-color: rgba(240,220,0,.42); }
}

@media (min-width: 600px) {
  .hero-actions { grid-template-columns: minmax(220px, 300px) 1fr; align-items: center; }
  .cut-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .gallery-grid { gap: .85rem; }
}

@media (min-width: 768px) {
  .section-heading { grid-template-columns: minmax(0, 1.4fr) minmax(17rem, .6fr); align-items: end; }
  .services { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 6vw; }
  .visit-layout { grid-template-columns: minmax(0, 1.45fr) minmax(18rem, .75fr); align-items: center; }
  .map-block { order: 0; }
  .visit-details { order: 1; padding-left: clamp(1rem, 4vw, 3.5rem); }
  .map-frame { height: 420px; }
  .visit .button-wide { display: none; }
  .visit .detail-block { padding: .8rem 0; }
  .visit .detail-label { margin-bottom: .55rem; }
  .visit address { font-size: 1.55rem; }
  .visit .hours { gap: .45rem; }
  .visit .visit-phone { min-height: 64px; }
  .footer-grid { grid-template-columns: 1fr 1.2fr .9fr; align-items: stretch; }
  .footer-column { min-width: 0; padding: .5rem clamp(1.5rem, 4vw, 4rem); border-bottom: 0; }
  .footer-column + .footer-column { border-left: 1px solid rgba(240,220,0,.22); }
}

@media (min-width: 920px) {
  :root { --header-h: 78px; }
  body { padding-bottom: 0; }
  .menu-toggle, .menu-scrim { display: none !important; }
  .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; }
  .brand { justify-self: start; }
  .brand-copy strong { font-size: 1.18rem; }
  .brand-copy small { font-size: .5rem; }
  .site-nav {
    position: static;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: .25rem;
    max-height: none;
    padding: 0;
    overflow: visible;
    color: inherit;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a { min-height: 48px; padding: .65rem .8rem; border: 0; font-size: .95rem; letter-spacing: .04em; }
  .site-nav a::after {
    top: auto;
    right: 1.15rem;
    bottom: 7px;
    left: 1.15rem;
    width: auto;
    transform: scaleX(0);
    transform-origin: center;
  }
  .site-nav a[aria-current="page"] { color: #fff; }
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav .mobile-menu-directions { display: none; }
  .hero { min-height: 650px; height: 82svh; max-height: 760px; grid-template-columns: 50% 50%; }
  .hero-content { position: relative; z-index: 2; min-height: 650px; height: 100%; padding-top: calc(var(--header-h) + 2rem); }
  .hero h1 { font-size: clamp(8rem, 7.5vw, 10rem); }
  .hero-media {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    min-height: 0;
    height: auto;
    margin: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.45) 14%, #000 38%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.45) 14%, #000 38%, #000 100%);
  }
  .hero-media img { object-position: center 46%; filter: brightness(.58) contrast(1.08) saturate(.76); }
  .cut-grid { gap: 1.1rem; }
  .mobile-action-bar { display: none; }
  .gallery-grid { gap: 1.1rem; }
}

@media (min-width: 1180px) {
  .header-inner, .site-footer > * { max-width: 1440px; margin-left: auto; margin-right: auto; }
  .hero-content { padding-left: max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter))); }
  .section-heading { gap: 8vw; }
  .visit-layout { width: 100%; max-width: 1296px; margin-left: auto; margin-right: auto; }
  .services {
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    padding-left: max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter)));
    padding-right: max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter)));
  }
  .service-row { min-height: 132px; grid-template-columns: 2.5rem 1fr auto; }
  .service-row p { font-size: .82rem; }
  .gallery { padding-left: max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter))); }
  .visit-layout { grid-template-columns: minmax(0, 1.55fr) minmax(20rem, .65fr); gap: 2rem; }
  .map-frame { height: 460px; }
}

@media (min-width: 1600px) {
  .hero { min-height: 720px; max-height: 900px; }
  .hero-content { min-height: 720px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready .hero-content > *,
  .motion-ready .hero-media,
  .motion-ready .reveal-item { opacity: 1 !important; transform: none !important; }
  .motion-ready .section-divider.reveal-divider { transform: scaleX(1) !important; }
}
