:root {
  --ivory: #f5f1e9;
  --ivory-soft: #fbf8f1;
  --brown: #3d2b20;
  --brown-deep: #1d1511;
  --gold: #ceb093;
  --gold-strong: #b98331;
  --ink: #201915;
  --muted: #756d66;
  --line: rgba(61, 43, 32, 0.12);
  --shadow: 0 28px 90px rgba(61, 43, 32, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 12%, rgba(206, 176, 147, 0.32), transparent 26rem),
    radial-gradient(circle at 92% 4%, rgba(255, 255, 255, 0.92), transparent 24rem),
    linear-gradient(180deg, var(--ivory-soft), var(--ivory));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(245, 241, 233, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(61, 43, 32, 0.09);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 50%;
  padding: 10px 12px 10px 22px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 50px;
  margin-right: auto;
}

.brand img {
  height: 100%;
  object-fit: contain;
  width: auto;
}

.nav-links {
  display: none;
}

.nav-links a {
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--gold-strong);
  opacity: 1;
}

.mobile-section-nav {
  backdrop-filter: blur(22px);
  background: rgba(245, 241, 233, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(61, 43, 32, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  position: fixed;
  right: max(16px, calc((100vw - 1120px) / 2));
  top: 96px;
  width: min(360px, calc(100vw - 32px));
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.mobile-section-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-section-nav a {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 14px;
  color: var(--brown);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  min-height: 46px;
  padding: 0 18px;
  text-transform: uppercase;
}

.mobile-section-nav a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-strong);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(206, 176, 147, 0.55);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--brown);
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 46px;
  padding: 0 20px;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--brown), var(--brown-deep));
  box-shadow: 0 14px 30px rgba(61, 43, 32, 0.24);
  color: var(--ivory-soft);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(206, 176, 147, 0.62);
  color: var(--brown);
}

.hero {
  background:
    linear-gradient(180deg, rgba(245, 241, 233, 0.2) 0%, rgba(245, 241, 233, 0.02) 42%, rgba(245, 241, 233, 0.76) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.7), transparent 18rem);
  background-color: var(--ivory);
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  min-height: 100svh;
  padding: 124px max(24px, calc((100vw - 1220px) / 2)) 42px;
  position: relative;
}

