/*
   CALIBER BARBERSHOP · stylesheet
   Aesthetic: editorial B&W with a red pop. Ink, bone, Caliber red.
*/

:root {
  /* palette: mirrors the shop (black, white, wood, plants) */
  --ink: #0a0a0a;
  --ink-soft: #141412;
  --char: #23211f;
  --bone: #f3efe6;
  --bone-soft: #e7e1d3;
  --bone-deep: #d4cdbb;
  --paper: #f7f3e9;
  /* Caliber forest: deep plant-green accent, references the shop's greenery */
  --green: #3d7a5f;
  --green-deep: #255240;
  --green-soft: rgba(61, 122, 95, 0.14);
  /* Warm wood accent, secondary */
  --wood: #a67955;
  /* legacy aliases kept pointing at green so existing rules still work */
  --red: var(--green);
  --red-deep: var(--green-deep);
  --red-soft: var(--green-soft);
  --brass: var(--green);
  --brass-deep: var(--green-deep);
  --muted: #6b6862;
  --muted-soft: #8e8a80;
  --line: rgba(10, 10, 10, 0.12);
  --line-dark: rgba(243, 239, 230, 0.14);

  /* type */
  --f-display: "Archivo Black", "Impact", system-ui, sans-serif;
  --f-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", "Courier New", monospace;

  /* scale (fluid) */
  --fs-micro: clamp(0.68rem, 0.65rem + 0.15vw, 0.78rem);
  --fs-sm: clamp(0.82rem, 0.8rem + 0.15vw, 0.92rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.08rem);
  --fs-md: clamp(1.1rem, 1rem + 0.4vw, 1.28rem);
  --fs-lg: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
  --fs-xl: clamp(2rem, 1.6rem + 1.6vw, 3.2rem);
  --fs-2xl: clamp(2.6rem, 1.8rem + 3.4vw, 5rem);
  --fs-3xl: clamp(3.5rem, 2rem + 7vw, 9rem);
  --fs-hero: clamp(4.5rem, 2rem + 14vw, 18rem);

  /* rhythm: tighter on mobile, still generous on desktop */
  --wrap: min(1280px, calc(100% - 2rem));
  --wrap-tight: min(960px, calc(100% - 2rem));
  --sp-section: clamp(2.4rem, 1.6rem + 2.5vw, 5.5rem);
  --sp-block: clamp(1.1rem, 0.9rem + 1vw, 2.4rem);

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: 380ms;
}

/*   RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.58;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
table { border-collapse: collapse; width: 100%; }

.wrap { max-width: var(--wrap); margin-inline: auto; }
.mono { font-family: var(--f-mono); font-size: var(--fs-micro); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/*   BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1em 1.7em;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 260ms var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: var(--brass); color: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--lg { padding: 1.1em 2em; font-size: var(--fs-sm); }
.btn--huge { padding: 1.4em 2.6em; font-size: var(--fs-md); letter-spacing: 0.08em; }

/*   UTILITY BAR */
.utility {
  background: var(--ink);
  color: var(--bone);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--f-mono);
}
.utility__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
}
.utility__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.utility__link { color: var(--brass); }
.utility__link:hover { color: var(--bone); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5dd97e;
  box-shadow: 0 0 0 2px rgba(93, 217, 126, 0.22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(93, 217, 126, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(93, 217, 126, 0.05); }
}
@media (max-width: 720px) {
  .utility__hide-sm { display: none; }
  .utility__inner { padding: 0.6rem 1rem; gap: 1rem; }
}

/*   NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  color: var(--bone);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease), color 300ms var(--ease);
}
.nav .nav__mark-word { color: currentColor; }
.nav .nav__mark-sub { color: var(--bone-soft); }
.nav .nav__links a { color: var(--bone); }
.nav .nav__links a::after { background: var(--bone); }
.nav .nav__burger span { background: var(--bone); }
.nav .nav__cta { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.nav .nav__cta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }

.nav.is-scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
.nav.is-scrolled .nav__mark-sub { color: var(--muted); }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a::after { background: var(--ink); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav.is-scrolled .nav__cta { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.nav.is-scrolled .nav__cta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
}
.nav__mark-word {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.nav__mark-sub {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  color: var(--muted);
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav__links a {
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 0.8em 1.4em; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--ink); display: block;
  transition: transform 240ms var(--ease);
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/*   HERO */
.hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(3rem, 4vw, 5rem) 0 clamp(5rem, 8vw, 9rem);
  position: relative;
  overflow: hidden;
  margin-top: -84px; /* pull under translucent nav */
  padding-top: 124px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(176, 141, 87, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(176, 141, 87, 0.04), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--bone-soft);
  margin-bottom: 2rem;
}
.hero__eyebrow .sep {
  width: 32px; height: 1px; background: var(--brass);
}
.hero__eyebrow .mono { color: var(--brass); }

