:root {
  --silk: #f7f4ef;
  --silk-2: #fbfaf7;
  --selva: #1f3a2e;
  --moss: #6f7f5b;
  --sand: #d7c8b2;
  --sand-soft: #e9ddcd;
  --editorial: #161616;
  --copper: #b86b45;
  --lime: #b9c86a;
  --white: #fffdf9;
  --line: rgba(31, 58, 46, .16);
  --shadow: 0 24px 80px rgba(31, 58, 46, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--silk);
  color: var(--editorial);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--selva); color: var(--silk); }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: .035;
  background-image: radial-gradient(circle at 25% 25%, #000 0 1px, transparent 1px), radial-gradient(circle at 75% 75%, #000 0 1px, transparent 1px);
  background-size: 34px 34px, 27px 27px;
  mix-blend-mode: multiply;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 6000;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.cursor-dot { width: 7px; height: 7px; background: var(--copper); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(31, 58, 46, .42); }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

.site-header {
  position: fixed;
  top: 18px;
  left: clamp(16px, 3vw, 44px);
  right: clamp(16px, 3vw, 44px);
  height: 64px;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 10px 0 12px;
  color: var(--selva);
  background: rgba(247, 244, 239, .74);
  border: 1px solid rgba(31, 58, 46, .12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(31, 58, 46, .08);
  transition: transform .45s var(--ease), background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 239, .9);
  box-shadow: 0 18px 50px rgba(31, 58, 46, .14);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--selva);
  color: var(--silk);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}
.brand-text {
  display: grid;
  line-height: .98;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 13px;
}
.brand-text em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: .24em;
  margin-top: 4px;
  color: rgba(31, 58, 46, .72);
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(31, 58, 46, .78);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform .45s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 20px;
  background: var(--selva);
  color: var(--silk);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  font-size: 11px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 46px;
  height: 46px;
  position: relative;
  justify-self: end;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--selva);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 28px; }
.nav-toggle.is-open span:first-child { top: 23px; transform: rotate(42deg); }
.nav-toggle.is-open span:last-child { top: 23px; transform: rotate(-42deg); }

.section-shell {
  position: relative;
  width: min(100% - clamp(32px, 6vw, 96px), 1480px);
  margin-inline: auto;
}
.hero {
  width: 100%;
  min-height: 100svh;
  padding: clamp(120px, 12vw, 160px) clamp(24px, 5vw, 76px) 72px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 18%, rgba(185, 200, 106, .12), transparent 34%),
    radial-gradient(circle at 19% 76%, rgba(184, 107, 69, .11), transparent 28%),
    linear-gradient(100deg, var(--silk) 0%, var(--white) 58%, var(--silk) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 34vw;
  height: 34vw;
  right: 5vw;
  top: 12vh;
  border: 1px solid rgba(31, 58, 46, .12);
  border-radius: 40% 60% 48% 52% / 52% 46% 54% 48%;
  animation: morph 14s var(--ease) infinite alternate;
}
.hero-copy { max-width: 690px; z-index: 2; }
.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.045em;
  color: var(--selva);
}
h1 {
  font-size: clamp(80px, 11vw, 186px);
  margin-bottom: 20px;
}
h1 span {
  display: block;
  color: var(--copper);
  font-size: .38em;
  letter-spacing: .02em;
  line-height: .9;
}
h2 { font-size: clamp(48px, 7vw, 116px); }
h2 span { color: var(--copper); }
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--editorial);
  max-width: 660px;
  margin-bottom: 18px;
}
.hero-text,
.split-content p,
.atelier-copy p,
.fashion-heading p,
.integration-intro p,
.gift-copy p,
.final-card p {
  color: rgba(22, 22, 22, .72);
  font-size: clamp(16px, 1.4vw, 19px);
}
.hero-text { max-width: 570px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}
.hero-actions.center { justify-content: center; }
.btn {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(31, 58, 46, .2);
  border-radius: 999px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  transition: transform .45s var(--ease), border-color .25s ease, color .25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--selva), #294b3c 54%, var(--copper));
  transform: translateY(102%);
  transition: transform .55s var(--ease);
}
.btn.primary {
  background: var(--selva);
  color: var(--silk);
  border-color: transparent;
}
.btn.primary::before { transform: translateY(0); }
.btn.ghost { color: var(--selva); background: rgba(255, 253, 249, .42); }
.btn.ghost:hover { color: var(--silk); border-color: transparent; }
.btn.ghost:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.service-line {
  margin: 0;
  color: rgba(31, 58, 46, .58);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: min(72svh, 780px);
  display: grid;
  align-items: center;
}
.hero-visual {
  position: relative;
  width: min(100%, 860px);
  min-height: min(74svh, 800px);
  justify-self: center;
  border-radius: 42% 58% 44% 56% / 58% 42% 58% 42%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 55%, rgba(255,255,255,.96), rgba(247,244,239,.86));
  box-shadow: inset 0 0 0 1px rgba(31, 58, 46, .08), 0 45px 120px rgba(31, 58, 46, .1);
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px), 0);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08) translateY(22px);
  clip-path: ellipse(0% 56% at 50% 52%);
  transition: opacity 1.2s ease, transform 1.35s var(--ease), clip-path 1.45s var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  clip-path: ellipse(78% 68% at 50% 52%);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.98) contrast(1.01);
  transform: scale(1.015);
  animation: editorialZoom 8s linear infinite alternate;
}
.hero-caption {
  position: absolute;
  right: clamp(8px, 2vw, 28px);
  bottom: clamp(30px, 8vh, 90px);
  max-width: 320px;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 28px;
  background: rgba(247, 244, 239, .65);
  border: 1px solid rgba(31, 58, 46, .12);
  backdrop-filter: blur(18px);
}
.hero-caption span {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--copper);
  font-weight: 800;
}
.hero-caption strong {
  font-family: var(--serif);
  font-size: 28px;
  line-height: .98;
  color: var(--selva);
  font-weight: 500;
}
.organic-orbit {
  position: absolute;
  inset: 7% 0 auto auto;
  width: 120px;
  height: 120px;
  border-radius: 48% 52% 60% 40%;
  background: rgba(185, 200, 106, .18);
  filter: blur(.2px);
  animation: float 8s var(--ease) infinite alternate;
}
.hero-bg-word {
  position: absolute;
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(128px, 22vw, 360px);
  line-height: 1;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 58, 46, .06);
  pointer-events: none;
  user-select: none;
}
.word-one { left: -4vw; bottom: 4vh; }
.word-two { right: -10vw; top: 8vh; animation: slowDrift 18s linear infinite alternate; }
.botanical-line {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(111, 127, 91, .22);
  border-left: 0;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.botanical-line-a { width: 260px; height: 360px; left: 32%; top: 18%; transform: rotate(-22deg); animation: float 10s ease-in-out infinite alternate; }
.botanical-line-b { width: 180px; height: 260px; right: 8%; bottom: 8%; transform: rotate(32deg); animation: float 8s ease-in-out infinite alternate-reverse; }
.runway-flash {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(95deg, transparent, rgba(255,255,255,.9), transparent);
  transform: translateX(-110%);
  opacity: 0;
}
.runway-flash.is-active { animation: flashSweep .75s var(--ease); }
.scroll-cue {
  position: absolute;
  left: clamp(24px, 5vw, 76px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(31, 58, 46, .65);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
}
.scroll-cue span {
  width: 42px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: cue 1.8s ease-in-out infinite;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  padding: clamp(90px, 12vw, 170px) 0;
  border-top: 1px solid var(--line);
}
.section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
.split-title h2 { margin: 0; }
.split-content {
  align-self: end;
  max-width: 680px;
}
.feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.feature-card,
.step-card,
.integration-card,
.gift-option {
  background: rgba(255, 253, 249, .54);
  border: 1px solid rgba(31, 58, 46, .11);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 20px 70px rgba(31, 58, 46, .055);
}
.feature-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .55s var(--ease), background .35s ease, box-shadow .35s ease;
}
.feature-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow); }
.feature-card span,
.gift-option span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.feature-card h3,
.step-card strong,
.look-card h3,
.gift-option h3 {
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 39px);
  line-height: .95;
  font-weight: 500;
  color: var(--selva);
  margin: 0 0 12px;
}
.feature-card p,
.step-card span,
.look-card p,
.gift-option p { color: rgba(22, 22, 22, .64); margin: 0; }

