:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #18181b;
  --text: #ece7dc;
  --text-dim: #9a9488;
  --line: rgba(236, 231, 220, 0.1);
  --line-strong: rgba(236, 231, 220, 0.22);
  --bronze: #c4a574;
  --bronze-dim: #8d7350;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --header-h: 82px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 36px;
}

.nav a {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav a:hover {
  color: var(--text);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.lang button {
  min-width: 28px;
}

.lang button.is-on {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  transition: 0.25s ease;
}

.btn:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.btn-solid {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-solid:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: var(--text);
  content: "";
}

.menu-toggle span {
  top: 50%;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100svh - var(--header-h));
  height: calc(100svh - var(--header-h));
  padding: 0;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  left: -6%;
  top: 52%;
  transform: translateY(-50%);
  width: min(46vw, 540px);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.hero-mark img {
  width: 100%;
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 48px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(560px, 100%);
  margin-left: auto;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
}

.hero p.lead {
  color: var(--text-dim);
  max-width: 38ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-note {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 38ch;
}

.pullquote {
  margin: 28px 0 8px;
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--bronze);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #070708;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 14%);
  pointer-events: none;
  z-index: 2;
}

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

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.is-on {
  opacity: 1;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(236, 231, 220, 0.28);
}

.dots button.is-on {
  background: var(--text);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(236, 231, 220, 0.16);
  color: rgba(236, 231, 220, 0.72);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.hero-arrow:hover {
  background: rgba(236, 231, 220, 0.28);
  color: var(--text);
}

.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* Sections */
section {
  padding: 96px 0;
}

section.hero {
  padding: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
}

/* Filters + grid */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.filter.is-on,
.filter:hover {
  border-color: var(--text);
  color: var(--text);
}

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

.card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0e0e10;
  aspect-ratio: 3 / 4;
}

.card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.7s ease;
}

.card:hover img {
  transform: scale(1.035);
}

.card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3eee4;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
}

.card:hover figcaption {
  opacity: 1;
  transform: none;
}

.card.is-hidden {
  display: none;
}

/* Process */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding-right: 12px;
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}

.step b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
  font-weight: 500;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-dim);
  font-size: 15px;
}

.note {
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 15px;
}

.note strong {
  color: var(--text);
  font-weight: 600;
}

/* About + book */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p + p {
  margin-top: 16px;
  color: var(--text-dim);
}

.quote {
  margin-top: 18px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
}

.page-hero {
  padding: 72px 0 20px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  margin: 12px 0 18px;
}

.page-hero p {
  color: var(--text-dim);
  max-width: 58ch;
}

.page-hero .lead-wide {
  max-width: none;
}

.prose {
  max-width: 68ch;
}

.prose p {
  color: var(--text-dim);
  margin-bottom: 16px;
}

.prose a {
  color: var(--text);
  border-bottom: 1px solid var(--bronze);
}

.prose a.btn {
  border-bottom: 0;
  color: var(--text);
}

.prose a.btn-solid {
  color: var(--bg);
}

.prose h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  margin: 36px 0 12px;
  color: var(--text);
}

.story-layout,
.process-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
}

.process-split .prose {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.process-split .prose p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}

.process-photo {
  display: flex;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 55%;
  background: #0e0e10;
}

.portrait {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  border: 1px solid var(--line);
}

.display-title,
.aftercare-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 8px 0 22px;
}

.aftercare-title {
  margin-top: 72px;
}

.lead-wide {
  color: var(--text-dim);
  max-width: none;
  font-size: 18px;
  line-height: 1.65;
}

.process-split .prose h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1;
  margin-top: 0;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack img {
  width: 100%;
  border: 1px solid var(--line);
}

.media-frame {
  background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.media-frame img,
.media-frame video {
  width: 100%;
  display: block;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #0e0e10;
}

.video-stage {
  background: #070708;
  border: 1px solid var(--line);
  margin-bottom: 48px;
}

.video-stage video,
.video-stage .media-frame {
  width: 100%;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
}

.aftercare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.after-card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: var(--bg-2);
}

.after-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 8px 0 14px;
}

.after-card p,
.after-card li {
  color: var(--text-dim);
  font-size: 15px;
}

.after-card ol {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.nav a.is-here {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero-mark { display: none; }

  .story-layout,
  .process-split,
  .aftercare {
    grid-template-columns: 1fr;
  }
}

.book-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px 32px;
}

.book-box h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin: 8px 0 16px;
}

.book-box p {
  color: var(--text-dim);
  margin-bottom: 24px;
}

.book-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.contact-list a:hover {
  color: var(--text);
}

/* Footer */
.footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  letter-spacing: 0.04em;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.socials a:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-meta {
  text-align: right;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  letter-spacing: 0.08em;
  font-size: 12px;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lb.is-open {
  display: flex;
}

.lb img {
  max-height: 88vh;
  max-width: min(92vw, 920px);
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-mark { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .hero-copy {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 36px;
  }

  .hero-visual {
    min-height: 72vh;
    height: 72vh;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 22%);
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0d0d0e;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .menu-toggle {
    display: block;
  }

  .header .btn-book-desktop {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  section {
    padding: 72px 0;
  }
}

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

  .hero h1 {
    font-size: 46px;
  }

  .card figcaption {
    opacity: 1;
    transform: none;
  }
}
