/* ================================================================
   NORD BARBER CLUB — styles.css
   Premium cinematic barber studio
================================================================= */

/* ================================================================
   1. DESIGN TOKENS
================================================================= */
:root {
  /* Palette — warm dark luxury */
  --ink:        #070706;
  --coal:       #131210;
  --deep:       #1a1816;
  --mid:        #252220;
  --stone:      #35322f;
  --ash:        #5a5653;
  --smoke:      #928d88;
  --linen:      #ccc7bf;
  --ivory:      #e8e2d9;
  --paper:      #f5f0e8;
  --gold:       #c4aa84;
  --gold-dim:   #9a8464;

  /* Typography */
  --f-serif: 'Cormorant', 'Georgia', serif;
  --f-sans:  'Jost', system-ui, sans-serif;

  /* Easing */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --section-v:   clamp(6rem, 11vw, 13rem);
  --gutter:      clamp(1.5rem, 5vw, 7rem);
  --nav-h:       76px;
}

/* ================================================================
   2. RESET & BASE
================================================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--linen);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ================================================================
   3. FILM GRAIN — Atmospheric texture overlay
================================================================= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.06;
  /* SVG fractal noise grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grainMove 0.35s steps(1) infinite;
  will-change: background-position;
}

@keyframes grainMove {
  0%   { background-position:   0%   0%; }
  12%  { background-position: -6%  -6%; }
  25%  { background-position:  8%   3%; }
  37%  { background-position: -3%  12%; }
  50%  { background-position:  6%  -8%; }
  62%  { background-position: -10%  5%; }
  75%  { background-position:  4% -12%; }
  87%  { background-position: -7%   8%; }
  100% { background-position:  3%   0%; }
}

/* ================================================================
   4. CUSTOM CURSOR
================================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.cursor__ring {
  position: absolute;
  width: 34px; height: 34px;
  border: 1px solid rgba(245, 240, 232, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .45s var(--ease-expo),
              height .45s var(--ease-expo),
              border-color .3s;
  will-change: left, top, width, height;
}

.cursor--hovered .cursor__ring {
  width: 58px; height: 58px;
  border-color: var(--gold);
}

/* ================================================================
   5. LOADER
================================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .9s var(--ease-circ), visibility .9s;
}

.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Wordmark with masked slide-up */
.loader__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.loader__word-wrap {
  overflow: hidden;
}

.loader__nord {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--paper);
  transform: translateY(105%);
  animation: wordUp 1s .1s var(--ease-expo) forwards;
}

.loader__sub {
  display: block;
  font-family: var(--f-sans);
  font-size: clamp(0.55rem, 1.5vw, 0.75rem);
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--ash);
  text-transform: uppercase;
  transform: translateY(105%);
  animation: wordUp 1s .25s var(--ease-expo) forwards;
}

@keyframes wordUp {
  to { transform: translateY(0); }
}

.loader__bar-track {
  width: clamp(160px, 25vw, 240px);
  height: 1px;
  background: var(--mid);
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: barFill 1.9s var(--ease-expo) forwards;
}

@keyframes barFill { to { width: 100%; } }

.loader__pct {
  font-family: var(--f-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--ash);
}

/* ================================================================
   6. NAVBAR
================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background .5s var(--ease-expo),
              backdrop-filter .5s;
}

.nav.is-scrolled {
  background: rgba(7, 7, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__logo {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--paper);
}

.nav__logo em {
  font-style: normal;
  color: var(--gold);
  margin: 0 3px;
}

/* Desktop links */
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color .3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-expo);
}

.nav__link:hover           { color: var(--paper); }
.nav__link:hover::after    { width: 100%; }

.nav__link--book {
  color: var(--gold);
  border: 1px solid var(--stone);
  padding: .55rem 1.2rem;
  transition: background .3s, border-color .3s, color .3s;
}
.nav__link--book::after     { display: none; }
.nav__link--book:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 810;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ivory);
  transition: transform .35s var(--ease-expo), opacity .3s;
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