.atelier {
  padding: clamp(90px, 11vw, 165px) 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.atelier::before,
.integrations::before,
.gift::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(215,200,178,.22), transparent 70%);
  z-index: -2;
}
.atelier-copy { max-width: 620px; }
.atelier-copy h2 { margin-bottom: 24px; }
.atelier-collage {
  position: relative;
  min-height: 720px;
}
.atelier-collage figure { margin: 0; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); border: 1px solid rgba(31,58,46,.08); }
.atelier-collage img,
.atelier-wide img,
.look-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.parallax-card:hover img,
.look-card:hover img { transform: scale(1.05); }
.collage-main { position: absolute; inset: 5% 18% 24% 0; }
.collage-side { position: absolute; width: 44%; aspect-ratio: 4/5; }
.side-top { right: 0; top: 0; }
.side-bottom { right: 8%; bottom: 0; }
.atelier-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.step-card {
  display: grid;
  gap: 12px;
  background: rgba(31, 58, 46, .05);
}
.step-card strong { font-size: 28px; }
.atelier-wide {
  grid-column: 1 / -1;
  margin: 58px 0 0;
  height: clamp(420px, 56vw, 740px);
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(31, 58, 46, .1);
  box-shadow: var(--shadow);
}

.fashion {
  padding: clamp(90px, 12vw, 170px) 0;
  overflow: hidden;
}
.fashion-heading {
  display: grid;
  grid-template-columns: 1fr .85fr;
  column-gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: 34px;
}
.fashion-heading .eyebrow,
.fashion-heading h2 { grid-column: 1; }
.fashion-heading p { grid-column: 2; }
.fashion-heading h2 { margin: 0; }
.marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-top: 1px solid rgba(31, 58, 46, .1);
  border-bottom: 1px solid rgba(31, 58, 46, .1);
  padding: 18px 0;
  margin-bottom: 38px;
}
.marquee div {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 58, 46, .22);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 330px;
  gap: 15px;
}
.look-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--sand-soft);
  border: 1px solid rgba(31, 58, 46, .09);
  min-height: 280px;
  box-shadow: 0 20px 60px rgba(31, 58, 46, .07);
}
.look-card.large { grid-column: span 2; grid-row: span 2; }
.look-card.tall { grid-row: span 2; }
.look-card::before {
  content: attr(data-look);
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 244, 239, .72);
  backdrop-filter: blur(12px);
  color: var(--selva);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.look-card > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border-radius: 26px;
  background: rgba(247, 244, 239, .78);
  backdrop-filter: blur(18px);
  transform: translateY(10px);
  opacity: .94;
  transition: transform .45s var(--ease), opacity .45s ease;
}
.look-card:hover > div { transform: translateY(0); opacity: 1; }
.look-card h3 { font-size: 31px; }

.integrations {
  padding: clamp(90px, 11vw, 155px) 0;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.integration-intro { position: sticky; top: 120px; }
.integration-intro h2 { margin-bottom: 22px; }
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.integration-card {
  border: 1px solid rgba(31, 58, 46, .12);
  text-align: left;
  min-height: 190px;
  display: grid;
  align-content: space-between;
  background: rgba(255, 253, 249, .62);
  color: inherit;
  transition: transform .5s var(--ease), background .35s ease, box-shadow .35s ease;
}
.integration-card:hover { transform: translateY(-7px) rotate(-.4deg); background: var(--white); box-shadow: var(--shadow); }
.integration-card:nth-child(even):hover { rotate: .5deg; }
.integration-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--selva);
  color: var(--silk);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}
.integration-card strong {
  font-family: var(--serif);
  font-size: 32px;
  line-height: .95;
  color: var(--selva);
  font-weight: 500;
}
.integration-card em {
  font-style: normal;
  color: rgba(22, 22, 22, .6);
}

.gift {
  padding: clamp(90px, 10vw, 150px) 0;
}
.gift-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(32px, 6vw, 78px);
  border-radius: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31,58,46,.96), rgba(31,58,46,.82)), url("assets/img/atelier-01-reception.webp") center/cover;
  color: var(--silk);
  box-shadow: 0 34px 120px rgba(31, 58, 46, .25);
}
.gift-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(184, 107, 69, .26);
  filter: blur(24px);
}
.gift-copy,
.gift-options { position: relative; z-index: 1; }
.gift h2,
.gift .eyebrow { color: var(--silk); }
.gift h2 { margin-bottom: 20px; }
.gift-copy p { color: rgba(247,244,239,.78); }
.gift .btn.primary { background: var(--silk); color: var(--selva); }
.gift .btn.primary::before { background: linear-gradient(120deg, var(--white), var(--sand)); }
.microcopy { font-size: 13px !important; margin-top: 16px; }
.gift-options { display: grid; gap: 14px; }
.gift-option {
  background: rgba(247, 244, 239, .1);
  border-color: rgba(247, 244, 239, .18);
}
.gift-option h3 { color: var(--silk); }
.gift-option p { color: rgba(247,244,239,.72); }
.gift-option span { color: var(--lime); }

