:root {
  --ink: #231f1a;
  --graphite: #40372f;
  --smoke: #f4eadb;
  --ivory: #fffaf0;
  --gold: #bd8b3f;
  --gold-bright: #d9b46d;
  --deep: #14100d;
  --espresso: #1c1612;
  --amber: #9b633b;
  --green: #63725f;
  --plum: #5f4d53;
  --line: rgba(70, 52, 34, 0.18);
  --shadow: 0 28px 72px rgba(58, 39, 22, 0.2);
  --soft-shadow: 0 18px 38px rgba(65, 43, 21, 0.14);
  font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7e8 0%, #efe0c8 100%);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  --pointer-x: 50%;
  --pointer-y: 38%;
  --fx-rotate: 0deg;
}

main {
  flex: 1;
}

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

button,
input,
textarea {
  font: inherit;
}

#mistCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 17px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.76));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(83, 65, 42, 0.14);
}

.site-header.compact {
  background: rgba(255, 250, 240, 0.92);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 155, 85, 0.7);
  background: radial-gradient(circle at 35% 25%, #fffaf0, rgba(201, 155, 85, 0.34) 48%, rgba(139, 91, 43, 0.16));
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(43, 38, 32, 0.58);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.6vw, 46px);
  color: rgba(35, 31, 26, 0.78);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover {
  color: #6f4d23;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  color: var(--ivory);
  background: linear-gradient(135deg, #211914 0%, #7d572a 48%, #c99b55 100%);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 28px rgba(79, 50, 22, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 16px 36px rgba(79, 50, 22, 0.24);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(83, 65, 42, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.7);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 17px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span {
  opacity: 0;
}

.site-header.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(217, 180, 109, 0.18), transparent 18%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 250, 240, 0.08) 47%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.035) 0 1px, transparent 1px 86px);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: heroSweep 9s ease-in-out infinite;
}

.hero::after {
  width: min(520px, 58vw);
  aspect-ratio: 1;
  right: clamp(-180px, -10vw, -60px);
  top: 18%;
  z-index: 1;
  border: 1px solid rgba(217, 180, 109, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 55%, rgba(217, 180, 109, 0.12) 56%, transparent 57%),
    conic-gradient(from 140deg, transparent, rgba(217, 180, 109, 0.16), transparent 38%);
  opacity: 0.7;
  transform: rotate(var(--fx-rotate));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-fragrance.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: contrast(1.08) saturate(0.92);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 10, 0.72), rgba(24, 18, 13, 0.44) 42%, rgba(16, 12, 10, 0.38)),
    radial-gradient(circle at 73% 40%, rgba(224, 184, 112, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(12, 9, 7, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  width: min(1180px, calc(100% - 44px));
  margin: 110px auto 54px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px) 0;
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.35vw, 3.65rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.28rem, 2vw, 2.15rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-lede,
.split p,
.contact-copy p,
.products-hero p {
  color: rgba(35, 31, 26, 0.75);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.42), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform 520ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
  filter: saturate(1.08);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: skewX(-18deg) translateX(420%);
}

.btn.primary {
  color: var(--ivory);
  background: linear-gradient(135deg, #211914 0%, #7d572a 45%, #d7ad68 100%);
  box-shadow: 0 18px 38px rgba(72, 43, 17, 0.28);
}

.btn.secondary {
  border-color: rgba(255, 250, 240, 0.36);
  color: var(--ivory);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(14px);
}

.hero-object {
  justify-self: center;
  width: min(390px, 82vw);
  aspect-ratio: 0.76;
  position: relative;
  isolation: isolate;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.hero-object.is-dragging {
  cursor: grabbing;
}

.three-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 72%;
  height: 14%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.08) 58%, transparent 72%);
  filter: blur(10px);
  transform: translateX(-50%);
  z-index: -1;
}

#bottleCanvas {
  position: absolute;
  inset: -6% -12% -2%;
  width: 124%;
  height: 108%;
  display: block;
}

.scene-fallback {
  position: absolute;
  inset: 18% 18% 12%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 42px;
  color: rgba(255, 250, 240, 0.78);
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(159, 98, 50, 0.25));
}

