/* ============================================================
   STANDRD — The New Standard · Barber, Royal Leamington Spa
   Monochrome editorial system with restrained brass accent.
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-2: #101013;
  --panel: #141418;
  --ink: #f4f2ed;
  --muted: #a8a49c;
  --line: rgba(244, 242, 237, 0.16);
  --line-soft: rgba(244, 242, 237, 0.08);
  --accent: #c9a96a;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-lock { overflow: hidden; }

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

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

a { color: var(--ink); text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 1001;
  background: var(--ink); color: var(--bg);
  padding: 0.6em 1.2em; border-radius: 4px;
  font-size: 0.85rem; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

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

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 3rem); }

/* ---------- Type ---------- */

.kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.section-sub { color: var(--muted); margin-top: 1.1rem; max-width: 46ch; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
  will-change: transform;
}

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--bg); }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--line-soft); }

.btn-big { font-size: 0.88rem; padding: 1.25em 2.6em; }

/* ---------- Intro overlay ---------- */

.intro {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: clip-path 0.85s var(--ease);
  clip-path: inset(0 0 0 0);
}
.intro.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.intro.gone, html.no-intro .intro { display: none; }

.intro-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  letter-spacing: 0.38em;
  margin-right: -0.38em; /* optical centering of tracked caps */
  animation: word-track 1.4s var(--ease) both;
}
.intro-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: letter-in 0.9s var(--ease) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.07s);
}
@keyframes letter-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes word-track {
  from { letter-spacing: 0.6em; }
  to { letter-spacing: 0.38em; }
}

.intro-lockup {
  display: flex; align-items: center; justify-content: center;
  gap: 1em;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 1.6vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--muted);
  opacity: 0;
  animation: fade-in 0.8s ease forwards 0.85s;
}
.intro-lockup::before,
.intro-lockup::after {
  content: "";
  height: 1px;
  background: var(--line);
  width: 0;
  animation: rule-grow 0.9s var(--ease) forwards 0.9s;
}
@keyframes rule-grow { to { width: clamp(2rem, 8vw, 5rem); } }
@keyframes fade-in { to { opacity: 1; } }

/* ---------- Nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 4.6rem;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.36em;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a:not(.btn) {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.btn-nav { padding: 0.85em 1.7em; }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  position: relative; z-index: 950;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px;
  height: 2px; background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 26px; }
.nav-toggle.open span:first-child { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:last-child { top: 22px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(11, 11, 12, 0.97);
    flex-direction: column; justify-content: center;
    gap: 2.4rem;
    font-size: 1.4rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1.5rem; color: var(--ink); }
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background:
    radial-gradient(90rem 50rem at 85% -20%, rgba(201, 169, 106, 0.07), transparent 55%),
    radial-gradient(60rem 40rem at -10% 110%, rgba(244, 242, 237, 0.04), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-inner {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-title { margin: 0 0 1.6rem; }

.hero-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  line-height: 1.05;
}

.hero-lockup {
  display: flex; align-items: center;
  gap: 1em;
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.3vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--muted);
}
.hero-lockup::before,
.hero-lockup::after {
  content: "";
  height: 1px; background: var(--line);
  width: clamp(2rem, 5vw, 4rem);
}

.hero-sub {
  color: var(--muted);
  max-width: 44ch;
  font-size: 1.06rem;
  margin-bottom: 1.6rem;
}

.rating-chip {
  display: inline-flex; align-items: center; gap: 0.7em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55em 1.2em;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.rating-chip strong { color: var(--ink); font-weight: 600; }

.stars { color: var(--accent); letter-spacing: 0.18em; font-size: 0.85em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-note {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Portrait video card */

.hero-media { position: relative; }

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  transform: rotate(1.75deg);
  transition: transform 0.7s var(--ease);
}
.hero-media:hover .reel { transform: rotate(0deg) scale(1.015); }

.reel video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(11, 11, 12, 0.25), transparent 40%);
  pointer-events: none;
}