.final-cta { padding: 50px 0 clamp(80px, 9vw, 130px); }
.final-card {
  text-align: center;
  padding: clamp(44px, 7vw, 92px) clamp(22px, 6vw, 90px);
  border-radius: 48px;
  background: rgba(255, 253, 249, .72);
  border: 1px solid rgba(31, 58, 46, .12);
  box-shadow: var(--shadow);
}
.final-card h2 { margin-bottom: 18px; }
.final-card p { max-width: 690px; margin-inline: auto; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px clamp(24px, 5vw, 76px);
  background: var(--editorial);
  color: var(--silk);
}
.site-footer strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}
.site-footer p { margin: 6px 0 0; color: rgba(247,244,239,.65); }
.site-footer a { color: var(--silk); }
.footer-cta { background: var(--silk); color: var(--selva); }

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  filter: blur(8px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, .42);
  backdrop-filter: blur(10px);
}
.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(86svh, 820px);
  overflow: auto;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 38px;
  background: var(--silk);
  border: 1px solid rgba(247, 244, 239, .42);
  box-shadow: 0 36px 130px rgba(0, 0, 0, .25);
  animation: modalIn .42s var(--ease);
}
.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(31,58,46,.16);
  background: rgba(255,253,249,.9);
  color: var(--selva);
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.modal-content h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  color: var(--selva);
  line-height: .92;
  font-weight: 500;
  margin-bottom: 18px;
}
.modal-content p { color: rgba(22,22,22,.7); }
.demo-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--selva);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
}
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(31,58,46,.16);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255,253,249,.72);
  color: var(--editorial);
  outline: none;
}
.demo-form textarea { min-height: 104px; resize: vertical; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(184,107,69,.08); }
.form-result,
.phone-preview,
.promo-card,
.instagram-mock,
.price-list {
  margin-top: 20px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,253,249,.72);
  border: 1px solid rgba(31,58,46,.11);
}
.form-result:empty { display: none; }
.phone-preview span,
.instagram-mock span,
.promo-card strong { color: var(--selva); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.phone-preview p { padding: 14px; background: #e6f5de; border-radius: 18px 18px 18px 4px; color: #203827; margin: 12px 0 0; }
.mini-gallery,
.instagram-mock div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mini-gallery img,
.instagram-mock img { aspect-ratio: 1; object-fit: cover; border-radius: 18px; }
.price-list { display: grid; gap: 0; }
.price-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31,58,46,.1);
}
.price-list p:last-child { border-bottom: 0; }
.price-list span { color: var(--copper); font-weight: 800; }
.promo-card { display: grid; gap: 8px; background: linear-gradient(135deg, var(--selva), #314c3f); color: var(--silk); }
.promo-card strong { color: var(--lime); }
.promo-card span { color: rgba(247,244,239,.8); }
.modal-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.modal-link-grid button {
  border: 1px solid rgba(31,58,46,.14);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,253,249,.78);
  color: var(--selva);
  font-weight: 800;
  text-align: left;
}
code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(31,58,46,.08);
  color: var(--selva);
}

