/* ═══════════════════════════════════════════════════════════════════════════
   BLOKES — Traditional Barbershop
   Palette: charcoal black · warm cream · brass gold · barber red accent
   To use your own photos, replace the --img-* URLs below.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --black:   #0e0d0b;
  --ink:     #16140f;
  --panel:   #1c1916;
  --line:    #2c2823;
  --cream:   #f3ece0;
  --muted:   #b3a896;
  --gold:    #c8a24b;
  --gold-2:  #e3c478;
  --red:     #9b2d20;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Imagery — swap these URLs for your own shop photos. A gradient sits behind
     each one, so the design still looks intentional if an image fails to load. */
  --img-hero:    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1800&q=80');
  --img-about:   url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1200&q=80');
  --img-reviews: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1800&q=80');
  --img-g1: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=900&q=80');
  --img-g2: url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=900&q=80');
  --img-g3: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?auto=format&fit=crop&w=900&q=80');
  --img-g4: url('https://images.unsplash.com/photo-1599351431613-18ef1fdd27e1?auto=format&fit=crop&w=1200&q=80');
  --img-g5: url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?auto=format&fit=crop&w=900&q=80');
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.05; letter-spacing: .5px; }
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); max-width: var(--maxw); margin: 0 auto; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem,5vw,3.5rem); }
.section__head h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); text-transform: uppercase; }
.section__lead { color: var(--muted); margin-top: 1rem; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .9rem;
  padding: .95rem 2rem; border-radius: 2px; cursor: pointer; border: none;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a160c; box-shadow: 0 8px 24px rgba(200,162,75,.25); }