.spin-badge {
  position: absolute;
  left: -1.5rem; bottom: -1.5rem;
  width: 120px; height: 120px;
  display: grid; place-items: center;
}
.spin-badge svg {
  position: absolute; inset: 0;
  animation: spin 16s linear infinite;
  fill: var(--muted);
}
.spin-badge text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.spin-badge-center {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 8rem;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .reel { margin: 0 auto; max-width: 320px; }
  .spin-badge { left: auto; right: -0.5rem; }
}

@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .kicker { letter-spacing: 0.28em; font-size: 0.68rem; }
  .section { padding: 4.25rem 0; }
  .hero-sub { font-size: 1rem; }
  .menu-note { padding: 1.4rem 1.5rem; }
  .menu-note .btn { width: 100%; }
}

@media (max-width: 760px) {
  /* the reel becomes the hero background film */
  .hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    align-items: flex-end;   /* copy sits low, video breathes up top */
  }
  .hero-media { position: absolute; inset: 0; z-index: 0; }
  .reel {
    max-width: none; width: 100%; height: 100%;
    aspect-ratio: auto;
    border-radius: 0; border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
  }
  .hero-media:hover .reel { transform: none; }
  .reel video {
    object-position: center 28%;  /* keeps the cut in frame, not ceiling tiles */
    filter: saturate(0.85) contrast(1.06);
  }
  /* scrim: light at the top so the film reads, deep behind the copy */
  .reel::after {
    background:
      linear-gradient(to bottom,
        rgba(11, 11, 12, 0.30) 0%,
        rgba(11, 11, 12, 0.38) 26%,
        rgba(11, 11, 12, 0.78) 58%,
        rgba(11, 11, 12, 0.95) 82%,
        var(--bg) 100%);
  }
  .spin-badge { display: none; }
  .hero-copy { position: relative; z-index: 1; }
  .hero-fade { display: none; } /* the scrim already lands on the page bg */

  /* logo leads on mobile — the strapline paragraph would fight the film.
     The same copy stays visible below in "A cut above the rest of Leamington Spa".
     Scoped to .hero so the About page's subtitle is untouched. */
  .hero .hero-sub { display: none; }
  .hero-wordmark {
    font-size: clamp(2.6rem, 12.6vw, 4.6rem);
    letter-spacing: 0.22em;
    margin-right: -0.22em;
  }
  /* brighter over the film, which is lighter than flat page bg */
  .hero-lockup { margin-top: 1.4rem; margin-bottom: 0.4rem; color: var(--ink); }
  .hero-lockup::before, .hero-lockup::after { background: rgba(244, 242, 237, 0.4); }
  .hero-note { color: var(--ink); opacity: 0.85; }
  .rating-chip { margin-top: 1.9rem; margin-bottom: 1.7rem; }
}

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 1.15rem 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
.marquee-track i { color: var(--accent); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- The Standard ---------- */

.standard-copy p { color: var(--muted); margin-bottom: 1.2rem; max-width: 56ch; }
.standard-copy a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  transition: color 0.3s;
}
.standard-copy a:hover { color: var(--accent); }

.stat-row {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  list-style: none;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-row span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.services { background: var(--bg-2); }

.menu {
  display: grid;
  gap: clamp(2.2rem, 5vw, 3.2rem);
}

.menu-group-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.menu-row {
  display: flex; align-items: baseline; gap: 1.1rem;
  list-style: none;
  padding: 1.05rem 0.9rem;
  margin: 0 -0.9rem;
  border-top: 1px solid var(--line-soft);
  border-radius: 10px;
  transition: background 0.35s ease;
  position: relative;
}
.menu-group ul li:last-child { border-bottom: 1px solid var(--line-soft); }
.menu-row:hover { background: rgba(244, 242, 237, 0.035); }

.menu-name { display: flex; align-items: baseline; gap: 0.9em; min-width: 0; }
.menu-name span { font-weight: 500; font-size: 1.02rem; }
.menu-name small {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 169, 106, 0.35);
  padding: 0.15em 0.6em;
  border-radius: 999px;
  margin-left: 0.6em;
  white-space: nowrap;
}
.menu-name em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-0.3em); }

.menu-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
}

.menu-book {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  white-space: nowrap;
}
.menu-row:hover .menu-book,
.menu-book:focus-visible { opacity: 1; transform: translateX(0); }