@keyframes editorialZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}
@keyframes morph {
  from { border-radius: 40% 60% 48% 52% / 52% 46% 54% 48%; transform: rotate(0deg); }
  to { border-radius: 58% 42% 60% 40% / 38% 58% 42% 62%; transform: rotate(12deg); }
}
@keyframes float {
  from { translate: 0 0; }
  to { translate: 12px -22px; }
}
@keyframes slowDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-4vw); }
}
@keyframes flashSweep {
  0% { opacity: 0; transform: translateX(-110%); }
  24% { opacity: .85; }
  100% { opacity: 0; transform: translateX(110%); }
}
@keyframes cue {
  0%, 100% { transform: scaleX(.55); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .main-nav { gap: 14px; font-size: 10px; }
  .feature-grid,
  .atelier-steps { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(3, 1fr); }
  .integrations { grid-template-columns: 1fr; }
  .integration-intro { position: relative; top: auto; max-width: 760px; }
}

@media (max-width: 920px) {
  :root { --header-h: 74px; }
  body { font-size: 15px; }
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 58px;
    grid-template-columns: auto 1fr auto;
    padding: 0 7px 0 9px;
  }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text { font-size: 12px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 30px;
    background: rgba(247,244,239,.96);
    border: 1px solid rgba(31,58,46,.13);
    box-shadow: 0 24px 80px rgba(31,58,46,.16);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .35s var(--ease);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 16px 10px; font-size: 13px; border-bottom: 1px solid rgba(31,58,46,.08); }
  .main-nav a:last-child { border-bottom: 0; }
  .header-cta { min-height: 38px; padding: 0 14px; font-size: 10px; }
  .hero {
    min-height: auto;
    padding: 110px 18px 56px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy { order: 2; }
  .hero-stage { order: 1; min-height: min(62svh, 620px); }
  .hero-visual {
    min-height: min(58svh, 580px);
    width: min(100%, 700px);
    border-radius: 36px;
  }
  .hero-slide.is-active { clip-path: ellipse(92% 74% at 50% 52%); }
  .hero-caption {
    right: 10px;
    bottom: 10px;
    max-width: min(320px, calc(100% - 20px));
  }
  .hero-caption strong { font-size: 24px; }
  .scroll-cue { display: none; }
  .split-section,
  .atelier,
  .fashion-heading,
  .gift-panel,
  .site-footer { grid-template-columns: 1fr; }
  .split-section { padding: 86px 0; }
  .atelier-collage { min-height: 620px; }
  .collage-main { inset: 0 0 28% 0; }
  .collage-side { width: 48%; }
  .side-top { top: auto; bottom: 0; right: 0; }
  .side-bottom { left: 0; right: auto; bottom: 0; }
  .fashion-heading p { grid-column: auto; }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .look-card.large { grid-column: span 2; grid-row: span 1; }
  .look-card.tall { grid-row: span 1; }
  .gift-panel { border-radius: 34px; }
  .site-footer { text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 28px, 1480px); }
  .brand-text em { display: none; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .nav-toggle { grid-column: 2; }
  h1 { font-size: clamp(70px, 19vw, 112px); }
  h1 span { font-size: .42em; }
  h2 { font-size: clamp(44px, 14vw, 72px); }
  .hero { padding-inline: 14px; }
  .hero-lead { font-size: 30px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; padding-inline: 18px; min-height: 52px; }
  .hero-stage { min-height: 500px; }
  .hero-visual { min-height: 500px; }
  .hero-caption { position: relative; right: auto; bottom: auto; margin: -78px 10px 0; max-width: none; }
  .hero-bg-word { opacity: .55; }
  .feature-grid,
  .atelier-steps,
  .integration-grid,
  .lookbook-grid,
  .modal-link-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 180px; }
  .atelier { padding: 84px 0; }
  .atelier-collage { min-height: auto; display: grid; gap: 12px; }
  .atelier-collage figure { position: relative; inset: auto; width: 100%; aspect-ratio: 4 / 3; border-radius: 28px; }
  .atelier-wide { height: 360px; border-radius: 28px; margin-top: 34px; }
  .lookbook-grid { grid-auto-rows: auto; }
  .look-card,
  .look-card.large,
  .look-card.tall { min-height: 430px; grid-column: span 1; }
  .look-card > div { left: 12px; right: 12px; bottom: 12px; }
  .integration-card { min-height: 165px; }
  .gift-panel { padding: 28px 18px; }
  .final-card { border-radius: 34px; }
  .modal { padding: 10px; align-items: flex-end; }
  .modal-panel { border-radius: 30px 30px 0 0; max-height: 88svh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* === SELVA revision: editorial full-screen hero, text-only header, sharp luxury system === */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

*:not(.cursor-dot):not(.cursor-ring) {
  border-radius: 0 !important;
}

body.pre-entry {
  overflow: hidden;
}

.site-header,
.site-header.is-scrolled {
  top: 0;
  left: 0;
  right: 0;
  height: clamp(70px, 7vw, 92px);
  padding: 0 clamp(18px, 4.8vw, 76px);
  color: var(--selva);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  text-shadow: 0 1px 18px rgba(247, 244, 239, .82);
}

.brand {
  gap: 0;
}

.brand-mark {
  display: none !important;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: .18em;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: .12em;
}

.brand-text em {
  margin: 0;
  font-size: 10px;
  letter-spacing: .24em;
  color: currentColor;
  opacity: .76;
}

.main-nav {
  gap: clamp(18px, 3vw, 42px);
  font-size: 11px;
  letter-spacing: .2em;
}

.main-nav a,
.header-cta {
  color: currentColor;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  min-height: auto;
  box-shadow: none !important;
}

.header-cta {
  position: relative;
  display: inline-flex;
  width: auto;
  text-decoration: none;
}

.header-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: .14em;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.58);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.header-cta:hover::after {
  transform: scaleX(1);
}

.hero.section-shell {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  height: 100svh;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #fff;
}

.hero::before,
.hero::after,
.hero-copy,
.hero-caption,
.scroll-cue,
.hero-bg-word,
.botanical-line,
.organic-orbit {
  display: none !important;
}

.hero-stage {
  position: absolute;
  inset: 0;
  min-height: 100%;
  display: block;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  max-width: none;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  transform: none !important;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  clip-path: polygon(48% 0, 52% 0, 52% 100%, 48% 100%);
  filter: saturate(.92) contrast(1.02);
  transition:
    opacity 1.1s ease,
    transform 2.15s var(--ease),
    clip-path 1.45s var(--ease),
    filter 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(1) contrast(1.01);
}

.hero-slide img {
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  animation: editorialZoom 12s linear infinite alternate;
}

.hero-slide:nth-child(1) img,
.hero-slide:nth-child(4) img {
  object-position: 44% center;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(5) img {
  object-position: 52% center;
}

.hero-slide:nth-child(3) img {
  object-position: 50% center;
}

.runway-flash {
  z-index: 5;
  background: linear-gradient(95deg, transparent 0%, rgba(255,255,255,.88) 45%, transparent 72%);
}

.split-section,
.atelier,
.fashion,
.integrations,
.gift,
.final-cta {
  overflow: clip;
}

.reveal {
  opacity: 0;
  transform: translate3d(-10px, 48px, 0) skewY(.7deg);
  filter: blur(12px);
  transition:
    opacity 1.15s var(--ease),
    transform 1.15s var(--ease),
    filter 1.15s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) skewY(0deg);
  filter: blur(0);
}

.feature-card,
.step-card,
.integration-card,
.gift-option,
.final-card,
.modal-panel,
.form-result,
.phone-preview,
.promo-card,
.instagram-mock,
.price-list,
.demo-form input,
.demo-form select,
.demo-form textarea,
.modal-link-grid button,
.look-card > div,
.look-card::before {
  border-radius: 0 !important;
}

.feature-card,
.step-card,
.integration-card,
.gift-option,
.final-card {
  box-shadow: none;
  transition:
    transform .7s var(--ease),
    background .45s ease,
    border-color .45s ease,
    box-shadow .7s var(--ease);
}

.feature-card:hover,
.integration-card:hover,
.gift-option:hover,
.step-card:hover {
  transform: translateY(-10px) skewY(-.35deg);
  box-shadow: 18px 24px 0 rgba(31,58,46,.055);
}

.atelier-collage figure,
.atelier-wide,
.look-card {
  border-radius: 0 !important;
}

.atelier-collage figure::after,
.atelier-wide::after,
.look-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.16) 42%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease);
}

.atelier-collage figure,
.atelier-wide,
.look-card {
  position: relative;
}

.atelier-collage figure:hover::after,
.atelier-wide:hover::after,
.look-card:hover::after {
  transform: translateX(130%);
}

.marquee div {
  animation-duration: 38s;
}

.entry-popup {
  position: fixed;
  inset: 0;
  z-index: 7000;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 60px);
  background:
    linear-gradient(90deg, rgba(247,244,239,.94), rgba(247,244,239,.72)),
    url("assets/img/atelier-01-reception.webp") center/cover;
  opacity: 1;
  visibility: visible;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.entry-popup.is-accepted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-popup__panel {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 76px);
  background: rgba(247,244,239,.74);
  border: 1px solid rgba(31,58,46,.18);
  box-shadow: 26px 36px 0 rgba(31,58,46,.08);
  backdrop-filter: blur(18px);
  color: var(--selva);
  animation: entryPanelIn 1s var(--ease) both;
}

.entry-kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 800;
  color: var(--copper);
}

.entry-popup h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .86;
  font-weight: 500;
  letter-spacing: -.045em;
  color: var(--selva);
}