/*   the wordmark   */
.wordmark {
  margin: 0;
  line-height: 0.82;
}
.wordmark__line {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--bone);
  display: block;
}
.wordmark__sub {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(0.9rem, 0.6rem + 1.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin-top: 0.8rem;
  padding-left: 0.2em;
}

.hero__tag {
  margin-top: 2.5rem;
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.3;
  color: var(--bone-soft);
  max-width: 32ch;
}
.hero__tag em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--bone);
  font-weight: 400;
}

.hero__ctas {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero__ctas .btn--primary { background: var(--bone); color: var(--ink); }
.hero__ctas .btn--primary:hover { background: var(--brass); color: var(--ink); }
.hero__ctas .btn--ghost { border-color: var(--bone-soft); color: var(--bone); }
.hero__ctas .btn--ghost:hover { background: var(--bone); color: var(--ink); }

.hero__meta {
  margin: 3rem 0 0;
  display: flex;
  gap: clamp(1.6rem, 3vw, 3rem);
  border-top: 1px solid var(--line-dark);
  padding-top: 1.6rem;
}
.hero__meta div { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__meta dt {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.hero__meta dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--bone);
  font-variation-settings: "opsz" 144;
}

/*   hero photo frame   */
.hero__frame {
  position: relative;
  min-height: 540px;
  height: 100%;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, 0.6) 100%),
    url("assets/img/kaz-van-colour.jpg");
  background-size: cover;
  background-position: 38% center;
  background-repeat: no-repeat;
  /* Partial desaturation so the red jacket still pops, everything else reads moody */
  filter: saturate(0.55) contrast(1.1);
  transition: filter 500ms var(--ease), transform 600ms var(--ease);
}
.hero__frame:hover .hero__image { filter: saturate(1.05) contrast(1.05); transform: scale(1.02); }
/* subtle grain overlay */
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.6;
}
.hero__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--red);
  color: var(--bone);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 220px;
  line-height: 1.25;
  z-index: 2;
}
.hero__badge .mono { color: var(--bone); opacity: 0.75; }
.hero__badge span:last-child {
  font-family: var(--f-serif);
  font-size: var(--fs-sm);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-inline: 1rem; }
  .hero__frame {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 440px;
    max-width: 100%;
    width: 100%;
    order: -1;
    margin-bottom: 1rem;
  }
  .hero { padding-top: 96px; margin-top: -70px; padding-bottom: 3rem; }
  /* Cap wordmark so it always fits the viewport on narrow phones */
  .wordmark__line {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
    letter-spacing: -0.03em;
    max-width: 100%;
  }
  .wordmark__sub { font-size: clamp(0.7rem, 2.6vw, 1rem); letter-spacing: 0.36em; }
  .hero__tag { font-size: clamp(1.1rem, 4vw, 1.5rem); max-width: 100%; }
  .hero__badge {
    max-width: calc(100% - 2rem);
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
  .hero__badge span:last-child { font-size: 0.85rem; line-height: 1.25; }
}
@media (max-width: 420px) {
  .wordmark__line { font-size: clamp(2rem, 13vw, 3.4rem); }
}

