/* =============================================================================
   BKFADES — Premium Barber Website
   Design system + layout. Mobile-first, progressive enhancement.
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Colour */
  --ink:        #0e0e11;
  --ink-2:      #16161b;
  --ink-3:      #1f1f26;
  --cream:      #f5f2ea;
  --cream-2:    #ece7db;
  --bronze:     #c8a064;
  --bronze-2:   #dcb87e;

  --text-cream:  #f5f2ea;
  --text-ink:    #17170f;
  --muted-on-dark:  rgba(245, 242, 234, 0.60);
  --muted-on-light: #726c60;
  --line-on-dark:   rgba(245, 242, 234, 0.14);
  --line-on-light:  rgba(23, 23, 15, 0.14);

  /* Type */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif:   "Fraunces", Georgia, "Times New Roman", serif;

  /* Metrics */
  --wrap:      1220px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow:    0 24px 60px -24px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 10px 30px -14px rgba(0, 0, 0, 0.5);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px; /* offset for sticky header on anchor jumps */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

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

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

/* ---------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--dark  { background: var(--ink); color: var(--text-cream); }
.section--cream { background: var(--cream); color: var(--text-ink); }

/* ---------------------------------------------------------------- Type helpers */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.7;
}
.eyebrow--light { color: var(--bronze-2); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  text-transform: uppercase;
}
.section--cream .section-title { color: var(--text-ink); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted-on-dark);
  font-weight: 300;
  max-width: 60ch;
}
.section--cream .section-intro { color: var(--muted-on-light); }

.text-accent { color: var(--bronze); }
.muted { color: var(--muted-on-dark); }

/* ---------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--bronze);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), background-color 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: var(--bronze);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(200, 160, 100, 0.6);
}
.btn--solid:hover { background: var(--bronze-2); transform: translateY(-3px); }
.btn--ghost {
  background: transparent;
  color: var(--text-cream);
  border: 1px solid var(--line-on-dark);
}
.btn--ghost:hover { border-color: var(--bronze); color: var(--bronze-2); transform: translateY(-3px); }
.section--cream .btn--ghost { color: var(--text-ink); border-color: var(--line-on-light); }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.74rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(-1px) scale(0.99); }

/* ---------------------------------------------------------------- Brand */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.brand__mark { color: var(--bronze); }
.brand__word { color: var(--text-cream); }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 0.55rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 62px;
}
.site-header[data-scrolled] {
  background: rgba(14, 14, 17, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-on-dark);
}

.nav { display: none; gap: 2.2rem; }
.nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.82);
  padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav a:hover { color: var(--text-cream); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__actions .btn--solid { display: none; }

/* Hamburger */
.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border-radius: 999px;
  border: 1px solid var(--line-on-dark);
}
.nav-toggle span {
  width: 20px; height: 1.6px; background: var(--text-cream);
  border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 12, 15, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu[hidden] { display: none; }
body.menu-open .mobile-menu { opacity: 1; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-cream);
  opacity: 0;
  transform: translateY(14px);
}
body.menu-open .mobile-menu__nav a { animation: menuItemIn 0.5s var(--ease-out) forwards; }
.mobile-menu__nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu__nav a:nth-child(2) { animation-delay: 0.10s; }
.mobile-menu__nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu__nav a:nth-child(4) { animation-delay: 0.20s; }
.mobile-menu__nav a:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu__nav a:nth-child(6) { animation-delay: 0.30s; }
.mobile-menu__nav .btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  align-self: flex-start;
  margin-top: 0.5rem;
  animation-delay: 0.32s !important;
}
@keyframes menuItemIn { to { opacity: 1; transform: none; } }
.mobile-menu__foot {
  display: flex; gap: 1.5rem;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-on-dark);
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.5rem;
}
.mobile-menu__foot a:hover { color: var(--bronze-2); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(96px, 14vh, 150px); /* clears the fixed header so the title never overlaps the nav */
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,12,0.96) 2%, rgba(10,10,12,0.35) 42%, rgba(10,10,12,0.55) 100%),
    linear-gradient(to right, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.15) 60%, rgba(10,10,12,0.4) 100%);
}
.hero__inner { position: relative; max-width: 760px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.005em;
  font-size: clamp(3.2rem, 9vw, 7rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.hero__lead {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  font-weight: 300;
  color: rgba(245, 242, 234, 0.82);
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 5vw, 3.4rem);
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  padding-top: clamp(1.4rem, 3vw, 1.9rem);
  border-top: 1px solid var(--line-on-dark);
}
.hero__stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
  color: var(--text-cream);
}
.hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vw, 6rem);
  display: none;
  align-items: center;
  gap: 0.7rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--bronze), transparent); }

/* ---------------------------------------------------------------- Marquee */
.marquee {
  background: var(--bronze);
  color: var(--ink);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 1px solid rgba(0,0,0,0.08);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee__dot { font-size: 0.8rem !important; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================ Before/After */
.ba { max-width: 940px; margin-inline: auto; }
.ba__viewport {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
}
.ba-item { position: absolute; inset: 0; display: none; }
.ba-item.is-active { display: block; }
.ba-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-item__before-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  will-change: clip-path;
}
.ba-item__tag {
  position: absolute; top: 14px; z-index: 4;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.32rem 0.7rem; border-radius: 999px;
  background: rgba(14, 14, 17, 0.72);
  color: var(--text-cream);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-on-dark);
}
.ba-item__tag--before { left: 14px; }
.ba-item__tag--after { right: 14px; color: var(--bronze-2); }