/* the whole row is tappable — the link stretches over it */
.menu-book::after { content: ""; position: absolute; inset: 0; }
.menu-row { -webkit-tap-highlight-color: transparent; }
.menu-row:active { background: rgba(244, 242, 237, 0.06); }

.menu-note {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.6rem 2rem;
  background: rgba(244, 242, 237, 0.02);
}
.menu-note p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 640px) {
  .menu-name { flex-direction: column; gap: 0.25em; }
  .menu-name small { margin-left: 0; }
  /* keep the stretched link alive, hide its visual text */
  .menu-book { font-size: 0; opacity: 0; transform: none; }
}

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

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: 4rem;
}
.gallery .tile:nth-child(even) { transform: translateY(4rem); }
.gallery .tile:nth-child(even).in-view { transform: translateY(4rem); }

.tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 5;
  background: var(--panel);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s ease;
  filter: saturate(0.92);
}
.tile:hover img { transform: scale(1.055); filter: saturate(1); }

.tile figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
}
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(11, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.55em 1.1em;
}

.tile-ig {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  margin-top: 4rem; /* clears the offset of the staggered column */
  padding: 3.5rem 2rem;
  display: grid; place-items: center;
  text-align: center;
  background:
    radial-gradient(28rem 28rem at 50% 120%, rgba(201, 169, 106, 0.12), transparent 60%),
    var(--panel);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.tile-ig:hover { border-color: var(--line); }
.tile-ig-mark {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.tile-ig-cta {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
  transition: color 0.3s;
}
.tile-ig:hover .tile-ig-cta { color: var(--ink); }

@media (max-width: 640px) {
  /* swipeable snap carousel, edge-to-edge */
  .gallery {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0 1.5rem 1.25rem;
    margin: 0 -1.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .tile:nth-child(even),
  .gallery .tile:nth-child(even).in-view { transform: none; }
  .tile { flex: 0 0 80%; scroll-snap-align: center; }
  .tile-ig { flex: 0 0 72%; margin-top: 0; aspect-ratio: 4 / 5; padding: 2rem 1.5rem; }
}

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

.reviews {
  background:
    radial-gradient(70rem 40rem at 50% 0%, rgba(201, 169, 106, 0.06), transparent 60%),
    var(--bg-2);
  text-align: center;
}
.reviews-inner { display: flex; flex-direction: column; align-items: center; }

.reviews-score { display: flex; align-items: center; gap: 1.6rem; margin: 0.5rem 0 1rem; }
.reviews-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
}
.stars-big { font-size: clamp(1.1rem, 3vw, 1.7rem); }

.reviews-count { color: var(--muted); margin-bottom: 2.2rem; }
.reviews-count strong { color: var(--ink); }

.reviews-quote { max-width: 34ch; margin-bottom: 2.4rem; }
.reviews-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}
.reviews-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- About teaser ---------- */

.about-grid { align-items: center; }

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  max-width: 420px;
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11, 11, 12, 0.55), transparent 45%);
}
.about-photo img { width: 100%; height: auto; }

.about-copy p { color: var(--muted); max-width: 46ch; margin: 1.4rem 0 2rem; }

@media (max-width: 860px) {
  .about-photo { margin-inline: auto; }
  .about-copy { text-align: center; }
  .about-copy p { margin-inline: auto; }
}

/* ---------- Visit ---------- */