/*   ATMOSPHERE (shop video + hex motif) */
.atmosphere {
  background: var(--ink);
  color: var(--bone);
  padding: var(--sp-section) 0;
  position: relative;
  overflow: hidden;
}
.atmosphere__wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.atmosphere__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background: #000;
  max-width: 100%;
}
.atmosphere__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Already processed to B&W in ffmpeg, nudge contrast */
  filter: contrast(1.06);
}
.atmosphere__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(61, 122, 95, 0.22), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.7) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.atmosphere__hex {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 52%;
  height: auto;
  color: var(--red);
  opacity: 0.95;
  filter: drop-shadow(0 0 20px rgba(61, 122, 95, 0.4));
  pointer-events: none;
  animation: hexFloat 12s ease-in-out infinite;
}
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.atmosphere__copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 40ch;
}
.atmosphere__copy .mono {
  color: var(--red);
}
.atmosphere__headline {
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.atmosphere__copy p {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--bone-soft);
}

@media (max-width: 900px) {
  .atmosphere__wrap { grid-template-columns: 1fr; }
  .atmosphere__video-wrap { aspect-ratio: 16 / 9; max-height: 300px; order: -1; }
  .atmosphere__hex { top: 4%; right: -18%; width: 70%; }
  /* The Remotion reel text was sized for 1920px wide. At mobile the video
     still loops but the typography inside it is tiny, so we show the poster
     frame instead with a readable overlay. */
  .atmosphere__video { display: none; }
  .atmosphere__video-wrap {
    background: var(--ink) url("assets/video/shop-poster.jpg") center/cover no-repeat;
  }
  .atmosphere__video-wrap::before {
    content: "A breath of fresh air.";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 0 1.4rem;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 2.4rem + 2vw, 2.4rem);
    color: var(--bone);
    text-align: center;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
    line-height: 1.1;
    z-index: 1;
  }
}

