:root {
  --ink: #080706;
  --ink-2: #100d0b;
  --espresso: #1a110d;
  --leather: #2c1b13;
  --brown: #4a2c1d;
  --cognac: #75492e;
  --brass: #b58a57;
  --sand: #d7c2a8;
  --bone: #f1e9de;
  --paper: #faf6ef;
  --muted: #a89b8b;
  --line: rgba(241, 233, 222, 0.16);
  --line-dark: rgba(8, 7, 6, 0.14);
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 8%, rgba(117, 73, 46, .16), transparent 31rem),
    var(--ink);
  color: var(--bone);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open,
body.drawer-open,
body.lightbox-open { overflow: hidden; }
img, video { display: block; width: 100%; }
img { height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: clamp(82px, 10vw, 150px) 0; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }
.light-section { background: var(--paper); color: var(--ink); }
.brown-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(181, 138, 87, .15), transparent 35rem),
    linear-gradient(135deg, #21150f 0%, #352116 50%, #150e0a 100%);
}
.line-top { border-top: 1px solid var(--line); }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--brass);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.light-section .eyebrow, .light-section .kicker { color: var(--cognac); }
.display {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3.7rem, 10vw, 9rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .78;
  text-transform: uppercase;
}
.headline {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .86;
  text-transform: uppercase;
}
.title-md {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
  text-transform: uppercase;
}
.lede { max-width: 62ch; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.light-section .lede { color: #675d53; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.section-heading > :last-child { max-width: 48ch; }
.accent { color: var(--brass); }
.stroke-text { color: transparent; -webkit-text-stroke: 1px rgba(241, 233, 222, .52); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.btn::after { content: "↗"; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--bone); color: var(--ink); }
.btn-primary:hover { background: var(--brass); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-outline { border-color: rgba(241, 233, 222, .45); color: var(--bone); }
.btn-outline:hover { background: var(--bone); color: var(--ink); }
.light-section .btn-outline { border-color: rgba(8, 7, 6, .3); color: var(--ink); }
.light-section .btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-small { min-height: 40px; padding-inline: 17px; font-size: .72rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Header and pill navigation */
.site-header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding: 12px clamp(16px, 3vw, 42px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(8, 7, 6, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark {
  width: 47px;
  height: 47px;
  padding: 4px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}
.brand-copy strong {
  display: block;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-copy span { color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.pill-nav {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(241, 233, 222, .14);
  border-radius: 999px;
  background: rgba(36, 23, 16, .94);
  box-shadow: 0 15px 44px rgba(0, 0, 0, .34), inset 0 1px rgba(255,255,255,.07);
  animation: nav-enter .65s var(--ease) both;
}
@keyframes nav-enter { from { opacity: 0; transform: translateY(-12px) scale(.97); } }
.pill-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--bone);
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.pill-nav a.is-active { background: var(--bone); color: var(--ink); }
.pill-hover-circle {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: var(--pill-circle-bottom, -56px);
  width: var(--pill-circle-size, 94px);
  height: var(--pill-circle-size, 94px);
  border-radius: 50%;
  background: var(--bone);
  transform: translateX(-50%) scale(0);
  transform-origin: 50% var(--pill-circle-origin, 76px);
  transition: transform .42s var(--ease);
}
.pill-label-stack { position: relative; line-height: 1; }
.pill-label, .pill-label-hover { display: block; transition: opacity .2s ease, transform .34s var(--ease); }
.pill-label-hover { position: absolute; inset: 0; color: var(--ink); opacity: 0; transform: translateY(160%); }
.pill-nav a:not(.is-active):hover .pill-hover-circle,
.pill-nav a:not(.is-active):focus-visible .pill-hover-circle { transform: translateX(-50%) scale(1.2); }
.pill-nav a:not(.is-active):hover .pill-label,
.pill-nav a:not(.is-active):focus-visible .pill-label { opacity: 0; transform: translateY(-160%); }
.pill-nav a:not(.is-active):hover .pill-label-hover,
.pill-nav a:not(.is-active):focus-visible .pill-label-hover { opacity: 1; transform: translateY(0); }
.header-action { justify-self: end; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--espresso);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 17px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--bone); transition: transform .3s var(--ease); }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 480;
  inset: 70px 12px auto;
  max-height: calc(100vh - 84px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(27, 17, 13, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px) scale(.96);
  transform-origin: top right;
  transition: opacity .2s ease, transform .38s var(--ease), visibility 0s linear .38s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.mobile-menu nav { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.mobile-menu a { padding: 13px 14px; border-radius: 13px; font-weight: 800; }
.mobile-menu a:hover, .mobile-menu a.is-active { background: var(--bone); color: var(--ink); }
.mobile-menu .mobile-book { grid-column: 1 / -1; margin-top: 8px; background: var(--brass); color: var(--ink); text-align: center; }

/* Reactive details */
.reveal, .reveal-left, .reveal-right, .scale-in { opacity: 0; transition: opacity .8s var(--ease), transform .9s var(--ease); }
.reveal { transform: translateY(42px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.scale-in { transform: scale(.94); }
.is-visible { opacity: 1; transform: none; }
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(28px);
  transition: filter .72s var(--ease), opacity .72s var(--ease), transform .72s var(--ease);
}
.blur-text.is-visible .blur-word { opacity: 1; filter: blur(0); transform: none; }
.decrypt { font-variant-numeric: tabular-nums; }
.specular {
  --shine-x: 50%;
  position: relative;
}
.specular::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 180deg at var(--shine-x) 50%, transparent 0 38%, rgba(255,255,255,.9) 47%, transparent 56% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.magnet-lines {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: min(470px, 80vw);
  aspect-ratio: 1;
  pointer-events: none;
}
.magnet-lines span {
  justify-self: center;
  align-self: center;
  width: 2px;
  height: 30px;
  background: rgba(215, 194, 168, .65);
  transform: rotate(var(--rotate, -10deg));
  transform-origin: center;
  transition: transform .08s linear;
}
.circular-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(241, 233, 222, .22);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.circular-seal span { position: absolute; inset: 8px; text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .08em; transform: rotate(calc(var(--i) * 15deg)); }
.circular-seal i { position: absolute; top: 0; left: 50%; height: 50%; transform-origin: bottom center; font-style: normal; }
.circular-seal b { animation: spin-reverse 20s linear infinite; font-family: var(--display); font-size: 2.1rem; }
.circular-seal:hover { animation-duration: 5s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.curved-loop {
  overflow: hidden;
  height: clamp(100px, 12vw, 180px);
  border-block: 1px solid var(--line);
  background: var(--espresso);
}
.curved-loop svg { width: 110%; height: 100%; margin-left: -5%; overflow: visible; }
.curved-loop text {
  fill: var(--bone);
  font-family: var(--display);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.aurora-wash::before,
.light-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.aurora-wash::before {
  background: radial-gradient(ellipse at 20% 100%, rgba(117,73,46,.48), transparent 48%), radial-gradient(ellipse at 80% 100%, rgba(181,138,87,.25), transparent 45%);
  animation: aurora 8s ease-in-out infinite alternate;
}
.light-pillar::before {
  left: 30%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(181,138,87,.18), rgba(241,233,222,.08), transparent);
  filter: blur(18px);
  transform: skewX(-12deg);
  animation: pillar 7s ease-in-out infinite alternate;
}
@keyframes aurora { to { transform: translate3d(7%, -3%, 0) scale(1.08); opacity: .72; } }
@keyframes pillar { to { transform: translateX(28%) skewX(8deg); opacity: .58; } }

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-h) + 55px) 0 54px;
  background: #090807;
}
.hero-media, .hero-media::after, .gradient-blinds { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: .66; filter: saturate(.55) sepia(.17) contrast(1.08); }
.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.48) 55%, rgba(8,7,6,.26)), linear-gradient(0deg, var(--ink) 0%, transparent 45%);
}
.gradient-blinds {
  z-index: 1;
  opacity: .22;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.hero-copy { max-width: 920px; }
.hero-copy .display { font-size: clamp(4.4rem, 10vw, 9rem); max-width: 11ch; }
.hero-copy .lede { color: #d1c5b6; max-width: 49ch; }
.hero-side { display: grid; gap: 18px; justify-items: center; }
.hero-scroll { color: var(--muted); font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.hero-stat { padding: 18px 20px 0 0; }
.hero-stat strong { display: block; font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.hero-stat span { color: var(--muted); font-size: .74rem; }

.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 7vw, 100px); align-items: center; }
.story-collage { position: relative; min-height: 650px; }
.story-collage .image-a { position: absolute; inset: 0 16% 14% 0; }
.story-collage .image-b { position: absolute; right: 0; bottom: 0; width: 45%; height: 48%; border: 10px solid var(--paper); }
.image-frame { overflow: hidden; background: var(--espresso); }
.image-frame img { transition: transform .9s var(--ease), filter .5s ease; }
.image-frame:hover img { transform: scale(1.035); }
.image-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  font-weight: 900;
}

.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.path-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.path-card:last-child { border-right: 0; }
.path-card img { position: absolute; inset: 0; opacity: .28; filter: grayscale(1); transition: opacity .45s ease, transform .7s var(--ease), filter .45s ease; }
.path-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,.97), transparent 75%); }
.path-card-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; height: 100%; }
.path-card .number { position: absolute; top: 0; right: 0; color: var(--brass); font-size: .7rem; letter-spacing: .14em; }
.path-card:hover img { opacity: .65; filter: grayscale(.25); transform: scale(1.06); }

