/* =============================================================
   Sharp & Co. - barbershop, Finsbury Park
   Design system: committed dark "ink + bone + rust"
   Tokens in OKLCH. One theme, one accent, one radius logic.
   ============================================================= */

:root {
  /* ---- Surfaces (cool graphite, deliberately not warm espresso) ---- */
  --bg:        oklch(0.165 0.010 256);
  --surface:   oklch(0.205 0.011 256);
  --surface-2: oklch(0.255 0.012 256);
  --line:      oklch(1 0 0 / 0.10);
  --line-strong: oklch(1 0 0 / 0.18);

  /* ---- Text (warm near-white, very low chroma so it never reads cream) ---- */
  --text:      oklch(0.955 0.005 90);
  --text-soft: oklch(0.80 0.008 90);
  --text-mute: oklch(0.66 0.010 90);

  /* ---- Accent: terracotta / rust (the one accent, locked everywhere) ---- */
  --accent:        oklch(0.635 0.135 45);
  --accent-strong: oklch(0.685 0.150 47);
  --accent-ink:    oklch(0.20 0.020 45);   /* dark text used on the rust button */
  --accent-soft:   oklch(0.635 0.135 45 / 0.14);
  --accent-line:   oklch(0.635 0.135 45 / 0.40);

  /* ---- Functional state colours ---- */
  --danger: oklch(0.66 0.185 25);
  --ok:     oklch(0.74 0.130 150);

  /* ---- Type ---- */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* ---- Radius (rule: buttons = pill, everything else = 14px, inputs = 10px) ---- */
  --r-input: 10px;
  --r-card:  14px;
  --r-lg:    22px;
  --r-pill:  999px;

  /* ---- Motion (emil's strong curves; built-in easings are too weak) ---- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-2: cubic-bezier(0.22, 1, 0.36, 1);

  /* ---- Layout ---- */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  /* ---- Semantic z-index scale ---- */
  --z-nav: 100;
  --z-menu: 200;
  --z-grain: 400;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

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

/* ============ TYPE ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.section-lead {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.075rem;
}

/* ============ LAYOUT PRIMITIVES ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 64ch; }

.skip-link {
  position: absolute;
  left: 50%; top: -120px;
  transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  padding: 0.7rem 1.2rem; border-radius: var(--r-pill);
  font-weight: 600; z-index: 999;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* Film grain - fixed, pointer-events none (the only safe place for it) */
.grain {
  position: fixed; inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.975rem;
  letter-spacing: -0.01em;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.16s var(--ease-out),
              background-color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              color 0.2s var(--ease-out);
}
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; padding-block: 1.05rem; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(2px);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); }
  .btn-ghost:hover { border-color: var(--accent-line); background: oklch(1 0 0 / 0.04); }
}
.btn:active { transform: scale(0.97); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  transition: background-color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              backdrop-filter 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.165 0.010 256 / 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 9px;
  font-weight: 800; font-size: 0.95rem; letter-spacing: -0.04em;
}
.brand-name { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text-soft);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.18s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); }
}

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-call {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 500; font-size: 0.95rem; color: var(--text-soft);
  transition: color 0.18s var(--ease-out);
}
.nav-call svg { color: var(--accent); }
@media (hover: hover) and (pointer: fine) { .nav-call:hover { color: var(--text); } }

