/* === RESET === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f4ede0;
  color: #1a1612;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } .cursor, .cursor-dot { display: none !important; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; cursor: none; }

:root {
  --bg: #f4ede0;
  --bg-2: #ebe1d0;
  --bg-3: #e0d4be;
  --paper: #faf6ec;
  --ink: #1a1612;
  --ink-2: #3d342a;
  --muted: #8a7e6c;
  --line: rgba(26, 22, 18, 0.14);
  --line-2: rgba(26, 22, 18, 0.08);
  --accent: #6b2c1f;
  --accent-2: #c9885a;
  --gold: #a8763e;
}

::selection { background: #1a1612; color: #f4ede0; }

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, opacity .2s;
  mix-blend-mode: difference;
  filter: invert(1);
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .2s;
}
.cursor.hover {
  width: 64px; height: 64px;
  background: var(--ink);
  border-color: var(--ink);
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, .nav__logo-mark, .foot__big {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* === ANNOUNCE BAR === */
.announce {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 0;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.announce__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 237, 224, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav__left, .nav__right {
  display: flex; align-items: center; gap: 36px;
}
.nav__right { justify-content: flex-end; }
.nav__link {
  font-size: 13px; letter-spacing: 0.05em;
  color: var(--ink); position: relative;
  transition: color .25s;
}
.nav__link::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-align: left;
}
.nav__logo-mark {
  font-size: 38px; line-height: 1; font-style: italic; color: var(--ink);
}
.nav__logo-text {
  font-size: 10px; letter-spacing: 0.25em; line-height: 1.2;
  font-weight: 600;
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--bg);
  padding: 12px 22px; font-size: 13px; letter-spacing: 0.04em;
  border-radius: 100px;
  transition: transform .25s, background .3s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--accent); }