.service-preview { display: grid; grid-template-columns: 1fr 1.45fr; gap: 70px; }
.service-list { border-top: 1px solid var(--line-dark); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-row .index { color: var(--cognac); font-size: .72rem; }
.service-row h3 { margin: 0; font-size: 1rem; }
.service-row p { margin: 4px 0 0; color: #6e6258; font-size: .83rem; }
.service-row strong { font-family: var(--display); font-size: 1.3rem; }

.media-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 29vw); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.media-strip::-webkit-scrollbar { display: none; }
.media-strip figure { position: relative; height: clamp(360px, 48vw, 640px); margin: 0; overflow: hidden; scroll-snap-align: start; }
.media-strip figcaption { position: absolute; inset: auto 0 0; padding: 44px 20px 18px; background: linear-gradient(transparent, rgba(8,7,6,.9)); font-weight: 800; }

.proof-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.proof-feature { position: relative; min-height: 650px; overflow: hidden; }
.proof-feature > video,
.proof-stack article > video { width: 100%; height: 100%; object-fit: cover; }
.proof-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.proof-stack article { position: relative; overflow: hidden; min-height: 310px; padding: 28px; background: var(--espresso); }
.proof-stack article img { position: absolute; inset: 0; opacity: .42; }
.proof-stack article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink), transparent); }
.proof-stack article > div { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; height: 100%; }

.quote {
  margin: 0;
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: uppercase;
}

/* Page introductions */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 85px) 0 72px;
  background: linear-gradient(135deg, #0b0908 0%, #24150f 56%, #0b0908 100%);
}
.page-hero.compact { min-height: 56svh; }
.page-hero .shell { position: relative; z-index: 2; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.page-hero-media { position: absolute; inset: 0 0 0 48%; opacity: .38; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0b0908, transparent 70%), linear-gradient(0deg, #0b0908, transparent 50%); }
.page-hero-media img, .page-hero-media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) sepia(.2); }
.page-index { color: var(--brass); font-family: var(--display); font-size: clamp(4rem, 9vw, 9rem); font-weight: 950; line-height: .75; opacity: .3; }