/*   MARQUEE */
.marquee {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 2.2rem;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
  letter-spacing: 0.02em;
  animation: marquee 40s linear infinite;
}
.marquee__dot { color: var(--brass); font-size: 0.7em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*   MANIFESTO */
.manifesto {
  padding: var(--sp-section) 0;
  background: var(--paper);
}
.manifesto .wrap { max-width: var(--wrap-tight); }
.chapter {
  display: inline-block;
  color: var(--brass-deep);
  margin-bottom: 1.4rem;
}
.chapter--light { color: var(--brass); }
.manifesto__headline {
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: var(--sp-block);
}
.manifesto__headline em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 400;
}
.manifesto__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
}
.manifesto__lead {
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.manifesto__body {
  font-size: var(--fs-base);
  line-height: 1.68;
  color: var(--char);
}
@media (max-width: 720px) {
  .manifesto__cols { grid-template-columns: 1fr; }
}

/*   SECTION HEAD */
.section-head {
  margin-bottom: var(--sp-block);
  max-width: 44ch;
}
.section-head h2 {
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.section-head--dark .chapter { color: var(--brass); }
.section-head--dark h2 { color: var(--bone); }

/*   SERVICES */
.services {
  padding: var(--sp-section) 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: 2.4rem;
}
.menu__card {
  background: var(--paper);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.menu__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(10, 10, 10, 0.18);
}
.menu__card--feature {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.menu__card--feature .menu__card-head h3 { color: var(--bone); }
.menu__card--feature .menu__card-head p { color: var(--bone-soft); }
.menu__card--feature .menu__list li { border-bottom-color: var(--line-dark); }
.menu__card--feature .menu__list .price { color: var(--brass); }
.menu__card-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.menu__card--feature .menu__card-head { border-bottom-color: var(--line-dark); }
.menu__card-head h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.menu__card-head p {
  font-family: var(--f-serif);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  font-variation-settings: "opsz" 14;
}
.menu__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12px, auto) auto;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: var(--fs-sm);
  min-width: 0;
}
.menu__list li > span:first-child {
  min-width: 0;
  overflow-wrap: break-word;
}
.menu__list li:last-child { border-bottom: 0; }
.menu__list .dots {
  border-bottom: 1px dotted currentColor;
  opacity: 0.28;
  transform: translateY(-3px);
  height: 1px;
  min-width: 12px;
}
.menu__list .price {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .menu__list li {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 0.8rem;
  }
  .menu__list .dots { display: none; }
  .menu__dur { display: block; margin-left: 0; margin-top: 2px; opacity: 0.7; }
}
.menu__list .price {
  font-weight: 500;
  color: var(--brass-deep);
  letter-spacing: 0.04em;
}
.menu__dur {
  color: var(--muted-soft);
  margin-left: 0.5em;
  font-weight: 400;
  font-size: 0.85em;
}
.menu__card--feature .menu__dur { color: var(--muted-soft); }
.menu__small {
  margin-top: 1rem;
  color: var(--muted-soft);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
}
.menu__card--feature .menu__small { color: var(--brass); }
.visit__contact-note {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.services__footnote {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
}
.pill {
  display: inline-block;
  background: var(--ink);
  color: var(--brass);
  padding: 0.2em 0.55em;
  margin-right: 0.3em;
  border-radius: 2px;
}

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

/*   THE TEAM (three equal barber cards) */
.team {
  padding: var(--sp-section) 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.barber-card {
  background: rgba(243, 239, 230, 0.03);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  transition: border-color 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
}
.barber-card:hover {
  border-color: var(--green);
  background: rgba(61, 122, 95, 0.06);
  transform: translateY(-4px);
}
.barber-card__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
  position: relative;
  transition: filter 600ms var(--ease);
}
.barber-card__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.55) 100%);
}
.barber-card:hover .barber-card__photo { filter: grayscale(0) contrast(1.04); }

/* Default photos per barber (can be overridden by inline style attr) */
.barber-card__photo--kaz {
  background-image: url("assets/img/kaz-blowdry-bw.jpg");
  background-position: 60% 20%;
}
.barber-card__photo--will {
  background-image: url("assets/img/will-bw.jpg");
  background-position: 50% 28%;
}
.barber-card__photo--marcel {
  background-image: url("assets/img/marcel-bw.jpg");
  background-position: 50% 26%;
}

