:root {
  --ink: #241f2a;
  --muted: #6f6674;
  --line: #ddd5e1;
  --paper: #fbf8f6;
  --soft: #f3eef1;
  --lavender: #9c7aae;
  --lavender-deep: #665071;
  --lilac: #d8c7e4;
  --sage: #697b68;
  --petal: #e8b8c1;
  --silver: #b9b8bd;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 248, 246, 0.9), rgba(246, 240, 244, 0.95)),
    repeating-linear-gradient(90deg, rgba(102, 80, 113, 0.025) 0 1px, transparent 1px 42px);
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 248, 246, 0.92);
  box-shadow: 0 12px 40px rgba(36, 31, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 400;
}

.brand small {
  margin-top: -2px;
  font-size: 11px;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  letter-spacing: 2px;
}

.header-action {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(22px, 6vw, 88px) 78px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 31, 42, 0.78), rgba(36, 31, 42, 0.34) 46%, rgba(36, 31, 42, 0.08)),
    linear-gradient(0deg, rgba(36, 31, 42, 0.58), rgba(36, 31, 42, 0.02) 48%);
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2dbe8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.12;
  font-weight: 400;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--lavender-deep);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.hero-meta {
  position: absolute;
  right: clamp(22px, 6vw, 88px);
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) clamp(22px, 4vw, 34px);
}

.intro {
  max-width: 920px;
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: -34px auto 0;
  padding: 0 clamp(22px, 4vw, 34px) clamp(48px, 6vw, 78px);
  gap: 12px;
}

.proof-strip div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(102, 80, 113, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(68, 56, 76, 0.08);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--lavender-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.intro p,
.section-heading p,
.product-copy p,
.package-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.product,
.package,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.specs div {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.specs dt {
  color: var(--muted);
  font-size: 13px;
}

.specs dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

figure {
  margin: 0;
}

.product-gallery figure,
.package-media {
  overflow: hidden;
  border: 1px solid rgba(102, 80, 113, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(68, 56, 76, 0.12);
}

.product-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.product-gallery figure:not(.gallery-main) img {
  height: 410px;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.scene-grid,
.steps,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scene-grid article,
.steps article,
.capability-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.scene-icon,
.steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--lavender);
  font-family: Georgia, serif;
  font-size: 30px;
}

.scene-grid p,
.steps p,
.capability-grid p,
.notice,
.check-list {
  color: var(--muted);
}

.capabilities {
  padding-top: 26px;
}

.fragrance {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(26px, 5vw, 68px);
  align-items: end;
}

.fragrance .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.fragrance-list {
  display: grid;
  gap: 12px;
}

.fragrance-item {
  width: 100%;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.fragrance-item strong,
.fragrance-item span {
  display: block;
}

.fragrance-item strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 19px;
}

.fragrance-item span {
  color: var(--muted);
  font-size: 14px;
}

.fragrance-item.active {
  border-color: rgba(156, 122, 174, 0.54);
  background: #fff;
  box-shadow: 0 18px 50px rgba(102, 80, 113, 0.1);
}

.note-panel {
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(102, 80, 113, 0.92), rgba(105, 123, 104, 0.86)),
    linear-gradient(45deg, var(--lavender), var(--sage));
}

.note-title {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 2px;
}

.note-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.note-panel p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.package {
  max-width: none;
  padding-left: max(clamp(22px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(22px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(232, 184, 193, 0.18));
}

.package-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.package-stack {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.package-stack img {
  border-radius: 6px;
}

.package-stack img:first-child {
  height: 390px;
}

.package-stack .brand-preview {
  height: 160px;
  object-fit: contain;
  background: #fff;
}

.check-list {
  padding-left: 18px;
}

.check-list li {
  margin: 9px 0;
}

.notice {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 390px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.qr-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.qr-card strong,
.qr-card span {
  display: block;
}

.qr-card strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.qr-card span {
  color: var(--muted);
  font-size: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(156, 122, 174, 0.28);
  border-color: var(--lavender);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 80px);
  color: #fff;
  background: var(--ink);
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.plain-page {
  background: var(--paper);
}

.plain-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(251, 248, 246, 0.92);
}

.plain-header .header-action {
  color: var(--lavender-deep);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(22px, 4vw, 34px);
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
}

.legal h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3.5vw, 38px);
}

.legal p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-action {
    padding-inline: 14px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 120px;
  }

  .hero-meta {
    position: static;
    margin-top: 36px;
  }

  .product,
  .package,
  .contact,
  .fragrance {
    grid-template-columns: 1fr;
  }

  .scene-grid,
  .steps,
  .capability-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

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

  .product-gallery img,
  .product-gallery figure:not(.gallery-main) img,
  .package-media img {
    height: auto;
    max-height: 620px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .header-action {
    font-size: 12px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .scene-grid article,
  .steps article,
  .capability-grid article,
  .contact-form,
  .note-panel {
    padding: 22px;
  }

  .qr-card {
    align-items: flex-start;
  }
}
