/* =============================================================
   Ikkar Hair — styles.css
   Tokens + all section styles. Reference: docs/design-system.md
   ============================================================= */

:root {
  /* Colour */
  --bg:       #FAFAF7;
  --bg-alt:   #F2EEE8;
  --ink:      #1A1A1A;
  --ink-soft: #4A4A48;
  --muted:    #70706C;
  --line:     #E5E2DC;
  --accent:   #B8845E;

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --display-weight: 450;
  --display-soft:    50;
  --display-opsz:   144;

  --text-hero: clamp(48px, 8vw, 112px);
  --text-h1:   clamp(36px, 5vw, 72px);
  --text-h2:   clamp(28px, 3.5vw, 48px);
  --text-h3:   clamp(20px, 2vw, 24px);
  --text-body: 17px;
  --text-cap:  13px;

  --lh-display: 1.15;
  --lh-body:    1.6;
  --lh-cap:     1.4;

  --tracking-display: -0.02em;
  --tracking-cap:     0.08em;

  /* Spacing */
  --section-pad-y: 96px;
  --section-pad-x: 24px;
  --container: 1440px;
  --prose:     640px;

  /* Motion */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur-enter: 600ms;
  --dur-hover: 200ms;

  /* Layers */
  --z-nav: 50;
}

@media (min-width: 768px) {
  :root {
    --text-body:     18px;
    --section-pad-y: 128px;
    --section-pad-x: 48px;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-pad-y: 128px;
    --section-pad-x: 80px;
  }
}


/* =============================================================
   RESET
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Subtle film grain overlay — analog warmth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  will-change: transform;
  transform: translateZ(0);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--dur-hover) var(--ease);
}
a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
::selection { background: var(--ink); color: var(--bg); }


/* =============================================================
   TYPE CLASSES
   ============================================================= */

.h2, .h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" var(--display-opsz), "wght" var(--display-weight);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.h2 { font-size: var(--text-h2); }
.h3 { font-size: var(--text-h3); letter-spacing: -0.01em; }

.body, p { font-family: var(--font-body); font-size: var(--text-body); line-height: var(--lh-body); color: var(--ink-soft); margin: 0; text-wrap: pretty; }

.caption, .eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-cap);
  line-height: var(--lh-cap);
  letter-spacing: var(--tracking-cap);
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.nav__wm {
  font-family: var(--font-display);
  font-size: 42px; line-height: 1; letter-spacing: -0.02em; text-transform: lowercase;
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" var(--display-opsz), "wght" var(--display-weight);
}


/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: transparent; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }


/* =============================================================
   LAYOUT
   ============================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--section-pad-x);
}

.prose {
  max-width: var(--prose);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.section-label__num {
  font-style: italic;
  color: var(--accent);
}

.section-label__name {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.skip {
  position: absolute; top: 0; left: 0; padding: 8px 16px;
  background: var(--ink); color: var(--bg); transform: translateY(-100%);
  z-index: 100; font-family: var(--font-body); font-size: 14px;
}
.skip:focus { transform: translateY(0); text-decoration: none; }


/* =============================================================
   NAV
   ============================================================= */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 80px);
  background: transparent;
  color: var(--bg);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: var(--bg);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.nav__links { display: none; align-items: center; gap: 40px; }
