/* Gentz Cutz — mobile-first static site */
:root {
  --red: #c1272d;
  --red-dark: #881a1f;
  --red-bright: #df3339;
  --cream: #f4e7c6;
  --cream-soft: #fbf4e3;
  --gold: #d4a84b;
  --ink: #141414;
  --ink-soft: #1d1c1a;
  --muted: #6d6960;
  --line: rgba(20, 20, 20, .14);
  --white: #fff;
  --pole-red: #e23b3b;
  --pole-white: #fff;
  --pole-blue: #2b6cb0;
  --display: "Bebas Neue", Impact, sans-serif;
  --subhead: "Oswald", Arial Narrow, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --header-h: 76px;
  --shadow: 0 20px 50px rgba(16, 12, 8, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { margin: 0; color: var(--ink); background: var(--cream-soft); font-family: var(--body); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: .015em; line-height: .89; text-transform: uppercase; }
h2 { margin-bottom: 0; font-size: clamp(3.7rem, 14vw, 7.5rem); }
h2 em { color: var(--red); font-style: normal; }
address { font-style: normal; }
::selection { background: var(--red); color: var(--white); }

.container, .container-wide { width: min(100% - 2rem, 1200px); margin-inline: auto; }
.container { max-width: 1080px; }
.section { position: relative; padding: 5.5rem 0; overflow: hidden; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 9999; top: .75rem; left: .75rem; padding: .75rem 1rem; color: var(--white); background: var(--red); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.eyebrow { margin-bottom: 1rem; color: var(--red); font-family: var(--subhead); font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-light { color: var(--gold); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.25rem; border: 1px solid transparent; text-decoration: none; font-family: var(--subhead); font-size: .88rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s, background-color .25s, border-color .25s, color .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 30px rgba(193, 39, 45, .25); }
.button-primary:hover { background: var(--red-bright); }
.button-ghost { color: var(--cream); border-color: rgba(244, 231, 198, .45); }
.button-ghost:hover { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--red); }

/* Header */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); border-bottom: 1px solid rgba(244, 231, 198, .12); color: var(--cream); transition: height .3s, background-color .3s, box-shadow .3s; }
.site-header.scrolled { height: 64px; background: rgba(20, 20, 20, .96); box-shadow: 0 10px 30px rgba(0, 0, 0, .25); backdrop-filter: blur(16px); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { min-width: max-content; display: inline-flex; align-items: center; gap: .7rem; color: var(--cream); text-decoration: none; }
.brand-pole { width: 12px; height: 42px; border: 2px solid rgba(255,255,255,.8); border-radius: 8px; background: repeating-linear-gradient(45deg, var(--pole-red) 0 6px, var(--pole-white) 6px 12px, var(--pole-blue) 12px 18px, var(--pole-white) 18px 24px); background-size: 100% 34px; box-shadow: 0 0 0 2px rgba(212,168,75,.45); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 1.65rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }
.brand-copy small { color: var(--gold); font-family: var(--subhead); font-size: .57rem; letter-spacing: .24em; text-transform: uppercase; }
.menu-toggle { position: relative; z-index: 2; width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid rgba(244,231,198,.25); color: var(--cream); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { position: fixed; inset: 0; display: grid; align-content: center; gap: 1rem; padding: 6rem 2rem 2rem; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
.primary-nav::before { content: "MENU"; position: absolute; right: -1rem; bottom: -4rem; color: rgba(244,231,198,.035); font-family: var(--display); font-size: 15rem; line-height: 1; }
.primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav a { position: relative; width: fit-content; color: var(--cream); text-decoration: none; font-family: var(--display); font-size: clamp(2.8rem, 12vw, 4.5rem); line-height: 1; text-transform: uppercase; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 3px; background: var(--red); transition: width .25s; }
.primary-nav a:hover::after, .primary-nav a.active::after { width: 100%; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: var(--cream); background: var(--ink); }
.hero-photo, .hero-wash, .hero-grain { position: absolute; inset: 0; }
.hero-photo { background: url("assets/images/hero-barber.webp") 58% center / cover no-repeat; transform: scale(1.015); }
.hero-wash { background: linear-gradient(90deg, rgba(14,14,14,.97) 0%, rgba(14,14,14,.87) 43%, rgba(14,14,14,.34) 72%, rgba(14,14,14,.55) 100%), linear-gradient(0deg, rgba(20,20,20,.8), transparent 50%); }
.hero-grain { pointer-events: none; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-content { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 2rem; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 8.5rem; }
.hero-copy { width: min(100%, 720px); }
.hero .eyebrow { color: var(--gold); }
.hero-title { margin: 0 0 1.2rem; font-size: clamp(6rem, 27vw, 13rem); line-height: .72; letter-spacing: -.02em; }
.hero-title > span { display: block; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px var(--cream); text-stroke: 2px var(--cream); }
.hero-tagline { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; font-family: var(--subhead); font-size: clamp(1rem, 4.7vw, 1.5rem); letter-spacing: .14em; text-transform: uppercase; }
.hero-tagline i { width: 30px; height: 1px; background: var(--red); }
.hero-intro { max-width: 580px; margin-bottom: 1.8rem; color: rgba(244,231,198,.72); font-size: .95rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-address { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; display: none; text-align: right; }
.hero-address span, .hero-address strong { display: block; }
.hero-address span { color: var(--gold); font-family: var(--subhead); font-size: .62rem; letter-spacing: .16em; }
.hero-address strong { font-family: var(--subhead); font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.hero-reveal { opacity: 0; transform: translateY(25px); }
.loaded .hero-reveal { animation: hero-in .65s cubic-bezier(.2,.75,.25,1) var(--delay) forwards; }

/* Section headings */
.section-heading { display: grid; gap: 1.5rem; margin-bottom: 2.75rem; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }

/* Services */
.services { background: var(--cream-soft); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 260px; display: flex; flex-direction: column; padding: 1.35rem 1rem 1.15rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.2); overflow: hidden; transition: color .32s, background-color .32s, transform .32s, box-shadow .32s; }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .32s; }
.service-icon { width: 2rem; height: 2rem; margin: .3rem 0 1.1rem; color: var(--red); transition: transform .32s; }
.service-card h3 { margin-bottom: .55rem; font-family: var(--subhead); font-size: clamp(1.05rem, 4.2vw, 1.35rem); font-weight: 600; line-height: 1.15; text-transform: uppercase; }
.service-card p { margin-bottom: 1.25rem; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.price { margin-top: auto; color: var(--red); font-family: var(--display); font-size: 1.5rem; font-weight: 400; letter-spacing: .06em; }

.section-marquee { position: relative; z-index: 2; width: 100%; overflow: hidden; padding: .9rem 0 .75rem; border-block: 4px solid var(--red-dark); color: var(--ink); background: var(--gold); font-family: var(--display); font-size: 1.35rem; letter-spacing: .08em; white-space: nowrap; }
.marquee-track { width: max-content; display: flex; will-change: transform; }
.marquee-group { min-width: 100vw; display: flex; flex: none; align-items: center; justify-content: space-around; gap: 1.25rem; padding-inline: .75rem; }
.marquee-group span { display: inline-flex; flex: none; align-items: center; gap: 1.25rem; text-transform: uppercase; }
.section-marquee i { color: var(--red-dark); font-style: normal; }

.about h2 em, .contact h2 em { color: var(--gold); }

/* Gallery */
.gallery { background: #eee4cf; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: .75rem; }
.gallery-item { position: relative; width: 100%; height: 100%; padding: 0; border: 0; overflow: hidden; color: var(--white); background: var(--ink); cursor: zoom-in; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%); transition: background-color .3s; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1), filter .4s; }
.gallery-item span { position: absolute; z-index: 1; right: .85rem; bottom: .75rem; left: .85rem; display: flex; justify-content: space-between; align-items: center; font-family: var(--subhead); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-item span i { color: var(--gold); font-family: var(--body); font-size: 1rem; font-style: normal; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-tall { grid-row: span 2; }
.gallery-crop img { object-position: 38% 35%; transform: scale(1.22); }

/* About */
.about { padding-block: 6.5rem; color: var(--cream); background: var(--ink); }
.about-grid { position: relative; }
.about-copy { max-width: 920px; margin-inline: auto; text-align: center; }
.about-copy h2 { margin-bottom: 1.8rem; }
.about-copy > p { color: rgba(244,231,198,.64); }
.about-copy .about-lead { color: var(--cream); font-size: clamp(1.1rem, 4vw, 1.35rem); line-height: 1.55; }
.about-values { display: grid; gap: .6rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(244,231,198,.14); }
.about-values span { font-family: var(--subhead); font-size: .78rem; letter-spacing: .09em; text-align: center; text-transform: uppercase; }

/* Location */
.location { background: var(--cream-soft); }
.location-grid { display: grid; gap: 3rem; }
.location-copy h2 { margin-bottom: 2rem; }
.location-copy address { display: flex; gap: 1rem; margin-bottom: 2rem; }
.location-copy address svg { flex: 0 0 auto; width: 1.6rem; height: 1.6rem; color: var(--red); }
.location-copy address span { color: var(--muted); }
.location-copy address strong { display: block; margin-bottom: .25rem; color: var(--ink); font-family: var(--subhead); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hours-card { margin-bottom: 1.5rem; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.hours-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.hours-heading span { font-family: var(--subhead); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hours-heading small { color: var(--red); font-size: .62rem; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; color: var(--muted); font-size: .8rem; }
.hours-card dt, .hours-card dd { margin: 0; }
.hours-card dd { color: var(--ink); font-weight: 600; }
.map-frame { position: relative; width: 100%; min-width: 0; padding: .6rem; background: var(--ink); box-shadow: var(--shadow); }
#map { width: 100%; min-width: 100%; height: 460px; z-index: 0; background: #e8e2d5; filter: grayscale(1) sepia(.18) contrast(1.08); }
/* Structural Leaflet fallback: keeps tiles correctly layered if CDN CSS is delayed. */
.leaflet-container { position: relative; overflow: hidden; outline: 0; }
.leaflet-pane, .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile-container, .leaflet-pane > svg, .leaflet-pane > canvas, .leaflet-zoom-box { position: absolute; top: 0; left: 0; }
.leaflet-map-pane { z-index: 2; }
.leaflet-tile-pane { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane { z-index: 500; }
.leaflet-marker-pane { z-index: 600; }
.leaflet-tooltip-pane { z-index: 650; }
.leaflet-popup-pane { z-index: 700; }
.leaflet-control { position: relative; z-index: 800; pointer-events: auto; }
.leaflet-top, .leaflet-bottom { position: absolute; z-index: 1000; pointer-events: none; }
.leaflet-top { top: 0; }.leaflet-right { right: 0; }.leaflet-bottom { bottom: 0; }.leaflet-left { left: 0; }
.leaflet-top .leaflet-control { margin-top: 10px; }.leaflet-left .leaflet-control { margin-left: 10px; }.leaflet-right .leaflet-control { margin-right: 10px; }.leaflet-bottom .leaflet-control { margin-bottom: 10px; }
.leaflet-control-zoom a { width: 30px; height: 30px; display: block; color: var(--ink); background: var(--white); font: 700 18px/30px var(--body); text-align: center; text-decoration: none; }
.leaflet-control-zoom a + a { border-top: 1px solid #ccc; }
.leaflet-control-attribution { padding: 2px 6px; color: #333; background: rgba(255,255,255,.8); font-size: 10px; }
.leaflet-control-attribution a { color: #1769aa; }
.leaflet-popup { position: absolute; margin-bottom: 20px; text-align: center; }
.leaflet-popup-content-wrapper { padding: 1px; }
.leaflet-popup-content { margin: 13px 24px 13px 20px; line-height: 1.3; }
.leaflet-popup-tip-container { position: absolute; left: 50%; width: 40px; height: 20px; margin-left: -20px; overflow: hidden; pointer-events: none; }
.leaflet-popup-tip { width: 17px; height: 17px; margin: -10px auto 0; transform: rotate(45deg); }
.leaflet-popup-close-button { position: absolute; z-index: 1; top: 0; right: 0; padding: 4px 4px 0 0; color: #757575; font: 20px/14px Arial, sans-serif; text-decoration: none; }
.map-corner { position: absolute; z-index: 500; right: 1.25rem; bottom: 1.25rem; padding: .85rem 1rem; color: var(--cream); background: var(--red); font-family: var(--subhead); font-size: .68rem; letter-spacing: .08em; line-height: 1; text-transform: uppercase; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.map-corner span { display: block; margin-bottom: .25rem; font-family: var(--display); font-size: 2.4rem; letter-spacing: 0; }
.custom-map-pin { width: 42px; height: 42px; display: grid; place-items: center; border: 3px solid var(--cream); border-radius: 50% 50% 50% 0; color: var(--white); background: var(--red); box-shadow: 0 8px 18px rgba(0,0,0,.25); transform: rotate(-45deg); }
.custom-map-pin span { font-family: var(--display); font-size: 1rem; transform: rotate(45deg); }
.leaflet-popup-content-wrapper { border-radius: 0; font-family: var(--body); }
.leaflet-popup-tip { background: var(--white); }

/* Contact and footer */
.contact { padding-block: 6rem; color: var(--cream); text-align: center; background: var(--red-dark); }
.contact-stripe { position: absolute; inset: 0 0 auto; height: 12px; background: repeating-linear-gradient(45deg, var(--pole-red) 0 12px, var(--pole-white) 12px 24px, var(--pole-blue) 24px 36px, var(--pole-white) 36px 48px); }
.contact-inner { position: relative; }
.contact .eyebrow { text-align: center; }
.contact h2 { margin-bottom: 1.25rem; }
.contact-inner > p:not(.eyebrow) { max-width: 560px; margin: 0 auto 2.2rem; color: rgba(244,231,198,.72); }
.contact-actions { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 1rem; }
.contact-phone { display: grid; padding: .9rem 1rem; color: var(--cream); text-decoration: none; }
.contact-phone small { color: var(--gold); font-family: var(--subhead); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-phone strong { font-family: var(--display); font-size: clamp(2.7rem, 12vw, 4.8rem); font-weight: 400; line-height: 1; letter-spacing: .035em; }
.button-whatsapp { align-self: center; color: var(--ink); background: var(--cream); }
.button-whatsapp:hover { color: var(--white); background: #1d9c53; }
.site-footer { color: var(--cream); background: #0d0d0d; }
.footer-main { display: grid; gap: 2.5rem; align-items: start; padding-block: 3.5rem; }
.footer-brand { align-self: start; }
.footer-block h3 { margin-bottom: .7rem; color: var(--gold); font-family: var(--subhead); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-block p { margin: 0; color: rgba(244,231,198,.62); font-size: .8rem; line-height: 1.8; }
.footer-block > small { color: rgba(244,231,198,.35); font-size: .6rem; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(244,231,198,.2); color: var(--cream); text-decoration: none; font-family: var(--subhead); font-size: .68rem; transition: border-color .25s, background-color .25s; }
.socials a:hover { border-color: var(--red); background: var(--red); }
.socials svg { width: 18px; height: 18px; stroke-width: 1.8; }
.socials .instagram-dot { fill: currentColor; stroke: none; }
.footer-bottom { display: grid; grid-template-columns: 1fr; justify-items: center; gap: .7rem; padding-block: 1.1rem; border-top: 1px solid rgba(244,231,198,.1); color: rgba(244,231,198,.38); font-size: .65rem; letter-spacing: .05em; text-align: center; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.site-credit { display: inline-flex; align-items: center; gap: .5em; color: inherit; opacity: .6; text-decoration: none; letter-spacing: 0; text-transform: none; transition: color .2s, opacity .2s; }
.site-credit strong { font-weight: 600; }
.site-credit svg { width: 14px; height: 14px; flex: 0 0 auto; }
.site-credit:hover { color: var(--gold); opacity: 1; }

/* Lightbox */
.lightbox { width: min(92vw, 960px); max-width: none; padding: 0; border: 1px solid rgba(244,231,198,.25); color: var(--cream); background: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.65); }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #080808; }
.lightbox p { margin: 0; padding: .9rem 1rem; color: rgba(244,231,198,.7); font-family: var(--subhead); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.lightbox-close { position: absolute; z-index: 1; top: .7rem; right: .7rem; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--white); background: rgba(0,0,0,.7); font-size: 1.8rem; line-height: 1; cursor: pointer; }

/* Reveal motion only runs when the visitor has not requested reduced motion. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .brand-pole, .pole { animation: pole 1.2s linear infinite; }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .service-grid .reveal:nth-child(2) { transition-delay: .06s; }
  .service-grid .reveal:nth-child(3) { transition-delay: .12s; }
  .service-grid .reveal:nth-child(4) { transition-delay: .18s; }
  .marquee-track { animation: marquee 22s linear infinite; }
}

@keyframes pole { to { background-position: 0 34px; } }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (hover: hover) {
  .service-card:hover { z-index: 1; color: var(--cream); background: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card:hover .service-icon { color: var(--gold); transform: rotate(-6deg) scale(1.12); }
  .service-card:hover p { color: rgba(244,231,198,.62); }
  .service-card:hover .price { color: var(--cream); }
  .gallery-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
  .gallery-item.gallery-crop:hover img { transform: scale(1.28); }
}

@media (min-width: 680px) {
  .container, .container-wide { width: min(100% - 3rem, 1200px); }
  .section { padding-block: 7.5rem; }
  .hero-content { padding-bottom: 7rem; }
  .hero-title { font-size: clamp(8rem, 21vw, 13rem); }
  .hero-intro { font-size: 1rem; }
  .hero-address { right: 1.5rem; display: block; }
  .section-heading { grid-template-columns: 1.4fr .6fr; align-items: end; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { min-height: 300px; padding: 1.6rem 1.25rem; }
  .service-card p { font-size: .8rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .contact-actions { flex-direction: row; align-items: center; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { grid-template-columns: repeat(3, minmax(0, 1fr)); justify-items: stretch; text-align: left; }
  .footer-bottom > :first-child { justify-self: start; }
  .footer-bottom > :nth-child(2) { justify-self: center; text-align: center; }
  .footer-bottom .site-credit { justify-self: end; text-align: right; }
}

@media (min-width: 1000px) {
  :root { --header-h: 90px; }
  .menu-toggle { display: none; }
  .primary-nav { position: static; display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); padding: 0; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .primary-nav::before { display: none; }
  .primary-nav a { font-family: var(--subhead); font-size: .72rem; font-weight: 500; letter-spacing: .08em; }
  .primary-nav a::after { bottom: -8px; height: 2px; }
  .hero-photo { background-position: center; }
  .hero-wash { background: linear-gradient(90deg, rgba(14,14,14,.97) 0%, rgba(14,14,14,.82) 38%, rgba(14,14,14,.18) 70%, rgba(14,14,14,.35) 100%), linear-gradient(0deg, rgba(20,20,20,.7), transparent 50%); }
  .hero-content { align-items: center; justify-content: space-between; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4.5rem; }
  .location-grid { grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
  .location-copy { padding-block: 1rem; }
  #map { height: 600px; }
  .footer-main { grid-template-columns: repeat(4, max-content); justify-content: space-between; gap: clamp(2rem, 4vw, 4.5rem); }
  .footer-main .footer-block { width: auto; text-align: left; }
  .footer-main .socials { justify-content: flex-start; }
  .footer-main .footer-block:last-child { text-align: right; }
  .footer-main .footer-block:last-child .socials { justify-content: flex-end; }
}

@media (min-width: 1280px) {
  .container-wide { max-width: 1380px; }
  .hero-title { font-size: 13rem; }
  .hero-address { right: calc((100vw - 1380px) / 2); }
}

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