/* Services */
.filter-bar {
  position: sticky;
  z-index: 30;
  top: 76px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(250,246,239,.92);
  backdrop-filter: blur(15px);
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #51473e;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.filter-btn.is-active { background: var(--ink); color: var(--bone); }
.services-catalog { margin-top: 40px; }
.service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.service-card p { margin: 0; max-width: 64ch; color: #685d52; font-size: .88rem; }
.service-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.tag { display: inline-flex; padding: 5px 9px; border: 1px solid currentColor; border-radius: 999px; font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; opacity: .75; }
.service-price { text-align: right; }
.service-price strong { display: block; font-family: var(--display); font-size: 1.8rem; }
.service-price span { color: #75685d; font-size: .74rem; }
.hair-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.hair-card { min-height: 270px; padding: 24px; border-right: 1px solid var(--line); }
.hair-card:last-child { border-right: 0; }
.hair-card h3 { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.hair-card p { color: var(--muted); font-size: .86rem; }

/* Barber profiles */
.barber-feature { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 690px; border: 1px solid var(--line); }
.barber-image { position: relative; overflow: hidden; }
.barber-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 70px); }
.profile-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 56px; }
.profile-card { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.profile-card .chair { color: var(--brass); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.profile-card h3 { margin: 18px 0 10px; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }

/* Celebrity and community */
.celebrity-wall { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 64px; gap: 12px; }
.celebrity-wall figure { position: relative; overflow: hidden; margin: 0; background: var(--espresso); }
.celebrity-wall figure:nth-child(1) { grid-column: 1 / 6; grid-row: span 8; }
.celebrity-wall figure:nth-child(2) { grid-column: 6 / 10; grid-row: span 5; }
.celebrity-wall figure:nth-child(3) { grid-column: 10 / 13; grid-row: span 5; }
.celebrity-wall figure:nth-child(4) { grid-column: 6 / 13; grid-row: span 6; }
.celebrity-wall figcaption { position: absolute; inset: auto 0 0; padding: 36px 18px 16px; background: linear-gradient(transparent, rgba(8,7,6,.9)); font-size: .8rem; font-weight: 800; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.community-grid figure { position: relative; min-height: 520px; margin: 0; overflow: hidden; }
.community-grid figure:first-child { grid-row: span 2; min-height: 900px; }
.impact-band { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.impact-item { padding: 34px; border-right: 1px solid var(--line); }
.impact-item:last-child { border-right: 0; }
.impact-item strong { display: block; color: var(--brass); font-family: var(--display); font-size: 3rem; }

/* Academy */
.academy-hero-art { position: absolute; inset: 0 0 0 50%; display: grid; place-items: center; opacity: .7; }
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.course-card { position: relative; overflow: hidden; min-height: 520px; padding: clamp(30px, 5vw, 62px); border: 1px solid var(--line); background: linear-gradient(145deg, rgba(117,73,46,.17), rgba(255,255,255,.02)); }
.course-price { margin: 45px 0 6px; font-family: var(--display); font-size: clamp(3.4rem, 6vw, 6rem); font-weight: 950; letter-spacing: -.05em; }
.course-card ul { padding-left: 18px; color: var(--muted); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); }
.timeline article { min-height: 280px; padding: 26px; border-right: 1px solid var(--line-dark); }
.timeline article:last-child { border-right: 0; }
.timeline small { color: var(--cognac); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

/* Gallery */
.gallery-grid { columns: 4 230px; column-gap: 12px; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 12px; overflow: hidden; border: 0; background: var(--espresso); cursor: pointer; break-inside: avoid; }
.gallery-item img { height: auto; min-height: 250px; }
.gallery-item .gallery-caption { position: absolute; inset: auto 0 0; padding: 46px 16px 14px; background: linear-gradient(transparent, rgba(8,7,6,.92)); text-align: left; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s var(--ease); }
.gallery-item .gallery-caption small,
.gallery-item .gallery-caption strong { display: block; }
.gallery-item .gallery-caption small { color: var(--brass); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.before-after { position: relative; overflow: hidden; min-height: 520px; background: var(--espresso); }
.before-after > img,
.before-after .after-layer,
.before-after .after-layer img { width: 100%; height: 100%; object-fit: cover; }
.before-after > img { position: absolute; inset: 0; filter: grayscale(.8); }
.before-after .after-layer { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--split)) 0 0); }
.before-after::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; left: var(--split); width: 2px; background: var(--bone); transform: translateX(-1px); pointer-events: none; }
.before-after input { position: absolute; z-index: 3; left: 10%; right: 10%; bottom: 18px; width: 80%; accent-color: var(--brass); }
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4,3,2,.94);
}
.lightbox-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 320px; width: min(1100px, 96vw); max-height: 90vh; background: var(--espresso); box-shadow: var(--shadow); }
.lightbox-media { min-height: 72vh; overflow: hidden; }
.lightbox-media img { object-fit: contain; background: var(--ink); }
.lightbox-copy { padding: 32px; overflow: auto; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); cursor: pointer; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 34px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-card { border: 1px solid var(--line-dark); background: #fff; }
.product-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #e8dfd4; }
.product-image img { transition: transform .65s var(--ease); }
.product-card:hover img { transform: scale(1.04); }
.stock { position: absolute; top: 12px; left: 12px; padding: 6px 9px; border-radius: 999px; background: var(--paper); font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-copy { padding: 18px; }
.product-copy h3 { margin: 0; font-size: .97rem; }
.product-copy p { min-height: 42px; color: #6d6258; font-size: .8rem; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-actions strong { font-family: var(--display); font-size: 1.4rem; }
.bag-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 25px;
  background: var(--ink);
  color: var(--bone);
}
.bag-items { display: grid; gap: 12px; margin: 20px 0; }
.bag-line { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.bag-line-head { display: flex; justify-content: space-between; gap: 12px; }
.quantity { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; }
.quantity button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.bag-total { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 900; }
.bag-fields { display: grid; gap: 10px; margin-top: 18px; }
.mobile-bag-bar { display: none; }

/* Forms and booking */
.form-field { display: grid; gap: 7px; }
.form-field label, .field-label { font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(8,7,6,.2);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}
.dark-form .form-field input, .dark-form .form-field select, .dark-form .form-field textarea {
  border-color: var(--line);
  background: rgba(255,255,255,.05);
  color: var(--bone);
}
.form-field textarea { min-height: 112px; resize: vertical; }
.field-error { min-height: 1em; color: #b94736; font-size: .72rem; }
.booking-shell { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 34px; }
.booking-app { min-height: 760px; padding: clamp(24px, 4vw, 50px); background: var(--paper); color: var(--ink); }
.booking-progress { display: flex; gap: 5px; margin-bottom: 42px; }
.booking-progress span { flex: 1; height: 4px; background: #dfd7cd; }
.booking-progress span.is-active, .booking-progress span.is-done { background: var(--cognac); }
.booking-step[hidden] { display: none; }
.booking-step h2 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: .9; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 28px; }
.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.choice-card.is-selected { border-color: var(--cognac); box-shadow: inset 0 0 0 1px var(--cognac); background: #f3e9de; }
.choice-card h3 { margin: 0 0 5px; font-size: .95rem; }
.choice-card p { margin: 0; color: #6c6157; font-size: .76rem; }
.choice-card strong { font-family: var(--display); font-size: 1.25rem; }
.choice-card > span:last-child { text-align: right; }
.choice-card > span:last-child small { display: block; margin-top: 3px; white-space: nowrap; }
.barber-options .choice-card { grid-template-columns: 78px 1fr; }
.barber-options img { width: 78px; height: 94px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 25px; }
.calendar-grid .day-label { padding: 8px 0; color: #76695f; font-size: .67rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.date-btn { min-height: 64px; border: 1px solid var(--line-dark); background: #fff; cursor: pointer; }
.date-btn:disabled { color: #aaa096; background: #eee9e2; cursor: not-allowed; }
.date-btn.is-selected { background: var(--ink); color: var(--bone); }
.date-btn small { display: block; font-size: .62rem; }
.time-groups { display: grid; gap: 24px; margin-top: 28px; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-btn { min-height: 46px; border: 1px solid var(--line-dark); background: #fff; cursor: pointer; }
.time-btn:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.time-btn.is-selected { background: var(--cognac); color: #fff; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.span-2 { grid-column: 1 / -1; }
.review-block { margin-top: 22px; padding: 20px; border: 1px solid var(--line-dark); }
.review-block header { display: flex; justify-content: space-between; gap: 20px; }
.review-block h3 { margin: 0; }
.review-list { padding: 0; list-style: none; }
.review-list li { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.booking-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; }
.booking-summary {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--espresso), #25170f);
}
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.summary-total { margin-top: 22px; }
.summary-total strong { display: block; font-family: var(--display); font-size: 2.8rem; }
.summary-total span { color: var(--muted); font-size: .76rem; }
.mobile-booking-bar { display: none; }

/* Campaign */
.campaign-header { position: fixed; z-index: 200; inset: 12px 14px auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 10px 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8,7,6,.86); backdrop-filter: blur(15px); }
.campaign-hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); }
.campaign-copy { display: flex; flex-direction: column; justify-content: center; padding: 110px max(28px, 7vw) 60px; }
.reel-frame { position: relative; min-height: 100svh; overflow: hidden; background: var(--espresso); }
.reel-frame video { width: 100%; height: 100%; object-fit: cover; }
.reel-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), transparent 35%), linear-gradient(0deg, rgba(8,7,6,.72), transparent 45%); pointer-events: none; }
.offer-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(30px, 6vw, 80px); border: 1px solid var(--line); background: linear-gradient(130deg, #20140f, #4a2c1d); }
.offer-price { text-align: right; }
.offer-price del { display: block; color: var(--muted); }
.offer-price strong { font-family: var(--display); font-size: clamp(4.5rem, 9vw, 9rem); line-height: .8; }

/* Contact and footer map */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-list a, .contact-list div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-list small { color: var(--brass); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.map-footer { border-top: 1px solid var(--line); background: #0b0908; }
.map-shell { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 460px; }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 80px); border-right: 1px solid var(--line); }
.map-art { position: relative; overflow: hidden; min-height: 420px; background: #15100d; }
.map-art::before, .map-art::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 8px;
  background: rgba(215,194,168,.13);
  transform: rotate(-22deg);
}
.map-art::before { top: 35%; left: -22%; box-shadow: 0 120px 0 rgba(215,194,168,.08), 0 -150px 0 rgba(215,194,168,.08); }
.map-art::after { top: 52%; left: -24%; transform: rotate(34deg); box-shadow: 0 170px 0 rgba(215,194,168,.08), 0 -125px 0 rgba(215,194,168,.08); }
.map-grid-lines { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 62px 62px; transform: rotate(7deg) scale(1.3); }
.map-pin { position: absolute; z-index: 2; top: 48%; left: 52%; display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid var(--brass); border-radius: 50% 50% 50% 0; background: var(--brass); color: var(--ink); font-family: var(--display); font-weight: 950; transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 0 0 18px rgba(181,138,87,.12); }
.map-pin span { transform: rotate(45deg); }
.site-footer { padding: 48px 0 26px; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand p { max-width: 36ch; color: var(--muted); font-size: .82rem; }
.footer-column strong { display: block; margin-bottom: 14px; color: var(--brass); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { display: block; padding: 5px 0; color: #c7baaa; font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); color: #7f7468; font-size: .7rem; }

/* Target cursor */
.target-cursor { position: fixed; z-index: 9999; top: 0; left: 0; width: 8px; height: 8px; pointer-events: none; transform: translate(-50%, -50%); transition: width .22s var(--ease), height .22s var(--ease); mix-blend-mode: difference; }
.target-cursor::before { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: #fff; }
.target-cursor i { position: absolute; width: 12px; height: 12px; border: 2px solid #fff; transition: inset .2s var(--ease); }
.target-cursor i:nth-child(1) { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.target-cursor i:nth-child(2) { right: 0; top: 0; border-left: 0; border-bottom: 0; }
.target-cursor i:nth-child(3) { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.target-cursor i:nth-child(4) { left: 0; bottom: 0; border-right: 0; border-top: 0; }
.target-cursor.is-targeting { width: var(--target-w, 50px); height: var(--target-h, 50px); }

@media (max-width: 1180px) {
  .pill-nav a { padding-inline: 10px; font-size: .67rem; }
  .brand-copy span { display: none; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path-card:nth-child(2) { border-right: 0; }
  .path-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hair-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hair-card { border-bottom: 1px solid var(--line); }
  .hair-card:nth-child(3) { border-right: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .pill-nav { display: none; }
  .menu-toggle { display: block; }
  .header-action .btn { min-height: 42px; padding-inline: 16px; }
  .hero-content, .story-grid, .service-preview, .proof-grid, .page-hero-grid, .barber-feature, .contact-grid, .map-shell, .campaign-hero { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-copy .display { font-size: clamp(4.5rem, 17vw, 9rem); }
  .story-collage { min-height: 580px; order: 2; }
  .proof-feature { min-height: 560px; }
  .service-preview { gap: 40px; }
  .page-hero-media { inset: 35% 0 0 20%; }
  .page-index { display: none; }
  .barber-feature { min-height: auto; }
  .barber-image { min-height: 560px; }
  .profile-list { grid-template-columns: 1fr; }
  .community-grid figure:first-child { min-height: 700px; }
  .course-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline article:nth-child(2) { border-right: 0; }
  .timeline article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .shop-layout, .booking-shell { grid-template-columns: 1fr; }
  .bag-panel { position: fixed; z-index: 800; inset: auto 0 0; max-height: 82vh; transform: translateY(105%); transition: transform .42s var(--ease); }
  .drawer-open .bag-panel { transform: none; }
  .mobile-bag-bar { position: sticky; z-index: 40; bottom: 12px; display: flex; justify-content: space-between; align-items: center; margin: 22px 12px 0; padding: 10px 12px 10px 18px; border-radius: 999px; background: var(--ink); color: var(--bone); box-shadow: var(--shadow); }
  .booking-summary { display: none; }
  .mobile-booking-bar { position: sticky; z-index: 45; bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 20px 8px 0; padding: 9px 10px 9px 18px; border-radius: 999px; background: var(--ink); color: var(--bone); box-shadow: var(--shadow); }
  .campaign-copy { min-height: 70svh; }
  .reel-frame { min-height: 90svh; }
  .map-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .target-cursor { display: none; }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(100% - 28px, 1240px); }
  .section { padding: 76px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .display { font-size: clamp(3.7rem, 19vw, 6.5rem); }
  .headline { font-size: clamp(3rem, 16vw, 5rem); }
  .brand-copy strong { font-size: .8rem; }
  .brand-mark { width: 42px; height: 42px; }
  .header-action { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .home-hero { padding-bottom: 28px; }
  .hero-content { align-items: end; }
  .hero-copy .display { max-width: 9ch; font-size: clamp(4rem, 18vw, 6.2rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding-bottom: 16px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-collage { min-height: 480px; }
  .story-collage .image-a { inset: 0 12% 16% 0; }
  .media-strip { grid-auto-columns: 78vw; }
  .proof-stack { grid-template-rows: auto; }
  .proof-stack article { min-height: 330px; }
  .page-hero { min-height: 64svh; padding-bottom: 42px; }
  .page-hero-media { inset: 32% 0 0 0; opacity: .25; }
  .filter-bar { top: 68px; margin-inline: -4px; border-radius: 16px; }
  .service-card { grid-template-columns: 1fr; }
  .service-price { display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .hair-grid { grid-template-columns: 1fr; }
  .hair-card { min-height: auto; border-right: 0; }
  .barber-image { min-height: 480px; }
  .celebrity-wall { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .celebrity-wall figure:nth-child(n) { grid-column: auto; grid-row: auto; }
  .celebrity-wall figure:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .community-grid { grid-template-columns: 1fr; }
  .community-grid figure, .community-grid figure:first-child { min-height: 520px; }
  .impact-band { grid-template-columns: 1fr; }
  .impact-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .academy-hero-art { inset: 40% 0 0; opacity: .3; }
  .course-card { min-height: 480px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .gallery-grid { columns: 2 150px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .before-after { min-height: 470px; }
  .gallery-item .gallery-caption { opacity: 1; transform: none; }
  .lightbox-card { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .lightbox-media { min-height: 55vh; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .product-copy { padding: 13px; }
  .product-copy p { display: none; }
  .product-actions { display: block; }
  .product-actions .btn { width: 100%; margin-top: 10px; }
  .choice-grid, .details-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .booking-app { margin-inline: -14px; padding: 24px 14px 110px; }
  .calendar-grid { gap: 3px; }
  .date-btn { min-height: 55px; font-size: .72rem; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price { text-align: left; }
  .campaign-copy { padding-inline: 22px; }
  .contact-list a, .contact-list div { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .mobile-menu nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right, .scale-in, .blur-word { opacity: 1; filter: none; transform: none; }
  .hero-media video[autoplay] { display: none; }
}

/* 2026 editorial refinement: deeper navigation, real section transitions and denser media */
.section { padding-block: clamp(72px, 7.5vw, 116px); }
.section:has(+ .curved-loop) { padding-bottom: clamp(54px, 5vw, 78px); }
.curved-loop + .section { padding-top: clamp(62px, 6vw, 92px); }
.pill-nav {
  --nav-x: 50%;
  --nav-y: 50%;
  overflow: hidden;
  border-color: rgba(181, 138, 87, .42);
  background:
    linear-gradient(105deg, rgba(255,255,255,.035), transparent 32%),
    linear-gradient(135deg, #0d0907 0%, #24130c 55%, #100a07 100%);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, .46),
    inset 0 1px rgba(255,255,255,.075),
    inset 0 -1px rgba(181,138,87,.14);
}
.pill-nav__glow {
  position: absolute;
  z-index: -2;
  width: 170px;
  height: 94px;
  left: var(--nav-x);
  top: var(--nav-y);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 112, 55, .35), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .18s ease, top .18s ease, opacity .2s ease;
}
.pill-nav a {
  color: #f7eee2;
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.pill-nav a.is-active {
  color: #fff9f0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.2), transparent 34%),
    linear-gradient(135deg, #bc7a36 0%, #8d4e20 52%, #633015 100%);
  box-shadow: inset 0 0 0 1px rgba(255,241,221,.16), 0 6px 18px rgba(98,48,21,.34);
}
.pill-hover-circle {
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #bd7b38, #7a3c19 72%);
}
.pill-label-hover { color: #fff9f0; }
.target-cursor.is-targeting {
  width: 42px;
  height: 42px;
}
.target-cursor i { opacity: 0; }
.target-cursor.is-targeting i { opacity: 1; }
.target-cursor.is-targeting::before {
  inset: 17px;
  background: #f4c178;
}
.target-cursor.is-targeting i { width: 9px; height: 9px; border-color: #f4c178; }
.location-ribbon {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(181,138,87,.34);
  background: linear-gradient(90deg, #5d2c14, #b16b2f 46%, #5d2c14);
  color: #fff8ee;
}
.location-ribbon > div {
  display: flex;
  width: max-content;
  animation: location-marquee 24s linear infinite;
}
.location-ribbon span {
  display: block;
  padding: 14px 28px;
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .15em;
  white-space: nowrap;
}
@keyframes location-marquee { to { transform: translateX(-50%); } }

.section-divider {
  --divider-from: #080706;
  --divider-to: #080706;
  position: relative;
  z-index: 4;
  height: clamp(72px, 8vw, 118px);
  margin-block: -1px;
  overflow: hidden;
  isolation: isolate;
  background: var(--divider-from);
  pointer-events: none;
}
.section-divider__line,
.section-divider__surface {
  position: absolute;
  inset: -1px -1%;
  display: block;
  transform-origin: left center;
  clip-path: var(--divider-shape);
}
.section-divider__line {
  z-index: 1;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 12%, #e2c392 50%, var(--brass) 88%, transparent 100%);
  opacity: .78;
  transform: translateY(-5px) scaleX(.15);
  transition: transform 1.15s var(--ease);
}
.section-divider__surface {
  z-index: 2;
  background: var(--divider-to);
}
.section-divider.is-visible .section-divider__line { transform: translateY(-5px) scaleX(1); }
.section-divider--wave {
  --divider-shape: polygon(0 34%, 5% 29%, 10% 27%, 15% 29%, 20% 35%, 25% 44%, 30% 53%, 35% 59%, 40% 61%, 45% 58%, 50% 51%, 55% 42%, 60% 34%, 65% 30%, 70% 30%, 75% 34%, 80% 42%, 85% 51%, 90% 57%, 95% 59%, 100% 56%, 100% 100%, 0 100%);
}
.section-divider--angle {
  --divider-shape: polygon(0 28%, 19% 38%, 42% 67%, 59% 46%, 76% 58%, 100% 32%, 100% 100%, 0 100%);
}
.section-divider--crest {
  --divider-shape: polygon(0 60%, 7% 51%, 14% 38%, 22% 29%, 31% 25%, 40% 28%, 49% 38%, 58% 49%, 67% 55%, 76% 54%, 85% 46%, 93% 36%, 100% 31%, 100% 100%, 0 100%);
}

.curved-loop {
  position: relative;
  z-index: 5;
  height: clamp(106px, 9vw, 140px);
  border-block-color: rgba(181,138,87,.35);
  background:
    radial-gradient(circle at 50% 145%, rgba(117,73,46,.6), transparent 58%),
    #0d0907;
}
.curved-loop::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,138,87,.7), transparent);
}
.curved-loop svg { width: 100%; height: 100%; margin-left: 0; }
.curved-loop__guide { stroke: rgba(181,138,87,.34); stroke-width: 1.3; }
.curved-loop text {
  fill: #f4eadc;
  font-size: 29px;
  letter-spacing: .095em;
}

.circular-seal {
  width: 176px;
  height: 176px;
  border-color: rgba(225,194,146,.58);
  background: radial-gradient(circle, rgba(8,7,6,.76) 0 53%, rgba(181,138,87,.18) 54% 55%, transparent 56%);
  box-shadow: 0 22px 55px rgba(0,0,0,.34), inset 0 0 0 8px rgba(8,7,6,.25);
  animation: none;
}
.circular-seal .seal-orbit {
  position: absolute;
  inset: 0;
  animation: spin 22s linear infinite;
}
.circular-seal i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2em;
  height: 1em;
  margin: -.5em 0 0 -.6em;
  color: #f7ecdf;
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform-origin: 50% 50%;
}
.circular-seal b {
  position: relative;
  z-index: 2;
  color: #fff7eb;
  font-size: 2.35rem;
  animation: none;
}
.circular-seal:hover .seal-orbit { animation-duration: 6s; }

.home-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 30%, rgba(189,109,46,.23), transparent 31%),
    radial-gradient(ellipse at 35% 102%, rgba(111,49,22,.38), transparent 44%),
    linear-gradient(115deg, rgba(8,7,6,.24), transparent 56%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-glow 9s ease-in-out infinite alternate;
}
@keyframes hero-glow { to { opacity: .62; transform: scale(1.035) translate3d(1.5%, -1%, 0); } }

.path-card-content,
.proof-stack article,
.proof-stack article > div,
.proof-stack article .title-md,
.proof-stack article .text-link { color: var(--bone); }
.proof-stack article::after {
  background: linear-gradient(0deg, rgba(8,7,6,.98) 0%, rgba(8,7,6,.76) 48%, rgba(8,7,6,.08) 100%);
}
.proof-stack article img { opacity: .58; }
.light-section .proof-stack .kicker { color: #d6a66c; }
.proof-stack--triple { grid-template-rows: repeat(3, 1fr); }
.proof-stack--triple article { min-height: 205px; }
.celebrity-films {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 720px;
}
.celebrity-films figure,
.film-wall figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--espresso);
}
.celebrity-films video,
.film-wall video { width: 100%; height: 100%; object-fit: cover; }
.celebrity-films figcaption,
.film-wall figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 46px 16px 14px;
  background: linear-gradient(transparent, rgba(8,7,6,.93));
  color: var(--bone);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.film-wall {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  grid-auto-rows: 480px;
  gap: 10px;
}

.abundance-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
  grid-auto-rows: 230px;
  gap: 10px;
  margin-top: 58px;
}
.abundance-mosaic figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--espresso);
}
.abundance-mosaic figure:nth-child(1),
.abundance-mosaic figure:nth-child(6) { grid-row: span 2; }
.abundance-mosaic figure:nth-child(4) { grid-column: span 2; }
.abundance-mosaic img { transition: transform .8s var(--ease), filter .5s ease; }
.abundance-mosaic figure:hover img { transform: scale(1.055); filter: saturate(1.08); }
.abundance-mosaic figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 16px 14px;
  background: linear-gradient(transparent, rgba(8,7,6,.92));
  color: var(--bone);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* The Shelf now behaves as a visual catalogue with a dedicated order drawer. */
.shop-collection { padding-block: clamp(68px, 7vw, 104px); }
.shop-layout { display: block; }
.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(270px, .55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}
.shop-intro .headline { max-width: 8ch; font-size: clamp(3.7rem, 6.8vw, 7.2rem); }
.shop-intro__aside { display: grid; gap: 18px; justify-items: start; padding-bottom: 8px; }
.product-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card {
  overflow: hidden;
  border-color: rgba(73,42,24,.18);
  background: #fffdfa;
  box-shadow: 0 16px 45px rgba(46,25,14,.08);
  transition: transform .45s var(--ease), box-shadow .45s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 65px rgba(46,25,14,.16); }
.product-image { aspect-ratio: 1 / 1.08; }
.product-copy { padding: 20px; }
.bag-panel {
  position: fixed;
  z-index: 910;
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100dvh;
  max-height: none;
  padding: 30px;
  overflow: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(117,73,46,.32), transparent 42%),
    #090705;
  color: var(--bone);
  box-shadow: -28px 0 90px rgba(0,0,0,.52);
  transform: translateX(105%);
  transition: transform .46s var(--ease);
}
.drawer-open .bag-panel { transform: none; }
body::after {
  content: "";
  position: fixed;
  z-index: 900;
  inset: 0;
  background: rgba(3,2,1,.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
body.drawer-open::after { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.bag-panel [data-close-bag] {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(241,233,222,.34);
  border-radius: 999px;
  color: var(--bone);
  background: transparent;
  cursor: pointer;
}
.bag-items { gap: 14px; }
.bag-line { display: grid; grid-template-columns: 76px 1fr; gap: 14px; }
.bag-line-image { width: 76px; height: 92px; overflow: hidden; background: var(--espresso); }
.bag-line-copy { min-width: 0; }
.empty-bag-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.empty-bag-visual img { aspect-ratio: .78; min-height: 140px; }
.empty-bag-copy { color: #d8caba; }
.mobile-bag-bar {
  position: fixed;
  z-index: 700;
  right: clamp(14px, 3vw, 40px);
  bottom: clamp(14px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 9px 10px 9px 20px;
  border: 1px solid rgba(181,138,87,.48);
  border-radius: 999px;
  background: rgba(8,7,6,.94);
  color: var(--bone);
  box-shadow: 0 18px 54px rgba(0,0,0,.42);
  backdrop-filter: blur(16px);
}
.shelf-lookbook {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 10px;
  margin-top: 78px;
}
.shelf-lookbook figure { position: relative; min-height: 420px; margin: 0; overflow: hidden; }
.shelf-lookbook figure:nth-child(2) { transform: translateY(34px); }
.shelf-lookbook figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 55px 18px 16px;
  background: linear-gradient(transparent, rgba(8,7,6,.9));
  color: var(--bone);
  font-weight: 850;
}

@media (max-width: 960px) {
  .film-wall { grid-template-columns: 1fr 1fr; grid-auto-rows: 420px; }
  .celebrity-films { min-height: 660px; }
  .abundance-mosaic { grid-template-columns: repeat(2, 1fr); }
  .abundance-mosaic figure:nth-child(4) { grid-column: auto; }
  .shop-intro { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bag-panel { inset: 0 0 0 auto; max-height: none; transform: translateX(105%); }
  .drawer-open .bag-panel { transform: none; }
  .mobile-bag-bar { position: fixed; margin: 0; }
}

@media (max-width: 680px) {
  .proof-stack--triple { grid-template-rows: auto; }
  .proof-stack--triple article { min-height: 310px; }
  .celebrity-films { min-height: auto; grid-template-rows: repeat(2, 420px); }
  .film-wall { grid-auto-rows: 340px; gap: 7px; }
  .section-divider { height: 78px; }
  .curved-loop { height: 104px; }
  .curved-loop text { font-size: 24px; letter-spacing: .07em; }
  .circular-seal { width: 154px; height: 154px; }
  .circular-seal i { font-size: .57rem; }
  .abundance-mosaic { grid-auto-rows: 190px; gap: 7px; }
  .abundance-mosaic figure:nth-child(1),
  .abundance-mosaic figure:nth-child(6) { grid-row: span 1; }
  .shop-intro .headline { font-size: clamp(3.4rem, 17vw, 5.3rem); }
  .shop-intro__aside { padding-bottom: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-image { aspect-ratio: .82; }
  .product-copy { padding: 13px; }
  .bag-panel { padding: 22px 18px 90px; }
  .bag-line { grid-template-columns: 68px 1fr; }
  .bag-line-image { width: 68px; height: 82px; }
  .mobile-bag-bar { left: 12px; right: 12px; bottom: 12px; justify-content: space-between; }
  .shelf-lookbook { grid-template-columns: 1fr 1fr; margin-top: 54px; }
  .shelf-lookbook figure { min-height: 330px; }
  .shelf-lookbook figure:nth-child(2) { transform: none; }
  .shelf-lookbook figure:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider__line { transform: translateY(-5px) scaleX(1); }
  .home-hero::before,
  .circular-seal .seal-orbit,
  .location-ribbon > div { animation: none !important; }
}

/* 2026 final art direction: one layered system across every Dictator page. */
main { overflow: clip; }

/* Card navigation: all routes remain one intentional interaction away. */
.card-nav-shell {
  position: fixed;
  z-index: 950;
  top: 16px;
  left: 50%;
  width: min(1080px, calc(100% - 32px));
  transform: translateX(-50%);
}
.card-nav {
  position: relative;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(222, 177, 124, .3);
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.045), transparent 30%),
    linear-gradient(135deg, rgba(19,12,9,.98), rgba(52,29,18,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.07);
  transition: height .55s var(--ease), border-radius .35s var(--ease), box-shadow .35s ease;
  backdrop-filter: blur(22px);
}
.card-nav.is-open {
  height: 390px;
  border-radius: 28px;
  box-shadow: 0 34px 110px rgba(0,0,0,.66), inset 0 1px rgba(255,255,255,.08);
}
.card-nav-top {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px 8px 14px;
}
.card-nav-toggle {
  justify-self: start;
  display: grid;
  place-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(241,233,222,.16);
  border-radius: 50%;
  background: rgba(7,5,4,.42);
  cursor: pointer;
}
.card-nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--bone);
  transition: transform .35s var(--ease);
}
.card-nav.is-open .card-nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.card-nav.is-open .card-nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.card-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.card-nav-brand img {
  width: 46px;
  height: 46px;
  padding: 4px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}
.card-nav-brand strong,
.card-nav-brand small { display: block; }
.card-nav-brand strong {
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}
.card-nav-brand small {
  margin-top: 4px;
  color: #c1ae99;
  font-size: .61rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card-nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 15px;
  background: var(--bone);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.card-nav-panel {
  position: absolute;
  inset: 68px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 9px;
  visibility: hidden;
  pointer-events: none;
}
.card-nav.is-open .card-nav-panel { visibility: visible; pointer-events: auto; }
.card-nav-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  border-radius: 19px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .38s ease, transform .5s var(--ease);
}
.card-nav.is-open .card-nav-group { opacity: 1; transform: none; }
.card-nav.is-open .card-nav-group:nth-child(2) { transition-delay: .055s; }
.card-nav.is-open .card-nav-group:nth-child(3) { transition-delay: .11s; }
.card-nav-group > p {
  margin: 0 0 auto;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.card-nav-group--cream { background: #f1e9de; color: #0a0807; }
.card-nav-group--copper { background: linear-gradient(145deg, #a95f2d, #613019); color: #fff8ef; }
.card-nav-group--black { border: 1px solid rgba(241,233,222,.15); background: #080706; color: #f1e9de; }
.card-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 43px;
  padding: 0 11px;
  border-radius: 11px;
  border-bottom: 1px solid currentColor;
  border-bottom-color: color-mix(in srgb, currentColor 17%, transparent);
  font-size: .83rem;
  font-weight: 850;
  transition: padding .25s var(--ease), background .25s ease, color .25s ease;
}
.card-nav-link:hover,
.card-nav-link:focus-visible { padding-inline: 15px; background: rgba(255,255,255,.12); }
.card-nav-group--cream .card-nav-link:hover,
.card-nav-group--cream .card-nav-link:focus-visible { background: rgba(8,7,6,.09); }
.card-nav-link.is-active {
  margin-block: 2px;
  padding-inline: 14px;
  border-bottom-color: transparent;
  background: var(--brass);
  color: var(--ink);
}

/* Seamless incoming surfaces overlap the outgoing section itself. */
main > section {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.section:not(.light-section):not(.brown-section) { background-color: var(--ink); }
.layered-section {
  --layer-depth: clamp(52px, 6vw, 88px);
  z-index: 3;
  margin-top: 0;
}
.layered-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2px;
  right: -2px;
  top: calc(var(--layer-depth) * -1);
  height: calc(var(--layer-depth) + 3px);
  background: inherit;
  pointer-events: none;
}
.layer-wave::before {
  clip-path: polygon(0 67%, 7% 57%, 14% 44%, 23% 34%, 34% 31%, 44% 38%, 54% 51%, 64% 60%, 74% 62%, 84% 54%, 93% 40%, 100% 33%, 100% 100%, 0 100%);
}
.layer-curve::before {
  clip-path: ellipse(74% 76% at 50% 100%);
}
.layer-angle::before {
  clip-path: polygon(0 44%, 18% 54%, 38% 72%, 58% 46%, 78% 62%, 100% 35%, 100% 100%, 0 100%);
}
.curved-loop + .layered-section { margin-top: 0; }
.curved-loop + .layered-section::before { display: none; }

/* Homepage: Treat-inspired editorial hero with a masculine portrait and reel rail. */
.home-hero--portrait {
  min-height: 100svh;
  padding: 150px 0 34px;
  background: #090706;
}
.hero-portrait {
  position: absolute;
  inset: 0 0 0 34%;
}
.hero-portrait img {
  object-position: center 28%;
  filter: saturate(.82) contrast(1.08);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090706 0%, rgba(9,7,6,.93) 14%, rgba(9,7,6,.3) 54%, rgba(9,7,6,.72) 100%),
    linear-gradient(0deg, #090706 0%, transparent 37%, rgba(9,7,6,.2) 100%);
}
.hero-content--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  align-items: center;
  gap: clamp(30px, 5vw, 82px);
}
.hero-content--editorial .hero-copy { padding-top: 20px; }
.hero-content--editorial .display {
  max-width: 8.6ch;
  font-size: clamp(5.1rem, 10.5vw, 10.2rem);
}
.hero-content--editorial .lede { max-width: 43ch; color: #dccdbb; }
.hero-reel-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  align-items: end;
  padding-top: 30px;
}
.hero-reel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241,233,222,.2);
  border-radius: 18px;
  aspect-ratio: .6;
  background: var(--espresso);
  box-shadow: 0 18px 48px rgba(0,0,0,.42);
  transform: translateY(var(--reel-y, 0));
}
.hero-reel--one { --reel-y: 18px; }
.hero-reel--two { --reel-y: -20px; }
.hero-reel--three { --reel-y: 8px; }
.hero-reel video { height: 100%; object-fit: cover; }
.hero-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(8,7,6,.85));
  pointer-events: none;
}
.hero-reel figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 9px 10px;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-seal-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  margin: -18px 0 8px auto;
}
.hero-seal-row > span {
  max-width: 15ch;
  color: #c0ae9b;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-seal-row .circular-seal { width: 154px; height: 154px; }
.hero-seal-row .circular-seal { --seal-radius: 64px; }
.hero-seal-row .circular-seal i {
  display: grid;
  place-items: center;
  width: 1.25em;
  height: 1.25em;
  margin: -.625em 0 0 -.625em;
  transform-origin: 50% 50%;
}
.hero-seal-row .circular-seal b { font-size: 2rem; }
.home-hero--portrait .hero-stats { margin-top: 4px; }

/* A guaranteed full-bleed, gapless moving statement. */
.curved-loop {
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: clamp(92px, 9vw, 132px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.curved-loop::before { display: none; }
.curved-loop__track {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  will-change: transform;
  animation: continuous-loop 30s linear infinite;
}
.curved-loop__track span {
  flex: none;
  display: block;
  padding-right: 1.5em;
  color: #f4eadc;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
  font-weight: 950;
  letter-spacing: .045em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: rotate(-1.4deg);
}
@keyframes continuous-loop { to { transform: translateX(-50%); } }

/* Haircut cards: fixed image rhythm with dedicated white editorial captions. */
.media-strip--cuts {
  align-items: stretch;
  grid-auto-columns: minmax(230px, 24vw);
  gap: 12px;
}
.media-strip--cuts figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(430px, 47vw, 640px);
  border: 1px solid rgba(8,7,6,.13);
  background: #fff;
}
.media-strip--cuts figure img { min-height: 0; }
.media-strip--cuts figcaption {
  position: static;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1.3;
}

/* Actual Google Maps embed with a deliberate branded frame. */
.map-shell { min-height: 500px; }
.map-art {
  position: relative;
  min-height: 500px;
  background: #15100d;
}
.map-art::before,
.map-art::after,
.map-grid-lines,
.map-pin { display: none; }
.map-art iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(.28) contrast(1.06);
}
.map-open {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(241,233,222,.22);
  border-radius: 999px;
  background: rgba(8,7,6,.9);
  color: var(--bone);
  box-shadow: 0 15px 45px rgba(0,0,0,.36);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
}

/* The Shelf: a considered visual catalogue and premium order drawer. */
.shop-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(8,7,6,.16);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(46,25,14,.1);
}
.product-card:nth-child(3n + 2) { transform: translateY(28px); }
.product-card:nth-child(3n + 2):hover { transform: translateY(20px); }
.product-image { aspect-ratio: .86; }
.product-copy { display: flex; flex-direction: column; min-height: 305px; }
.product-copy h3 { font-family: var(--display); font-size: 1.55rem; line-height: .95; text-transform: uppercase; }
.product-copy p { color: #62564d; }
.product-copy .form-field { margin-top: auto; }
.bag-panel {
  z-index: 1000;
  width: min(560px, 100%);
  padding: 28px 28px 100px;
  background:
    radial-gradient(circle at 100% 0%, rgba(165,91,42,.34), transparent 36%),
    linear-gradient(145deg, #0a0705, #1c100b);
}
.bag-panel-top {
  position: sticky;
  z-index: 5;
  top: -28px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin: -28px -28px 0;
  padding: 28px;
  border-bottom: 1px solid rgba(241,233,222,.12);
  background: rgba(10,7,5,.9);
  backdrop-filter: blur(18px);
}
.bag-panel-top .eyebrow { margin-bottom: 12px; }
.bag-close {
  flex: 0 0 auto;
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(241,233,222,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.bag-close span {
  grid-area: 1 / 1;
  display: block;
  width: 19px;
  height: 2px;
  background: var(--bone);
}
.bag-close span:first-child { transform: rotate(45deg); }
.bag-close span:last-child { transform: rotate(-45deg); }
.bag-intro {
  margin: 24px 0;
  color: #c6b6a4;
  font-size: .86rem;
}
.bag-items {
  display: grid;
  min-height: 180px;
  padding: 16px 0 24px;
  border-block: 1px solid rgba(241,233,222,.12);
}
.bag-line {
  padding: 12px;
  border: 1px solid rgba(241,233,222,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.bag-line-image { border-radius: 11px; }
.bag-fields {
  display: grid;
  gap: 14px;
  margin-block: 24px;
  padding: 20px;
  border: 1px solid rgba(241,233,222,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.bag-fields fieldset label {
  display: block;
  margin-top: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}

/* Social room. */
.social-hero .page-hero-media { left: 45%; opacity: .58; }
.social-network-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(3, minmax(240px, 1fr));
  gap: 12px;
}
.social-network-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(241,233,222,.13);
  border-radius: 20px;
}
.social-network-card--feature { grid-row: 1 / -1; }
.social-network-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,7,6,.96), rgba(8,7,6,.08) 72%);
}
.social-network-card img { transition: transform .8s var(--ease), filter .45s ease; }
.social-network-card:hover img { transform: scale(1.045); filter: saturate(1.12); }
.social-network-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 28px;
}
.social-network-card span {
  color: #dda35f;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.social-network-card h3 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: .94;
  text-transform: uppercase;
}
.social-network-card strong {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.social-film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.social-film-grid figure {
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8,7,6,.14);
  border-radius: 18px;
  background: #fff;
}
.social-film-grid video {
  aspect-ratio: .72;
  height: auto;
  object-fit: cover;
  background: var(--ink);
}
.social-film-grid figcaption {
  display: grid;
  gap: 6px;
  min-height: 105px;
  padding: 18px;
  color: var(--ink);
}
.social-film-grid figcaption span {
  color: var(--cognac);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.social-film-grid figcaption strong {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .card-nav.is-open { height: 430px; }
  .hero-content--editorial { grid-template-columns: 1fr; }
  .hero-content--editorial .hero-copy { max-width: 720px; }
  .hero-portrait { inset-left: 28%; }
  .hero-reel-rail {
    grid-template-columns: repeat(3, minmax(0, 150px));
    width: min(100%, 500px);
    margin-left: auto;
  }
  .hero-reel { max-height: 270px; }
  .hero-seal-row { margin-top: -130px; margin-right: 530px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(3n + 2),
  .product-card:nth-child(3n + 2):hover { transform: none; }
}

@media (max-width: 720px) {
  .card-nav-shell { top: 10px; width: calc(100% - 20px); }
  .card-nav { height: 62px; border-radius: 19px; }
  .card-nav.is-open {
    height: min(760px, calc(100dvh - 20px));
    border-radius: 23px;
  }
  .card-nav-top {
    height: 62px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 7px 10px;
  }
  .card-nav-toggle { width: 44px; height: 44px; order: 2; justify-self: end; }
  .card-nav-brand { order: 1; justify-self: start; }
  .card-nav-brand img { width: 42px; height: 42px; }
  .card-nav-brand strong { font-size: .8rem; }
  .card-nav-brand small { font-size: .53rem; }
  .card-nav-cta { display: none; }
  .card-nav-panel {
    inset: 62px 0 0;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    gap: 7px;
    padding: 7px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .card-nav-group { min-height: auto; padding: 16px; }
  .card-nav-group > p { margin-bottom: 10px; }
  .card-nav-link { min-height: 42px; }

  .layered-section { --layer-depth: 52px; }
  .layer-curve::before { clip-path: ellipse(96% 74% at 50% 100%); }

  .home-hero--portrait {
    min-height: auto;
    padding: 122px 0 30px;
  }
  .hero-portrait { inset: 0 0 34% 12%; opacity: .72; }
  .hero-portrait img { object-position: center top; }
  .hero-portrait::after {
    background:
      linear-gradient(90deg, #090706 0%, rgba(9,7,6,.24) 65%, rgba(9,7,6,.76)),
      linear-gradient(0deg, #090706 6%, transparent 58%, rgba(9,7,6,.2));
  }
  .hero-content--editorial { gap: 24px; }
  .hero-content--editorial .display {
    max-width: 8ch;
    font-size: clamp(4.2rem, 19vw, 6.2rem);
  }
  .hero-content--editorial .lede { max-width: 34ch; }
  .hero-reel-rail {
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    gap: 7px;
    width: 100%;
    overflow: visible;
  }
  .hero-reel {
    max-height: none;
    border-radius: 13px;
    transform: none;
  }
  .hero-reel--two { transform: translateY(-13px); }
  .hero-reel figcaption { inset-inline: 7px; font-size: .48rem; }
  .hero-seal-row {
    width: 100%;
    margin: 10px 0;
    justify-content: space-between;
  }
  .hero-seal-row .circular-seal { --seal-radius: 54px; width: 132px; height: 132px; }
  .hero-seal-row .circular-seal i { font-size: .48rem; }
  .home-hero--portrait .hero-stats { grid-template-columns: 1fr 1fr; }

  .curved-loop__track span { font-size: 1.55rem; }
  .media-strip--cuts { grid-auto-columns: 82vw; }
  .media-strip--cuts figure { height: 540px; }

  .map-shell { min-height: 0; }
  .map-art { min-height: 420px; }
  .map-open { left: 14px; right: 14px; bottom: 14px; justify-content: center; }

  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-image { aspect-ratio: 1.06; }
  .product-copy { min-height: 270px; }
  .bag-panel { padding-inline: 16px; }
  .bag-panel-top { margin-inline: -16px; padding-inline: 16px; }

  .social-network-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .social-network-card,
  .social-network-card--feature { grid-row: auto; min-height: 420px; }
  .social-film-grid { grid-template-columns: 1fr; }
  .social-film-grid video { aspect-ratio: .85; max-height: 560px; }
}

@media (max-width: 430px) {
  .card-nav-brand small { display: none; }
  .home-hero--portrait .shell { width: min(100% - 24px, 1240px); }
  .hero-reel-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-reel figcaption { display: none; }
  .hero-seal-row > span { font-size: .54rem; }
  .media-strip--cuts figure { height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  .curved-loop__track { animation: none !important; transform: translateX(-8%); }
  .card-nav-group { opacity: 1; transform: none; }
  .home-hero--portrait::before { animation: none; }
  .hero-reel video[autoplay] { display: none; }
}

/* Treat-matched two-way section boundaries. The outgoing section extends
   behind the real incoming section and both share the exact same contour. */
main { overflow: clip; }
.has-surface-transition {
  --edge-depth: clamp(118px, 10vw, 170px);
  padding-bottom: calc(var(--edge-original-padding, 0px) + var(--edge-depth)) !important;
}
.is-layered-section {
  --edge-depth: clamp(118px, 10vw, 170px);
  position: relative;
  margin-top: calc(-1 * var(--edge-depth));
  padding-top: calc(var(--edge-original-padding-top, 0px) + var(--edge-depth)) !important;
  clip-path: var(--edge-clip);
}
.section-transition {
  --edge-reveal: 0;
  --edge-depth: clamp(118px, 10vw, 170px);
  position: relative;
  height: var(--edge-depth);
  margin-top: calc(-1 * var(--edge-depth));
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  background: transparent;
}
.section-transition.is-in-view { --edge-reveal: 1; }
.section-transition__stroke {
  position: absolute;
  z-index: 1;
  display: block;
  inset: -2px -2% -2px;
  clip-path: var(--edge-clip);
  background: var(--edge-line-color, #7b4426);
  filter: drop-shadow(0 -1px 1px rgba(8,7,6,.18));
  opacity: var(--edge-reveal);
  transform: translateY(-8px) scaleX(var(--edge-reveal));
  transform-origin: var(--edge-origin, left) center;
  will-change: transform;
  transition: opacity 420ms ease, transform 950ms cubic-bezier(.22,1,.36,1);
}
.section-transition--wave,
.section-transition--crest { --edge-origin: left; }
.section-transition--angle { --edge-origin: right; }

/* The same full-width SVG text path used by the Treat demo. */
.curved-loop {
  display: block;
  width: 100%;
  max-width: none;
  height: 220px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-block: 1px solid rgba(241,233,222,.14);
  background: #0b0807;
}
.curved-loop svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: visible;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.curved-loop path {
  stroke: rgba(164,98,53,.72);
  stroke-width: 2;
}
.curved-loop text {
  fill: #f4efe7;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Final correction pass: readable, aligned editorial media cards. */
.media-strip figure {
  border-radius: 20px;
}
.media-strip figcaption {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.media-strip--cuts figure {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(8,7,6,.13);
}
.media-strip--cuts figcaption {
  min-height: 94px;
  border-top: 1px solid rgba(8,7,6,.12);
  border-radius: 0 0 19px 19px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: .015em;
  line-height: 1.05;
  text-shadow: none;
  text-transform: uppercase;
}

/* Final correction pass: a clean, even retail shelf. */
.product-grid { align-items: stretch; }
.product-card,
.product-card:nth-child(3n + 2),
.product-card:nth-child(3n + 2):hover {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  transform: none;
}
.product-card:hover { transform: translateY(-5px); }
.product-image { aspect-ratio: 1 / .9; }
.product-copy {
  min-height: 330px;
  padding: 24px;
}
.product-copy small {
  color: var(--cognac);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-copy h3 {
  margin-top: 7px;
  font-size: clamp(1.65rem, 2vw, 2rem);
}
.product-copy p {
  min-height: 56px;
  font-size: .85rem;
  line-height: 1.55;
}
.product-actions {
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(8,7,6,.1);
}
.product-actions > strong {
  font-family: var(--display);
  font-size: 1.6rem;
}

/* Final correction pass: larger, calmer chair selection cards. */
.barber-options {
  gap: 14px;
}
.barber-options .choice-card {
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 168px;
  padding: 14px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(46,25,14,.07);
}
.barber-options .choice-card:first-child {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}
.barber-options img {
  width: 128px;
  height: 140px;
  border-radius: 12px;
}
.barber-options .choice-card > span {
  align-self: center;
}
.barber-options .choice-card small {
  color: var(--cognac);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.barber-options .choice-card h3 {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}
.barber-options .choice-card p {
  margin-top: 10px;
  font-size: .8rem;
  line-height: 1.45;
}

/* Slightly larger reels without altering the supplied videos. */
.hero-content--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 540px);
  gap: clamp(30px, 4vw, 64px);
}
.hero-reel-rail { gap: 11px; }

@media (max-width: 960px) {
  .hero-content--editorial { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .has-surface-transition,
  .is-layered-section,
  .section-transition { --edge-depth: 96px; }
  .curved-loop { height: 180px; }
  .curved-loop text { font-size: 27px; }
  .media-strip--cuts figcaption { min-height: 88px; font-size: 1.25rem; }
  .product-copy { min-height: 300px; }
  .barber-options .choice-card,
  .barber-options .choice-card:first-child {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 150px;
    padding: 12px;
  }
  .barber-options .choice-card:first-child {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px;
  }
  .barber-options img { width: 110px; height: 124px; }
}

@media (max-width: 520px) {
  .barber-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .section-transition__stroke {
    opacity: 1;
    transform: translateY(-8px);
    transition: none;
  }
}