.hero-bg-slider {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero-bg-slider::after {
  background:
    linear-gradient(180deg, rgba(245, 241, 233, 0.08) 0%, rgba(245, 241, 233, 0) 46%, rgba(245, 241, 233, 0.54) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.26), transparent 20rem);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero-bg-slider img {
  height: 100%;
  inset: 0;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  transform: scale(1.035);
  transition: opacity 1400ms ease, transform 7000ms ease;
  width: 100%;
  z-index: 1;
}

.hero-bg-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(61, 43, 32, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(61, 43, 32, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, black, transparent 74%);
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
}

.hero-orb {
  border-radius: 999px;
  filter: blur(4px);
  position: absolute;
  z-index: 0;
}

.hero-orb-left {
  background: rgba(206, 176, 147, 0.32);
  height: 300px;
  left: -110px;
  top: 210px;
  width: 300px;
}

.hero-orb-right {
  background: rgba(255, 255, 255, 0.86);
  height: 440px;
  right: -180px;
  top: 80px;
  width: 440px;
}

.hero-copy,
.hero-stage,
.hero-metrics,
.hero-poster-content,
.hero-callouts,
.hero-bottom-badges {
  position: relative;
  z-index: 1;
}

.hero-poster-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo-lockup {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.hero-logo-lockup img {
  height: 240px;
  object-fit: contain;
  width: 620px;
}

.hero-slogan {
  color: #17100c;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: -56px 0 0;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.86);
}

.hero-callouts {
  inset: 0 clamp(10px, 1.8vw, 26px);
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.hero-callout {
  align-items: center;
  backdrop-filter: none;
  background: rgba(245, 241, 233, 0.28);
  border: 1px solid rgba(206, 176, 147, 0.56);
  border-radius: 24px;
  box-shadow: 0 14px 44px rgba(61, 43, 32, 0.08);
  display: grid;
  gap: 8px;
  justify-items: center;
  max-width: 260px;
  min-height: 184px;
  padding: 18px;
  pointer-events: auto;
  position: absolute;
  text-align: center;
  transition:
    background 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-callout::after {
  background: linear-gradient(90deg, transparent, rgba(206, 176, 147, 0.7), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 20px;
  position: absolute;
  right: 20px;
  transition: opacity 520ms ease;
}

.hero-callout:hover {
  background: rgba(245, 241, 233, 0.46);
  border-color: rgba(185, 131, 49, 0.74);
  box-shadow: 0 20px 64px rgba(61, 43, 32, 0.14);
  transform: translateY(-6px);
}

.hero-callout:hover::after {
  opacity: 1;
}

.callout-icon {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(185, 131, 49, 0.42);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  transition:
    background 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 48px;
}

.hero-callout:hover .callout-icon {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(185, 131, 49, 0.78);
  color: #9b661f;
  transform: scale(1.06);
}

.callout-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 25px;
}

.hero-callout strong {
  color: #17100c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-callout:hover strong {
  transform: translateY(-1px);
}

.hero-callout p {
  color: rgba(23, 16, 12, 0.82);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  max-height: none;
  opacity: 1;
  overflow: visible;
  text-align: center;
  transform: none;
  transition: none;
}

.hero-callout:hover p {
  opacity: 1;
  transform: none;
}

.callout-left-top {
  left: 0;
  top: 34%;
}

.callout-left-bottom {
  left: 10px;
  top: 56%;
}

.callout-right-top {
  right: 0;
  top: 34%;
}

.callout-right-bottom {
  right: 10px;
  top: 56%;
}

.hero-bottom-badges {
  align-items: center;
  backdrop-filter: none;
  background: rgba(245, 241, 233, 0.26);
  border: 1px solid rgba(206, 176, 147, 0.46);
  border-radius: 999px;
  bottom: 38px;
  box-shadow: 0 14px 44px rgba(61, 43, 32, 0.08);
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 50%;
  padding: 10px;
  position: absolute;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 48px));
  z-index: 5;
}

.hero-bottom-badges a {
  align-items: center;
  border-radius: 999px;
  color: #17100c;
  display: inline-flex;
  flex: 1;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-bottom-badges a:hover {
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 0 0 1px rgba(185, 131, 49, 0.22);
  transform: translateY(-3px);
}

.hero-bottom-badges span {
  align-items: center;
  border: 1px solid rgba(185, 131, 49, 0.34);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
  width: 34px;
}

.hero-bottom-badges a:hover span {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(185, 131, 49, 0.72);
  transform: scale(1.05);
}

.hero-bottom-badges strong {
  display: inline-flex;
  justify-content: center;
  min-width: 128px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  align-self: center;
  backdrop-filter: blur(6px);
  background: linear-gradient(135deg, rgba(245, 241, 233, 0.54), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(61, 43, 32, 0.06);
  max-width: 620px;
  padding: clamp(22px, 4vw, 38px);
}

.eyebrow,
.section-kicker {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 14px;
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 9px 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 112px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin-bottom: 28px;
  margin-top: 18px;
}

.hero-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stage {
  align-self: end;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(206, 176, 147, 0.12)),
    var(--ivory);
  border: 1px solid rgba(206, 176, 147, 0.32);
  border-radius: 52px;
  box-shadow:
    0 34px 110px rgba(61, 43, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.hero-stage::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(0deg, rgba(61, 43, 32, 0.1), transparent 34%);
  border-radius: 42px;
  bottom: 10px;
  content: "";
  left: 10px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.hero-stage::before {
  background: linear-gradient(90deg, transparent, rgba(206, 176, 147, 0.72), transparent);
  content: "";
  height: 1px;
  left: 10%;
  opacity: 0.9;
  position: absolute;
  right: 10%;
  top: 10px;
  z-index: 3;
}

.hero-showcase-image {
  aspect-ratio: 16 / 10;
  border-radius: 42px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.arch-frame {
  border: 1px solid rgba(206, 176, 147, 0.54);
  border-bottom: 0;
  border-radius: 240px 240px 0 0;
  height: 78%;
  left: 50%;
  opacity: 0.72;
  position: absolute;
  top: 34px;
  transform: translateX(-50%);
  width: 58%;
}

.hero-product {
  filter: drop-shadow(0 34px 26px rgba(61, 43, 32, 0.2));
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.hero-product-main {
  grid-column: 2;
  max-height: 435px;
  transform: translateX(22px);
}

.hero-product-white {
  grid-column: 3;
  max-height: 415px;
  transform: translateX(-8px);
}

.hero-product-small {
  max-height: 285px;
}

.hero-product-small.dark {
  grid-column: 1;
}

.hero-product-small.light {
  grid-column: 4;
}

.reed-bottle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(206, 176, 147, 0.28));
  border: 1px solid rgba(206, 176, 147, 0.7);
  border-radius: 8px 8px 14px 14px;
  bottom: 48px;
  box-shadow: 0 14px 34px rgba(61, 43, 32, 0.18);
  height: 82px;
  left: 56px;
  position: absolute;
  width: 58px;
  z-index: 3;
}

.reed-bottle::after {
  background: var(--gold-strong);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 12px;
  position: absolute;
  top: 14px;
  width: 34px;
}

.reed-bottle span {
  background: var(--gold-strong);
  bottom: 58px;
  height: 112px;
  left: 27px;
  position: absolute;
  transform-origin: bottom;
  width: 2px;
}

.reed-bottle span:nth-child(1) {
  transform: rotate(-18deg);
}

.reed-bottle span:nth-child(2) {
  transform: rotate(-6deg);
}

.reed-bottle span:nth-child(3) {
  transform: rotate(8deg);
}

.reed-bottle span:nth-child(4) {
  transform: rotate(19deg);
}

.hero-metrics {
  align-self: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(61, 43, 32, 0.09);
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  padding: 16px;
}

.hero-metrics article {
  border-right: 1px solid var(--line);
  padding: 10px 18px;
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--brown);
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
}

section {
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
}

.signature {
  background:
    linear-gradient(135deg, rgba(61, 43, 32, 0.94), rgba(29, 21, 17, 0.98)),
    var(--brown);
  color: var(--ivory-soft);
  position: relative;
}

.signature::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(206, 176, 147, 0.28), transparent 22rem),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 26rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.signature-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 0.88fr 1.12fr;
  position: relative;
  z-index: 1;
}

.section-kicker {
  margin-bottom: 24px;
}

.signature h2,
.section-heading h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 74px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 22px;
}

.signature p {
  color: rgba(245, 241, 233, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.why-scenting {
  background:
    radial-gradient(circle at 12% 14%, rgba(206, 176, 147, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--ivory), #fffaf0);
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 233, 0.68)),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(61, 43, 32, 0.1);
  min-height: 320px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  background: radial-gradient(circle, rgba(206, 176, 147, 0.24), transparent 12rem);
  content: "";
  height: 220px;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 220px;
}

.why-card h3 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(206, 176, 147, 0.22);
  border-radius: 28px;
  padding: 24px;
}

.feature-list span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature-list article h3 {
  margin-top: 0;
}

.feature-list h3,
.product-info h3 {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.025em;
  margin: 10px 0;
}

.references {
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(206, 176, 147, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), var(--ivory));
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1.42fr);
  padding-top: 82px;
  padding-bottom: 82px;
}