@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__links a {
  font-family: var(--font-body); font-size: 20px; font-weight: 500;
  color: inherit; opacity: 0.9;
  position: relative; text-decoration: none;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: currentColor;
  transition: width 0.3s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links .nav__cta::after { display: none; }

/* Nav Book button — ghost white over hero, filled ink past hero */
.nav .btn.nav__cta {
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 500;
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
  opacity: 1;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.nav .btn.nav__cta:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* Scrolled state — filled ink button */
.nav.is-scrolled .btn.nav__cta {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nav.is-scrolled .btn.nav__cta:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

/* Hamburger */
.nav__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: inherit;
}
@media (min-width: 768px) { .nav__burger { display: none; } }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--bg); color: var(--ink);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.drawer__close { width: 40px; height: 40px; }

.drawer__items {
  display: flex; flex-direction: column; gap: 24px;
  padding: 48px clamp(24px, 5vw, 80px);
}
.drawer__items a {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" 72, "wght" var(--display-weight);
  font-size: 36px; line-height: 1.15; letter-spacing: -0.02em;
}
.drawer__items a:hover { text-decoration: none; }


/* =============================================================
   HERO — sticky inside .hero-wrapper for scroll-over effect
   ============================================================= */

.hero-wrapper {
  height: 100dvh;
  position: relative;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: #1a1411;
  color: var(--bg);
  z-index: -1;
  will-change: transform;
  transform: translateZ(0);
}

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__blackout {
  position: absolute; inset: 0;
  z-index: 3;
  background: #000;
  opacity: 1;
  will-change: opacity;
  pointer-events: none;
}

.hero__veil {
  position: absolute; inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(26, 26, 26, 0.35) 0%, rgba(26, 26, 26, 0.55) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.hero__unit {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px;
  opacity: 0;
  will-change: opacity;
}

.hero__badge-wrap {
  width: 180px;
  height: 180px;
}
@media (min-width: 768px) {
  .hero__badge-wrap { width: 240px; height: 240px; }
}
@media (min-width: 1024px) {
  .hero__badge-wrap { width: 280px; height: 280px; }
}

.hero__badge {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 450;
  font-variation-settings: "SOFT" 50;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--bg);
  text-align: center;
}



/* =============================================================
   PROMISE — holding state
   ============================================================= */

.promise {
  background: var(--bg);
  padding: 72px 0 80px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -20px 60px rgba(26, 26, 26, 0.08);
}
.promise__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.promise__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
}
.promise__heading {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.promise__heading em { font-style: italic; }
.promise__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
  text-wrap: balance;
}


.section-rule {
  border: 0;
  width: 100%;
  max-width: var(--container);
  height: 1px;
  background: var(--line);
  margin: 0 auto;
  padding-inline: var(--section-pad-x);
  display: block;
  opacity: 0.6;
}


/* =============================================================
   WORK — two-row counter-rotating marquee
   ============================================================= */

.work { background: var(--bg); position: relative; z-index: 1; }

.work__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 96px;
  padding-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}
.work__head-text { max-width: 560px; }
.work__heading {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.work__sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 480px;
}
.work__ig { color: var(--ink); }
.work__ig:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 768px) {
  .work__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* --- Marquee --- */

.marquee {
  padding: 0 0 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .marquee { padding: 0 0 96px; gap: 16px; }
}
.marquee__row { overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}
@media (min-width: 768px) {
  .marquee__track { gap: 16px; }
}
.marquee__row--ltr .marquee__track {
  animation: marquee-ltr 60s linear infinite;
}
.marquee__row--rtl .marquee__track {
  animation: marquee-rtl 60s linear infinite;
}
.marquee__cell {
  flex: 0 0 auto;
  width: 180px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .marquee__cell { width: 280px; border-radius: 0; }
}
.marquee__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .marquee__cell { width: 320px; }
}

