:root {
  --blush: #fbcbcb;
  --blush-deep: #f3b4b1;
  --rose: #c47a76;
  --rose-ink: #6a3d3b;
  --peach: #feb4b1;
  --paper: #fff6f4;
  --ink: #1a1414;
  --muted: #5c403e;
  --line: rgba(26, 20, 20, 0.12);
  --gold: #c4a07a;
  --tile: linear-gradient(160deg, #ffd3c8 0%, #f5a8a4 58%, #e88986 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--blush);
  color: var(--ink);
  font-family: Montserrat, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
  outline: 1px solid var(--paper);
  outline-offset: 3px;
}

.ohh-astro99 {
  filter: sepia(0.12) saturate(0.82) contrast(1.14) brightness(0.93) hue-rotate(-5deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-solid {
  background: rgba(251, 203, 203, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-logo img {
  display: block;
  height: 46px;
  width: auto;
  background: transparent;
}
.home .nav-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.home .nav.is-logo-on .nav-logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--rose-ink); }
.nav-cta {
  border: 1px solid rgba(26, 20, 20, 0.28);
  padding: 10px 16px;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span:before,
.nav-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span:before { top: -6px; }
.nav-toggle span:after { top: 6px; }

.nav--over-photo:not(.is-solid) .nav-links a {
  color: #fff;
}
.nav--over-photo:not(.is-solid) .nav-cta { border-color: rgba(255, 255, 255, 0.7); }
.nav--over-photo:not(.is-solid) .nav-toggle span,
.nav--over-photo:not(.is-solid) .nav-toggle span:before,
.nav--over-photo:not(.is-solid) .nav-toggle span:after {
  background: #fff;
}
.nav.is-open {
  background: rgba(251, 203, 203, 0.98);
}
.nav.is-open .nav-links a { color: var(--ink); }
.nav.is-open .nav-cta { border-color: rgba(26, 20, 20, 0.28); }
.nav.is-open .nav-links a:hover,
.nav.is-open .nav-links a[aria-current="page"] { color: var(--rose-ink); }
.nav.is-open .nav-toggle span,
.nav.is-open .nav-toggle span:before,
.nav.is-open .nav-toggle span:after {
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end center;
  isolation: isolate;
  overflow: hidden;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(26, 20, 20, 0.42), transparent 46%);
}
.hero-wordmark {
  position: absolute;
  left: 50%;
  top: max(148px, 22vh);
  z-index: 1;
  width: min(560px, 62vw);
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-inner {
  width: min(920px, 90vw);
  text-align: center;
  padding: 0 0 72px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-ghost { border-color: rgba(26, 20, 20, 0.28); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-rose {
  border-color: transparent;
  background: var(--tile);
  color: #fff;
  text-shadow: 0 1px 1px rgba(26, 20, 20, 0.35);
}
.btn-rose:hover { color: #fff; filter: brightness(0.96); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(26, 20, 20, 0.62), rgba(26, 20, 20, 0.12));
}
.page-hero-copy {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 140px 0 56px;
  color: #fff;
}
.page-hero-copy h1,
.section-title,
.quote,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}
.page-hero-copy h1 {
  font-size: clamp(36px, 9vw, 84px);
  max-width: 14ch;
  overflow-wrap: break-word;
}

/* Sections */
section { padding: 96px 7vw; }
.wrap { max-width: 1180px; margin: 0 auto; }
.kicker {
  color: var(--rose-ink);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  margin-bottom: 16px;
}
.page-hero-copy .kicker { color: var(--blush-deep); }
.section-title {
  font-size: clamp(32px, 5.4vw, 68px);
  margin-bottom: 18px;
  overflow-wrap: break-word;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 54ch;
  line-height: 1.75;
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.paper { background: var(--paper); }
.ink {
  background: var(--ink);
  color: var(--paper);
}
.ink .kicker { color: var(--peach); }
.ink .lead,
.ink p { color: rgba(255, 246, 244, 0.72); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-visual { overflow: hidden; min-height: 420px; }
.split-visual img { aspect-ratio: 4/5; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.split-copy .lead { margin-bottom: 28px; }

.method {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-grid,
.chapter-grid,
.service-grid,
.story-grid {
  display: grid;
  gap: 34px;
  margin-top: 56px;
}
.method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.method-item h2,
.method-item h3,
.service-item h3,
.chapter h3,
.story h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 12px;
}
.method-item p,
.service-item p,
.chapter p,
.story p { color: var(--muted); font-size: 15px; }

.chapter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.chapter {
  display: block;
  color: inherit;
}
.chapter figure { overflow: hidden; margin-bottom: 22px; }
.chapter img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .8s ease;
}
.chapter:hover img { transform: scale(1.03); }
.chapter span {
  display: inline-block;
  margin-top: 14px;
  color: var(--rose-ink);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(196, 122, 118, 0.4);
  padding-bottom: 4px;
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 48px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic .wide { grid-row: 1 / span 2; }

.quote-block {
  text-align: center;
  padding: 110px 8vw;
}
.quote {
  font-size: clamp(28px, 4vw, 46px);
  max-width: 22ch;
  margin: 0 auto 22px;
  letter-spacing: 0.02em;
}
.quote-block cite {
  display: block;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--rose);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.story-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.story-grid img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }

.cta { text-align: center; }
.cta .lead { margin: 0 auto 34px; }

.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
}
.form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-ink);
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.form textarea { min-height: 140px; resize: vertical; }
.form .form-note {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.form-check {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}
.form-check a { color: var(--rose-ink); border-bottom: 1px solid rgba(106, 61, 59, 0.4); }
.form-status {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 12px 0 0;
}
.form-status--error { color: var(--rose-ink); }
.form-status[hidden] { display: none; }

.ohh-related { text-align: center; padding-top: 24px; }
.ohh-related-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px 36px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.ohh-related-list a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  border-bottom: 1px solid rgba(196, 122, 118, 0.45);
  padding-bottom: 2px;
}
.ohh-related-list a:hover { color: var(--rose-ink); }

.attr {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
  padding: 42px 7vw 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}
footer a { color: var(--rose-ink); border-bottom: 1px solid rgba(106, 61, 59, 0.4); }

.error-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 6vw;
}
.error-page .section-title { margin-bottom: 28px; }

.hold-chapter {
  margin-top: 72px;
  padding-top: 8px;
}
.hold-chapter h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.hold-chapter .lead { margin-bottom: 8px; }
.universe {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.universe--single {
  grid-template-columns: minmax(0, 280px);
}
.service-card {
  border: 1.5px solid #fff;
  background: var(--blush);
  padding: 22px 14px 18px;
  min-height: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
}
.service-picto {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 72px;
  margin: 0 auto 14px;
  background: transparent;
  overflow: hidden;
}
.service-picto img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: transparent;
}
.service-card h3 {
  margin: 0 auto 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}
.service-card p {
  margin: 0 auto;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 180px;
}

.faq {
  display: grid;
  gap: 0;
  margin-top: 36px;
  max-width: 720px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 54ch;
}

@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 6vw 28px;
    background: rgba(251, 203, 203, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 78px);
    overflow: auto;
  }
  .nav.is-open .nav-links { display: flex; }
  .split,
  .split.reverse,
  .method-grid,
  .chapter-grid,
  .service-grid,
  .story-grid,
  .mosaic,
  .gallery {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-copy { order: 0; }
  .mosaic { grid-template-rows: none; }
  .mosaic .wide { grid-row: auto; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .universe { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .universe--single { grid-template-columns: 1fr; }
  .service-card { padding: 18px 12px 16px; }
  .service-picto { width: 84px; height: 64px; margin-bottom: 12px; }
  .hold-chapter { margin-top: 56px; }
  .split-visual { min-height: 0; }
  section { padding: 72px 6vw; }
  .page-hero { min-height: 48vh; }
}

@media (max-width: 560px) {
  .universe { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .nav-logo img { height: 40px; }
  .hero-wordmark {
    top: max(112px, 16vh);
    width: min(320px, 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .chapter img,
  .home .nav-logo,
  .btn,
  .nav { transition: none; }
  .chapter:hover img { transform: none; }
}