.references-copy h2 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 16px 0 18px;
}

.references-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 470px;
}

.reference-logo-grid {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 241, 233, 0.56)),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(206, 176, 147, 0.24);
  border-radius: 34px;
  box-shadow: 0 22px 74px rgba(61, 43, 32, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 18px;
}

.reference-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 43, 32, 0.08);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  min-height: 92px;
  padding: 16px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.reference-logo:hover {
  border-color: rgba(185, 131, 49, 0.45);
  box-shadow: 0 14px 36px rgba(61, 43, 32, 0.12);
  transform: translateY(-3px);
}

.reference-logo img {
  filter: saturate(0.92) contrast(1.04);
  max-height: 56px;
  object-fit: contain;
  width: 100%;
}

.about {
  background:
    radial-gradient(circle at 82% 8%, rgba(206, 176, 147, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--ivory), #fffaf0);
}

.about-panel {
  background:
    linear-gradient(135deg, rgba(61, 43, 32, 0.94), rgba(29, 21, 17, 0.98)),
    var(--brown);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 42px;
  box-shadow: 0 28px 90px rgba(61, 43, 32, 0.18);
  color: var(--ivory-soft);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  position: relative;
}

.about-panel::after {
  background: radial-gradient(circle, rgba(206, 176, 147, 0.22), transparent 22rem);
  content: "";
  height: 420px;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: -150px;
  width: 420px;
}

.about-heading,
.about-copy {
  position: relative;
  z-index: 1;
}

.about-heading h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 74px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 18px 0 0;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  color: rgba(245, 241, 233, 0.74);
  font-size: 16px;
  line-height: 1.86;
  margin: 0;
}

