:root {
  --ink: #32121f;
  --berry: #681735;
  --berry-deep: #400b22;
  --rose: #d97a9b;
  --rose-bright: #f2a9c1;
  --pink: #f8e7ec;
  --pink-soft: #fff7f9;
  --cream: #fffdfb;
  --line: rgba(80, 20, 45, 0.16);
  --light-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(82, 20, 48, 0.16);
  --display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

.page-shell {
  overflow: clip;
}

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 20px;
  color: white;
  background: var(--berry-deep);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(22px, 5vw, 78px);
  background: rgba(255, 247, 249, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  width: max-content;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
}

.desktop-nav a,
footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
footer a:hover {
  color: var(--rose);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  background: linear-gradient(118deg, var(--cream) 0 48%, var(--pink) 48% 100%);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding: 90px clamp(26px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.19em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}

h1 em {
  color: var(--berry);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
}

.hero-intro {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(50, 18, 31, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--berry);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--berry);
}

.button-primary:hover {
  background: var(--berry-deep);
}

.text-link {
  display: inline-flex;
  width: max-content;
  gap: 7px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 58px clamp(30px, 5vw, 76px) 76px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: min(42vw, 650px);
  aspect-ratio: 1;
  background: rgba(255, 253, 251, 0.42);
  border: 1px solid rgba(104, 23, 53, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.1);
  content: "";
}

.hero-image-frame {
  width: min(78%, 560px);
  overflow: hidden;
  background: #edc9d3;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 48% 48% 20px 20px;
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual figcaption {
  position: absolute;
  right: clamp(28px, 5vw, 78px);
  bottom: 34px;
  left: clamp(28px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--berry);
  border-top: 1px solid rgba(104, 23, 53, 0.28);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.manifesto {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 70px);
  padding: 18px 26px;
  color: white;
  background: var(--berry);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.panorama {
  position: relative;
  overflow: hidden;
  background: #edc6d2;
}

.panorama::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(104, 23, 53, 0.08);
  content: "";
  pointer-events: none;
}

.panorama img {
  width: 100%;
  height: auto;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section-wrap {
  padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 112px);
}

.section-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading > p,
.gallery-heading > p {
  margin: 0;
  color: rgba(50, 18, 31, 0.66);
  font-size: 1.05rem;
}

.collection {
  background: var(--cream);
}

.product-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.product-tab {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: rgba(50, 18, 31, 0.52);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-tab + .product-tab {
  border-left: 1px solid var(--line);
}

.product-tab:hover {
  color: var(--berry);
  background: rgba(248, 231, 236, 0.42);
}

.product-tab.is-active {
  color: var(--berry);
  background: var(--pink-soft);
  border-bottom: 3px solid var(--berry);
}

.tab-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  min-height: 560px;
  background: var(--pink);
}

.product-stage-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(20px, 3vw, 42px);
  background: #ecc9d4;
}

.product-stage-visual img {
  width: 100%;
  height: 100%;
  max-height: 570px;
  display: block;
  object-fit: contain;
  box-shadow: 0 22px 54px rgba(104, 23, 53, 0.12);
  transition: opacity 180ms ease, transform 350ms ease;
}

.product-stage-visual img.is-changing {
  opacity: 0.35;
  transform: scale(0.985);
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 8vw, 100px);
  background: var(--pink-soft);
}

.product-kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-details h3 {
  color: var(--berry);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.product-details > p:not(.product-kicker) {
  max-width: 580px;
  margin: 26px 0 36px;
  color: rgba(50, 18, 31, 0.67);
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-notes span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
}

.gallery {
  color: white;
  background: var(--berry-deep);
}

.gallery .eyebrow {
  color: var(--rose-bright);
}

.gallery-heading > p {
  color: rgba(255, 255, 255, 0.67);
}

.gallery-feature {
  margin-bottom: clamp(54px, 7vw, 94px);
}

.gallery-feature img {
  width: 100%;
  height: auto;
  display: block;
  background: #e8b9c8;
  box-shadow: 0 30px 80px rgba(24, 0, 11, 0.34);
}

.gallery-feature figcaption,
.editorial-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--light-line);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.gallery-feature figcaption {
  margin-top: 16px;
}

.editorial-grid {
  columns: 3 300px;
  column-gap: clamp(16px, 2vw, 28px);
}

