:root {
  --void: #080706;
  --ink: #110e0c;
  --panel: #171310;
  --raised: #1e1914;
  --ivory: #f3eadc;
  --ivory-dim: rgba(243, 234, 220, 0.72);
  --brass: #c9a46c;
  --brass-deep: #9a7840;
  --smoke: #8a8176;
  --line: rgba(243, 234, 220, 0.12);
  --grid: rgba(243, 234, 220, 0.08);
  --event: #3a2e20;
  --event-hover: #4a3b28;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.display {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8.4vw, 7.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

.display--sm {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
}

@media (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: none;
  }

  .cursor {
    display: block;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 200;
  }

  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    translate: -50% -50%;
  }

  .cursor__dot {
    width: 5px;
    height: 5px;
    background: var(--brass);
  }

  .cursor__ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 164, 108, 0.7);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease);
  }

  body.is-hovering .cursor__ring {
    width: 56px;
    height: 56px;
    background: rgba(201, 164, 108, 0.08);
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: var(--void);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader__line {
  position: absolute;
  bottom: 18%;
  width: min(220px, 50vw);
  height: 1px;
  background: rgba(243, 234, 220, 0.15);
  overflow: hidden;
}

.loader__line::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--brass);
  animation: load 1.2s var(--ease) infinite;
}

@keyframes load {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(320%);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1.2rem, 5vw, 4.5rem);
  color: var(--ivory);
  mix-blend-mode: difference;
}

body:not([data-page="home"]) .nav,
.nav.is-solid {
  mix-blend-mode: normal;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links a[aria-current="page"] {
  color: var(--brass);
}

.nav__cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid currentColor;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 18px;
  padding: 0;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: currentColor;
}

.nav__toggle span:first-child {
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.btn--light {
  background: var(--ivory);
  color: var(--void);
}

.btn--brass {
  background: var(--brass);
  color: var(--void);
}

.btn--ghost {
  border-color: rgba(243, 234, 220, 0.4);
  background: transparent;
}

.btn--dark {
  background: var(--ivory);
  color: var(--void);
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--brass);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.32s;
}
.delay-4 {
  transition-delay: 0.44s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1.08) translateY(0);
  }
  to {
    transform: scale(1.16) translateY(-4%);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.2) 0%, rgba(8, 7, 6, 0.18) 40%, rgba(8, 7, 6, 0.88) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 164, 108, 0.16), transparent 42%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.2rem, 5vw, 4.5rem) 7rem;
  max-width: min(92vw, 58rem);
}

.hero__lede {
  margin-top: 1.3rem;
  max-width: 28rem;
  font-size: 1.08rem;
  color: var(--ivory-dim);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.2rem, 5vw, 4.5rem);
  bottom: 2.4rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__scroll span {
  display: inline-block;
  padding-bottom: 1.4rem;
  border-bottom: 40px solid rgba(243, 234, 220, 0.35);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.marquee__track span::after {
  content: "·";
  margin-left: 2.4rem;
  color: var(--smoke);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.house {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4.5rem);
}

.house__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.house__portrait {
  position: relative;
}

.house__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.8);
}

.house__portrait::after {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brass);
  pointer-events: none;
}

.house__caption {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

.house__story h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1.3rem;
}

.house__story p + p {
  margin-top: 1rem;
  color: var(--ivory-dim);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.pillar {
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.2rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.7rem 0 0.8rem;
}

.pillar p {
  color: var(--ivory-dim);
}

.barbers {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4.5rem);
}

.barbers__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.barbers__head h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 10ch;
}

.barbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.barber img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 1s var(--ease), filter 1s var(--ease);
}

.barber:hover img {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.08);
}

.barber {
  overflow: hidden;
}

.barber h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1rem 0 0.2rem;
}

.barber p {
  color: var(--smoke);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tease {
  padding: 0 clamp(1.2rem, 5vw, 4.5rem) clamp(4.5rem, 8vw, 7rem);
}

.tease__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.4rem;
}

.tease__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.8rem;
}

.tease__card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.tease__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 1.1s var(--ease);
}

.tease__card:hover img {
  transform: scale(1.06);
}

.tease__card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.tease__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 7, 6, 0.72));
}

.cta {
  margin: 0 clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 6rem);
  padding: clamp(3rem, 8vw, 6rem);
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.35), rgba(8, 7, 6, 0.82)),
    url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=2000&q=80") center / cover;
  min-height: 420px;
  display: grid;
  align-content: end;
}

.cta h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 12ch;
  margin-bottom: 1.4rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem clamp(1.2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: 0.88rem;
}