.entry-popup p {
  max-width: 610px;
  color: rgba(22,22,22,.74);
  font-size: clamp(16px, 1.6vw, 20px);
}

.entry-accept,
.demo-sticky button {
  margin-top: 24px;
  border: 0;
  background: var(--selva);
  color: var(--silk);
  min-height: 48px;
  padding: 0 28px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 11px;
  font-weight: 800;
  transition: transform .45s var(--ease), background .35s ease;
}

.entry-accept:hover,
.demo-sticky button:hover {
  transform: translateY(-3px);
  background: var(--copper);
}

.demo-sticky {
  position: fixed;
  left: clamp(14px, 3vw, 38px);
  right: clamp(14px, 3vw, 38px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 14px 14px 18px;
  background: rgba(247,244,239,.78);
  color: var(--selva);
  border: 1px solid rgba(31,58,46,.16);
  box-shadow: 16px 20px 0 rgba(31,58,46,.075);
  backdrop-filter: blur(18px);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform .75s var(--ease), opacity .55s ease;
}

body.has-scrolled:not(.pre-entry) .demo-sticky {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.demo-sticky p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(22,22,22,.72);
}

.demo-sticky strong {
  color: var(--selva);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.demo-sticky button {
  margin: 0;
  min-height: 42px;
  padding: 0 18px;
}

@keyframes entryPanelIn {
  from { opacity: 0; transform: translateY(32px) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 920px) {
  .site-header,
  .site-header.is-scrolled {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
  }

  .brand-text {
    display: grid;
    gap: 4px;
  }

  .brand-text strong {
    font-size: 27px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    padding: 22px 18px;
    background: rgba(247,244,239,.96);
    border: 0;
    box-shadow: none;
    transform: translateY(-18px);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(31,58,46,.1);
  }

  .hero.section-shell,
  .hero-visual,
  .hero-slide img {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-slide:nth-child(n) img {
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .hero.section-shell {
    padding: 0;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .brand-text em {
    display: block;
  }

  .demo-sticky {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .demo-sticky button {
    width: 100%;
  }

  .entry-popup__panel {
    padding: 30px 22px;
    box-shadow: 14px 18px 0 rgba(31,58,46,.08);
  }

  .entry-popup h2 {
    font-size: clamp(48px, 17vw, 78px);
  }

  .modal {
    align-items: center;
  }

  .modal-panel {
    max-height: 88svh;
  }
}

.parallax-card img,
.atelier-wide img,
.look-card img {
  transform: translateY(var(--drift, 0px)) scale(1.018);
}

.parallax-card:hover img,
.atelier-wide:hover img,
.look-card:hover img {
  transform: translateY(var(--drift, 0px)) scale(1.06);
}

html {
  scroll-behavior: auto;
}

/* === SELVA revision 2: higher-quality hero, editorial video, no AI-looking boxes === */
.hero-slide,
.hero-slide.is-active {
  will-change: opacity, clip-path, transform;
}

.hero-slide {
  transform: scale(1.018);
  filter: saturate(.98) contrast(1.01);
}

.hero-slide.is-active {
  transform: scale(1);
}

.hero-slide img {
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  animation: heroBreath 16s var(--ease) infinite alternate;
  image-rendering: auto;
  backface-visibility: hidden;
}

.hero-slide:nth-child(1) img { object-position: 43% center; }
.hero-slide:nth-child(2) img { object-position: 50% center; }
.hero-slide:nth-child(3) img { object-position: 49% center; }
.hero-slide:nth-child(4) img { object-position: 44% center; }
.hero-slide:nth-child(5) img { object-position: 50% center; }

@keyframes heroBreath {
  from { transform: scale(1); }
  to { transform: scale(1.012); }
}

.atelier-film {
  position: relative;
  left: 50%;
  width: 100vw;
  height: clamp(520px, 82svh, 980px);
  margin-left: -50vw;
  overflow: hidden;
  background: var(--editorial);
  isolation: isolate;
}

.atelier-film::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22,22,22,.12), transparent 22%, transparent 74%, rgba(22,22,22,.18)),
    radial-gradient(circle at 16% 22%, rgba(184,107,69,.18), transparent 34%);
  mix-blend-mode: soft-light;
}

.atelier-film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

/* Editorial copy blocks: no boxed card feeling */
.feature-grid {
  gap: 0;
  margin-top: clamp(46px, 6vw, 82px);
  border-top: 1px solid rgba(31,58,46,.18);
}

.feature-card,
.step-card,
.integration-card,
.gift-option,
.final-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.feature-card {
  min-height: 0;
  justify-content: flex-start;
  padding: clamp(22px, 3vw, 38px) clamp(12px, 2vw, 26px) clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid rgba(31,58,46,.14) !important;
}

.feature-card:hover,
.integration-card:hover,
.gift-option:hover,
.step-card:hover {
  transform: translateX(10px) !important;
  box-shadow: none !important;
}

.feature-card h3 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.feature-card p,
.gift-option p,
.integration-card em,
.step-card span {
  font-size: 15px;
  line-height: 1.65;
}

/* Atelier: from collage to designed editorial story */
.atelier {
  display: block !important;
  padding: clamp(92px, 11vw, 170px) 0 clamp(80px, 10vw, 150px);
  overflow: visible;
}

.atelier::before {
  background:
    linear-gradient(180deg, rgba(215,200,178,.24), rgba(247,244,239,0) 58%),
    linear-gradient(90deg, rgba(31,58,46,.035), transparent 42%);
}

.atelier-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(28px, 6vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 8vw, 120px);
}

.atelier-editorial-head .eyebrow,
.atelier-editorial-head h2 {
  grid-column: 1;
}

.atelier-editorial-head h2 {
  margin: 0;
}

.atelier-editorial-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.atelier-editorial-copy p {
  color: rgba(22,22,22,.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.atelier-visual-story {
  display: grid;
  gap: clamp(30px, 4.8vw, 78px);
}

.atelier-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand-soft);
  border: 0 !important;
  box-shadow: none !important;
}

.atelier-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.atelier-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.atelier-frame figcaption {
  margin-top: 12px;
  color: rgba(31,58,46,.72);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.atelier-frame--lead {
  height: clamp(560px, 72vw, 940px);
}

.atelier-frame--lead figcaption,
.atelier-frame--lounge figcaption,
.atelier-duo figcaption {
  position: relative;
  max-width: 720px;
}

.atelier-duo {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, .68fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: end;
}

.atelier-frame--tall {
  height: clamp(620px, 67vw, 940px);
}

.atelier-frame--offset {
  height: clamp(440px, 50vw, 710px);
  margin-bottom: clamp(46px, 8vw, 130px);
}

.atelier-frame--lounge {
  width: min(78%, 1120px);
  height: clamp(500px, 56vw, 760px);
  margin-left: auto;
}

.atelier-process {
  margin-top: clamp(58px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(31,58,46,.2);
}

.atelier-process article {
  padding: clamp(22px, 3vw, 40px) clamp(14px, 2vw, 30px) clamp(28px, 3vw, 46px) 0;
  border-bottom: 1px solid rgba(31,58,46,.14);
}

.atelier-process strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 39px);
  line-height: .95;
  font-weight: 500;
  color: var(--selva);
  margin-bottom: 14px;
}

.atelier-process span {
  display: block;
  color: rgba(22,22,22,.64);
  line-height: 1.65;
}

/* Lookbook: keep image impact, remove label/card overlays */
.lookbook-grid {
  gap: clamp(12px, 1.4vw, 22px);
  grid-auto-rows: clamp(300px, 26vw, 420px);
}

.look-card {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.look-card::before {
  top: 16px;
  left: 16px;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  color: rgba(247,244,239,.92);
  text-shadow: 0 1px 18px rgba(0,0,0,.28);
  border-radius: 0 !important;
}

.look-card::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.34) 100%);
  transform: none !important;
}

.look-card > div {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  color: var(--silk);
  text-shadow: 0 1px 22px rgba(0,0,0,.28);
}

.look-card h3 {
  color: var(--silk);
}

.look-card p {
  color: rgba(247,244,239,.82);
  max-width: 360px;
}

/* Integrations as a luxury index, not boxes */
.integrations {
  grid-template-columns: .82fr 1.18fr;
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(31,58,46,.2);
}

.integration-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(150px, .38fr) minmax(210px, .72fr) minmax(220px, .72fr) auto;
  align-items: baseline;
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(20px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(31,58,46,.14) !important;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.integration-card::after {
  content: "Apri";
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 800;
  transition: transform .45s var(--ease);
}

.integration-card:hover::after {
  transform: translateX(10px);
}

.integration-card span {
  width: auto;
  height: auto;
  display: block;
  background: transparent !important;
  color: var(--copper);
  place-items: initial;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  line-height: 1.45;
}

.integration-card strong {
  font-size: clamp(28px, 3vw, 44px);
}

.integration-card em {
  font-size: 15px;
  line-height: 1.6;
}

/* Gift and closing CTA: full editorial band, not cards */
.gift {
  width: 100%;
}

.gift-panel {
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-inline: max(clamp(24px, 6vw, 96px), calc((100vw - 1480px) / 2));
}

.gift-panel::after {
  border-radius: 0 !important;
}

.gift-options {
  gap: 0;
  border-top: 1px solid rgba(247,244,239,.22);
}

.gift-option {
  padding: 22px 0;
  border-bottom: 1px solid rgba(247,244,239,.18) !important;
}

.final-card {
  padding: clamp(48px, 7vw, 96px) 0 0;
  border-top: 1px solid rgba(31,58,46,.18) !important;
}

.final-card p {
  margin-inline: 0;
}

.final-card .hero-actions.center {
  justify-content: flex-start;
}

/* More subtle luxury scroll */
html { scroll-behavior: auto; }

@media (max-width: 1080px) {
  .atelier-editorial-head,
  .fashion-heading,
  .integrations,
  .gift-panel {
    grid-template-columns: 1fr;
  }

  .atelier-editorial-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
  }

  .atelier-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-intro {
    position: relative;
    top: auto;
  }

  .integration-card {
    grid-template-columns: minmax(130px, .45fr) 1fr auto;
  }

  .integration-card em {
    grid-column: 2 / -1;
  }
}

@media (max-width: 740px) {
  .hero-slide img {
    object-position: center center;
  }

  .atelier-film {
    height: 72svh;
  }

  .feature-grid,
  .atelier-process {
    grid-template-columns: 1fr;
  }

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

  .atelier-frame--lead,
  .atelier-frame--tall,
  .atelier-frame--offset,
  .atelier-frame--lounge {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0;
  }

  .atelier-frame--lead,
  .atelier-frame--lounge {
    aspect-ratio: 3 / 4;
  }

  .atelier-frame figcaption {
    font-size: 10px;
    letter-spacing: .13em;
  }

  .integration-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .integration-card::after {
    justify-self: start;
  }

  .lookbook-grid {
    grid-auto-rows: 420px;
  }
}

/* === SELVA revision 3: readable services, stronger title motion, mobile keeps desktop mood === */
.hero-overlay {
  position: absolute;
  z-index: 12;
  left: clamp(18px, 5.2vw, 82px);
  bottom: clamp(26px, 7vh, 88px);
  width: min(680px, calc(100vw - 36px));
  padding: clamp(20px, 3.6vw, 44px) clamp(18px, 3.8vw, 48px) clamp(22px, 4vw, 50px) 0;
  color: var(--selva);
  text-shadow: 0 1px 24px rgba(247,244,239,.92);
  isolation: isolate;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px clamp(-22px, -3vw, -42px) -18px -100vw;
  background:
    linear-gradient(90deg, rgba(247,244,239,.94), rgba(247,244,239,.74) 62%, rgba(247,244,239,0)),
    radial-gradient(circle at 12% 22%, rgba(185,200,106,.2), transparent 38%);
  border-top: 1px solid rgba(31,58,46,.13);
  border-bottom: 1px solid rgba(31,58,46,.13);
  backdrop-filter: blur(10px);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 900;
  animation: eyebrowPulse 4.5s ease-in-out infinite alternate;
}

.hero-title-lockup {
  display: grid;
  margin: 0 0 8px;
  font-family: var(--serif);
  line-height: .76;
  letter-spacing: -.055em;
  color: var(--selva);
}

.hero-title-lockup span {
  display: block;
  font-size: clamp(78px, 11.5vw, 174px);
  font-weight: 500;
  background: linear-gradient(100deg, var(--selva), var(--copper), var(--selva));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 7s ease-in-out infinite alternate, titleFloat 6s var(--ease) infinite alternate;
}

.hero-title-lockup em {
  display: block;
  margin-top: .12em;
  font-style: normal;
  font-size: clamp(24px, 3.2vw, 48px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero-overlay .hero-lead {
  max-width: 620px;
  margin: 20px 0 14px;
  color: var(--editorial);
  text-shadow: none;
}

.hero-overlay .hero-text {
  max-width: 570px;
  color: rgba(22,22,22,.74);
  text-shadow: none;
}

.hero-phrase-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin-top: clamp(18px, 2vw, 28px);
  padding-top: 16px;
  border-top: 1px solid rgba(31,58,46,.16);
}

.hero-phrase-wrap span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero-phrase-wrap strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 45px);
  line-height: .98;
  font-weight: 500;
  color: var(--selva);
  animation: phraseLift .8s var(--ease) both;
}