/* ================================================================
   7. BUTTONS
================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid transparent;
  transition: background .35s, border-color .35s, color .35s,
              transform .25s var(--ease-expo), box-shadow .35s;
  cursor: none;
  user-select: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--solid:hover {
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 8px 32px rgba(196, 170, 132, 0.25);
}

.btn--outline {
  color: var(--ivory);
  border-color: var(--stone);
}
.btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn__arrow {
  transition: transform .3s var(--ease-expo);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--wa {
  background: #1a1a1a;
  border-color: var(--stone);
  color: var(--ivory);
}
.btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--ink);
}

/* ================================================================
   8. TYPOGRAPHY HELPERS
================================================================= */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -.015em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--stone);
  transition: gap .3s var(--ease-expo), border-color .3s;
  width: fit-content;
}
.text-link:hover { gap: 1rem; border-color: var(--gold); }

/* ================================================================
   9. SCROLL REVEAL SYSTEM
================================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .85s var(--ease-expo),
              transform .85s var(--ease-expo);
}

.reveal-clip {
  clip-path: inset(100% 0 0 0);
}
.reveal-clip.is-visible {
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1.3s var(--ease-expo);
}

/* Hero reveals triggered via JS (not IntersectionObserver) */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s var(--ease-expo),
              transform 1s var(--ease-expo);
}

/* ================================================================
   10. HERO
================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Parallax BG */
.hero__bg {
  position: absolute;
  inset: -8%;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}

/* Cinematic gradient veil */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,7,6,.97) 0%,
      rgba(7,7,6,.55) 45%,
      rgba(7,7,6,.18) 100%),
    linear-gradient(to right,
      rgba(7,7,6,.45) 0%,
      transparent 55%);
  z-index: 1;
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(4rem, 7vw, 7rem);
  max-width: 1440px;
  width: 100%;
}

/* Tag / eyebrow */
.hero__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.8rem;
}

.hero__tag-line {
  display: block;
  width: 38px; height: 1px;
  background: var(--ash);
}

/* Headline */
.hero__hl {
  line-height: 1;
  margin-bottom: 1.8rem;
}

.hero__hl-pre {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: .02em;
  margin-bottom: .3rem;
}

.hero__hl-main {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(5.5rem, 15vw, 14rem);
  font-weight: 600;
  font-style: italic;
  color: var(--paper);
  letter-spacing: -.03em;
  line-height: .85;
}

.hero__sub {
  font-size: clamp(.8rem, 1.5vw, .95rem);
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.9;
  color: var(--smoke);
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  writing-mode: vertical-rl;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ash);
}

.hero__scroll-line {
  width: 1px;
  height: 65px;
  background: linear-gradient(to bottom, var(--ash), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%     { opacity: .4; transform: scaleY(.6); transform-origin: top; }
}

.hero__index {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) + 2px);
  transform: translateY(-50%);
  font-size: 0.6rem;
  letter-spacing: .22em;
  color: var(--stone);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* ================================================================
   11. MARQUEE STRIP
================================================================= */
.strip {
  overflow: hidden;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: .9rem 0;
  background: var(--coal);
}

.strip__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.strip__track span {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}

.strip__track em {
  color: var(--gold);
  font-style: normal;
}

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

/* ================================================================
   12. ABOUT
================================================================= */
.about {
  padding: var(--section-v) 0;
  background: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 7vw, 9rem);
  padding: 0 var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

/* Image */
.about__img-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 1.8s var(--ease-expo);
}

.about__img-frame.is-visible .about__img {
  transform: scale(1);
}

/* Stats bar */
.about__stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mid);
}

.stat { flex: 1; }

.stat__num {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
}

.stat__num sup {
  font-size: 1.2rem;
  color: var(--gold);
  vertical-align: super;
}

.stat p {
  font-size: 0.65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: .5rem;
}

/* Copy side */
.about__copy {
  padding-top: clamp(2rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about__title {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--paper);
}
.about__title em { font-style: italic; color: var(--gold); }

.about__text p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--smoke);
  margin-bottom: .9rem;
}

/* ================================================================
   13. SERVICES
================================================================= */
.services {
  padding: var(--section-v) var(--gutter);
  background: var(--coal);
}