.btn--gold:hover { box-shadow: 0 12px 30px rgba(200,162,75,.4); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(243,236,224,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.is-scrolled { background: rgba(14,13,11,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.1rem clamp(1.2rem,5vw,4rem); display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__name { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 4px; color: var(--cream); }
.brand__pole {
  width: 10px; height: 30px; border-radius: 6px; display: inline-block;
  background: repeating-linear-gradient(45deg, #fff 0 6px, var(--red) 6px 12px, #1f4f86 12px 18px);
  box-shadow: 0 0 0 2px rgba(255,255,255,.15);
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem; color: var(--cream); transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__phone { opacity: .8; }
.nav__cta { padding: .6rem 1.4rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -12% 0; z-index: 0;
  background: linear-gradient(160deg, #2a2620, #100f0c), var(--img-hero);
  background-size: cover; background-position: center;
  background-blend-mode: multiply;
  will-change: transform;
}
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 90% at 50% 30%, rgba(14,13,11,.35), rgba(14,13,11,.92)); }
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__content { position: relative; z-index: 3; padding: 0 1.2rem; max-width: 860px; }
.hero__eyebrow { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 6px; font-size: .8rem; color: var(--gold); margin-bottom: 1rem; }
.hero__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem, 22vw, 13rem); letter-spacing: 8px; line-height: .9; text-shadow: 0 12px 50px rgba(0,0,0,.6); }
.hero__sub { color: #ddd2c2; font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 540px; margin: 1rem auto 2.2rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(243,236,224,.5); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,14px)} }

/* ── Marquee ───────────────────────────────────────────────────────────────── */
.marquee { background: var(--gold); color: #15120a; overflow: hidden; border-top: 1px solid rgba(0,0,0,.2); border-bottom: 1px solid rgba(0,0,0,.2); }
.marquee__track { display: flex; gap: 2rem; align-items: center; white-space: nowrap; padding: .85rem 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 3px; }
.marquee .dot { color: rgba(0,0,0,.5); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── About ─────────────────────────────────────────────────────────────────── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.about__media { position: relative; }
.about__img { aspect-ratio: 4/5; border-radius: 4px; background: linear-gradient(160deg,#2a2620,#100f0c), var(--img-about); background-size: cover; background-position: center; background-blend-mode: multiply; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.about__badge { position: absolute; bottom: -22px; right: -10px; background: var(--gold); color: #15120a; padding: 1rem 1.4rem; border-radius: 3px; text-align: center; box-shadow: 0 14px 30px rgba(0,0,0,.4); }
.about__badge-num { display: block; font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 2px; font-size: .7rem; }
.about__badge-big { display: block; font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: 2px; }
.about__text h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; margin-bottom: 1.3rem; }
.about__text p { color: var(--muted); margin-bottom: 1.1rem; }
.about__points { display: flex; gap: 2rem; margin: 1.8rem 0; }
.about__points strong { display: block; font-family: 'Bebas Neue'; font-size: 1.8rem; color: var(--gold); letter-spacing: 1px; }
.about__points span { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; }

/* ── Services ──────────────────────────────────────────────────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.2rem; }
.svc-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 1.6rem;
  display: flex; flex-direction: column; gap: .5rem; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.svc-card::after { content:''; position:absolute; left:0; top:0; height:100%; width:3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.svc-card:hover { transform: translateY(-4px); border-color: var(--gold); background: #221e19; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.svc-card__name { font-family: 'Oswald'; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .5px; }
.svc-card__price { font-family: 'Bebas Neue'; font-size: 1.8rem; color: var(--gold); letter-spacing: 1px; }
.svc-card__desc { color: var(--muted); font-size: .92rem; }
.svc-card__meta { margin-top: auto; padding-top: 1rem; display: flex; justify-content: space-between; align-items: center; }
.svc-card__dur { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
.svc-card__book { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; color: var(--gold); }

/* ── Gallery ───────────────────────────────────────────────────────────────── */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__item { overflow: hidden; border-radius: 4px; position: relative; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__ph { position: absolute; inset: -10% 0; background-size: cover; background-position: center; background-blend-mode: multiply; background-color: #2a2620; transition: transform .6s var(--ease); will-change: transform; }
.gallery__item:hover .gallery__ph { transform: scale(1.05); }
.gallery__item[data-img="1"] .gallery__ph { background-image: linear-gradient(160deg,rgba(42,38,32,.2),rgba(16,15,12,.5)), var(--img-g1); }
.gallery__item[data-img="2"] .gallery__ph { background-image: linear-gradient(160deg,rgba(42,38,32,.2),rgba(16,15,12,.5)), var(--img-g2); }
.gallery__item[data-img="3"] .gallery__ph { background-image: linear-gradient(160deg,rgba(42,38,32,.2),rgba(16,15,12,.5)), var(--img-g3); }
.gallery__item[data-img="4"] .gallery__ph { background-image: linear-gradient(160deg,rgba(42,38,32,.2),rgba(16,15,12,.5)), var(--img-g4); }
.gallery__item[data-img="5"] .gallery__ph { background-image: linear-gradient(160deg,rgba(42,38,32,.2),rgba(16,15,12,.5)), var(--img-g5); }

/* ── Reviews ───────────────────────────────────────────────────────────────── */
.reviews { position: relative; max-width: none; padding-left: 0; padding-right: 0; }
.reviews__bg { position: absolute; inset: -10% 0; background: linear-gradient(#100f0c,#100f0c), var(--img-reviews); background-size: cover; background-position: center; background-blend-mode: saturation; opacity: .25; will-change: transform; }
.reviews__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--black), rgba(14,13,11,.85), var(--black)); }
.reviews__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,4rem); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem; }
.review { background: rgba(28,25,22,.7); border: 1px solid var(--line); border-radius: 4px; padding: 1.8rem; backdrop-filter: blur(4px); }
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: .8rem; }
.review blockquote { font-size: 1.05rem; line-height: 1.6; }
.review figcaption { margin-top: 1rem; color: var(--muted); font-family: 'Oswald'; letter-spacing: 1px; text-transform: uppercase; font-size: .8rem; }

/* ── Visit ─────────────────────────────────────────────────────────────────── */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,4rem); align-items: stretch; }
.visit__info h2 { font-size: clamp(2rem,5vw,3.2rem); text-transform: uppercase; margin-bottom: 1.2rem; }
.visit__info h3 { text-transform: uppercase; letter-spacing: 2px; font-size: 1.1rem; margin: 1.8rem 0 .8rem; color: var(--gold); }
.visit__addr { font-size: 1.2rem; line-height: 1.7; }
.visit__phone { font-family: 'Bebas Neue'; font-size: 2rem; letter-spacing: 2px; color: var(--gold); }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.8rem; }
.hours td { padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours td:first-child { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; }
.hours td:last-child { text-align: right; font-family: 'Oswald'; }
.hours tr.is-today td { color: var(--gold); }
.visit__map { min-height: 360px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.4) contrast(1.05); }

/* ── Booking ───────────────────────────────────────────────────────────────── */
.booking { max-width: 880px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.4rem,4vw,2.6rem); }
.booking__steps { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; counter-reset: s; margin-bottom: 2rem; }
.booking__steps li { flex: 1; min-width: 110px; text-align: center; font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; color: var(--muted); padding-bottom: .7rem; border-bottom: 2px solid var(--line); counter-increment: s; transition: color .3s, border-color .3s; }
.booking__steps li::before { content: counter(s); display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1px solid currentColor; margin-right: .5rem; font-size: .72rem; vertical-align: middle; }
.booking__steps li.is-active, .booking__steps li.is-done { color: var(--gold); border-color: var(--gold); }

.booking__panel { display: none; animation: fade .4s var(--ease); }
.booking__panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.booking__choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .9rem; }
.bk-svc { text-align: left; background: var(--ink); border: 1px solid var(--line); border-radius: 4px; padding: 1.1rem 1.2rem; cursor: pointer; transition: border-color .25s, transform .25s, background .25s; color: var(--cream); }
.bk-svc:hover { border-color: var(--gold); transform: translateY(-3px); }
.bk-svc.is-sel { border-color: var(--gold); background: #241f18; }
.bk-svc__top { display: flex; justify-content: space-between; align-items: baseline; }
.bk-svc__name { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: .5px; font-size: 1.05rem; }
.bk-svc__price { font-family: 'Bebas Neue'; font-size: 1.5rem; color: var(--gold); }
.bk-svc__meta { color: var(--muted); font-size: .82rem; margin-top: .3rem; }

.booking__choices--chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.bk-chip { background: var(--ink); border: 1px solid var(--line); color: var(--cream); border-radius: 40px; padding: .7rem 1.4rem; cursor: pointer; font-family: 'Oswald'; letter-spacing: 1px; text-transform: uppercase; font-size: .85rem; transition: .25s; }
.bk-chip:hover { border-color: var(--gold); }
.bk-chip.is-sel { background: var(--gold); color: #15120a; border-color: var(--gold); }

.booking__label { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; color: var(--muted); margin: 1.2rem 0 .7rem; }
.booking__dates { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .6rem; scrollbar-width: thin; }
.bk-date { flex: 0 0 auto; min-width: 64px; text-align: center; background: var(--ink); border: 1px solid var(--line); border-radius: 6px; padding: .6rem .4rem; cursor: pointer; transition: .25s; }
.bk-date:hover { border-color: var(--gold); }
.bk-date.is-sel { background: var(--gold); color: #15120a; border-color: var(--gold); }
.bk-date__dow { font-family: 'Oswald'; text-transform: uppercase; font-size: .7rem; letter-spacing: 1px; }
.bk-date__day { font-family: 'Bebas Neue'; font-size: 1.5rem; line-height: 1; }
.bk-date__mon { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }

.booking__slots { display: flex; flex-wrap: wrap; gap: .5rem; min-height: 44px; }
.bk-slot { background: var(--ink); border: 1px solid var(--line); color: var(--cream); border-radius: 4px; padding: .55rem 1rem; cursor: pointer; font-family: 'Oswald'; letter-spacing: 1px; transition: .2s; }
.bk-slot:hover { border-color: var(--gold); }
.bk-slot.is-sel { background: var(--gold); color: #15120a; border-color: var(--gold); }
.booking__hint { color: var(--muted); font-size: .9rem; }

.booking__summary { background: var(--ink); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 4px; padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; }
.booking__summary b { color: var(--gold); }
.booking__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; color: var(--muted); }
.field input, .field textarea { background: var(--ink); border: 1px solid var(--line); border-radius: 4px; padding: .8rem 1rem; color: var(--cream); font-family: inherit; font-size: 1rem; transition: border-color .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.booking__nav { display: flex; gap: 1rem; justify-content: space-between; align-items: center; margin-top: .6rem; }
.booking__error { grid-column: 1/-1; color: #f0a8a0; min-height: 1.2em; font-size: .9rem; }

.booking__success { text-align: center; padding: 1.5rem 0; }
.booking__success.is-active { display: block; }
.booking__tick { width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold); color: #15120a; font-size: 2.2rem; display: grid; place-items: center; }
.booking__success h3 { font-size: 1.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
#bk-confirm { display: inline-block; text-align: left; background: var(--ink); border: 1px solid var(--line); border-radius: 4px; padding: 1.1rem 1.4rem; margin-bottom: 1.2rem; }
#bk-confirm .ref { font-family: 'Bebas Neue'; font-size: 1.6rem; letter-spacing: 2px; color: var(--gold); }
.is-loading { opacity: .6; pointer-events: none; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 3.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,5vw,4rem) 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand .brand__name { font-size: 2.4rem; }
.footer__brand p, .footer__col p { color: var(--muted); font-size: .92rem; margin-top: .6rem; }
.footer__col h4 { text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; color: var(--gold); }
.footer__col a:hover { color: var(--gold); }
.footer__bar { border-top: 1px solid var(--line); padding: 1.3rem clamp(1.2rem,5vw,4rem); display: flex; justify-content: space-between; align-items: center; max-width: var(--maxw); margin: 0 auto; color: var(--muted); font-size: .82rem; flex-wrap: wrap; gap: .6rem; }
.footer__bar a:hover { color: var(--gold); }

/* ── Reveal animation base ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .about, .visit { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .booking__form { grid-template-columns: 1fr; }

  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(14,13,11,.98); backdrop-filter: blur(12px); padding: 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease); border-left: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .about__points { flex-wrap: wrap; gap: 1.2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