.open-status {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.open-status .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 0.6em;
  vertical-align: 1px;
}
.open-status .dot.open { background: #6fce7e; box-shadow: 0 0 12px rgba(111, 206, 126, 0.7); }
.open-status .dot.closed { background: #d76a5b; }

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.visit-info address {
  font-style: normal;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.visit-info address strong {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.22em;
}

.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.8rem; }
.hours th, .hours td {
  text-align: left;
  padding: 0.55rem 0;
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.today th, .hours tr.today td { color: var(--ink); font-weight: 500; }
.hours tr.today th::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.7em;
  vertical-align: 1px;
}

.amenities {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.amenities li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.45em 1em;
}

.visit-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.visit-map {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.visit-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) invert(0.88) contrast(0.92) brightness(0.92);
  transition: transform 0.9s var(--ease);
}
.visit-map:hover img { transform: scale(1.025); }

.map-pin {
  position: absolute;
  left: 58%; top: 42.2%;
  transform: translate(-50%, -50%);
}
.map-pin-dot {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 169, 106, 0.25);
  animation: pin-pulse 2.4s ease-in-out infinite;
  margin-inline: auto;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201, 169, 106, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(201, 169, 106, 0.1); }
}
.map-pin-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(11, 11, 12, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.5em 1em;
}
.map-open {
  position: absolute;
  right: 1rem; bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(11, 11, 12, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.6em 1.2em;
  transition: background 0.3s ease, color 0.3s ease;
}
.visit-map:hover .map-open { background: var(--ink); color: var(--bg); }

.map-attrib {
  position: absolute;
  left: 1rem; bottom: 1rem;
  font-size: 0.62rem;
  color: rgba(244, 242, 237, 0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin-dot { animation: none; }
}

/* ---------- FAQ ---------- */

.faq-list details {
  border-top: 1px solid var(--line-soft);
}
.faq-list details:last-child { border-bottom: 1px solid var(--line-soft); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }

.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex: 0 0 auto;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { left: 0; right: 0; top: 6px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 6px; width: 2px; }
details[open] .faq-icon::after { transform: scaleY(0); }

.faq-list details p {
  color: var(--muted);
  padding: 0 0.2rem 1.5rem;
  max-width: 64ch;
}
.faq-list details a { border-bottom: 1px solid var(--accent); }

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  background:
    radial-gradient(60rem 34rem at 50% 115%, rgba(201, 169, 106, 0.09), transparent 65%),
    var(--bg);
  padding-bottom: clamp(6rem, 12vw, 10rem);
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 2.6rem;
}
.final-cta .hero-cta { justify-content: center; }

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

.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img { max-width: 250px; height: auto; border-radius: 8px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1.2rem; }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.28rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ink); }
.footer-col p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; }
.footer-hours { margin-top: 1rem; font-variant-numeric: tabular-nums; }

.footer-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- About page ---------- */

.page-hero {
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(70rem 40rem at 80% -30%, rgba(201, 169, 106, 0.07), transparent 60%),
    var(--bg);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}
.page-hero .hero-sub { margin-bottom: 0; }

.bio { padding-top: clamp(2rem, 5vw, 4rem); }
.bio-photo { max-width: 460px; }
.bio-copy .h2 { margin-bottom: 1.6rem; }
.bio-copy p { color: var(--muted); max-width: 54ch; margin-bottom: 1.2rem; }

.expect { background: var(--bg-2); }

.expect-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  counter-reset: expect;
}
.expect-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  background: rgba(244, 242, 237, 0.02);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.expect-card:hover { border-color: var(--line); transform: translateY(-4px); }
.expect-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.expect-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.expect-card p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 860px) {
  .expect-grid { grid-template-columns: 1fr; }
  .bio-photo { margin-inline: auto; }
}

/* ---------- Scroll reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* gallery offset tiles keep their offset when revealed (handled above) */

/* ---------- Mobile sticky booking bar ---------- */

.book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 850;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.book-bar.show { transform: translateY(0); }
.book-bar-meta {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.book-bar-meta strong { color: var(--ink); }
.book-bar .btn { padding: 0.85em 1.7em; font-size: 0.72rem; flex-shrink: 0; }

@media (max-width: 860px) {
  .book-bar { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .book-bar { transition: none; }
}

/* ---------- No-FX mode (?nofx) — testing / instant render ---------- */

html.nofx { scroll-behavior: auto; }
html.nofx .intro { display: none; }
html.nofx .reveal { opacity: 1; transform: none; transition: none; }
html.nofx .hero { min-height: 780px; } /* svh is meaningless in tall capture viewports */

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery .tile:nth-child(even) { transform: none; }
  .marquee-track, .spin-badge svg,
  .intro-word, .intro-word span, .intro-lockup { animation: none; }
  .reel { transform: none; }
  * { transition-duration: 0.01ms !important; }
}