.products {
  background: linear-gradient(180deg, var(--ivory), #fffaf0);
}

.recommended-scents {
  background:
    radial-gradient(circle at 12% 20%, rgba(206, 176, 147, 0.22), transparent 24rem),
    linear-gradient(180deg, #fffaf0, var(--ivory));
}

.featured-scents {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.scent-card {
  background:
    linear-gradient(145deg, rgba(29, 21, 17, 0.92), rgba(7, 25, 19, 0.96)),
    var(--brown-deep);
  border: 1px solid rgba(206, 176, 147, 0.34);
  border-radius: 32px;
  box-shadow: 0 26px 80px rgba(29, 21, 17, 0.2);
  color: var(--ivory-soft);
  overflow: hidden;
  position: relative;
}

.scent-card::after {
  background: linear-gradient(90deg, transparent, rgba(206, 176, 147, 0.72), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.scent-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.scent-card div {
  padding: 24px;
}

.scent-card span,
.catalog-card span {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.scent-card h3,
.catalog-card h3 {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.scent-card p {
  color: rgba(245, 241, 233, 0.78);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.scent-catalog {
  background:
    radial-gradient(circle at 88% 4%, rgba(206, 176, 147, 0.2), transparent 24rem),
    linear-gradient(180deg, var(--ivory), #fffaf0);
  padding-top: 82px;
}

.catalog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.scroll-anchor {
  display: block;
  position: relative;
  top: -120px;
}

.catalog-jump-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: -22px auto 34px;
}

.catalog-jump-controls.bottom {
  margin: 34px auto 0;
}

.catalog-jump-controls a {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 233, 0.64)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(206, 176, 147, 0.36);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(61, 43, 32, 0.08);
  color: var(--brown);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-jump-controls a:hover {
  border-color: rgba(185, 131, 49, 0.58);
  box-shadow: 0 18px 46px rgba(61, 43, 32, 0.12);
  transform: translateY(-2px);
}

.catalog-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(206, 176, 147, 0.26);
  border-radius: 26px;
  box-shadow: 0 18px 58px rgba(61, 43, 32, 0.09);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.catalog-card:hover {
  border-color: rgba(185, 131, 49, 0.55);
  box-shadow: 0 24px 74px rgba(61, 43, 32, 0.14);
  transform: translateY(-5px);
}

.catalog-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.catalog-card-content {
  padding: 18px;
}

.catalog-card h3 {
  color: var(--brown);
  font-size: 28px;
}

.catalog-card dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.catalog-card div.note-row {
  border-top: 1px solid rgba(61, 43, 32, 0.1);
  padding-top: 8px;
}

.catalog-card dt {
  color: var(--gold-strong);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card dd {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 3px 0 0;
}

.catalog-empty {
  color: var(--muted);
  grid-column: 1 / -1;
  text-align: center;
}

.section-heading {
  margin: 0 auto 58px;
  max-width: 820px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 650px;
}

.product-showcase {
  display: grid;
  gap: 34px;
}

.product-card {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 241, 233, 0.72)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(206, 176, 147, 0.2);
  border-radius: 38px;
  box-shadow: 0 26px 90px rgba(61, 43, 32, 0.12);
  display: grid;
  gap: 32px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  padding: 28px;
}

.product-card.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.product-card.reverse .product-image {
  order: 2;
}

.product-card.reverse .product-info {
  order: 1;
}

.product-image {
  align-items: center;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.product-image.scene {
  aspect-ratio: 4 / 3;
  background: var(--ivory);
  border: 1px solid rgba(206, 176, 147, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 50px rgba(61, 43, 32, 0.1);
  min-height: 0;
  padding: 0;
}

.product-image.scene::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(0deg, rgba(61, 43, 32, 0.03), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.product-image::before {
  border: 1px solid rgba(206, 176, 147, 0.46);
  border-radius: 999px;
  content: "";
  height: 72%;
  position: absolute;
  width: 72%;
}

.product-image.scene::before {
  display: none;
}

.product-image.warm {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.96), transparent 18rem),
    linear-gradient(135deg, rgba(206, 176, 147, 0.38), rgba(245, 241, 233, 0.78));
}

.product-image.pearl {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98), transparent 18rem),
    linear-gradient(135deg, rgba(245, 241, 233, 0.86), rgba(255, 255, 255, 0.7));
}

.product-image.deep {
  background:
    radial-gradient(circle at 50% 35%, rgba(206, 176, 147, 0.28), transparent 18rem),
    linear-gradient(135deg, #2a1e17, #f5f1e9);
}

.product-image img {
  filter: drop-shadow(0 26px 28px rgba(61, 43, 32, 0.2));
  max-height: 360px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-image.scene img {
  filter: saturate(1.06) contrast(1.03);
  height: 100%;
  max-height: none;
  object-fit: cover;
  width: 100%;
}

.product-info {
  padding: 18px clamp(10px, 4vw, 54px);
}

.product-info span {
  color: var(--gold-strong);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-info p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}

.service-model {
  background:
    radial-gradient(circle at 88% 10%, rgba(206, 176, 147, 0.24), transparent 24rem),
    linear-gradient(180deg, #fffaf0, var(--ivory));
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border-radius: 34px;
  overflow: hidden;
}

.service-card.image-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(206, 176, 147, 0.28);
  box-shadow: 0 24px 74px rgba(61, 43, 32, 0.12);
  min-height: 480px;
}

.service-card.image-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-card.copy-card {
  background:
    linear-gradient(145deg, rgba(61, 43, 32, 0.94), rgba(29, 21, 17, 0.98)),
    var(--brown);
  border: 1px solid rgba(206, 176, 147, 0.28);
  box-shadow: 0 24px 74px rgba(61, 43, 32, 0.16);
  color: var(--ivory-soft);
  padding: clamp(28px, 5vw, 54px);
}

.service-card.copy-card span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card.copy-card h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 22px;
}

.service-card.copy-card p {
  color: rgba(245, 241, 233, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.service-card.copy-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.service-card.copy-card li {
  align-items: center;
  color: rgba(245, 241, 233, 0.86);
  display: flex;
  gap: 12px;
  line-height: 1.6;
}

.service-card.copy-card li::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.service-visual-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.service-visual-grid article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 28px;
  box-shadow: 0 20px 64px rgba(61, 43, 32, 0.1);
  overflow: hidden;
  position: relative;
}

.service-visual-grid img {
  aspect-ratio: 4 / 3;
  filter: saturate(1.06) contrast(1.03);
  object-fit: cover;
  width: 100%;
}

.service-visual-grid div {
  padding: 22px;
}

.service-visual-grid span {
  color: var(--gold-strong);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-visual-grid h3 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}

.service-promise {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 32px;
  box-shadow: 0 18px 58px rgba(61, 43, 32, 0.09);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  padding: 18px;
}

.service-promise article {
  border-right: 1px solid rgba(61, 43, 32, 0.1);
  padding: 14px 22px;
}

.service-promise article:last-child {
  border-right: 0;
}

.service-promise strong {
  color: var(--brown);
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.service-promise span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}

.spaces {
  background:
    radial-gradient(circle at 18% 10%, rgba(206, 176, 147, 0.22), transparent 22rem),
    var(--ivory-soft);
}

.space-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(206, 176, 147, 0.24);
  border-radius: 28px;
  min-height: 230px;
  padding: 28px;
  position: relative;
}

.space-card.visual {
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.space-card.visual.clickable {
  cursor: pointer;
}

.space-card.visual.clickable:hover,
.space-card.visual.clickable:focus-visible {
  border-color: rgba(185, 131, 49, 0.64);
  box-shadow: 0 24px 74px rgba(61, 43, 32, 0.18);
  outline: none;
  transform: translateY(-5px);
}

.space-card.visual::before {
  display: none;
}

.space-card.visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.space-card.visual::after {
  background: linear-gradient(180deg, transparent 32%, rgba(29, 21, 17, 0.76));
  content: "";
  inset: 0;
  position: absolute;
}

.space-card.visual div {
  bottom: 0;
  color: var(--ivory-soft);
  left: 0;
  padding: 26px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.space-card::before {
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: 999px;
  content: "";
  height: 44px;
  opacity: 0.62;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}

.space-card span {
  color: var(--brown);
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 48px;
}

.space-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.space-card.visual span {
  color: var(--ivory-soft);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.space-card.visual p {
  color: rgba(245, 241, 233, 0.82);
}

.contact {
  padding-bottom: 44px;
}

.space-detail-page {
  background:
    radial-gradient(circle at 10% 4%, rgba(206, 176, 147, 0.32), transparent 26rem),
    linear-gradient(180deg, var(--ivory-soft), var(--ivory));
}

.space-detail-shell {
  padding: 34px max(20px, calc((100vw - 1180px) / 2)) 84px;
}

.space-back-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(206, 176, 147, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(61, 43, 32, 0.08);
  color: var(--brown);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

.space-detail-hero {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 241, 233, 0.58)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(206, 176, 147, 0.24);
  border-radius: 42px;
  box-shadow: 0 24px 80px rgba(61, 43, 32, 0.1);
  margin: 56px auto 44px;
  max-width: 980px;
  padding: clamp(34px, 6vw, 74px);
  text-align: center;
}

.space-detail-hero h1 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 78px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 18px 0 22px;
  text-wrap: balance;
}

.space-detail-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 680px;
}

.space-detail-content {
  padding: 0;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(61, 43, 32, 0.92), rgba(29, 21, 17, 0.98)),
    var(--brown);
  border-radius: 44px;
  box-shadow: var(--shadow);
  color: var(--ivory-soft);
  margin: 0 auto;
  max-width: 1040px;
  overflow: hidden;
  padding: clamp(38px, 7vw, 84px);
  position: relative;
  text-align: center;
}

.contact-panel::after {
  background: radial-gradient(circle, rgba(206, 176, 147, 0.28), transparent 22rem);
  content: "";
  height: 420px;
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 176, 147, 0.24);
  border-radius: 24px;
  box-sizing: border-box;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  max-width: 100%;
  padding: 12px 22px;
  width: 520px;
}

.contact-panel p {
  color: rgba(245, 241, 233, 0.72);
  line-height: 1.8;
  margin: 0 auto 30px;
  max-width: 670px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 0 auto 30px;
  max-width: 760px;
}

.contact-details a,
.contact-details span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(206, 176, 147, 0.2);
  border-radius: 999px;
  color: rgba(245, 241, 233, 0.86);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 13px 18px;
}

.contact-panel .button.primary {
  background: linear-gradient(135deg, #d9bd9b, #b98331);
  color: var(--brown-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 999px;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(245, 241, 233, 0.32) 0%, rgba(245, 241, 233, 0.06) 48%, rgba(245, 241, 233, 0.84) 100%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.7), transparent 18rem);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: auto, auto;
    padding-top: 124px;
  }

  .hero-callout {
    max-width: 220px;
    padding: 14px;
  }

  .callout-left-top,
  .callout-right-top {
    top: 38%;
  }

  .callout-left-bottom,
  .callout-right-bottom {
    display: none;
  }

  .signature-grid,
  .product-card,
  .product-card.reverse,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card.image-card {
    min-height: 380px;
  }

  .service-visual-grid {
    grid-template-columns: 1fr;
  }

  .references {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .reference-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-scents {
    grid-template-columns: 1fr;
  }

  .scent-card.featured {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.reverse .product-image,
  .product-card.reverse .product-info {
    order: initial;
  }

  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    border-radius: 26px;
    padding: 8px 10px;
    top: 12px;
    width: calc(100% - 24px);
  }

  .brand {
    height: 44px;
  }

  .nav-cta {
    font-size: 11px;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(245, 241, 233, 0.9) 0%, rgba(245, 241, 233, 0.32) 34%, rgba(245, 241, 233, 0.5) 68%, rgba(245, 241, 233, 0.96) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    min-height: 100svh;
    overflow: hidden;
    padding-bottom: 210px;
    padding-inline: 16px;
    padding-top: 120px;
  }

  .hero-bg-slider img {
    object-position: center 54%;
  }

  .hero-logo-lockup {
    padding: 8px 20px 10px;
  }

  .hero-logo-lockup img {
    height: 132px;
    width: 330px;
  }

  .hero-slogan {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
    margin-top: -34px;
  }

  .hero-callouts {
    display: none;
  }

  .hero-bottom-badges {
    background: rgba(245, 241, 233, 0.58);
    border-radius: 28px;
    bottom: 18px;
    flex-direction: column;
    gap: 4px;
    left: 16px;
    padding: 8px;
    right: 16px;
    transform: none;
    width: auto;
  }

  .hero-bottom-badges a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 12px;
    width: 100%;
  }

  .hero-bottom-badges strong {
    justify-content: flex-start;
    min-width: 0;
  }

  section {
    padding: 74px 16px;
  }

  .references {
    gap: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .reference-logo-grid {
    border-radius: 26px;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .reference-logo {
    border-radius: 16px;
    min-height: 82px;
    padding: 12px;
  }

  .reference-logo img {
    max-height: 48px;
  }

  .about-panel {
    border-radius: 30px;
    gap: 28px;
  }

  .space-detail-shell {
    padding: 18px 14px 64px;
  }

  .space-detail-hero {
    border-radius: 28px;
    margin: 34px auto 28px;
    padding: 30px 18px;
  }

  .space-detail-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .scent-card.featured {
    display: block;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-jump-controls {
    align-items: stretch;
    flex-direction: column;
    margin-top: -16px;
  }

  .catalog-jump-controls a {
    width: 100%;
  }

  .why-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-details a,
  .contact-details span {
    border-radius: 18px;
  }

  .service-card {
    border-radius: 26px;
  }

  .service-card.image-card {
    min-height: 300px;
  }

  .service-visual-grid h3 {
    font-size: 26px;
  }

  .service-promise {
    grid-template-columns: 1fr;
  }

  .service-promise article {
    border-bottom: 1px solid rgba(61, 43, 32, 0.1);
    border-right: 0;
  }

  .service-promise article:last-child {
    border-bottom: 0;
  }

  .product-card {
    border-radius: 28px;
    padding: 16px;
  }

  .product-image {
    min-height: 320px;
    padding: 24px;
  }

  .product-image.scene {
    aspect-ratio: 4 / 3;
    min-height: 0;
    padding: 0;
  }

  .product-image img {
    max-height: 285px;
  }

  .product-image.scene img {
    height: 100%;
    max-height: none;
    object-fit: cover;
    width: 100%;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-radius: 30px;
  }
}

@media (max-width: 430px) {
  .brand {
    height: 40px;
  }

  .nav-cta {
    font-size: 10px;
    min-height: 38px;
    padding: 0 12px;
  }

  .mobile-section-nav {
    right: 12px;
    top: 80px;
    width: calc(100vw - 24px);
  }

  .mobile-section-nav a {
    font-size: 12px;
    min-height: 44px;
    padding: 0 16px;
  }

  .hero {
    padding-bottom: 206px;
    padding-top: 112px;
  }

  .hero-bg-slider img {
    object-position: center 56%;
  }

  .hero-poster-content {
    transform: translateY(-4px);
  }

  .hero-logo-lockup img {
    height: 112px;
    width: 286px;
  }

  .hero-bottom-badges span {
    flex: 0 0 auto;
    height: 32px;
    width: 32px;
  }

  .hero-bottom-badges strong {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}