.hero-overlay .hero-actions {
  margin: 24px 0 18px;
}

.hero-overlay .service-line {
  max-width: 680px;
  color: rgba(31,58,46,.72);
  text-shadow: none;
}

.hero-editorial-word {
  position: absolute;
  z-index: 3;
  right: -5vw;
  bottom: -2vh;
  font-family: var(--serif);
  font-size: clamp(130px, 22vw, 360px);
  line-height: .8;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31,58,46,.085);
  pointer-events: none;
  animation: slowDrift 22s linear infinite alternate;
}

/* Animated editorial headings */
.split-title h2,
.atelier-editorial-head h2,
.fashion-heading h2,
.integration-intro h2,
.gift-copy h2,
.final-card h2,
.modal-content h2,
.entry-popup h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.split-title.in-view h2,
.atelier-editorial-head.in-view h2,
.fashion-heading.in-view h2,
.integration-intro.in-view h2,
.gift-panel.in-view h2,
.final-card.in-view h2,
.entry-popup__panel h2 {
  background: linear-gradient(105deg, var(--selva) 0%, var(--selva) 36%, var(--copper) 52%, var(--moss) 68%, var(--selva) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 6.8s ease-in-out infinite alternate, titleFloat 5.8s var(--ease) infinite alternate;
}

.gift-panel.in-view h2 {
  background: linear-gradient(105deg, var(--silk), var(--sand), var(--lime), var(--silk));
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-title h2::after,
.atelier-editorial-head h2::after,
.fashion-heading h2::after,
.integration-intro h2::after,
.gift-copy h2::after,
.final-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.18em;
  width: min(220px, 42%);
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.split-title.in-view h2::after,
.atelier-editorial-head.in-view h2::after,
.fashion-heading.in-view h2::after,
.integration-intro.in-view h2::after,
.gift-panel.in-view h2::after,
.final-card.in-view h2::after {
  animation: lineReveal 1.2s .35s var(--ease) forwards;
}

.section-kicker.in-view,
.eyebrow {
  animation: eyebrowPulse 5.5s ease-in-out infinite alternate;
}

/* Integration/services readability: desktop rows stay editorial but the right side is now clear. */
.integration-grid {
  counter-reset: selva-integration;
}

.integration-card {
  position: relative;
  counter-increment: selva-integration;
  grid-template-columns: minmax(145px, .34fr) minmax(260px, .72fr) minmax(250px, .78fr) !important;
  gap: clamp(18px, 3.2vw, 48px) !important;
  padding: clamp(22px, 3vw, 38px) clamp(72px, 6vw, 104px) clamp(22px, 3vw, 38px) clamp(54px, 4.6vw, 76px) !important;
  background: linear-gradient(90deg, rgba(255,253,249,.42), rgba(255,253,249,.06)) !important;
  border-bottom: 1px solid rgba(31,58,46,.2) !important;
  overflow: hidden;
}

.integration-card::before {
  content: "0" counter(selva-integration);
  position: absolute;
  left: 0;
  top: clamp(22px, 3vw, 38px);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  color: rgba(31,58,46,.32);
  transition: color .45s ease, transform .55s var(--ease);
}

.integration-card::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  opacity: .95;
  white-space: nowrap;
}

.integration-card:hover::before {
  color: var(--copper);
  transform: translateX(8px);
}

.integration-card:hover::after {
  transform: translate(10px, -50%);
}

.integration-card span {
  grid-column: 1;
  color: rgba(184,107,69,.95) !important;
}

.integration-card strong {
  grid-column: 2;
  max-width: 13ch;
  color: var(--selva);
}

.integration-card em {
  grid-column: 3;
  max-width: 36ch;
  color: rgba(22,22,22,.82) !important;
  font-size: clamp(15px, 1.15vw, 17px) !important;
  line-height: 1.72 !important;
}

.integration-card:hover {
  background: linear-gradient(90deg, rgba(255,253,249,.82), rgba(233,221,205,.32)) !important;
}

.integration-card:hover strong {
  color: var(--copper);
}

.integration-intro p {
  color: rgba(22,22,22,.78) !important;
}

/* Extra motion without removing existing transitions. */
.look-card h3,
.feature-card h3,
.atelier-process strong,
.gift-option h3 {
  transition: color .45s ease, transform .55s var(--ease), letter-spacing .55s var(--ease);
}

.look-card:hover h3,
.feature-card:hover h3,
.atelier-process article:hover strong,
.gift-option:hover h3 {
  color: var(--copper);
  transform: translateX(6px);
  letter-spacing: -.02em;
}

.atelier-process article,
.gift-option {
  transition: background .45s ease, transform .55s var(--ease), padding-left .55s var(--ease);
}

.atelier-process article:hover,
.gift-option:hover {
  padding-left: 14px;
  background: rgba(255,253,249,.24) !important;
}

@keyframes titleGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes titleFloat {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -7px, 0); }
}