.services__head {
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mid);
}

/* Individual service card */
.svc-card {
  position: relative;
  background: var(--coal);
  padding: clamp(2rem, 3vw, 3rem);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: none;
  transition: background .4s;
}

/* Photo backdrop (hidden until hover) */
.svc-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .65s var(--ease-expo),
              transform .65s var(--ease-expo);
  z-index: 0;
}

/* Dark gradient over photo */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7,7,6,.92) 0%,
    rgba(7,7,6,.5) 55%,
    transparent 100%);
  opacity: 0;
  transition: opacity .65s;
  z-index: 1;
}

.svc-card:hover .svc-card__bg { opacity: 1; transform: scale(1); }
.svc-card:hover::after         { opacity: 1; }

/* Card content */
.svc-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.svc-card__num {
  font-family: var(--f-serif);
  font-size: 0.65rem;
  letter-spacing: .35em;
  color: var(--gold);
}

.svc-card__name {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: .02em;
  line-height: 1.1;
}

.svc-card__desc {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--smoke);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease-expo),
              opacity .4s;
}

.svc-card:hover .svc-card__desc {
  max-height: 120px;
  opacity: 1;
}

.svc-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--mid);
  transition: border-color .3s;
}

.svc-card:hover .svc-card__foot { border-color: var(--stone); }

.svc-card__price {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
}

.svc-card__dur {
  font-size: 0.65rem;
  letter-spacing: .18em;
  color: var(--ash);
}

/* ================================================================
   14. THE SPACE
================================================================= */
.space {
  padding: var(--section-v) 0;
  background: var(--ink);
}

.space__head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.space__intro {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.65;
  margin-top: .4rem;
}

/* Asymmetric grid */
.space__gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 360px 270px;
  gap: 5px;
  padding: 0 var(--gutter);
}

.space__cell {
  overflow: hidden;
}

.space__cell--tall  { grid-row: 1 / 3; }
.space__cell--wide  { grid-column: 2 / 4; }

.space__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s linear;
}

.space__cell.is-visible .space__img {
  transform: scale(1);
}

.space__cell:hover .space__img {
  transform: scale(1.04);
  transition: transform .8s var(--ease-expo);
}

/* Pull quote */
.space__quote {
  padding: clamp(4rem, 7vw, 8rem) var(--gutter) 0;
  text-align: center;
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.55;
  border: none;
}

/* ================================================================
   15. TEAM
================================================================= */
.team {
  padding: var(--section-v) var(--gutter);
  background: var(--coal);
}

.team__head {
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.team-card { cursor: none; }

.team-card__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(65%) contrast(1.05) brightness(.92);
  transform: scale(1.04);
  transition: filter .6s var(--ease-expo),
              transform .7s var(--ease-expo);
}

.team-card:hover .team-card__img {
  filter: grayscale(15%) contrast(1) brightness(.88);
  transform: scale(1.08);
}

.team-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(7,7,6,.72);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity .4s var(--ease-expo);
}

.team-card:hover .team-card__hover { opacity: 1; }

.team-card__hover p {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory);
  transform: translateY(10px);
  transition: transform .45s var(--ease-expo);
}

.team-card:hover .team-card__hover p { transform: translateY(0); }

.team-card__info {
  padding: 1.1rem 0 0;
}

.team-card__info h3 {
  font-family: var(--f-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: .02em;
}

.team-card__info span {
  font-size: 0.65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ================================================================
   16. LIFESTYLE DRAG GALLERY
================================================================= */
.lifestyle {
  padding: var(--section-v) 0;
  background: var(--ink);
  overflow: hidden;
}

.lifestyle__head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.life-scroll {
  overflow: hidden;
  padding: 0 var(--gutter);
  cursor: grab;
  user-select: none;
}
.life-scroll:active { cursor: grabbing; }

.life-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  align-items: flex-end;
}

.life-item {
  width: clamp(210px, 28vw, 330px);
  height: clamp(270px, 32vw, 400px);
  flex-shrink: 0;
  overflow: hidden;
}

.life-item--tall {
  height: clamp(350px, 42vw, 510px);
  transform: translateY(-3rem);
}

.life-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(.82) saturate(.65);
  transform: scale(1.04);
  transition: transform .65s var(--ease-expo),
              filter .55s;
}