.barber-card__body {
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.barber-card__num {
  color: var(--green);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 0.4rem;
}
.barber-card__name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem);
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}
.barber-card__role {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--green);
  font-variation-settings: "opsz" 36;
  margin: 0;
}
.barber-card__bio {
  font-size: var(--fs-sm);
  color: var(--bone-soft);
  line-height: 1.6;
  margin: 0;
}
.barber-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0 0;
}
.barber-card__tags li {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border: 1px solid var(--line-dark);
  color: var(--bone-soft);
}
.barber-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.barber-card__stars {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.barber-card__cta {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85em 1.4em;
  background: var(--green);
  color: var(--ink);
  border: 1px solid var(--green);
  transition: all 200ms var(--ease);
  align-self: stretch;
  text-align: center;
}
.barber-card__cta:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.barber-card__readmore {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 200ms var(--ease);
  align-self: flex-start;
}
.barber-card__readmore:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.barber-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.barber-card__name a:hover { color: var(--green); }
a.barber-card__photo { display: block; cursor: pointer; }

/* =================  PROFILE PAGE (per-barber)  ================= */
.profile {
  padding: calc(var(--sp-section) + 2rem) 0 var(--sp-section);
  background: var(--paper);
  min-height: 100vh;
}
.breadcrumb {
  display: flex;
  gap: 0.6rem;
  color: var(--muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 180ms var(--ease); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span:last-child { color: var(--ink); }

.profile__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.profile__media { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 0.8rem; }
.profile__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  filter: grayscale(0.15) contrast(1.04);
}
.profile__handle {
  color: var(--muted);
  padding: 0.4rem 0;
}

.profile__body { display: flex; flex-direction: column; gap: 1.1rem; }
.profile__body .chapter { color: var(--green); margin-bottom: 0.2rem; }
.profile__name {
  font-family: var(--f-display);
  font-size: clamp(3rem, 2rem + 4.5vw, 6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}
.profile__role {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--green);
  font-variation-settings: "opsz" 36;
}
.profile__lead p {
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.profile__long p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--char);
  margin-bottom: 1rem;
}
.profile__stats {
  display: flex;
  gap: clamp(1.4rem, 2vw, 2.4rem);
  margin: 0.6rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.profile__stats div { display: flex; flex-direction: column; gap: 0.3rem; }
.profile__stats dt {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile__stats dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  font-weight: 400;
}
.profile__h3 {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 1rem 0 0.4rem;
  font-weight: 500;
}
.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.profile__tags li {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border: 1px solid var(--line);
  color: var(--ink);
}
.profile__quote {
  margin: 0.6rem 0;
  padding: 1.2rem 1.4rem;
  background: var(--bone);
  border-left: 3px solid var(--green);
}
.profile__quote p {
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  font-variation-settings: "opsz" 36;
  margin-bottom: 0.6rem;
}
.profile__quote footer {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile__ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

@media (max-width: 860px) {
  .profile__grid { grid-template-columns: 1fr; }
  .profile__media { position: static; }
  .profile__photo { aspect-ratio: 4/3; max-height: 520px; }
}

/* =================  GALLERY PAGE  ================= */
.gallery-page {
  padding: calc(var(--sp-section) + 2rem) 0 var(--sp-section);
  background: var(--paper);
  min-height: 100vh;
}
.gallery-page__head {
  margin-bottom: var(--sp-block);
  max-width: 48ch;
}
.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.2vw, 1.4rem);
}
.gallery-page__item {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.04);
  transition: filter 400ms var(--ease), transform 400ms var(--ease);
  border: 1px solid var(--line);
}
.gallery-page__item:hover {
  filter: saturate(1.2) contrast(1.04);
  transform: scale(1.01);
}
@media (max-width: 820px) {
  .gallery-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-page__grid { grid-template-columns: 1fr; }
}

.team-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--muted-soft);
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .team__grid { grid-template-columns: 1fr 1fr; }
  .team__grid .barber-card:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 640px) {
  .team__grid { grid-template-columns: 1fr; }
  .team__grid .barber-card:nth-child(3) { grid-column: span 1; }
  .barber-card__photo { aspect-ratio: 16 / 10; }
}