.nav__burger {
  display: none; width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav__burger span {
  display: block; height: 1.5px; background: var(--ink); transition: .3s;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}
.hero__grid {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 78vh;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
}
.hero__meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero__title {
  font-size: clamp(64px, 10vw, 156px);
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: -0.03em;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleUp .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: .1s; }
.hero__title .line:nth-child(2) { animation-delay: .25s; }
.hero__title .line:nth-child(3) { animation-delay: .4s; }
.hero__title .line--accent em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero__title .line--accent em::after {
  content: ''; position: absolute;
  left: -2%; right: -2%; bottom: 8%;
  height: 8%;
  background: var(--accent-2);
  opacity: .25;
  z-index: -1;
}
@keyframes titleUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero__lead {
  max-width: 480px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-2); margin-bottom: 44px;
  opacity: 0;
  animation: titleUp .9s .55s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__actions {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  opacity: 0;
  animation: titleUp .9s .7s cubic-bezier(.2,.8,.2,1) forwards;
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: 78vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bottle {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 460px;
  aspect-ratio: 3/4;
  filter: drop-shadow(0 40px 60px rgba(60, 30, 15, 0.35));
  animation: bottleFloat 6s ease-in-out infinite;
  border-radius: 6px;
  overflow: hidden;
}
.hero__bottle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}
.hero__decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero__decor--1 {
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: .3;
  top: 10%; left: 5%;
  filter: blur(40px);
  animation: orbit 12s ease-in-out infinite;
}
.hero__decor--2 {
  width: 360px; height: 360px;
  border: 1px solid var(--line);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@keyframes orbit {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}
.hero__num {
  position: absolute;
  bottom: 5%; right: 0;
  font-family: 'Fraunces', serif;
  z-index: 3;
  text-align: right;
}
.hero__num span {
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--muted); display: block;
}
.hero__num strong {
  font-size: 96px; font-weight: 300;
  font-style: italic; color: var(--ink);
  line-height: 1;
}

/* HERO FOOT */
.hero__foot {
  max-width: 1320px; margin: 80px auto 0; padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__foot-item small {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.hero__foot-item strong {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400;
}
.hero__foot-item--scroll {
  display: flex; align-items: center; gap: 14px;
  justify-content: flex-end;
}
.hero__foot-item--scroll small { margin: 0; }
.scroll-indicator {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, var(--ink));
  position: relative; overflow: hidden;
  display: inline-block;
}
.scroll-indicator::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 32px;
  font-size: 14px; letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn--dark {
  background: var(--ink); color: var(--bg);
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--dark svg { transition: transform .35s; }
.btn--dark:hover svg { transform: translateX(4px); }
.btn--link {
  padding: 17px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
}
.btn--link:hover { color: var(--accent); border-color: var(--accent); }
.btn--full { width: 100%; justify-content: center; }

/* === KICKER === */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.kicker i {
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
}

/* === SECTION HEAD === */
.sec-head { margin-bottom: 80px; max-width: 760px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head__title {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.sec-head__title em {
  font-style: italic; color: var(--accent);
}
.sec-head__sub {
  font-size: 17px; color: var(--ink-2); max-width: 580px;
}
.sec-head--center .sec-head__sub { margin: 0 auto; }

/* === SHOP / PRODUCTS === */
.shop {
  padding: 160px 0;
  background: var(--bg);
}
.prods {
  display: flex; flex-direction: column; gap: 0;
}
.prod {
  display: grid;
  grid-template-columns: 60px 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .5s;
}
.prod:last-child { border-bottom: 1px solid var(--line); }
.prod:hover { background: var(--bg-2); }
.prod--rev {
  grid-template-columns: 60px 1.1fr 1fr;
}
.prod--rev .prod__visual { order: 3; }
.prod--rev .prod__info { order: 2; }
.prod__num {
  font-family: 'Fraunces', serif;
  font-size: 14px; font-style: italic;
  color: var(--muted);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 6px;
}
.prod__visual {
  position: relative;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod__halo {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(circle, var(--c) 0%, transparent 70%);
  opacity: .35;
  filter: blur(30px);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .5s;
}
.prod:hover .prod__halo { transform: scale(1.15); opacity: .55; }
.prod__bottle {
  position: relative; z-index: 2;
  width: 70%; max-width: 320px;
  aspect-ratio: 3/4;
  filter: drop-shadow(0 30px 40px rgba(60, 30, 15, 0.25));
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  border-radius: 4px;
  overflow: hidden;
}
.prod:hover .prod__bottle { transform: translateY(-8px) scale(1.04); }
.prod__bottle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.prod:hover .prod__bottle img { transform: scale(1.08); }
.prod__info { padding-right: 40px; }
.prod__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.prod__info h3 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.prod__info h3 em { font-style: italic; color: var(--accent); }
.prod__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.prod__notes {
  font-size: 15px; color: var(--ink-2);
  margin-bottom: 32px;
}
.prod__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 24px; flex-wrap: wrap;
}
.prod__price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--ink);
}
.prod__price small {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-style: normal;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
}
.prod__add {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color .3s;
}
.prod__add i {
  display: inline-block;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: all .3s;
}
.prod__add i::before, .prod__add i::after {
  content: ''; position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: all .3s;
}
.prod__add i::before {
  width: 12px; height: 1px;
  transform: translate(-50%, -50%);
}
.prod__add i::after {
  width: 1px; height: 12px;
  transform: translate(-50%, -50%);
}
.prod__add:hover { color: var(--accent); }
.prod__add:hover i {
  background: var(--accent);
  border-color: var(--accent);
}
.prod__add:hover i::before, .prod__add:hover i::after { background: var(--bg); }

/* === MARQUEE === */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  font-family: 'Fraunces', serif;
}
.marquee__track {
  display: flex; gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 30s linear infinite;
  font-size: clamp(40px, 6vw, 84px);
}
.marquee__track em {
  font-style: italic; color: var(--accent-2);
}

/* === STORY === */
.story {
  padding: 160px 0;
  background: var(--paper);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__visual {
  position: relative;
}
.story__art {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 40px 80px -20px rgba(60, 30, 15, 0.4);
}
.story__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.story__art:hover img { transform: scale(1.06); }
.story__quote {
  position: absolute;
  bottom: -40px; right: -20px;
  background: var(--ink); color: var(--bg);
  padding: 28px 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px; line-height: 1.4;
  max-width: 320px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -15px rgba(60, 30, 15, 0.4);
}
.story__quote small {
  display: block;
  margin-top: 14px;
  font-size: 12px; letter-spacing: 0.15em;
  font-style: normal; opacity: .7;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.story__text p {
  font-size: 17px; color: var(--ink-2);
  margin: 24px 0;
  max-width: 480px;
}
.story__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.story__stats > div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 56px; font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.story__stats > div span {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}

/* === CALCULATOR === */
.calc {
  padding: 160px 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: ''; position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: .15;
  filter: blur(60px);
  pointer-events: none;
}
.calc .kicker { color: rgba(244,237,224,.6); }
.calc .sec-head__title { color: var(--bg); }
.calc .sec-head__title em { color: var(--accent-2); }
.calc .sec-head__sub { color: rgba(244,237,224,.7); }

.calc__layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.calc__preview {
  position: sticky; top: 100px;
  aspect-ratio: 3/4;
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
  transition: background .8s ease;
}
.calc__preview-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, var(--c, var(--accent-2)) 0%, transparent 70%);
  opacity: 0;
  transition: all .8s ease;
  z-index: 1;
}
.calc__preview-stage {
  position: absolute; inset: 0;
  z-index: 2;
}
.calc__preview-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.calc__preview-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.calc__preview-meta {
  position: absolute;
  top: 24px; left: 0; right: 0;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0 28px;
  pointer-events: none;
}
.calc__preview-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.calc__preview-vol {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* CALC FORM */
.calc__form { display: flex; flex-direction: column; gap: 0; }
.calc__step {
  padding: 28px 0;
  border-bottom: 1px solid rgba(244,237,224,.1);
}
.calc__step:first-child { padding-top: 0; }
.calc__step-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
}
.calc__step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent-2);
}
.calc__step-title {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg);
}
.calc__perfumes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.opt { cursor: none; }
.opt input { display: none; }
.opt span {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(244,237,224,.15);
  border-radius: 6px;
  font-size: 14px;
  color: rgba(244,237,224,.8);
  transition: all .25s;
}
.opt span b {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-2);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.opt:hover span { border-color: rgba(244,237,224,.4); }
.opt input:checked + span {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.opt input:checked + span b { color: var(--accent); }

.calc__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { cursor: none; flex: 1; min-width: 100px; }
.chip input { display: none; }
.chip > span {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 18px;
  border: 1px solid rgba(244,237,224,.15);
  border-radius: 100px;
  font-size: 14px; letter-spacing: 0.04em;
  color: rgba(244,237,224,.8);
  transition: all .25s;
  text-align: center;
}
.chip > span small {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: .6;
}
.chip:hover > span { border-color: rgba(244,237,224,.4); }
.chip input:checked + span {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.calc__qty {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(244,237,224,.15);
  border-radius: 100px;
  overflow: hidden;
}
.calc__qty button {
  width: 50px; height: 50px;
  font-size: 20px;
  color: var(--bg);
  transition: background .25s;
}
.calc__qty button:hover { background: rgba(244,237,224,.08); }
.calc__qty input {
  width: 60px;
  background: none;
  border: none;
  text-align: center;
  color: var(--bg);
  font-size: 16px;
  outline: none;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.calc__extras { display: flex; flex-direction: column; gap: 10px; }
.extra {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(244,237,224,.15);
  border-radius: 6px;
  cursor: none;
  transition: all .25s;
}
.extra:hover { border-color: rgba(244,237,224,.4); }
.extra input { display: none; }
.extra__check {
  width: 22px; height: 22px;
  border: 1px solid rgba(244,237,224,.4);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all .25s;
}
.extra input:checked ~ .extra__check {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.extra input:checked ~ .extra__check::after {
  content: ''; position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 12px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.extra__text { display: flex; flex-direction: column; gap: 2px; }
.extra__text b {
  font-weight: 500; font-size: 14px; color: var(--bg);
}
.extra__text small {
  font-size: 12px; color: rgba(244,237,224,.5);
}
.extra__price {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent-2);
  font-size: 16px;
}

.calc__total {
  margin-top: 40px;
  padding: 32px;
  background: rgba(244,237,224,.04);
  border-radius: 8px;
}
.calc__total-line {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(244,237,224,.6);
}
.calc__total-line span:last-child { color: var(--bg); }
.calc__total-final {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(244,237,224,.15);
  margin-bottom: 24px;
}
.calc__total-final span {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,237,224,.6);
}
.calc__total-final strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  color: var(--accent-2);
  line-height: 1;
}
.calc .btn--dark {
  background: var(--bg); color: var(--ink);
}
.calc .btn--dark:hover { background: var(--accent-2); color: var(--ink); }

/* === ORDER === */
.order {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
.order__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.order__contacts {
  margin-top: 60px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.order__contact {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  transition: padding .25s;
}
a.order__contact:hover { padding-left: 14px; }
.order__contact small {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.order__contact strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px; font-weight: 400;
  color: var(--ink);
}
.order__form {
  display: flex; flex-direction: column; gap: 32px;
  background: var(--paper);
  padding: 56px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.field {
  position: relative;
  padding-top: 22px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0 14px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
}
.field textarea { resize: vertical; }
.field select {
  cursor: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='%231a1612' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 28px;
}
.field label {
  position: absolute;
  left: 0; top: 34px;
  font-size: 16px;
  color: var(--muted);
  pointer-events: none;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field input:valid ~ label,
.field textarea:focus ~ label,
.field textarea:not(:empty) ~ label,
.field--select label {
  top: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.field input,
.field textarea { caret-color: var(--accent); }
.field input:not(:placeholder-shown) ~ label { color: var(--muted); }
.field--select label { top: 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.field__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.field input:focus ~ .field__line,
.field textarea:focus ~ .field__line,
.field select:focus ~ .field__line { transform: scaleX(1); }

.order__legal {
  font-size: 12px; color: var(--muted);
  line-height: 1.5;
}

/* === FOOTER === */
.foot {
  background: var(--ink); color: var(--bg);
  padding: 100px 0 32px;
}
.foot__big {
  display: flex; gap: 24px; align-items: baseline;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
}
.foot__big-italic em {
  font-style: italic; color: var(--accent-2);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,237,224,.15);
}
.foot__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(244,237,224,.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot__col a, .foot__col p {
  display: block;
  font-size: 14px;
  color: rgba(244,237,224,.85);
  margin-bottom: 10px;
  transition: color .25s, transform .25s;
}
.foot__col a:hover { color: var(--accent-2); transform: translateX(4px); }
.foot__bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 12px; letter-spacing: 0.05em;
  color: rgba(244,237,224,.5);
}

/* === TOAST === */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translate(-50%, 200%);
  background: var(--ink); color: var(--bg);
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 30px 60px -15px rgba(60,30,15,.5);
  z-index: 9000;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero__visual { height: 60vh; min-height: 500px; }
  .calc__layout { grid-template-columns: 1fr; gap: 40px; }
  .calc__preview { position: relative; top: 0; aspect-ratio: 4/3; }
  .order__layout { grid-template-columns: 1fr; gap: 60px; }
  .story__inner { grid-template-columns: 1fr; gap: 100px; }
  .story__quote { position: static; margin-top: 24px; max-width: none; }
  .prod { grid-template-columns: 40px 1fr; gap: 20px; }
  .prod--rev { grid-template-columns: 40px 1fr; }
  .prod__visual { grid-column: 2; height: 280px; }
  .prod__info { grid-column: 2; padding-right: 0; }
  .prod--rev .prod__visual { order: 0; }
  .prod--rev .prod__info { order: 0; }
}
@media (max-width: 800px) {
  .container, .nav__inner, .hero__grid, .hero__foot { padding-left: 24px; padding-right: 24px; }
  .nav__left .nav__link, .nav__right .nav__link { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__left { gap: 20px; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 12px 14px; }
  .hero { padding: 30px 0 0; }
  .hero__num strong { font-size: 64px; }
  .hero__foot { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; padding-bottom: 24px; }
  .hero__foot-item--scroll { display: none; }
  .shop, .calc, .story, .order { padding: 100px 0; }
  .prod { padding: 50px 0; }
  .prod__visual { height: 240px; }
  .calc__perfumes { grid-template-columns: 1fr; }
  .order__form { padding: 32px 24px; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .story__stats { grid-template-columns: 1fr; gap: 16px; }
  .story__stats > div strong { font-size: 44px; }
}
@media (max-width: 500px) {
  .hero__decor--2 { width: 240px; height: 240px; }
  .marquee__track { font-size: 36px; }
  .calc__chips { flex-direction: column; }
}