.footer .nav__logo {
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.page {
  padding: calc(var(--nav-h) + 2.4rem) clamp(1.2rem, 5vw, 4.5rem) 4rem;
}

.archive-hero h1,
.builder__intro h1,
.book__intro h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 14ch;
}

.archive-hero__lede,
.builder__intro p,
.book__intro p:last-child {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: var(--ivory-dim);
}

.filters-wrap {
  margin: 2rem 0;
}

.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0 0;
  background: var(--void);
}

.filters__logo {
  display: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filters__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.filters__links {
  display: none;
}

.filters.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 96;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0;
  padding: 1rem clamp(1.2rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(16px);
}

.filters.is-pinned .filters__logo {
  display: inline-block;
  justify-self: start;
}

.filters.is-pinned .filters__tabs {
  grid-column: 2;
}

.filters.is-pinned .filters__links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filters.is-pinned .filters__links a[aria-current="page"] {
  color: var(--brass);
}

.filters button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--ivory);
}

.filters button.is-active {
  background: var(--ivory);
  color: var(--void);
  border-color: var(--ivory);
}

.masonry {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 12px;
  perspective: 1200px;
}

.masonry::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(280px 280px at var(--spot-x, 50%) var(--spot-y, 40%), rgba(201, 164, 108, 0.16), transparent 70%);
  mix-blend-mode: soft-light;
  z-index: 5;
}

.tile {
  position: relative;
  overflow: hidden;
  background: #2a221c;
  color: var(--ivory);
  transform-style: preserve-3d;
  clip-path: inset(12% 8%);
  animation: clipIn 1.1s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes clipIn {
  to {
    clip-path: inset(0);
  }
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 1s var(--ease);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 7, 6, 0.78));
  pointer-events: none;
}

.tile__meta {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  z-index: 2;
}

.tile__meta p {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.tile__meta h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.tile.is-wide {
  grid-column: span 8;
  grid-row: span 5;
}

.tile.is-tall {
  grid-column: span 4;
  grid-row: span 7;
}

.tile.is-square {
  grid-column: span 4;
  grid-row: span 5;
}

.tile.is-feature {
  grid-column: span 12;
  grid-row: span 6;
}

.tile:hover img {
  transform: scale(1.06);
}

.lookbook {
  margin-top: 3.5rem;
}

.lookbook__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
}

.lookbook__card {
  flex: 0 0 min(72vw, 340px);
  scroll-snap-align: start;
}

.lookbook__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.8);
}

.lookbook__card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0.7rem 0 0.15rem;
}

.lookbook__card p {
  color: var(--smoke);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  background: rgba(8, 7, 6, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.lightbox__copy {
  padding: 2rem 1.6rem;
  align-self: center;
}

.lightbox__copy p:first-child {
  color: var(--brass);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.lightbox__copy h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 0.6rem 0 1rem;
}

.lightbox__nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.builder__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: 2.4rem;
}

.builder__preview {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.3rem 1.15rem 1.5rem;
}

.builder__viewport {
  margin: 0.8rem 0 1.1rem;
  background: #0c0a08;
  overflow: hidden;
}

#visitCanvas {
  display: block;
  width: 100%;
  height: auto;
}

.builder__summary p:first-child {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0;
}

.builder__time {
  color: var(--smoke);
  font-size: 0.9rem;
}

.choice {
  border: 0;
  padding: 0;
  margin: 0 0 1.4rem;
}

.choice legend {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.6rem;
}

.choice__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice__btn {
  min-width: 86px;
  padding: 0.7rem 0.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice__btn.is-active {
  border-color: var(--brass);
  background: #241c14;
  color: var(--brass);
}

.book {
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 5vw, 4.5rem) 4rem;
}

.set-banner {
  margin: 0 0 1.4rem;
  padding: 0.95rem 1rem;
  background: var(--panel);
  border-left: 3px solid var(--brass);
}

.book__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.book__side,
.gcal {
  background: var(--panel);
  border: 1px solid var(--line);
}

.book__side {
  padding: 1.2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.book__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--smoke);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--void);
  border-radius: 0;
  padding: 0.75rem 0.8rem;
}

.mini-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.4rem 0 0.8rem;
}

.mini-cal__head h2 {
  font-size: 0.95rem;
  font-weight: 500;
}

.mini-cal__head button,
.gcal__toolbar button {
  background: var(--raised);
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

.mini-cal__dow,
.mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
}

.mini-cal__dow {
  font-size: 0.68rem;
  color: var(--smoke);
  margin-bottom: 0.3rem;
}

.mini-cal__grid button {
  background: none;
  border: 0;
  aspect-ratio: 1;
  border-radius: 999px;
  font-size: 0.78rem;
}

