:root {
  --bg: #f5efe7;
  --bg-soft: #fbf7f2;
  --paper: rgba(255, 252, 248, 0.78);
  --text: #241713;
  --muted: rgba(36, 23, 19, 0.7);
  --line: rgba(76, 52, 42, 0.16);
  --accent: #bb8c6d;
  --accent-deep: #7f543e;
  --dark: #1b1110;
  --shadow: 0 28px 70px rgba(39, 24, 19, 0.14);
  --content: min(1180px, calc(100vw - 3rem));
  --hero-content: min(520px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(211, 174, 145, 0.22), transparent 30%),
    linear-gradient(180deg, #f9f4ed 0%, #f5efe7 40%, #f3ece4 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(240, 197, 168, 0.9);
  outline-offset: 3px;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1300px, calc(100vw - 2rem));
  margin: 1rem auto 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(22, 13, 11, 0.34);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  color: #fff8f3;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(27, 17, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-grid;
  gap: 0.1rem;
}

.brand__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.72;
}

.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  gap: 1.4rem;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.header-cta {
  background: #fff6ef;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff8f3;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 7rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
  align-items: end;
  min-height: 100svh;
  padding: 8.5rem max(1.5rem, calc((100vw - 1260px) / 2)) 2rem;
  background:
    linear-gradient(90deg, rgba(23, 13, 11, 0.82) 0%, rgba(23, 13, 11, 0.7) 42%, rgba(23, 13, 11, 0.28) 62%, rgba(23, 13, 11, 0.12) 100%),
    linear-gradient(180deg, #5a3f35 0%, #251715 100%);
  color: #fff7f2;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(226, 182, 143, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: var(--hero-content);
  padding-bottom: clamp(2rem, 3vw, 4rem);
}

.hero__kicker,
.section-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.85rem, 8vw, 7.6rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: #f0c5a8;
}

.hero__lead {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 247, 242, 0.84);
}

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

.button--primary {
  background: #fff6ef;
  color: var(--dark);
  font-weight: 700;
}

.button--ghost {
  border: 1px solid rgba(255, 246, 239, 0.46);
  color: #fff6ef;
}

.button--legal,
.button--ghost-dark,
.button--primary-dark {
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.9);
  color: var(--text);
  font-weight: 700;
}

.button--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff7f2;
}

.button--primary-dark {
  background: #fff6ef;
  border-color: transparent;
  color: var(--dark);
  font-weight: 800;
}

.hero__notes {
  display: grid;
  gap: 0.7rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 247, 242, 0.82);
}

.hero__notes li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
}

.hero__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f0c5a8;
}

.hero__visual {
  align-self: stretch;
  display: grid;
  align-items: end;
  justify-items: end;
  padding-top: 5rem;
}

.hero__image-wrap {
  position: relative;
  width: min(540px, 100%);
  height: min(78svh, 820px);
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18));
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__caption {
  width: min(400px, 88%);
  margin: -4.2rem 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 247, 242, 0.82);
}

.hero__caption span {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__caption p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.intro,
.gallery,
.process,
.cta,
.site-footer {
  width: var(--content);
  margin: 0 auto;
}

.intro {
  padding: clamp(4.5rem, 8vw, 8rem) 0 2rem;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: end;
}

.intro h2,
.editorial h2,
.gallery h2,
.process h2,
.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 1.6rem + 2vw, 4.3rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.intro p:last-child,
.editorial p,
.gallery__text p,
.process p,
.cta p,
.cta__details a span {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 5rem);
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.editorial--beauty {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.collection-gallery {
  display: grid;
  gap: 1rem;
}

.collection-gallery__stage {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 32px 32px 140px 32px;
  background: #e9ddd2;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  text-align: left;
}

.collection-gallery__stage img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.collection-gallery__stage:hover img,
.collection-gallery__stage:focus-visible img {
  transform: scale(1.03);
}

.collection-gallery__stage img.is-swapping {
  opacity: 0.65;
}

.collection-gallery__hint {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(24, 14, 13, 0.68);
  color: #fff8f3;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.collection-gallery__meta {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.25rem;
}

.collection-gallery__meta strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 1.15rem + 1vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.collection-gallery__meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.collection-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.collection-gallery__thumb {
  display: grid;
  gap: 0.7rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 251, 247, 0.78);
  text-align: left;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.collection-gallery__thumb:hover,
.collection-gallery__thumb:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
}

.collection-gallery__thumb.is-active {
  border-color: rgba(127, 84, 62, 0.42);
  background: #fffdf9;
  box-shadow: 0 18px 36px rgba(39, 24, 19, 0.08);
}

.collection-gallery__thumb img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 16px;
}