.nav-toggle { display: none; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: var(--z-menu);
  background: oklch(0.165 0.010 256 / 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem var(--gutter) 2rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-links { display: flex; flex-direction: column; }
.mobile-links a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.mobile-foot { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem; }
.mobile-foot .btn { flex: 1; }
.mobile-call { font-weight: 600; color: var(--accent-strong); }
body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(5rem, 12vh, 7rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  /* CSS scene that renders even if the photo never loads */
  background:
    radial-gradient(120% 90% at 85% 10%, var(--accent-soft) 0%, transparent 45%),
    radial-gradient(130% 120% at 10% 100%, oklch(0.225 0.012 256) 0%, transparent 55%),
    var(--bg);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.42;
  transform: scale(1.06);
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero-img.img-failed { display: none; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.165 0.010 256 / 0.55) 0%, oklch(0.165 0.010 256 / 0.30) 35%, var(--bg) 100%),
    linear-gradient(90deg, oklch(0.165 0.010 256 / 0.85) 0%, transparent 65%);
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}

.hero-inner { position: relative; z-index: 1; max-width: 18ch; }
.hero-title {
  font-size: clamp(3rem, 1.5rem + 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  margin-top: 1.6rem;
  max-width: 44ch;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: var(--text-soft);
}
.hero-cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ SERVICES ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.1rem;
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.7rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: transform 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              background-color 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}
.svc-ico {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-body { flex: 1; }
.svc h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.svc-body p { margin-top: 0.5rem; color: var(--text-soft); font-size: 0.98rem; line-height: 1.55; }
.svc-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
@media (hover: hover) and (pointer: fine) {
  .svc:hover {
    transform: translateY(-6px);
    border-color: var(--accent-line);
    background: var(--surface-2);
    box-shadow: 0 20px 40px -24px oklch(0.10 0.02 45 / 0.9);
  }
}

/* The one highlighted service breaks the identical-grid monotony */
.svc-feature {
  background: linear-gradient(165deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  color: var(--accent-ink);
}
.svc-feature .svc-ico { background: oklch(0.20 0.02 45 / 0.18); color: var(--accent-ink); }
.svc-feature .svc-body p { color: oklch(0.225 0.03 45); }
.svc-feature .svc-price { color: var(--accent-ink); }
.svc-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: oklch(0.20 0.02 45 / 0.20); color: var(--accent-ink);
  padding: 0.3rem 0.6rem; border-radius: var(--r-pill);
}
@media (hover: hover) and (pointer: fine) {
  .svc-feature:hover { box-shadow: 0 24px 50px -22px oklch(0.4 0.13 45 / 0.55); }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  /* gradient shows through if the photo fails */
  background: linear-gradient(150deg, var(--surface-2), var(--accent-soft));
}
.media-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.media-frame img.img-failed { opacity: 0; }

.about-copy .section-title { margin-bottom: 1.4rem; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.1rem; max-width: 60ch; }
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin: 1.9rem 0 2.2rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}
.about-stats dt { color: var(--text-mute); font-size: 0.83rem; letter-spacing: 0.01em; }
.about-stats dd {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.9rem;
  letter-spacing: -0.03em; margin-top: 0.2rem;
}

/* ============ GALLERY ============ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--surface-2), var(--accent-soft));
}
.gal-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-2), filter 0.4s var(--ease-out);
}
.gal-item img.img-failed { opacity: 0; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
@media (hover: hover) and (pointer: fine) {
  .gal-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
}

/* ============ REVIEWS ============ */
.rev-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
.rev-stack { display: grid; gap: 1.1rem; }
.rev {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.8rem;
}
.rev-feature {
  background: var(--surface);
  border-color: var(--accent-line);
  justify-content: center;
  padding: clamp(1.8rem, 3vw, 2.8rem);
}
.stars { display: flex; gap: 0.2rem; margin-bottom: 1.1rem; }
.stars svg { width: 18px; height: 18px; fill: var(--accent); }
.rev p {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  font-size: 1.15rem;
  color: var(--text);
}
.rev-feature p { font-size: clamp(1.3rem, 1rem + 1.3vw, 1.9rem); line-height: 1.32; }
.rev footer { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.5rem; }
.rev-av {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  flex-shrink: 0;
}
.rev cite { font-style: normal; display: flex; flex-direction: column; line-height: 1.3; color: var(--text-mute); font-size: 0.88rem; }
.rev cite strong { font-weight: 600; font-size: 1rem; color: var(--text); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.info-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.info-list li { display: flex; flex-direction: column; gap: 0.3rem; }
.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  font-weight: 600;
}
.info-list a { font-size: 1.1rem; font-weight: 500; transition: color 0.18s var(--ease-out); }
.info-list li a:hover { color: var(--accent-strong); }

.hours { margin-top: 2rem; }
.hours table { width: 100%; max-width: 320px; border-collapse: collapse; margin-top: 0.7rem; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; color: var(--text-soft); }
.hours td { text-align: right; color: var(--text); font-variant-numeric: tabular-nums; }

.map { margin-top: 2rem; }
.map iframe {
  width: 100%; height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  filter: grayscale(0.3) contrast(0.95);
  background: var(--surface);
}
.map-link {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.92rem; font-weight: 600; color: var(--accent-strong);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field .opt { color: var(--text-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a8a29b' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center;
  padding-right: 2.4rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 0.84rem; min-height: 0; display: none; }
.field.invalid .field-error { display: block; }
.form-note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--text-mute); }

.form-success { text-align: center; padding: clamp(1rem, 3vw, 2rem) 0; }
.success-ico {
  display: grid; place-items: center;
  width: 60px; height: 60px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: oklch(0.74 0.13 150 / 0.16); color: var(--ok);
}
.success-ico svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--text-soft); max-width: 40ch; margin: 0 auto 1.5rem; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(80% 120% at 100% 0%, var(--accent-soft) 0%, transparent 40%),
    var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; color: var(--text-soft); max-width: 38ch; font-size: 0.96rem; }
.footer h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mute); margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a, .footer-contact a {
  color: var(--text-soft); font-size: 0.97rem;
  transition: color 0.18s var(--ease-out); width: fit-content;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-strong); }
.footer-contact p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 0.6rem; }
.social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--text-soft);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out),
              background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.social svg { width: 19px; height: 19px; }
@media (hover: hover) and (pointer: fine) {
  .social a:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--text-mute); font-size: 0.86rem;
}

/* =============================================================
   MOTION - reveal-on-scroll. Default state is VISIBLE so
   no-JS and headless renderers never ship a blank section.
   The .js class (set in <head>) opts into the hidden start.
   ============================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .reveal.in-view { opacity: 1; transform: none; }

/* Hero entrance, staggered after load */
.js .reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js body.loaded .reveal-hero { opacity: 1; transform: none; }
.hero-title.reveal-hero { transition-delay: 0.05s; }
.hero-sub.reveal-hero   { transition-delay: 0.18s; }
.hero-cta.reveal-hero   { transition-delay: 0.31s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .rev-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-call { display: none; }
  .nav-book { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 10px;
    background: transparent; border: 1px solid var(--line-strong); border-radius: 10px;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px;
    transition: transform 0.28s var(--ease-out), opacity 0.2s var(--ease-out); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .hero-inner { max-width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-wide, .gal-tall { grid-column: auto; grid-row: auto; }
  .about-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  body.menu-open { overflow: hidden; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-img { animation: none; transform: scale(1.04); }
  .gal-item img, .svc, .btn, .social a, .nav-links a::after { transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
