/* =========================================================
   Elias Barber — dark-first barbershop site
   Palette: near-black + warm gold  ·  Cormorant / Montserrat
   ========================================================= */

:root {
  /* Color */
  --bg: #0B0A09;
  --bg-alt: #100E0D;
  --surface: #161311;
  --card: #1A1715;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --fg: #F6F3EF;
  --muted: #A8A29E;
  --accent: #D8AE4E;
  --accent-soft: rgba(216, 174, 78, 0.14);
  --accent-press: #C29A3C;
  --on-accent: #14110E;
  --danger: #F0837A;

  /* Type */
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Ett display-värde i en regel nedan skulle annars köra över hidden-attributet */
[hidden] { display: none !important; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: 1.4rem; }

h1 em {
  font-style: italic;
  color: var(--accent);
}

p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) 0;
  font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  color: inherit;
  transition: transform 160ms var(--ease-out),
              background-color 200ms ease,
              border-color 200ms ease,
              color 200ms ease;
}

.btn:active { transform: scale(0.97); }

.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--fg);
}

.btn-ghost { color: var(--muted); }

.btn-lg {
  min-height: 54px;
  padding: 16px 30px;
  font-size: 0.95rem;
}

.btn-block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: #E6BC5C; }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .btn-ghost:hover { color: var(--fg); }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: auto;
}
.link-arrow svg {
  width: 16px; height: 16px;
  transition: transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover svg { transform: translateX(4px); }
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}

/* Läsbarhet för logotyp och meny över ljusa partier i hero-bilden */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 -40px 0;
  background: linear-gradient(to bottom, rgba(11, 10, 9, 0.78), transparent);
  pointer-events: none;
  transition: opacity 300ms ease;
}

.site-header[data-scrolled='true']::before { opacity: 0; }

.header-inner { position: relative; }

.site-header[data-scrolled='true'] {
  background: rgba(11, 10, 9, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--accent);
}
.brand-mark svg { width: 19px; height: 19px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: var(--space-3);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.nav a {
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 200ms ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after { transform: scaleX(1); }
}

.header-actions { display: flex; align-items: center; gap: var(--space-1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  margin-inline: auto;
  background: var(--fg);
  transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

.menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-2) var(--space-3) var(--space-3);
  background: rgba(11, 10, 9, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav .mobile-cta {
  margin-top: var(--space-2);
  border: 0;
  text-align: center;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 108px;
  padding-bottom: var(--space-2);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: heroDrift 22s var(--ease-in-out) infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.1) translate3d(0, -1.4%, 0); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,10,9,0.97) 4%, rgba(11,10,9,0.72) 34%, rgba(11,10,9,0.30) 62%, rgba(11,10,9,0.62) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(11,10,9,0.85), transparent 60%);
}

.hero-content {
  position: relative;
  padding-bottom: var(--space-3);
}

.hero-content h1 { margin: var(--space-2) 0 var(--space-2); }

.hero-lead {
  max-width: 46ch;
  color: #DCD6CE;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-3);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-proof strong { color: var(--fg); font-weight: 600; }

.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.stars.small svg { width: 14px; height: 14px; }

.hero-status {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-status a {
  margin-left: auto;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-status a:hover { border-bottom-color: var(--accent); }
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
  flex: none;
}
.dot[data-open='true'] {
  background: #6FCF8B;
  box-shadow: 0 0 0 4px rgba(111, 207, 139, 0.16);
}
.dot[data-open='false'] { background: #E0806F; }

/* ---------- Sections ---------- */

.section { padding: var(--space-6) 0; }

.section-head { max-width: 62ch; margin-bottom: var(--space-5); }
.section-head h2 { margin: var(--space-2) 0 var(--space-2); }

.section-lead { color: var(--muted); font-size: 1.02rem; }

/* ---------- Services ---------- */

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* 6 tjänster = 3 x 2 på desktop, inga tomma rutor */
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--space-4) var(--space-3);
  background: var(--bg-alt);
  transition: background-color 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service:hover { background: var(--surface); }
  .service:hover .service-icon { color: var(--accent); border-color: var(--accent); }
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  transition: color 260ms ease, border-color 260ms ease;
}
.service-icon svg { width: 21px; height: 21px; }

.service p { color: var(--muted); font-size: 0.94rem; }

.service-cta { background: var(--accent-soft); }
.service-cta h3 { color: var(--fg); }
.service-cta p { color: #D9CFBB; }

.services-note {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Gallery ---------- */

.section-gallery { background: var(--bg-alt); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.shot { margin: 0; }
.shot-lg { grid-column: 1 / -1; }

.shot-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.shot-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.shot-lg .shot-btn img { aspect-ratio: 21 / 9; }

@media (hover: hover) and (pointer: fine) {
  .shot-btn:hover img { transform: scale(1.035); filter: brightness(1.06); }
}

.shot figcaption {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- Reviews ---------- */

.reviews {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2);
  align-items: start;
}

.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.35;
}

.review cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--fg);
  margin-top: auto;
}
.review cite span { color: var(--muted); }

/* ---------- Booking ---------- */

.section-book { background: var(--bg-alt); }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.book-intro h2 { margin: var(--space-2) 0; }

.book-methods {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 160ms var(--ease-out), border-color 220ms ease, background-color 220ms ease;
}
.method:active { transform: scale(0.985); }

@media (hover: hover) and (pointer: fine) {
  .method:hover { border-color: var(--border-strong); background: var(--card); }
}

.method-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.method-icon svg { width: 19px; height: 19px; }

.method-text { display: flex; flex-direction: column; }
.method-text strong { font-weight: 500; font-size: 0.98rem; }
.method-text span { font-size: 0.82rem; color: var(--muted); }

.book-card {
  position: relative;
  padding: var(--space-4);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.book-card h3 { font-size: 1.6rem; }

.form-hint {
  margin: 10px 0 var(--space-3);
  font-size: 0.86rem;
  color: var(--muted);
}

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--space-2); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.optional { text-transform: none; letter-spacing: 0; }

input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 200ms ease, background-color 200ms ease;
}