.ba-item__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 44px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  cursor: ew-resize;
  touch-action: none;
}
.ba-item__handle::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.ba-item__handle svg {
  position: relative;
  width: 42px; height: 42px; padding: 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease);
}
.ba-item__handle:hover svg { background: var(--bronze-2); transform: scale(1.08); }
.ba-item__handle:focus-visible { outline: none; }
.ba-item__handle:focus-visible svg { outline: 2px solid var(--bronze-2); outline-offset: 3px; }

/* B/A controls */
.ba__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.8rem;
}
.ba__arrow {
  width: 46px; height: 46px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-on-dark);
  color: var(--text-cream);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.ba__arrow svg { width: 22px; height: 22px; }
.ba__arrow:hover { background: var(--bronze); color: var(--ink); border-color: var(--bronze); }
.ba__thumbs { display: flex; gap: 0.7rem; }
.ba__thumb {
  width: 52px; height: 66px;
  border-radius: 8px; overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ba__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ba__thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.ba__thumb.is-active { opacity: 1; border-color: var(--bronze); }

/* ============================================================ Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item::before {
  content: "";
  position: absolute; z-index: 2; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--bronze) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e0e11' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 16px no-repeat;
  transform: scale(0.4); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover::before { transform: scale(1); opacity: 1; }

/* ============================================================ Services */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-on-light);
}
.service {
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line-on-light);
  transition: padding-left 0.4s var(--ease), background-color 0.4s var(--ease);
}
.service__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.5rem;
}
.service__head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.service__price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--bronze);
  flex: none;
}
.service p { color: var(--muted-on-light); font-weight: 300; max-width: 62ch; font-size: 0.98rem; }
.service__meta {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-on-light); opacity: 0.75;
}
@media (hover: hover) {
  .service:hover { background: rgba(200,160,100,0.06); padding-left: 1.2rem; }
  .service:hover .service__head h3 { color: var(--bronze); }
}
/* Highlighted after-hours row */
.service--afterhours {
  background: rgba(200, 160, 100, 0.10);
  border-bottom-color: transparent;
  border-radius: var(--radius);
  padding-inline: clamp(1.1rem, 2.5vw, 1.6rem);
}
.service--afterhours .service__head h3 { color: var(--bronze); }
@media (hover: hover) {
  .service--afterhours:hover { padding-left: clamp(1.1rem, 2.5vw, 1.6rem); }
}

/* ============================================================ Clips / Social */
.clips { background: var(--ink-2); }
.clips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 760px;
  margin-inline: auto;
}
.clip { display: flex; flex-direction: column; gap: 0.9rem; }
.clip__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
  box-shadow: var(--shadow);
  display: block;
  padding: 0;
  cursor: pointer;
}
.clip__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.clip__frame:hover img { transform: scale(1.05); }
.clip__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,12,0.62), transparent 46%); }
.clip__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bronze); color: var(--ink);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s var(--ease-out), background-color 0.3s var(--ease);
}
.clip__play svg { width: 30px; height: 30px; margin-left: 3px; }
.clip__frame:hover .clip__play { transform: translate(-50%, -50%) scale(1.08); background: var(--bronze-2); }
.clip__badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 999px;
  background: rgba(14, 14, 17, 0.72); color: var(--text-cream);
  backdrop-filter: blur(6px); border: 1px solid var(--line-on-dark);
}
.clip__frame.is-playing { cursor: default; }
.clip__frame.is-playing .clip__play,
.clip__frame.is-playing .clip__badge,
.clip__frame.is-playing .clip__scrim,
.clip__frame.is-playing img { display: none; }
.clip__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.clip__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.clip__views { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--muted-on-dark); }
.clip__views svg { width: 18px; height: 18px; }
.clip__link { font-size: 0.82rem; letter-spacing: 0.02em; color: var(--text-cream); }
.clip__link:hover { color: var(--bronze-2); }

.social-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  background: var(--ink);
}
.social-cta__text h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem); text-transform: uppercase; letter-spacing: 0.02em;
}
.social-cta__text p { color: var(--muted-on-dark); font-weight: 300; margin-top: 0.3rem; }
.social-cta__links { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.social-cta__links .btn svg { display: inline-block; }

@media (min-width: 700px) {
  .clips__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .social-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================ About */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 3 / 4; object-fit: cover;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; bottom: -18px; right: -8px;
  background: var(--bronze); color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.3rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.about__badge span { display: block; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.about__badge strong { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; }

.about__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300; line-height: 1.6;
  margin-block: 1.6rem 1.2rem;
}
.about__lead em { font-family: var(--font-serif); font-style: italic; color: var(--bronze-2); }
.about__body > p { color: var(--muted-on-dark); font-weight: 300; }
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--text-cream);
  border-left: 2px solid var(--bronze);
  padding-left: 1.3rem;
  margin-block: 2rem;
}
.about__stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-on-dark);
}
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong { font-family: var(--font-display); font-size: 2rem; color: var(--bronze); line-height: 1; }
.about__stats span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: 0.3rem; }