@keyframes lineReveal {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes eyebrowPulse {
  0% { color: var(--moss); opacity: .82; }
  55% { color: var(--copper); opacity: 1; }
  100% { color: var(--moss); opacity: .9; }
}

@keyframes phraseLift {
  from { opacity: 0; transform: translateY(14px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 1080px) {
  .integration-card {
    grid-template-columns: minmax(132px, .35fr) minmax(0, 1fr) !important;
    padding-right: 0 !important;
  }

  .integration-card strong {
    grid-column: 2;
    max-width: none;
  }

  .integration-card em {
    grid-column: 2;
    max-width: 54ch;
  }

  .integration-card::after {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    grid-column: 2;
    width: fit-content;
    margin-top: 4px;
  }

  .integration-card:hover::after {
    transform: translateX(10px);
  }
}

@media (max-width: 740px) {
  body {
    background:
      radial-gradient(circle at 90% 2%, rgba(185,200,106,.14), transparent 28%),
      radial-gradient(circle at 5% 38%, rgba(184,107,69,.1), transparent 26%),
      var(--silk);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
    background: linear-gradient(180deg, rgba(247,244,239,.96), rgba(247,244,239,.7)) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(31,58,46,.1) !important;
    text-shadow: none;
  }

  .main-nav {
    background:
      linear-gradient(160deg, rgba(247,244,239,.98), rgba(233,221,205,.92)),
      radial-gradient(circle at 88% 18%, rgba(185,200,106,.18), transparent 34%);
    box-shadow: 0 22px 70px rgba(31,58,46,.14);
  }

  .hero.section-shell,
  .hero-visual,
  .hero-slide img {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-slide img {
    object-fit: cover;
  }

  .hero-slide:nth-child(1) img { object-position: 49% center; }
  .hero-slide:nth-child(2) img { object-position: 52% center; }
  .hero-slide:nth-child(3) img { object-position: 50% center; }
  .hero-slide:nth-child(4) img { object-position: 48% center; }
  .hero-slide:nth-child(5) img { object-position: 50% center; }

  .hero-overlay {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 24px 18px max(22px, env(safe-area-inset-bottom));
    text-shadow: none;
  }

  .hero-overlay::before {
    inset: -36px 0 0 0;
    background:
      linear-gradient(0deg, rgba(247,244,239,.98) 0%, rgba(247,244,239,.88) 70%, rgba(247,244,239,0) 100%),
      radial-gradient(circle at 94% 42%, rgba(185,200,106,.18), transparent 30%);
    border-top: 1px solid rgba(31,58,46,.13);
    border-bottom: 0;
    backdrop-filter: blur(10px);
  }

  .hero-title-lockup span {
    font-size: clamp(64px, 23vw, 112px);
  }

  .hero-title-lockup em {
    font-size: clamp(18px, 5.8vw, 30px);
  }

  .hero-overlay .hero-lead {
    font-size: clamp(29px, 9.4vw, 42px);
    margin: 14px 0 10px;
  }

  .hero-overlay .hero-text {
    font-size: 15px;
    line-height: 1.55;
    max-width: 36em;
  }

  .hero-phrase-wrap {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 14px;
    padding-top: 12px;
  }

  .hero-phrase-wrap strong {
    font-size: clamp(25px, 7.4vw, 36px);
  }

  .hero-overlay .hero-actions {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 8px;
    margin: 18px 0 12px;
  }

  .hero-overlay .btn {
    min-height: 46px;
    font-size: 10px;
    letter-spacing: .1em;
    padding: 0 10px;
  }

  .hero-overlay .service-line {
    font-size: 10px;
    line-height: 1.45;
    color: rgba(31,58,46,.66);
  }

  .hero-editorial-word {
    right: -36vw;
    bottom: 22vh;
    font-size: 45vw;
    opacity: .72;
  }

  .section-shell {
    width: min(100% - 28px, 1480px);
  }

  .split-section,
  .atelier,
  .fashion,
  .integrations,
  .gift,
  .final-cta {
    padding-top: 82px;
  }

  .split-title h2,
  .atelier-editorial-head h2,
  .fashion-heading h2,
  .integration-intro h2,
  .gift-copy h2,
  .final-card h2 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: .88;
  }

  .feature-grid {
    border-top: 1px solid rgba(31,58,46,.22);
  }

  .feature-card {
    padding-left: 48px;
    position: relative;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 30px;
    height: 1px;
    background: var(--copper);
  }

  .atelier-film {
    height: 78svh;
    min-height: 560px;
  }

  .atelier-editorial-head,
  .fashion-heading,
  .integration-intro {
    margin-bottom: 40px;
  }

  .atelier-frame--lead,
  .atelier-frame--lounge {
    aspect-ratio: 4 / 5;
  }

  .atelier-frame img,
  .look-card img {
    transform: scale(1.015);
  }

  .atelier-process article {
    padding-left: 52px;
    position: relative;
  }

  .atelier-process article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: 34px;
    height: 1px;
    background: var(--copper);
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-auto-rows: 72svh;
  }

  .look-card,
  .look-card.large,
  .look-card.tall {
    min-height: 520px;
  }

  .look-card > div {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .look-card h3 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .integrations {
    display: block !important;
  }

  .integration-grid {
    border-top: 1px solid rgba(31,58,46,.22);
    background: linear-gradient(180deg, rgba(255,253,249,.36), rgba(255,253,249,0));
  }

  .integration-card {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    padding: 24px 0 26px 58px !important;
    background: transparent !important;
  }

  .integration-card::before {
    left: 0;
    top: 24px;
    font-size: 38px;
    color: rgba(31,58,46,.36);
  }

  .integration-card span,
  .integration-card strong,
  .integration-card em,
  .integration-card::after {
    grid-column: 1 !important;
  }

  .integration-card strong {
    max-width: 11ch;
    font-size: clamp(34px, 11vw, 50px);
    line-height: .9;
  }

  .integration-card em {
    max-width: 31ch;
    color: rgba(22,22,22,.82) !important;
    font-size: 15px !important;
  }

  .integration-card::after {
    margin-top: 2px;
    position: relative;
    transform: none;
    justify-self: start;
  }

  .integration-card:hover::after {
    transform: translateX(10px);
  }

  .gift-panel {
    min-height: 80svh;
    align-content: center;
  }

  .gift-options {
    margin-top: 26px;
  }

  .final-card .hero-actions.center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 128px;
  }
}

@media (max-width: 430px) {
  .brand-text strong {
    font-size: 23px;
  }

  .brand-text em {
    font-size: 8px;
  }

  .hero-overlay .hero-text {
    display: none;
  }

  .hero-title-lockup span {
    font-size: clamp(58px, 22vw, 94px);
  }

  .hero-overlay .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-phrase-wrap strong {
    font-size: clamp(23px, 7vw, 32px);
  }

  .lookbook-grid {
    grid-auto-rows: 68svh;
  }

  .look-card,
  .look-card.large,
  .look-card.tall {
    min-height: 480px;
  }
}

.hero-phrase-wrap strong.is-changing {
  animation: phraseLift .8s var(--ease) both;
}


/* === SELVA revision 4: hero solo immagini, nessuna numerazione visibile === */
.hero-overlay,
.hero-editorial-word,
.hero-phrase-wrap,
.hero-kicker,
.hero-title-lockup,
.hero-lead,
.hero-text,
.hero .service-line {
  display: none !important;
}

.hero.section-shell {
  padding-top: 0 !important;
}

.hero-stage,
.hero-visual {
  width: 100%;
}

.integration-grid {
  counter-reset: none !important;
}

.integration-card {
  counter-increment: none !important;
  padding-left: clamp(28px, 3.4vw, 54px) !important;
}

.integration-card::before {
  content: none !important;
}

@media (max-width: 740px) {
  .integration-card {
    padding-left: 0 !important;
  }
}