/* Placeholder tones */
.ph--tone-1 { background: linear-gradient(135deg, #d9c8b3, #c9b4a0); }
.ph--tone-2 { background: linear-gradient(135deg, #b8a695, #a8907a); }
.ph--tone-3 { background: linear-gradient(135deg, #efe4d6, #ddc9b3); }
.ph--tone-4 { background: linear-gradient(135deg, #8a7765, #6b5a4a); }

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

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
  .marquee__row { overflow-x: auto; scroll-snap-type: x mandatory; }
  .marquee__cell { scroll-snap-align: start; }
}


/* =============================================================
   SERVICES
   ============================================================= */

.services {
  background: var(--bg);
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) { .services { padding: 112px 0; } }

.services__head {
  margin-bottom: 64px;
  max-width: 720px;
}

.services__heading {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 600px) {
  .services__list { grid-template-columns: repeat(2, 1fr); gap: 56px 48px; }
}

@media (min-width: 1024px) {
  .services__list { grid-template-columns: repeat(4, 1fr); gap: 56px; }
}

.svc {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.svc__name--em { font-style: italic; }

.svc__name {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}

.svc__desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.svc__depth {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  margin-top: auto;
  padding-top: 8px;
}

.services__foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
}

.services__note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}

.services__link {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 200ms;
}
.services__link:hover { opacity: 0.6; }



/* =============================================================
   STUDIO
   ============================================================= */

.studio {
  background: var(--bg);
  padding: 96px 0;
}
@media (min-width: 1024px) { .studio { padding: 112px 0; } }

.studio__heading {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 48px;
}

.studio__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .studio__inner {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
  }
}

.studio__img { margin: 0; }
.studio__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .studio__img img {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

.studio__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.studio__quote {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  padding: 0;
  text-wrap: pretty;
}

.studio__coda {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.studio__addr {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft),
                           "opsz" var(--display-opsz),
                           "wght" var(--display-weight);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  margin: 0;
}
.studio__addr em { font-style: italic; }


/* =============================================================
   BOOKING
   ============================================================= */

.booking {
  position: relative;
  padding: var(--section-pad-y) 0;
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: #1a1411;
}

.booking__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.booking__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(26, 20, 17, 0.55) 0%, rgba(26, 20, 17, 0.78) 100%);
}

.booking__center {
  position: relative; z-index: 2;
  text-align: center; max-width: 640px; margin-inline: auto; padding-inline: clamp(24px, 5vw, 80px);
  display: flex; flex-direction: column; align-items: center;
}

.booking__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}

.booking__head {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" var(--display-opsz), "wght" var(--display-weight);
  font-size: clamp(44px, 7vw, 96px); line-height: 1.1; letter-spacing: -0.02em; margin: 0;
  color: var(--bg);
}

.booking__sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: rgba(250, 250, 247, 0.55);
  letter-spacing: 0.02em; margin: 20px 0 0;
}

.booking__cta {
  margin-top: 40px;
  background: var(--bg); color: var(--ink);
  border-color: var(--bg);
}
.booking__cta:hover {
  background: transparent; color: var(--bg);
  border-color: var(--bg);
}


/* =============================================================
   FOOTER
   ============================================================= */

.footer { border-top: 1px solid var(--line); padding: 72px 0 36px; background: var(--bg); position: relative; z-index: 1; }

.footer__top { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 48px; }

.footer__map { margin-bottom: 48px; line-height: 0; border-radius: 8px; overflow: hidden; }
.footer__map iframe { display: block; width: 100%; height: 280px; filter: grayscale(1) contrast(1.05); }
.footer__wm {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" var(--display-opsz), "wght" var(--display-weight);
  font-size: 56px; line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.footer__tag { font-family: var(--font-body); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; text-align: center; }
@media (min-width: 768px) { .footer__cols { grid-template-columns: repeat(3, 1fr); text-align: left; } }
.footer__cols h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; font-weight: 500; }
.footer__cols a, .footer__cols p { font-family: var(--font-body); font-size: 15px; color: var(--ink); margin: 0 0 4px; line-height: 1.5; display: block; }

.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.04em; color: var(--muted);
}


/* =============================================================
   PLACEHOLDER IMAGES
   ============================================================= */

.ph {
  background:
    radial-gradient(ellipse at 30% 25%, rgba(184,132,94,0.32), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(214,170,120,0.14), transparent 60%),
    linear-gradient(140deg, #3a2d24 0%, #221a14 50%, #14100c 100%);
  position: relative;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: auto 12px 10px auto;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,250,247,0.42);
}
.ph--bright {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(232,200,160,0.5), transparent 65%),
    linear-gradient(140deg, #6b5648 0%, #3b2b21 100%);
}
.ph--portrait {
  background:
    radial-gradient(circle at 50% 40%, rgba(232,200,160,0.32), transparent 55%),
    linear-gradient(160deg, #2a1f17 0%, #150f0b 100%);
}


/* =============================================================
   BOOKING MODAL
   ============================================================= */

.modal {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(26,26,26,0.55);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }

.modal__inner {
  width: 100%; max-width: 440px;
  background: var(--bg);
  padding: 40px 36px 32px;
  position: relative;
  text-align: left;
}
.modal__eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.modal__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "SOFT" var(--display-soft), "opsz" 72, "wght" var(--display-weight);
  font-size: 32px; line-height: 1.15; letter-spacing: -0.01em; margin: 12px 0 16px;
}
.modal__body { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); margin: 0 0 28px; line-height: 1.5; }
.modal__row { display: flex; gap: 12px; justify-content: flex-end; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; }


/* =============================================================
   FLOATING BOOK PILL (mobile only, appears near footer)
   ============================================================= */

.fab {
  display: none;
  position: fixed; bottom: 24px; right: 24px;
  z-index: 60;
  padding: 12px 24px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink); border-radius: 100px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease),
              background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease);
  text-decoration: none;
  pointer-events: none;
}
.fab:hover { background: transparent; color: var(--ink); text-decoration: none; }

@media (max-width: 767px) {
  .fab { display: block; }
  .fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}


/* =============================================================
   SECTION ENTRANCE FADES
   ============================================================= */

.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
}


/* =============================================================
   REDUCED MOTION
   ============================================================= */

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