.editorial-grid figure {
  width: 100%;
  display: inline-block;
  break-inside: avoid;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.editorial-grid img {
  width: 100%;
  height: auto;
  display: block;
  background: #e8b9c8;
  transition: transform 420ms ease, filter 420ms ease;
}

.editorial-grid figure:hover img {
  transform: translateY(-4px);
  filter: saturate(1.04);
}

.editorial-grid figcaption {
  margin-top: 11px;
}

.finder {
  background: var(--pink-soft);
}

.finder-panel {
  max-width: 1280px;
  margin: auto;
  padding: clamp(38px, 6vw, 80px);
  color: white;
  background: linear-gradient(125deg, #5a102e, var(--berry-deep));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(62, 8, 31, 0.24);
}

.finder-copy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: end;
}

.finder-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: var(--rose-bright);
}

.finder-copy h2 {
  max-width: 860px;
}

.finder-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.finish-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 52px 0 28px;
}

.finish-chip {
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.finish-chip:hover,
.finish-chip.is-active {
  color: var(--berry-deep);
  background: #ffdbe7;
  border-color: #ffdbe7;
}

.ritual-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.result-label {
  margin: 0 0 10px;
  color: var(--rose-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ritual-result h3 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.ritual-result > div > p:last-child {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.68);
}

.result-steps {
  display: grid;
  gap: 16px;
  align-content: center;
}

.result-steps div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.result-steps span {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.result-steps p {
  margin: 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  background: var(--cream);
}

.story-visual {
  position: relative;
  padding: clamp(14px, 2vw, 26px);
  background: var(--pink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-visual::before {
  position: absolute;
  inset: -15px 15px 15px -15px;
  z-index: -1;
  border: 1px solid rgba(104, 23, 53, 0.22);
  content: "";
}

.story-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.story-copy h2 {
  max-width: 850px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 28px;
  color: rgba(50, 18, 31, 0.68);
  font-size: 1.05rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 54px clamp(24px, 7vw, 112px);
  color: white;
  background: var(--ink);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

footer > a:last-child {
  justify-self: end;
  font-size: 0.82rem;
}

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

:focus-visible {
  outline: 3px solid #e66b98;
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-image-frame {
    width: min(88%, 540px);
  }

  .product-stage {
    grid-template-columns: minmax(340px, 1fr) 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    justify-self: end;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 12px;
    padding: 24px;
    background: var(--pink-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(82, 20, 48, 0.1);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background: var(--cream);
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 58px;
  }

  .hero-visual {
    min-height: 680px;
    background: var(--pink);
  }

  .hero-visual::before {
    width: 70vw;
  }

  .hero-image-frame {
    width: min(66vw, 500px);
  }

  .panorama img {
    min-height: 280px;
  }

  .section-heading,
  .gallery-heading,
  .finder-copy,
  .ritual-result {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .finder-copy .eyebrow {
    margin-bottom: 0;
  }

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

  .product-stage-visual {
    min-height: 450px;
  }

  .story {
    grid-template-columns: minmax(270px, 0.8fr) 1.2fr;
    gap: 44px;
  }
}

@media (max-width: 640px) {
  .announcement {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .hero-copy {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual {
    min-height: 600px;
    padding: 48px 20px 76px;
  }

  .hero-image-frame {
    width: min(86vw, 430px);
  }

  .hero-visual figcaption {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .manifesto {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .manifesto p {
    flex: 0 0 auto;
  }

  .panorama img {
    min-height: 230px;
    object-position: 57% center;
  }

  .section-heading,
  .gallery-heading {
    margin-bottom: 45px;
  }

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

  .product-tab + .product-tab {
    border-left: 0;
  }

  .product-stage-visual {
    min-height: 340px;
    padding: 18px;
  }

  .product-stage-visual img {
    max-height: 400px;
  }

  .product-details {
    padding: 46px 26px 56px;
  }

  .gallery-feature {
    margin-bottom: 52px;
  }

  .gallery-feature figcaption span:last-child {
    display: none;
  }

  .editorial-grid {
    columns: 1;
  }

  .finder-panel {
    border-radius: 20px;
  }

  .finish-controls {
    margin-top: 36px;
  }

  .finish-chip {
    flex: 1 1 auto;
  }

  .ritual-result {
    gap: 32px;
  }

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

  .story-visual {
    max-width: 520px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer > a:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