.scene-fallback span {
  letter-spacing: 0.18em;
  font-weight: 800;
}

.three-ready .scene-fallback {
  display: none;
}

.note {
  position: absolute;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  backdrop-filter: blur(12px);
  animation: drift 7s ease-in-out infinite;
}

.note-a {
  top: 18%;
  left: 2%;
}

.note-b {
  right: 1%;
  top: 44%;
  animation-delay: -2s;
}

.note-c {
  left: 10%;
  bottom: 18%;
  animation-delay: -4s;
}

.intro-band,
.collections,
.process-band,
.contact-section,
.products-hero,
.product-controls,
.product-grid {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.intro-band {
  padding: 88px 0 70px;
}

.section-heading {
  max-width: 860px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.value-grid article,
.value-grid a,
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(83, 65, 42, 0.14);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(248, 238, 221, 0.5));
  padding: 26px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-grid a::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(217, 180, 109, 0.16) 50%, transparent 58%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 250, 240, 0.34), transparent 26%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.value-grid a,
.product-card,
.scent-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.value-grid a:hover,
.value-grid a:focus-visible,
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 155, 85, 0.58);
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 24px 64px rgba(104, 74, 39, 0.2);
}

.value-grid a:hover::after,
.value-grid a:focus-visible::after,
.product-card:hover::after,
.product-card:focus-visible::after {
  opacity: 1;
}

.value-grid span,
.product-code {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 800;
}

.value-grid p,
.scent-card p,
.process span,
.product-card p,
.form-note {
  color: rgba(43, 38, 32, 0.64);
  line-height: 1.6;
}

.collections {
  padding: 82px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

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

.scent-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.scent-card:hover,
.scent-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.scent-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 250, 240, 0.38), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.08) 0 1px, transparent 1px 18px);
  transform: translate3d(-22%, -12%, 0);
  transition: transform 260ms ease, opacity 180ms ease;
}

.scent-card:hover::before,
.scent-card:focus-visible::before {
  transform: translate3d(-18%, -8%, 0);
}

.scent-card h3,
.scent-card p {
  position: relative;
}

.scent-card.dark {
  background: linear-gradient(135deg, #25282b, #111);
  color: var(--ivory);
}

.scent-card.gold {
  background: linear-gradient(135deg, #8d5d2f, #d4b16f);
  color: #17130e;
}

.scent-card.gold p {
  color: rgba(20, 20, 21, 0.7);
}

.scent-card.green {
  background: linear-gradient(135deg, #28342d, #7a8866);
  color: var(--ivory);
}

.scent-card.ink {
  background: linear-gradient(135deg, #1a1a24, #5a3f4b);
  color: var(--ivory);
}

.scent-card.dark p,
.scent-card.green p,
.scent-card.ink p {
  color: rgba(255, 250, 240, 0.76);
}

.process-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(217, 180, 109, 0.12), transparent),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(83, 65, 42, 0.06) 32px);
  opacity: 0.6;
}

.process-band > * {
  position: relative;
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.process li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(83, 65, 42, 0.12);
}

.process strong {
  color: var(--gold);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 92px 0;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold-bright);
  font-weight: 800;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--gold);
}

.contact-line-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184, 137, 63, 0.32);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 10px 24px rgba(82, 59, 33, 0.08);
}

.contact-line-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(83, 65, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.66);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(43, 38, 32, 0.68);
  font-size: 0.88rem;
}

.hidden-field {
  display: none;
}

.success-page {
  min-height: 100vh;
}

.success-main {
  min-height: calc(100vh - 44px);
  display: grid;
  place-items: center;
  padding: 118px 18px 86px;
}