.mini-cal__grid button.is-outside,
.mini-cal__grid button.is-closed {
  color: #4a433c;
}

.mini-cal__grid button.is-closed {
  text-decoration: line-through;
}

.mini-cal__grid button.is-today {
  box-shadow: inset 0 0 0 1px var(--brass);
}

.mini-cal__grid button.is-selected {
  background: var(--brass);
  color: var(--void);
}

.gcal__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--grid);
}

.gcal__toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gcal__toolbar h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-left: 0.4rem;
}

.gcal__today {
  width: auto !important;
  padding: 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gcal__hint {
  font-size: 0.75rem;
  color: var(--smoke);
}

.gcal__board {
  overflow: auto;
  max-height: min(78vh, 880px);
}

.gcal__week {
  min-width: 760px;
  display: grid;
  grid-template-columns: 64px repeat(5, minmax(0, 1fr));
}

.gcal__head,
.gcal__slot,
.gcal__time {
  border-bottom: 1px solid var(--grid);
  border-right: 1px solid var(--grid);
}

.gcal__head {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--panel);
  padding: 0.8rem 0.5rem;
  text-align: center;
}

.gcal__head strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--smoke);
}

.gcal__head span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 1.15rem;
}

.gcal__head.is-today span {
  background: var(--brass);
  color: var(--void);
}

.gcal__time {
  color: var(--smoke);
  font-size: 0.7rem;
  padding: 0.4rem 0.5rem 0 0;
  text-align: right;
}

.gcal__slot {
  position: relative;
  min-height: 64px;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(243, 234, 220, 0.03) 50%);
  background-size: 100% 32px;
}

.gcal__event {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 3px;
  bottom: 3px;
  background: var(--event);
  border-left: 3px solid var(--brass);
  padding: 0.35rem 0.45rem;
  font-size: 0.74rem;
  line-height: 1.25;
  text-align: left;
  z-index: 2;
}

.gcal__empty {
  padding: 2rem 1rem;
  color: var(--smoke);
  text-align: center;
}

.gcal__event:hover,
.gcal__event:focus-visible {
  background: var(--event-hover);
}

.gcal__event small {
  display: block;
  color: var(--brass);
  opacity: 0.85;
}

.event-pop,
.confirm {
  position: fixed;
  z-index: 150;
}

.event-pop {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(420px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.event-pop[hidden],
.event-pop__backdrop[hidden],
.confirm[hidden] {
  display: none;
}

.event-pop__backdrop,
.confirm {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.62);
}

.confirm {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.confirm__card {
  width: min(460px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.event-pop h3,
.confirm__card h2 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.event-pop__service,
.confirm__fine {
  color: var(--smoke);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.event-pop__set {
  margin: 0 0 0.85rem;
}

.event-pop__set[hidden] {
  display: none;
}

.event-pop__set img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: contain;
  background: #0c0a08;
  border: 1px solid var(--line);
}

.event-pop__set p {
  margin-top: 0.45rem;
  color: var(--smoke);
  font-size: 0.8rem;
}

.event-pop__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: grid;
    align-content: center;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.2rem 1.4rem 1.6rem;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    mix-blend-mode: normal;
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .display {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .hero__copy {
    padding: 0 1.2rem 3.2rem;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__scroll {
    display: none;
  }

  .house__grid,
  .pillars,
  .barbers__grid,
  .tease__row,
  .builder__stage,
  .book__layout,
  .lightbox {
    grid-template-columns: 1fr;
  }

  .house__portrait::after {
    inset: 0.8rem;
  }

  .barbers__head,
  .tease__head {
    flex-direction: column;
    align-items: start;
  }

  .barbers__head h2,
  .cta h2 {
    max-width: none;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .builder__preview {
    position: static;
  }

  .filters.is-pinned {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
  }

  .filters.is-pinned .filters__logo,
  .filters.is-pinned .filters__links {
    display: none;
  }

  .filters.is-pinned .filters__tabs {
    grid-column: auto;
    justify-content: center;
  }

  .tile.is-wide,
  .tile.is-tall,
  .tile.is-square,
  .tile.is-feature {
    grid-column: span 12;
    grid-row: span 5;
  }

  .lightbox img {
    height: 42vh;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
  }

  .gcal__week {
    min-width: 0;
    grid-template-columns: 36px repeat(5, minmax(0, 1fr));
  }

  .gcal__toolbar {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .gcal__toolbar h2 {
    font-size: 0.95rem;
  }

  .gcal__head {
    padding: 0.45rem 0.12rem;
  }

  .gcal__head strong {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }

  .gcal__head span {
    min-width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .gcal__time {
    font-size: 0.58rem;
    padding: 0.15rem 0.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__media img {
    transform: none;
  }
}