/* ============================================================ Booking */
.booking { background: var(--ink-2); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.booking__points { margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.booking__points li {
  position: relative; padding-left: 1.8rem;
  color: rgba(245,242,234,0.82); font-weight: 300;
}
.booking__points li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 999px; background: var(--bronze);
}
.booking__card {
  background: var(--ink);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.booking__card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem); text-transform: uppercase; letter-spacing: 0.02em;
}
.booking__card-sub { color: var(--muted-on-dark); font-weight: 300; margin-bottom: 1.6rem; }
.booking__or {
  text-align: center; margin-block: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-on-dark);
}
.booking__hours { margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line-on-dark); }
.booking__hours-title { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin-bottom: 0.8rem; }
.booking__hours ul { display: grid; gap: 0.55rem; }
.booking__hours li { display: flex; justify-content: space-between; font-size: 0.92rem; color: rgba(245,242,234,0.82); }

/* Booking layout with live calendar embed */
.booking__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.booking__aside { display: flex; flex-direction: column; gap: 1.8rem; }
.booking__aside .booking__points { margin-top: 0; }
.booking__aside .booking__hours { margin-top: 0; padding-top: 1.5rem; }
.booking__calendar { min-width: 0; }
.booking__embed {
  position: relative;
  min-height: 620px;
  background: var(--ink);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking__embed-fallback {
  min-height: 620px;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.1rem;
}
.booking__embed-fallback h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem); text-transform: uppercase; letter-spacing: 0.02em;
}
.booking__embed-fallback p { color: var(--muted-on-dark); font-weight: 300; max-width: 42ch; }
.booking__embed.is-live { min-height: 0; }
.booking__embed.is-live .booking__embed-fallback { display: none; }
.booking__embed iframe { border: 0; width: 100%; }

@media (min-width: 900px) {
  .booking__grid { grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); }
}

/* ============================================================ Footer */
.footer { background: var(--ink); border-top: 1px solid var(--line-on-dark); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
.footer__brand p { color: var(--muted-on-dark); font-weight: 300; margin-block: 1.2rem 1.5rem; max-width: 38ch; }
.brand--footer { font-size: 2rem; margin-bottom: 0.5rem; }
.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-on-dark); color: var(--text-cream);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials svg { width: 20px; height: 20px; }
.socials a:hover { background: var(--bronze); color: var(--ink); border-color: var(--bronze); transform: translateY(-3px); }

.footer__col h4 {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 1rem; font-weight: 600;
}
.footer__col p { color: var(--muted-on-dark); font-weight: 300; line-height: 1.9; }
.footer__col a:hover { color: var(--bronze-2); }
.footer__link { display: inline-block; margin-top: 1rem; color: var(--text-cream); font-size: 0.9rem; letter-spacing: 0.02em; }
.footer__link:hover { color: var(--bronze); }
.footer__hours { display: grid; gap: 0.5rem; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted-on-dark); font-size: 0.92rem; white-space: nowrap; }

.footer__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-block: 1.8rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.8rem; color: var(--muted-on-dark);
}
.footer__credit { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.footer__totop:hover { color: var(--bronze); }

/* ============================================================ Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure {
  max-width: min(92vw, 720px);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 82vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.is-open .lightbox__figure img { transform: scale(1); }
.lightbox__figure figcaption {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-on-dark);
}
.lightbox__close {
  position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px; border-radius: 999px;
  font-size: 1.8rem; line-height: 1; color: var(--text-cream);
  border: 1px solid var(--line-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--bronze); color: var(--ink); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-cream);
  border: 1px solid var(--line-on-dark);
  background: rgba(20,20,24,0.5);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav:hover { background: var(--bronze); color: var(--ink); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }

/* ============================================================ Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 300;
  max-width: min(90vw, 420px);
  background: var(--cream);
  color: var(--ink);
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================ Reveal (JS) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children within a section head / grid via nth reveal delay */
.js .gallery .reveal.is-visible { transition-delay: calc(var(--i, 0) * 40ms); }

/* ============================================================ Breakpoints */
@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero__scroll { display: flex; }
  .footer__grid { grid-template-columns: 1.4fr 1fr; }
}

@media (min-width: 860px) {
  .about { grid-template-columns: 0.85fr 1.15fr; }
  .about__media { max-width: 460px; }
  .booking__inner { grid-template-columns: 1.1fr 0.9fr; }
  .services { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 4vw, 3.5rem); }
  .services .service:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line-on-light); }
}

@media (min-width: 960px) {
  .nav { display: flex; }
  .site-header__actions .btn--solid { display: inline-flex; }
  .nav-toggle { display: none; }
  .gallery { grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.2vw, 1.1rem); }
  .ba__viewport { max-width: 520px; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 3.5rem); }
  .footer__brand { padding-right: 2rem; }
}

@media (min-width: 1200px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

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