.success-panel {
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(83, 65, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.success-panel h1 {
  max-width: 560px;
  margin-bottom: 4px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.success-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(43, 38, 32, 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(83, 65, 42, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 250, 240, 0.96);
  box-shadow:
    0 0 0 3px rgba(201, 155, 85, 0.18),
    0 0 28px rgba(201, 155, 85, 0.14);
  transform: translateY(-1px);
}

.contact-cta-section,
.category-hero,
.category-detail {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.contact-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.contact-cta-section h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-hero,
.category-hero {
  padding: 152px 0 54px;
}

.contact-hero {
  width: min(980px, calc(100% - 36px));
  margin-inline: auto;
}

.contact-page .contact-hero {
  width: auto;
  padding: 0;
  margin: 0;
}

.contact-page .contact-hero h1 {
  max-width: 620px;
  font-size: clamp(1.42rem, 2.05vw, 2.08rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.contact-page .contact-hero p {
  max-width: 620px;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.contact-page .contact-section {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  padding: 118px 0 46px;
}

.contact-page .contact-copy {
  display: grid;
  gap: 38px;
}

.contact-page .contact-copy h2 {
  font-size: clamp(1.18rem, 1.75vw, 1.82rem);
  line-height: 1.14;
  margin-bottom: 14px;
}

.contact-page .contact-copy p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-info-block {
  max-width: 620px;
}

.contact-page .contact-lines {
  margin-top: 18px;
  gap: 7px;
  font-size: 0.92rem;
}

.contact-page .contact-form {
  gap: 12px;
  padding: 18px;
}

.contact-page .contact-form label {
  gap: 6px;
  font-size: 0.82rem;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  padding: 10px 12px;
  min-height: 42px;
}

.contact-hero h1,
.category-hero h1 {
  font-size: clamp(1.75rem, 3vw, 3.15rem);
}

.contact-hero p,
.category-hero p,
.category-detail p {
  color: rgba(43, 38, 32, 0.68);
  line-height: 1.65;
}

.category-detail {
  padding: 18px 0 76px;
}

.card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(201, 155, 85, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background: transparent;
  padding: 0 14px;
  font-weight: 700;
}

.form-note {
  margin: 0;
}

.site-footer {
  margin-top: 96px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(217, 180, 109, 0.42);
  color: rgba(255, 250, 240, 0.72);
  background:
    radial-gradient(circle at 12% 0%, rgba(189, 139, 63, 0.22), transparent 28%),
    linear-gradient(180deg, #19130f 0%, #0f0d0b 100%);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
  gap: clamp(28px, 5vw, 78px);
  padding: 54px 0 38px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ivory);
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-brand strong,
.footer-column h3 {
  color: var(--ivory);
}

.footer-brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.74rem;
}

.footer-column p,
.footer-column li {
  color: rgba(255, 250, 240, 0.66);
  line-height: 1.72;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: rgba(255, 250, 240, 0.72);
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 180, 109, 0.28);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(255, 250, 240, 0.04);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.82rem;
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: 24px;
  z-index: 35;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 137, 63, 0.28);
  border-radius: 50%;
  color: var(--ivory);
  background: linear-gradient(135deg, #3b3028, #b8893f);
  box-shadow: 0 18px 40px rgba(82, 59, 33, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.products-page {
  background:
    radial-gradient(circle at 20% 8%, rgba(201, 155, 85, 0.22), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(92, 107, 85, 0.1), transparent 32%),
    linear-gradient(180deg, #fff8ea 0%, #efe1c9 100%);
}

.products-hero {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 380px);
  gap: 38px;
  align-items: center;
  padding: 118px 0 34px;
}

.products-hero h1 {
  font-size: clamp(1.65rem, 2.65vw, 2.75rem);
}

.catalog-panel {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(184, 137, 63, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.82), rgba(238, 222, 195, 0.45)),
    radial-gradient(circle at 70% 20%, rgba(201, 155, 85, 0.24), transparent 42%);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.catalog-panel span,
.catalog-panel small {
  color: rgba(43, 38, 32, 0.62);
}

.catalog-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.45vw, 2.25rem);
  line-height: 1;
}

.product-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 22px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(83, 65, 42, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.46);
  cursor: pointer;
}

.filter-chip.active {
  color: var(--ivory);
  background: linear-gradient(135deg, #3b3028, #b8893f);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0 44px;
}

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, opacity 180ms ease;
}

.feature-card {
  gap: 8px;
}

.feature-card ul {
  margin: 2px 0 10px;
  padding-left: 18px;
  color: rgba(43, 38, 32, 0.66);
  line-height: 1.48;
}

.feature-card li + li {
  margin-top: 5px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.packaging-gallery[hidden] {
  display: none;
}

.product-card button {
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid rgba(201, 155, 85, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background: transparent;
  padding: 10px 14px;
}

.product-card.muted {
  opacity: 0.72;
}

.packaging-gallery {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 96px;
  border-top: 1px solid rgba(83, 65, 42, 0.12);
}

.wholesale-gallery {
  padding-bottom: 56px;
}

.wholesale-gallery + .packaging-gallery {
  padding-top: 56px;
}

.logistics-visual {
  position: relative;
  margin: 0 0 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(83, 65, 42, 0.13);
  background: rgba(255, 250, 240, 0.62);
}

.logistics-visual img {
  width: 100%;
  aspect-ratio: 2.45;
  display: block;
  object-fit: cover;
}

.logistics-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.18), rgba(255, 250, 240, 0.03) 55%, rgba(43, 38, 32, 0.12));
  pointer-events: none;
}

.logistics-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  max-width: 460px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid rgba(83, 65, 42, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading p:last-child {
  color: rgba(43, 38, 32, 0.66);
  line-height: 1.65;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-subtitle {
  margin: 34px 0 16px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-subtitle:first-of-type {
  margin-top: 0;
}

.packaging-grid article {
  border: 1px solid rgba(83, 65, 42, 0.13);
  background: rgba(255, 250, 240, 0.62);
  border-radius: 8px;
  overflow: hidden;
}

.packaging-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  display: block;
  object-fit: cover;
  background: #f4f2ef;
}

.packaging-grid h3 {
  margin: 18px 18px 8px;
}

.packaging-grid p {
  margin: 0 18px 20px;
  color: rgba(43, 38, 32, 0.66);
  line-height: 1.55;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 40px);
  }
  50% {
    transform: translate3d(8px, -18px, 80px);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    transform: translateX(-5%);
    opacity: 0.58;
  }
  50% {
    transform: translateX(5%);
    opacity: 0.78;
  }
}

@media (max-width: 1100px) {
  .contact-page .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .contact-page .contact-copy {
    gap: 22px;
  }

  .contact-page .contact-form {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    position: sticky;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    z-index: 20;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(83, 65, 42, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 10px;
    white-space: nowrap;
  }

  .nav a::after {
    bottom: 7px;
  }

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

  .header-cta {
    display: none;
  }

  .hero-inner,
  .split,
  .process-band,
  .contact-section,
  .products-hero {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    margin-top: 34px;
  }

  .contact-hero,
  .category-hero,
  .products-hero {
    padding-top: 54px;
  }

  .contact-page .contact-section {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-object {
    width: min(280px, 70vw);
    margin-bottom: 24px;
  }

  .value-grid,
  .scent-rail,
  .product-grid,
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

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

  .brand small {
    display: none;
  }

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

  .brand strong {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.28rem);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    opacity: 0.42;
    background:
      radial-gradient(circle at 58% 34%, rgba(217, 180, 109, 0.12), transparent 24%),
      linear-gradient(115deg, transparent 0 42%, rgba(255, 250, 240, 0.05) 50%, transparent 58%);
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    margin-top: 28px;
    margin-bottom: 34px;
  }

  .hero-copy {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .hero-actions,
  .contact-cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .value-grid,
  .scent-rail,
  .product-grid,
  .packaging-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .intro-band,
  .collections,
  .process-band,
  .contact-section {
    padding-block: 58px;
  }

  .logistics-visual img {
    aspect-ratio: 1.25;
  }

  .logistics-visual figcaption {
    position: static;
    border-radius: 0;
    max-width: none;
  }

  .contact-hero,
  .category-hero,
  .products-hero {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .contact-page .contact-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .contact-page .contact-copy {
    gap: 20px;
  }

  .contact-page .contact-info-block {
    display: none;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.82rem);
  }

  .contact-page .contact-hero p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-page .contact-form {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
  }

  .products-hero {
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 28px;
  }

  .footer-column:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .btn::after {
    display: none;
  }
}