textarea { resize: vertical; min-height: 88px; }

input::placeholder, textarea::placeholder { color: #6F6963; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #1E1A17;
}

input[aria-invalid='true'], select[aria-invalid='true'] { border-color: var(--danger); }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='1.6'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.error {
  font-size: 0.78rem;
  color: var(--danger);
  transition: opacity 200ms ease;
}

#submitBtn { margin-top: var(--space-2); }

.form-foot {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
}

.form-success { text-align: center; padding: var(--space-2) 0; }

.success-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.success-icon svg { width: 26px; height: 26px; }

.form-success p { color: var(--muted); margin-top: 10px; }

.success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

/* ---------- Find us ---------- */

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.find-grid h2 { margin: var(--space-2) 0; }

.facts {
  margin: var(--space-4) 0 var(--space-3);
  display: grid;
  gap: 14px;
}
.facts div { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.facts dt {
  min-width: 90px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}
.facts dd { margin: 0; }
.facts a { border-bottom: 1px solid var(--border-strong); transition: border-color 200ms ease; }
@media (hover: hover) and (pointer: fine) {
  .facts a:hover { border-bottom-color: var(--accent); color: var(--accent); }
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours caption {
  text-align: left;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
}

.hours th, .hours td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 300;
}
.hours td { text-align: right; color: var(--muted); }
.hours tr[data-today='true'] th,
.hours tr[data-today='true'] td { color: var(--accent); }

.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: invert(1) hue-rotate(180deg) saturate(0.55) brightness(0.92) contrast(1.05);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-4);
}

.footer-brand p {
  margin-top: 12px;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-nav a, .footer-contact a { color: var(--muted); transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover, .footer-contact a:hover { color: var(--fg); }
}

.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 200ms ease, color 200ms ease;
}
.socials svg { width: 17px; height: 17px; }
@media (hover: hover) and (pointer: fine) {
  .socials a:hover { border-color: var(--accent); color: var(--accent); }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: var(--space-3);
  background: rgba(6, 5, 5, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lightbox[data-open='true'] { opacity: 1; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86svh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.lightbox[data-open='true'] img { transform: scale(1); opacity: 1; }

.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(20, 17, 15, 0.7);
  color: var(--fg);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 200ms ease;
}
.lightbox-close:active { transform: scale(0.94); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */

.reveal,
.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.reveal.is-in,
.stagger > .is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .book-grid, .find-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .map-card iframe { height: 320px; }
}

@media (max-width: 860px) {
  .nav, .btn-phone { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { height: 66px; }
  .section { padding: var(--space-5) 0; }
  .hero { padding-top: 100px; }
  .gallery { grid-template-columns: 1fr; }
  .shot-btn img, .shot-lg .shot-btn img { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
  .header-actions .btn-primary { padding: 10px 16px; }
  .hero-actions .btn { width: 100%; }
  .book-card { padding: var(--space-3); }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-3); }
  .review blockquote { font-size: 1.15rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-media img { animation: none; transform: scale(1.02); }

  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }

  .shot-btn img,
  .lightbox img,
  .btn,
  .method { transition-duration: 1ms; }

  .lightbox img { transform: none; }
}