.collection-gallery__thumb span {
  padding: 0 0.15rem 0.1rem;
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial__media {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial__media--portrait {
  border-radius: 32px 32px 140px 32px;
}

.editorial__media--landscape {
  border-radius: 32px 140px 32px 32px;
}

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

.editorial__copy p {
  max-width: 40rem;
}

.editorial__list,
.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.7rem;
}

.editorial__list span,
.service-points p {
  margin: 0;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 247, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.gallery {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.gallery__heading {
  display: grid;
  gap: 0.8rem;
  max-width: 42rem;
}

.gallery__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(260px, 0.56fr) minmax(220px, 0.7fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 2.4rem;
}

.gallery__figure {
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

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

.gallery__figure--large {
  border-radius: 34px;
}

.gallery__figure--medium {
  border-radius: 34px 120px 34px 34px;
}

.gallery__text {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2.3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.gallery__metrics {
  display: grid;
  gap: 1rem;
}

.gallery__metrics div {
  display: grid;
  gap: 0.22rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.gallery__metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.gallery__metrics span {
  color: var(--muted);
}

.process {
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 7rem);
}

.process__heading {
  max-width: 38rem;
}

.process__timeline {
  display: grid;
  gap: 1.15rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.process__timeline li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.process__timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__timeline span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent-deep);
}

.process__timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.process__timeline p {
  margin: 0;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(214, 181, 156, 0.22), transparent 30%),
    rgba(255, 249, 243, 0.92);
  box-shadow: var(--shadow);
}

.cta__details {
  display: grid;
  gap: 0.9rem;
}

.cta__details a {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.cta__details a:hover,
.cta__details a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(127, 84, 62, 0.36);
  background: #fffdfa;
}

.cta__details a strong {
  font-size: 1rem;
  line-height: 1.5;
}

.legal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: end;
  width: var(--content);
  margin: 1.4rem auto 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line);
}

.legal-strip__copy {
  max-width: 42rem;
}

.legal-strip__copy p:last-child {
  color: var(--muted);
}

.legal-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0 2.8rem;
  color: var(--muted);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 9, 0.8);
  backdrop-filter: blur(12px);
}

.image-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  width: min(1080px, calc(100vw - 2rem));
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  background: #f8f2eb;
  box-shadow: 0 32px 100px rgba(16, 10, 9, 0.3);
}

.image-lightbox__panel img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  background: #e9ddd2;
}

.image-lightbox__caption {
  display: grid;
  align-content: end;
  gap: 0.9rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.image-lightbox__caption h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.45rem + 1.35vw, 3.1rem);
  line-height: 0.98;
}

.image-lightbox__caption p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.image-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 2.7rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(22, 13, 11, 0.68);
  color: #fff8f3;
  cursor: pointer;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 13, 11, 0.58);
  backdrop-filter: blur(10px);
}

.legal-modal__panel {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 1.5rem));
  max-height: min(88svh, 920px);
  overflow: auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(214, 181, 156, 0.22), transparent 34%),
    rgba(255, 248, 241, 0.98);
  box-shadow: 0 36px 90px rgba(24, 15, 12, 0.28);
}

.legal-modal__panel h2 {
  margin-bottom: 1.2rem;
}

.legal-modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin-left: auto;
  margin-bottom: 1rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
}

.legal-modal__content {
  display: grid;
  gap: 1rem;
}

.legal-modal__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.legal-modal__note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: grid;
  gap: 1.1rem;
  width: min(430px, calc(100vw - 1.5rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(30, 19, 16, 0.96), rgba(64, 44, 38, 0.92)),
    var(--dark);
  color: #fff7f2;
  box-shadow: 0 28px 80px rgba(18, 11, 9, 0.32);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner .section-label {
  color: rgba(255, 247, 242, 0.7);
}

.consent-banner h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 1.05rem + 1vw, 2rem);
  line-height: 1.02;
}

.consent-banner p:last-child {
  margin: 0;
  color: rgba(255, 247, 242, 0.78);
  line-height: 1.65;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.consent-reopen {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 34;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(27, 17, 16, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.92);
  color: var(--text);
  box-shadow: 0 12px 32px rgba(24, 15, 12, 0.14);
  cursor: pointer;
}

.consent-reopen[hidden] {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content > * {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.hero__visual {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 900ms ease 150ms,
    transform 900ms ease 150ms;
}

body.is-ready .hero__content > *,
body.is-ready .hero__visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-menu-open {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
    width: calc(100vw - 1rem);
    gap: 0.7rem 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.6rem);
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(27, 17, 16, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__visual {
    justify-items: stretch;
    padding-top: 0;
  }

  .hero__image-wrap {
    width: min(100%, 760px);
    height: min(72svh, 720px);
    margin-left: auto;
  }

  .hero__caption {
    margin-right: 0;
  }

  .intro__grid,
  .editorial,
  .editorial--beauty,
  .gallery__layout,
  .cta,
  .legal-strip {
    grid-template-columns: 1fr;
  }

  .gallery__figure {
    min-height: 360px;
  }

  .image-lightbox__panel {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 1.5rem));
  }

  .image-lightbox__panel img {
    height: min(58vh, 520px);
  }

  .image-lightbox__caption {
    align-content: start;
  }

  .legal-strip__actions {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 1.5rem);
    --hero-content: calc(100vw - 1.5rem);
  }

  .site-header {
    margin-top: 0.5rem;
  }

  .brand__eyebrow {
    font-size: 0.58rem;
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .hero {
    padding: 6.4rem 0.75rem 1.15rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__image-wrap {
    height: 58svh;
    border-radius: 24px;
  }

  .hero__caption {
    width: 100%;
    margin: 1rem 0 0;
  }

  .intro,
  .gallery,
  .process {
    padding-left: 0;
    padding-right: 0;
  }

  .editorial {
    padding-left: 0;
    padding-right: 0;
  }

  .editorial__media--portrait,
  .editorial__media--landscape,
  .collection-gallery__stage,
  .gallery__figure--large,
  .gallery__figure--medium,
  .gallery__text,
  .image-lightbox__panel,
  .cta,
  .legal-modal__panel {
    border-radius: 26px;
  }

  .collection-gallery__hint {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-content: center;
    padding-inline: 0.75rem;
    font-size: 0.7rem;
  }

  .collection-gallery__thumb {
    padding: 0.4rem;
    border-radius: 18px;
  }

  .collection-gallery__thumb span {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .gallery__figure {
    min-height: 300px;
  }

  .image-lightbox {
    padding: 0.75rem;
  }

  .image-lightbox__panel img {
    height: 46svh;
  }

  .image-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .process__timeline li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .cta {
    padding: 1.35rem;
  }

  .consent-banner {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .consent-reopen {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