.life-item:hover .life-img {
  transform: scale(1.08);
  filter: brightness(.92) saturate(.9);
}

.lifestyle__handle {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0 var(--gutter);
}

/* ================================================================
   17. CONTACT / BOOKING
================================================================= */
.contact {
  padding: var(--section-v) var(--gutter);
  background: var(--coal);
  border-top: 1px solid var(--mid);
}

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.contact__title {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--paper);
  margin-bottom: 2.5rem;
}
.contact__title em { font-style: italic; color: var(--gold); }

/* Detail list */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.contact__detail { display: flex; flex-direction: column; gap: .3rem; }

.contact__detail dt {
  font-size: 0.6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__detail dd {
  font-size: .88rem;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.75;
}

.contact__detail dd a {
  transition: color .3s;
}
.contact__detail dd a:hover { color: var(--ivory); }

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

/* Map card */
.contact__map {
  aspect-ratio: 4 / 3.2;
  background: var(--deep);
  border: 1px solid var(--mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern on map */
.contact__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--mid) 1px, transparent 1px),
    linear-gradient(90deg, var(--mid) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
}

.contact__pin {
  position: relative;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.contact__pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pinPulse 2.2s ease-out infinite;
}

@keyframes pinPulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.8); opacity: 0; }
}

.contact__pin-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 12px rgba(196,170,132,.5);
}

.contact__map-label {
  font-size: .82rem;
  font-weight: 300;
  color: var(--smoke);
  text-align: center;
  line-height: 1.8;
  z-index: 1;
}

.contact__map-link {
  font-size: 0.65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 1;
  transition: letter-spacing .35s, opacity .3s;
}
.contact__map-link:hover {
  letter-spacing: .32em;
  opacity: .7;
}

/* ================================================================
   18. FOOTER
================================================================= */
.footer {
  background: var(--ink);
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
  border-top: 1px solid var(--mid);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer__name {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--paper);
  margin-bottom: .5rem;
}

.footer__strap {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: .16em;
  color: var(--ash);
}

.footer__nav {
  display: flex;
  gap: 4.5rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer__col-hd {
  font-size: 0.6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.footer__col a {
  font-size: .82rem;
  font-weight: 300;
  color: var(--ash);
  transition: color .3s;
}
.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--mid);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: .05em;
}

/* ================================================================
   19. RESPONSIVE — TABLET (≤1024px)
================================================================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 220px;
  }

  .space__cell--tall {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .space__cell:nth-child(2) { grid-column: 2; grid-row: 1; }
  .space__cell:nth-child(3) { grid-column: 2; grid-row: 2; }

  .space__cell--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

/* ================================================================
   20. RESPONSIVE — MOBILE (≤768px)
================================================================= */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  body { cursor: auto; }
  .cursor { display: none; }

  /* Nav mobile overlay */
  .nav__list {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    transform: translateX(100%);
    transition: transform .5s var(--ease-expo);
    z-index: 800;
  }

  .nav__list.is-open { transform: translateX(0); }

  .nav__link {
    font-size: 1rem;
    letter-spacing: .12em;
    color: var(--ivory);
  }

  .nav__toggle { display: flex; }

  /* Hero */
  .hero__scroll, .hero__index { display: none; }
  .hero__hl-main { font-size: clamp(4.5rem, 18vw, 7rem); }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__copy { padding-top: 0; }
  .about__stats { gap: 1.2rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Space gallery */
  .space__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .space__cell,
  .space__cell--tall,
  .space__cell--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  /* Team */
  .team__grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact__wrap { grid-template-columns: 1fr; }
  .contact__map { display: none; }

  /* Footer */
  .footer__top { flex-direction: column; }
  .footer__nav { gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   21. RESPONSIVE — SMALL MOBILE (≤480px)
================================================================= */
@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .contact__actions { flex-direction: column; }
  .about__stats { gap: .8rem; }
}
