:root {
  --background: #fbf9f8;
  --surface: rgba(251, 249, 248, 0.72);
  --surface-low: #f5f3f3;
  --surface-container: #efeded;
  --surface-top: #ffffff;
  --primary: #6d576e;
  --primary-container: #b299b2;
  --secondary: #4c644e;
  --secondary-container: #ceeacd;
  --tertiary-container: #f2d9e5;
  --outline-ghost: rgba(206, 196, 203, 0.15);
  --text: #1b1c1c;
  --text-soft: #4c454b;
  --shadow: 0 24px 64px rgba(27, 28, 28, 0.04);
  --radius-lg: 2rem;
  --radius-xl: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-wash {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.34;
  pointer-events: none;
}

.wash-lilac {
  top: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: #f6daf5;
}

.wash-sage {
  right: -7rem;
  top: 16rem;
  width: 26rem;
  height: 26rem;
  background: #ceeacd;
}

.wash-blush {
  left: 28%;
  top: 28rem;
  width: 22rem;
  height: 22rem;
  background: #fed8e9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 248, 0.7);
  box-shadow: 0 10px 30px rgba(27, 28, 28, 0.05);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brandmark__name {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links a {
  position: relative;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.nav-links a.is-active,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-container);
}

.nav-actions {
  gap: 0.5rem;
}

.icon-button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 0.8rem;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(239, 237, 237, 0.8);
  transform: translateY(-1px);
}

.icon-button span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-main {
  padding-top: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 3.25rem 0 6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.launch-copy h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
}

.hero-copy h1 span {
  font-style: italic;
  color: var(--primary);
}

.hero-lead,
.story-copy p,
.product-card p,
.collection-note p,
.value-card p,
.launch-copy p,
.launch-panel p,
.footer-copy,
.footer-meta {
  color: var(--text-soft);
}

.hero-lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(109, 87, 110, 0.18);
}

.button-secondary {
  background: rgba(239, 237, 237, 0.7);
  color: var(--primary);
}

.hero-media {
  position: relative;
  min-height: 30rem;
}

.hero-media__backdrop {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.46;
}

.hero-media__backdrop--sage {
  top: -2rem;
  right: 1rem;
  width: 16rem;
  height: 16rem;
  background: #ceeacd;
}

.hero-media__backdrop--lilac {
  left: -1rem;
  bottom: -1rem;
  width: 18rem;
  height: 18rem;
  background: #f6daf5;
}

.hero-card {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface-top);
  box-shadow: 0 24px 64px rgba(27, 28, 28, 0.08);
  transform: rotate(2deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: center 26%;
}

.hero-badge {
  position: absolute;
  right: 2rem;
  bottom: -1.3rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 999px;
  background: #c9b2c9;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(109, 87, 110, 0.18);
  transform: rotate(-10deg);
}

.hero-badge span {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-badge strong {
  margin-top: -0.15rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
}

.story-band {
  position: relative;
  padding: 5.5rem 0;
  background: var(--surface-low);
  overflow: hidden;
}

.story-band__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(109, 87, 110, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.55;
}

.story-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-top);
  box-shadow: var(--shadow);
}

.story-photo-stack {
  display: flex;
  justify-content: center;
}

.paper-shadow {
  position: absolute;
  width: 18rem;
  height: 24rem;
  background: var(--secondary);
  transform: rotate(5deg);
}

.paper-card {
  position: relative;
  z-index: 1;
  width: min(19rem, 100%);
  margin: 0;
  padding: 1rem 1rem 3.4rem;
  background: #ffffff;
  box-shadow: 0 24px 44px rgba(27, 28, 28, 0.08);
  transform: rotate(-3deg);
}

.paper-card img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.paper-card figcaption {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  text-align: center;
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  color: var(--text-soft);
}

.story-copy h2,
.section-heading h2,
.launch-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.story-quote {
  margin: 1rem 0 1.1rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
}

.story-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
}

.collection {
  padding: 5.5rem 0;
}

.section-heading--center {
  text-align: center;
}

.heading-accent {
  width: 5rem;
  height: 0.28rem;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: var(--primary-container);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.product-card,
.collection-note,
.value-card,
.launch-panel {
  background: var(--surface-top);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-card--offset {
  padding-top: 2.4rem;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  background: var(--surface-container);
}

.product-card__media--tall {
  aspect-ratio: 0.86 / 1;
}

.product-card__media:not(.product-card__media--tall) {
  aspect-ratio: 0.92 / 1;
}

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

.product-card__media--tall img {
  object-position: center 18%;
}

.product-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-card h3,
.collection-note h3,
.value-card h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-card p,
.collection-note p,
.value-card p,
.launch-panel p {
  margin: 0;
  font-size: 0.95rem;
}

.product-meta {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-note {
  align-self: center;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.values {
  padding: 5rem 0;
  background: rgba(206, 234, 205, 0.28);
}

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

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(27, 28, 28, 0.03);
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 5.5rem 0;
}

.dot-progress {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.dot-progress span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #d9bed8;
}

.dot-progress span.is-active {
  width: 1.6rem;
  background: var(--primary);
}

.launch-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.launch-panel__group {
  padding: 1.35rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(239, 237, 237, 0.58);
}

.launch-panel__group--soft {
  background: rgba(206, 234, 205, 0.48);
}

.launch-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-list li {
  position: relative;
  padding-left: 1.25rem;
}

.launch-list li + li {
  margin-top: 0.55rem;
}

.launch-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}

.site-footer {
  padding: 2rem 0 2.6rem;
  background: rgba(239, 237, 237, 0.55);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
}

.footer-copy {
  max-width: 36rem;
  margin: 0.6rem 0 0;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}

.footer-links a {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero,
  .story-panel,
  .launch,
  .product-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .product-card--offset {
    padding-top: 0;
  }

  .footer-grid,
  .footer-meta {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .brandmark,
  .nav-actions {
    align-self: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 2rem;
  }

  .story-panel,
  .collection-note,
  .value-card,
  .launch-panel {
    padding: 1.5rem;
  }

  .hero-card {
    transform: none;
  }

  .hero-badge {
    right: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
