:root {
  color-scheme: light;
  --paper: #f4f1ea;
  --paper-deep: #e8e0d2;
  --ink: #171713;
  --muted: #6c6a61;
  --line: rgba(23, 23, 19, 0.16);
  --blue: #213d64;
  --green: #2d5949;
  --clay: #8a3e2f;
  --white: #fffdf7;
  --shadow: 0 24px 80px rgba(18, 18, 16, 0.14);
  --serif: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --sans: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

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

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

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

button {
  font: inherit;
}

.sr-only,
.skip-link {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  background: var(--ink);
  color: var(--paper);
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 30;
}

.site-header {
  align-items: center;
  background: rgba(244, 241, 234, 0.86);
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0 32px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.96);
  border-color: var(--line);
}

.brand-mark {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  color: rgba(23, 23, 19, 0.78);
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  border-color: currentColor;
  color: var(--ink);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  background: var(--ink);
  content: "";
  display: block;
  height: 1px;
  width: 22px;
}

.nav-toggle__line::before {
  transform: translateY(-7px);
}

.nav-toggle__line::after {
  transform: translateY(6px);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.74), rgba(12, 12, 10, 0.22) 52%, rgba(12, 12, 10, 0.34)),
    linear-gradient(0deg, rgba(12, 12, 10, 0.34), rgba(12, 12, 10, 0));
  inset: 0;
  position: absolute;
}

.hero__content {
  color: var(--white);
  display: grid;
  gap: 24px;
  max-width: 760px;
  padding: 29vh 32px 112px;
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.eyebrow,
.section__kicker,
.scent-card__code {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 253, 247, 0.72);
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  line-height: 0.88;
  max-width: 820px;
}

.hero__copy {
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 640px;
}

.hero__actions,
.purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.86rem;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button--light:hover,
.button--dark:hover {
  background: transparent;
  color: var(--white);
}

.button--ghost {
  color: var(--white);
}

.button--ghost:hover {
  background: rgba(255, 253, 247, 0.14);
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--outline {
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button--disabled,
.button--disabled:hover {
  background: transparent;
  color: var(--muted);
  cursor: default;
  opacity: 0.78;
}

.button--dark.button--disabled,
.button--dark.button--disabled:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(255, 253, 247, 0.78);
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 112px 32px;
}

.section__heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  margin-bottom: 46px;
}

.section__heading > p {
  color: var(--muted);
  max-width: 520px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 12px;
}

h3 {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
}

.intro__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
}

.intro__text {
  color: var(--muted);
  display: grid;
  gap: 18px;
  font-size: 1rem;
  padding-top: 18px;
}

.statement {
  max-width: none;
  padding-bottom: 118px;
  padding-top: 118px;
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.statement p {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.8vw, 6.3rem);
  line-height: 0.98;
  margin: 0 auto;
  max-width: 1180px;
}

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

.scent-card {
  background: var(--white);
  border: 1px solid rgba(23, 23, 19, 0.1);
  display: grid;
  min-height: 100%;
}

.scent-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.scent-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.scent-card h3 span {
  color: var(--muted);
  display: block;
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 500;
  margin-top: 2px;
}

.scent-card p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.studio {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.studio__visual img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.studio__content {
  display: grid;
  gap: 24px;
}

.studio__content > p:not(.section__kicker) {
  color: var(--muted);
}

.spec-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin: 18px 0 0;
}

.spec-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: 18px 0;
}

.spec-list dt {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 700;
}

.spec-list dd {
  color: var(--muted);
  margin: 0;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-band img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

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

.care-grid article {
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 12px;
  padding-top: 22px;
}

.care-grid span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.care-grid p {
  color: var(--muted);
}

.section--paper {
  background: var(--paper-deep);
  max-width: none;
}

.purchase {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.44fr);
  padding-left: max(32px, calc((100vw - 1180px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1180px) / 2 + 32px));
}

.purchase__content {
  display: grid;
  gap: 24px;
}

.purchase__content p:not(.section__kicker) {
  color: var(--muted);
  max-width: 720px;
}

.purchase__note {
  border: 1px solid rgba(23, 23, 19, 0.18);
  padding: 26px;
}

.purchase__note ul {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 1.15rem;
}

.purchase__note li + li {
  margin-top: 8px;
}

.site-footer {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 32px;
}

.site-footer p:not(.brand-mark),
.footer-links {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p + p {
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(244, 241, 234, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    grid-template-columns: 1fr;
    left: 0;
    padding: 8px 18px 18px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero {
    min-height: 84vh;
  }

  .hero__content {
    padding: 22vh 22px 76px;
  }

  .section {
    padding: 82px 22px;
  }

  .intro__grid,
  .section__heading,
  .studio,
  .purchase {
    grid-template-columns: 1fr;
  }

  .section__heading {
    align-items: start;
  }

  .scent-grid,
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 620px) {
  .hero__shade {
    background:
      linear-gradient(0deg, rgba(12, 12, 10, 0.78), rgba(12, 12, 10, 0.18) 62%, rgba(12, 12, 10, 0.1)),
      linear-gradient(90deg, rgba(12, 12, 10, 0.36), rgba(12, 12, 10, 0.08));
  }

  .hero__image {
    object-position: center;
  }

  .hero__actions,
  .purchase__actions,
  .site-footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scent-grid,
  .care-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    align-items: start;
  }
}