/*   BOOKSY MODAL (branded handoff) */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.book-modal.is-open { display: flex; animation: modalFade 260ms var(--ease); }
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.book-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.book-modal__panel {
  position: relative;
  width: min(640px, 100%);
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--brass);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalRise 380ms var(--ease-out);
}
.book-modal__panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(176, 141, 87, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(176, 141, 87, 0.06), transparent 50%);
  pointer-events: none;
}
@keyframes modalRise {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.book-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  z-index: 2;
}
.book-modal__eyebrow { color: var(--brass); }
.book-modal__close {
  font-size: 1.6rem;
  color: var(--bone);
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 200ms var(--ease);
}
.book-modal__close:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.book-modal__body {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  text-align: center;
  align-items: center;
}
.book-modal__wordmark {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.book-modal__headline {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bone);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.book-modal__headline em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.book-modal__copy {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  color: var(--bone-soft);
  line-height: 1.6;
  max-width: 42ch;
}
.book-modal__stats {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin: 0.6rem 0;
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  width: 100%;
  justify-content: center;
}
.book-modal__stats div { display: flex; flex-direction: column; gap: 0.3rem; }
.book-modal__stats dt {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.book-modal__stats dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  color: var(--bone);
  font-variation-settings: "opsz" 36;
  font-weight: 400;
}
.book-modal__go {
  margin-top: 0.4rem;
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  padding: 1.2em 2.4em;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.book-modal__go:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
  transform: translateY(-1px);
}
.book-modal__foot {
  color: var(--muted-soft);
  margin-top: 0.2rem;
}

@media (max-width: 500px) {
  .book-modal { padding: 0; align-items: flex-end; }
  .book-modal__panel { max-width: 100%; border-left: 0; border-right: 0; border-bottom: 0; }
}

/*   GALLERY */
.gallery {
  padding: var(--sp-section) 0;
  background: var(--paper);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery__item {
  margin: 0;
  background: var(--bone-deep);
  filter: grayscale(0.9) contrast(1.04);
  transition: filter 500ms var(--ease), transform 500ms var(--ease);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
/* base hover still applies, item-specific :hover blocks below force full colour */
.gallery__item--a {
  grid-column: span 3; grid-row: span 3;
  background-image: url("assets/img/kaz-van-colour.jpg");
  background-position: 40% center;
  filter: saturate(0.35) contrast(1.06);
}
.gallery__item--b {
  grid-column: span 3; grid-row: span 2;
  background-image: url("assets/img/shop-day-bw.jpg");
}
.gallery__item--c {
  grid-column: span 2; grid-row: span 2;
  background-image: url("assets/img/kaz-blowdry-colour.jpg");
  background-position: center;
  filter: saturate(0.35) contrast(1.06);
}
.gallery__item--d {
  grid-column: span 2; grid-row: span 3;
  background-image: url("assets/img/shop-chairs-bw.jpg");
}
.gallery__item--e {
  /* Moody close-up, stored locally so it never 404s */
  grid-column: span 2; grid-row: span 2;
  background-image: url("assets/img/moody-beard-bw.jpg");
}
.gallery__item--f {
  /* Marcel, cropped so his face reads, not just the wood-slat wall */
  grid-column: span 3; grid-row: span 2;
  background-image: url("assets/img/marcel-bw.jpg");
  background-position: 50% 38%;
}

/* Hover flips all gallery items to full colour, overriding the per-item saturate */
.gallery__item--a:hover,
.gallery__item--b:hover,
.gallery__item--c:hover,
.gallery__item--d:hover,
.gallery__item--e:hover,
.gallery__item--f:hover {
  filter: saturate(1.2) contrast(1.04) !important;
  transform: scale(1.015);
}
.gallery__ig {
  margin-top: 2rem;
  text-align: center;
}
.gallery__ig a {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.gallery__ig a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .gallery__item--a, .gallery__item--b { grid-column: span 4; grid-row: span 2; }
  .gallery__item--c, .gallery__item--d, .gallery__item--e, .gallery__item--f { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery__item { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/*   REVIEWS */
.reviews {
  padding: var(--sp-section) 0;
  background: var(--ink-soft);
  color: var(--bone);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 2.2vw, 2.2rem);
}
.review {
  margin: 0;
  padding: 2.2rem;
  border: 1px solid var(--line-dark);
  background: rgba(241, 236, 225, 0.02);
  position: relative;
  transition: background 320ms var(--ease), border-color 320ms var(--ease);
}
.review:hover {
  background: rgba(241, 236, 225, 0.04);
  border-color: var(--brass);
}
.review::before {
  content: "\201C";
  position: absolute;
  top: -18px; left: 18px;
  font-family: var(--f-serif);
  font-size: 5rem;
  color: var(--brass);
  line-height: 1;
  font-style: italic;
}
.review p {
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.5;
  color: var(--bone);
  font-variation-settings: "opsz" 36;
  margin-bottom: 1.4rem;
}
.review footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-sm);
}
.review__name { color: var(--bone); font-weight: 600; }
.review__date { color: var(--muted-soft); }
.review__stars { color: var(--brass); letter-spacing: 0.1em; margin-left: auto; }
.reviews__meta {
  text-align: center;
  margin-top: 2.4rem;
  color: var(--bone-soft);
}
@media (max-width: 760px) { .reviews__grid { grid-template-columns: 1fr; } }

/*   VISIT */
.visit {
  padding: var(--sp-section) 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
}
.visit__panel {
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 240ms var(--ease);
}
.visit__panel:hover { border-color: var(--ink); }
.visit__panel-title {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.visit__addr {
  font-family: var(--f-serif);
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.35;
  font-variation-settings: "opsz" 36;
  margin-bottom: 1rem;
}
.visit__link {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brass-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.visit__link:hover { color: var(--ink); }
.hours { font-size: var(--fs-sm); }
.hours th {
  text-align: left;
  padding: 0.55rem 0;
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px dashed var(--line);
  width: 30%;
}
.hours td {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours__today th, .hours__today td {
  color: var(--brass-deep);
  font-weight: 600;
}
.hours__today th::after {
  content: " · TODAY";
  font-size: 0.8em;
  color: var(--brass);
}
.visit__big {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  display: block;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.visit__big:hover { color: var(--brass-deep); }
.visit__socials {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.5rem;
}
.visit__socials a {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  transition: all 200ms var(--ease);
}
.visit__socials a:hover { background: var(--ink); color: var(--bone); }

.visit__map {
  grid-column: span 3;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* B&W tint to match the rest of the site. Revert on hover for clarity. */
  filter: grayscale(1) contrast(1.02);
  transition: filter 400ms var(--ease);
}
.visit__map:hover iframe { filter: grayscale(0) contrast(1); }
.visit__map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--red);
  color: var(--bone);
  padding: 0.8rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.2;
  pointer-events: none;
  z-index: 2;
}
.visit__map-overlay .mono {
  color: var(--bone);
  opacity: 0.8;
  font-size: var(--fs-micro);
}
.visit__map-overlay span:last-child {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-sm);
}

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { grid-column: span 1; min-height: 280px; }
}

/*   BOOK CTA */
.book {
  padding: var(--sp-section) 0;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book::before {
  content: "CALIBER";
  position: absolute;
  inset: 0;
  font-family: var(--f-display);
  font-size: clamp(8rem, 4rem + 18vw, 26rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 236, 225, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.02em;
}
.book__wrap { position: relative; z-index: 2; }
.book__headline {
  font-family: var(--f-serif);
  font-size: var(--fs-2xl);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  line-height: 1.1;
  margin: 1.4rem auto 2.4rem;
  max-width: 22ch;
}
.book__headline em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.book .btn--primary { background: var(--brass); color: var(--ink); }
.book .btn--primary:hover { background: var(--bone); color: var(--ink); }
.book__note {
  margin-top: 1.6rem;
  color: var(--muted-soft);
}

/*   FOOTER */
.foot {
  background: #050505;
  color: var(--bone-soft);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line-dark);
}
.foot__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.foot__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.foot__wordmark span:first-child {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  color: var(--bone);
  letter-spacing: -0.02em;
}
.foot__wordmark-sub {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.6rem;
}
.foot__links {
  display: flex;
  gap: 1.8rem;
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}
.foot__links a {
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.foot__links a:hover { color: var(--bone); border-bottom-color: var(--brass); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted-soft);
}

/*   STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--ink);
  padding: 1em 1.6em;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 40;
  box-shadow: 0 12px 40px -8px rgba(10, 10, 10, 0.5);
  transition: transform 240ms var(--ease);
}
.sticky-cta:hover { transform: translateX(-50%) translateY(-2px); }
@media (max-width: 880px) {
  .sticky-cta { display: inline-flex; }
}

/*   REVEAL ANIMATION (desktop only; mobile has no stagger to prevent blank sections) */
@media (min-width: 760px) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  .reveal.is-in { opacity: 1; transform: none; }
}
/* Below 760px, reveal is a no-op: content shows instantly. */

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