/* =============================================================
   ABZY AROMA — Design System (extracted from template-home.php)
   This file contains the site-wide design tokens, layout and UI
   styles used on the new homepage. It is intended to be enqueued
   for all pages so the same visual language applies site-wide.
============================================================= */
:root {
  --bg: #0a0a0b;
  --bg2: #0e1628;
  --bg3: #0b2a22;
  --ink: #ede7d9;
  --dim: #9a9385;
  --muted: #5e584d;
  --gold: #c9a24b;
  --gold2: #e2c079;
  --line: rgba(237, 231, 217, 0.12);
  --lines: rgba(237, 231, 217, 0.26);
  --serif: "Cormorant Garamond", Garamond, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 15px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}

.sp-main {
  border-radius: 15px;
}

/* Cursor (hidden on desktop in original design) */
.cdot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: left, top;
}
.cring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.28s var(--ease),
    height 0.28s var(--ease),
    border-color 0.28s;
  will-change: left, top;
}
.ch .cdot {
  opacity: 0;
}
.ch .cring {
  width: 56px;
  height: 56px;
  border-color: var(--gold2);
}
@media (hover: none) {
  body {
    cursor: auto;
  }
  button,
  a {
    cursor: pointer;
  }
  .cdot,
  .cring {
    display: none;
  }
}

/* Scroll bar */
#sb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 300;
}
#sbf {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ambient glows */
.amb1 {
  position: fixed;
  top: 0;
  left: -15vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.09) 0%,
    transparent 58%
  );
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.amb2 {
  position: fixed;
  bottom: -15%;
  right: -10vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(
    circle,
    rgba(11, 42, 34, 0.12) 0%,
    transparent 58%
  );
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Type helpers & utility classes (serif, mono, reveals, glass, buttons) */
.serif {
  font-family: var(--serif);
  font-weight: 300;
}
.si {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.sl {
  display: inline-block;
  opacity: 0;
  transform: translateY(52%) rotate(1.5deg);
  transition:
    opacity 1.2s var(--ease),
    transform 1.2s var(--ease);
}
.sl.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.005)
  );
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  border-radius: 12px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: none;
  overflow: hidden;
  transition:
    color 0.38s,
    background 0.38s,
    box-shadow 0.38s;
  white-space: nowrap;
  text-decoration: none;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 20px;
    min-height: 44px;
  }
}
.btn:focus-visible {
  outline: 2px solid rgba(201, 162, 75, 0.45);
  outline-offset: 3px;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.48s cubic-bezier(0.7, 0.05, 0.2, 1);
  z-index: -1;
}
.btn:hover {
  color: var(--bg);
  box-shadow:
    0 6px 28px rgba(201, 162, 75, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn:hover::before {
  transform: none;
}
.btng {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.28s,
    border-color 0.28s,
    padding-left 0.28s;
}
.btng:hover {
  color: var(--gold);
  border-color: var(--gold);
  padding-left: 6px;
}
.arr {
  font-size: 14px;
  opacity: 0.8;
  font-variant-emoji: text;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.38s;
}
.btn:hover .arr {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* Nav basics */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 48px;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.45s var(--ease),
    background 0.45s,
    border-color 0.45s;
}
#nav.sc {
  padding: 13px 48px;
  background: rgba(10, 10, 11, 0.48);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nl {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nl a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.25s;
}
.nl a:hover {
  opacity: 1;
}
.nb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.nb-t {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.nb-s {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
}
.nr {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}
.nr li {
  display: flex;
  align-items: center;
}
.nr a,
.nr button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.25s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nr a:hover,
.nr button:hover {
  opacity: 1;
}
.bag-count {
  color: var(--gold);
}

/* Hamburger / mobile menu */
.ham-li {
  display: none !important;
}
.ham {
  display: none !important;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.ham.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
#mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 11, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  backdrop-filter: blur(20px);
}
#mob-menu.open {
  display: flex;
}
#mob-menu a {
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.4s,
    color 0.3s;
}
#mob-menu.open a {
  opacity: 1;
  transform: none;
}
#mob-menu.open a:nth-child(2) {
  transition-delay: 0.05s;
}
#mob-menu.open a:nth-child(3) {
  transition-delay: 0.1s;
}
#mob-menu.open a:nth-child(4) {
  transition-delay: 0.15s;
}
#mob-menu.open a:nth-child(5) {
  transition-delay: 0.2s;
}
#mob-menu a:hover {
  color: var(--gold);
}
.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2em;
  padding: 8px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .ham-li {
    display: flex !important;
    align-items: center;
  }
  .ham {
    display: flex !important;
  }
  #nav .nb,
  #nav .nr {
    align-self: center;
  }
  .nr {
    align-items: center !important;
    gap: 18px;
  }
  .nr svg {
    display: block;
  }
  .nr li {
    align-items: center;
    line-height: 0;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Home sections */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 68% 18%,
      rgba(14, 22, 40, 0.62),
      transparent 52%
    ),
    radial-gradient(
      ellipse at 22% 78%,
      rgba(11, 42, 34, 0.48),
      transparent 48%
    ),
    #0a0a0b;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 120px 48px 56px;
  row-gap: clamp(24px, 3.5vh, 52px);
}
@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 20px 48px;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-height: 520px) {
  #hero {
    min-height: 0;
    height: auto;
    padding: 80px 20px 48px;
    align-content: start;
  }
}
.hey {
  align-self: end;
  text-align: center;
  padding-bottom: 6px;
  margin-top: -10px;
  transform: translateY(-10px);
}
.ht-wrap {
  overflow: hidden;
  padding-bottom: 40px;
  transform: translateY(-10px);
}
.ht {
  font-family: var(--serif);
  font-size: clamp(52px, 11vw, 210px);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-align: center;
}
.hb {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1060px;
  width: 100%;
  padding-top: 18px;
}
@media (max-width: 768px) {
  .hb {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 12px;
    align-items: stretch;
  }
  .htag {
    order: 1;
    max-width: 100%;
    text-align: center;
    font-size: 15px;
  }
  .ht {
    font-size: clamp(64px, 17vw, 84px);
  }
  .hst {
    display: none !important;
  }
  .hey {
    transform: none;
  }
  .ht-wrap {
    transform: none;
  }
}
.htag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--dim);
  line-height: 1.72;
  max-width: 340px;
}
.hst {
  text-align: right;
}
.hst .sl {
  font-family: var(--mono);
  font-size: 10px;
  display: block;
  margin-bottom: 4px;
}
.hst .sv {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  display: block;
}
.hst .ss {
  font-family: var(--mono);
  font-size: 10px;
  display: block;
  margin-top: 4px;
  color: var(--dim);
}

#mq {
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.mq-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
}
.mq-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 768px) {
  #mq {
    padding: 18px 0;
  }
  .mq-track {
    gap: 32px;
    animation-duration: 20s;
  }
  .mq-track span {
    font-size: 22px;
    gap: 32px;
  }
}

#car {
  position: relative;
  z-index: 5;
  padding: 110px 48px;
}
@media (max-width: 1100px) {
  #car {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  #car {
    padding: 60px 32px;
  }
  .car-in {
    max-width: 420px;
  }
}
#car-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  transition: background 1.1s;
  mix-blend-mode: multiply;
  z-index: -1;
}
.car-in {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 56px;
  align-items: center;
  min-height: 580px;
}
@media (max-width: 1100px) {
  .car-in {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .car-in {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.fp {
  position: relative;
  min-height: 360px;
}
.fi {
  opacity: 0;
  transition: opacity 0.75s var(--ease);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fi.on {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.fn- {
  font-family: var(--serif);
  font-size: clamp(42px, 7.5vw, 112px);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.fd {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 460px;
}
.ft-wrap {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.ft {
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 12px;
  border: 1px solid var(--lines);
  color: var(--ink);
  letter-spacing: 0.15em;
}
.fc {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .fc {
    margin-top: 16px;
  }
  .fd {
    font-size: 16px;
    margin-top: 16px;
  }
  .fp {
    min-height: 300px;
  }
  .fi.on {
    position: absolute;
    inset: 0;
  }
}
.stage-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stage {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .stage {
    max-width: 210px;
  }
  .fn- {
    font-size: clamp(34px, 8vw, 44px);
  }
}
.stage-lbl {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.36em;
  z-index: 10;
  font-weight: 300;
}
.stage-vol {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  z-index: 10;
}
#fi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.9;
  filter: contrast(1.08);
}
#fi-svg {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62%;
  height: auto;
}
#fi-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 1.1s;
}
.car-ctrl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.car-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.car-tab {
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.35;
  transition: opacity 0.32s;
  border-right: 1px solid var(--line);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  color: var(--ink);
  text-align: left;
  letter-spacing: 0.15em;
}
.car-tab:last-child {
  border-right: none;
}
.car-tab.on {
  opacity: 1;
  color: var(--ink);
  background: rgba(201, 162, 75, 0.12);
}
.car-tab .tn {
  font-family: var(--serif);
  font-size: 15px;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 300;
}
.car-nav {
  display: flex;
  gap: 10px;
}
.car-btn {
  width: 48px;
  height: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: background 0.28s, box-shadow 0.28s;
}
.car-btn:hover {
  background: rgba(201, 162, 75, 0.18);
  box-shadow: 0 4px 18px rgba(201, 162, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#gal {
  position: relative;
  z-index: 5;
  padding: 110px 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  #gal {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  #gal {
    padding: 60px 20px;
  }
}
.gal-in {
  max-width: 960px;
  margin: 0 auto;
}
.gal-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 64px;
}
.gal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  align-items: stretch;
  justify-items: center;
}
@media (max-width: 1100px) {
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* Container reveals itself immediately — children animate individually */
  .gal-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: stretch;
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* Card 1: two sq images as one cohesive card.
     Uses .gal-grid .gal-left (spec 0,2,0) to beat the global .gal-left
     rule (spec 0,1,0) that sets grid-template-rows:1fr 1fr / gap:18px
     and appears later in the file. */
  .gal-grid .gal-left {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 4px;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.6s var(--ease),
      transform 0.6s var(--ease);
  }
  /* Remove individual borders/radii — parent card clips them */
  .gal-grid .sq {
    border-radius: 0;
    border: none;
  }
  .gal-grid.in .gal-left {
    opacity: 1;
    transform: translateY(0);
  }
  /* Card 2: square, staggered behind card 1 */
  .tall {
    aspect-ratio: 1/1;
    border-radius: 150px;
    opacity: 0;
    transform: translateY(36px) scale(0.96);
    transition:
      opacity 0.65s 0.22s var(--ease),
      transform 0.65s 0.22s var(--ease);
  }
  .gal-grid.in .tall {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.gal-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.sq {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(201, 162, 75, 0.15);
}
.sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  filter: brightness(0.82);
}
.sq:hover img {
  transform: scale(1.04);
}
.tall {
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(201, 162, 75, 0.15);
}
.tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.75s var(--ease);
  filter: brightness(0.82);
}
.tall:hover img {
  transform: scale(1.04);
}

#col-list {
  max-width: 1380px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.ci {
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition:
    background 0.28s,
    border-color 0.28s;
  cursor: pointer;
}
.ci:hover,
.ci.on {
  background: rgba(201, 162, 75, 0.06);
  border-color: rgba(201, 162, 75, 0.28);
}
.ci-n {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 7px;
  letter-spacing: 0.18em;
}
.ci-t {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
}
.ci-a {
  float: right;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.28s;
  margin-top: -2px;
}
.ci:hover .ci-a,
.ci.on .ci-a {
  opacity: 1;
}

#why {
  position: relative;
  z-index: 5;
  padding: 110px 48px;
}
@media (max-width: 1100px) {
  #why {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  #why {
    padding: 60px 20px;
  }
}
.why-in {
  max-width: 1260px;
  margin: 0 auto;
}
.why-hl {
  font-family: var(--serif);
  font-size: clamp(36px, 5.8vw, 96px);
  font-weight: 300;
  line-height: 1.06;
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 1020px;
  margin: 0 auto 88px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wc {
    padding: 32px 20px;
  }
}
.wc {
  padding: 40px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wc-n {
  font-family: var(--serif);
  font-size: 68px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.wc-t {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  margin-top: 18px;
  margin-bottom: 9px;
}
.wc-b {
  color: var(--dim);
  line-height: 1.8;
  font-size: 14px;
}

#test {
  position: relative;
  z-index: 5;
  padding: 110px 48px;
}
@media (max-width: 1100px) {
  #test {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  #test {
    padding: 60px 20px;
  }
}
.test-in {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.ts {
  position: relative;
  min-height: 290px;
}
.ti {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s,
    transform 0.8s;
  pointer-events: none;
}
.ti.on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.tq {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 18px;
}
.tt {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.45;
  font-weight: 300;
}
@media (max-width: 768px) {
  .tq {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .tt {
    font-size: 16px;
  }
  .tm {
    margin-top: 24px;
    gap: 6px;
  }
  .tn- {
    font-size: 15px;
  }
}
.tm {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tl {
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.tn- {
  font-family: var(--serif);
  font-size: 17px;
  margin-top: 9px;
}
.tr {
  font-family: var(--mono);
  font-size: 10px;
}
.tdots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 44px;
}
.td {
  height: 2px;
  border: none;
  padding: 0;
  background: var(--lines);
  transition:
    width 0.4s,
    background 0.4s;
  cursor: none;
}
.td.on {
  background: var(--gold);
}

#nl {
  position: relative;
  z-index: 5;
  padding: 110px 48px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(11, 42, 34, 0.26),
    rgba(5, 5, 7, 0.78) 66%
  );
  overflow: hidden;
}
@media (max-width: 1100px) {
  #nl {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  #nl {
    padding: 60px 20px;
  }
}
.nl-in {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.nl-div {
  width: 1px;
  height: 68px;
  background: var(--gold);
  margin: 0 auto 40px;
}
.nl-hl {
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .nl-hl {
    font-size: 38px;
  }
}
.nl-sub {
  margin: 26px auto 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.72;
  max-width: 520px;
}
.nl-form {
  display: flex;
  max-width: 500px;
  margin: 52px auto 0;
  align-items: center;
  gap: 12px;
  padding: 5px 12px;
}
@media (max-width: 768px) {
  .nl-form {
    flex-direction: column;
    gap: 14px;
    margin: 40px auto 0;
  }
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  padding: 16px 0;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .nl-form input {
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
  }
}
.nl-form input::placeholder {
  color: var(--muted);
}
.nl-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--gold);
  padding: 13px 18px;
  background: rgba(201, 162, 75, 0.18);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 3px 14px rgba(201, 162, 75, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: none;
  white-space: nowrap;
  transition: background 0.28s, box-shadow 0.28s;
}
@media (max-width: 768px) {
  .nl-btn {
    width: 100%;
    padding: 14px 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.nl-btn:hover {
  background: rgba(201, 162, 75, 0.28);
  box-shadow: 0 4px 20px rgba(201, 162, 75, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nl-ok {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  margin-top: 52px;
  color: var(--gold2);
  animation: fadeUp 0.65s ease both;
}
@media (max-width: 768px) {
  .nl-ok {
    font-size: 18px;
    margin-top: 40px;
  }
}

#ft {
  padding: 90px 48px 52px;
  background: linear-gradient(180deg, #0a0a0b, #050507);
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  #ft {
    padding: 60px 20px 40px;
  }
}
.ft-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 64px;
}
@media (max-width: 1100px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
}
.ft-bn {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: 0.18em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .ft-bn {
    font-size: 32px;
  }
}
.ft-bs {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 0.28em;
  margin-top: 3px;
}
.ft-bc {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 22px;
  color: var(--dim);
  font-size: 18px;
  line-height: 1.62;
  max-width: 350px;
}
.ft-quote-banner {
  display: none;
  text-align: center;
  padding: 28px 0 20px;
  margin-bottom: 28px;
}
.ft-quote-banner p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}
.ft-quote-banner .ft-mono-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  margin-top: 10px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .ft-bc {
    display: none;
  }
  .ft-quote-banner {
    display: block;
  }
}
.ft-ct {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col a {
  font-size: 14px;
  color: var(--dim);
  transition: color 0.26s;
}
.ft-col a:hover {
  color: var(--gold);
}
.ft-bot {
  max-width: 1340px;
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.ft-bot .mono {
  color: var(--muted);
}
.ft-soc {
  display: flex;
  gap: 20px;
  align-items: center;
}
.ft-soc a {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.16em;
  transition: color 0.26s;
  display: inline-flex;
  align-items: center;
}
.ft-soc a:hover {
  color: var(--gold);
}
.ft-wm {
  font-family: var(--serif);
  font-size: clamp(3rem, 9.5vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 52px auto 0;
  background: linear-gradient(
    180deg,
    rgba(237, 231, 217, 0.32) 10%,
    rgba(237, 231, 217, 0.06) 70%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  user-select: none;
  max-width: 100%;
  width: 100%;
  display: block;
  white-space: nowrap;
}
.ft-wm-1,
.ft-wm-2 {
  display: inline;
}

/* ======================
   Site-wide page layouts
   ====================== */
.page-shell,
.post-shell,
.archive-shell,
.search-shell,
.error-shell {
  position: relative;
  z-index: 5;
  padding-top: 110px;
}
.hero-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(52px, 10vh, 120px) clamp(20px, 5vw, 80px)
    clamp(36px, 6vh, 72px);
}
.hero-panel {
  padding: clamp(28px, 4vw, 48px);
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.8;
}
.content-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(80px, 12vh, 140px);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.content-block,
.sidebar-block,
.card-block {
  padding: clamp(24px, 3vw, 36px);
}
.sidebar-stack {
  display: grid;
  gap: 18px;
}
.info-card {
  padding: 22px;
}
.info-card .eyebrow {
  margin-bottom: 12px;
  display: block;
}
.content-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 38px 0 18px;
}
.content-body h2 {
  font-size: clamp(28px, 4.8vw, 52px);
}
.content-body h3 {
  font-size: clamp(22px, 3.5vw, 34px);
}
.content-body p {
  margin: 0 0 18px;
  color: var(--ink);
}
.content-body ul,
.content-body ol {
  margin: 22px 0;
  padding-left: 24px;
}
.content-body li {
  margin: 8px 0;
}
.content-body a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-body blockquote {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 75, 0.06);
  color: var(--dim);
  font-style: italic;
}
.content-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 28px 0;
  border-radius: 15px;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  display: block;
}
.content-body th,
.content-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.content-body th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.section-heading .section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-heading .section-copy {
  max-width: 420px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.75;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lux-card {
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s var(--ease),
    background 0.32s var(--ease);
}
.lux-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 75, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.thumb-frame {
  overflow: hidden;
  border-radius: 15px;
  background: rgba(201, 162, 75, 0.04);
}
.thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.lux-card:hover .thumb-frame img {
  transform: scale(1.05);
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 108px;
  align-self: start;
}
.product-stack {
  display: grid;
  gap: 14px;
}
.product-figure {
  aspect-ratio: 1;
  background: rgba(201, 162, 75, 0.04);
  overflow: hidden;
  border-radius: 15px;
}
.product-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-thumbs .thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
  padding: 0;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}
.product-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.product-meta-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.product-meta-item .label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-meta-item .value {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}
.post-meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.author-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 12px;
}
.author-card img {
  border-radius: 50%;
}
.empty-shell {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(72px, 12vh, 150px) 0;
}
.empty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: relative;
    top: auto;
  }
}
@media (max-width: 768px) {
  .page-shell,
  .post-shell,
  .archive-shell,
  .search-shell,
  .error-shell {
    padding-top: 88px;
  }
  .hero-shell {
    padding: clamp(36px, 8vh, 72px) 18px clamp(28px, 6vh, 52px);
  }
  .content-shell {
    padding: 0 18px clamp(64px, 10vh, 96px);
  }
  .content-block,
  .sidebar-block,
  .card-block {
    padding: 18px;
  }
  .product-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-meta-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    margin-bottom: 24px;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .lux-card {
    padding: 12px;
  }
}

/* Minimal responsive defaults to ensure pages look consistent */
@media (max-width: 1100px) {
  #nav {
    padding: 20px 32px;
  }
  #nav.sc {
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  #nav {
    padding: 16px 18px !important;
    grid-template-columns: auto 1fr auto;
  }
  .nl {
    display: none;
  }
  /* Carousel: show product image above text on mobile */
  .stage-wrap {
    order: -1;
  }
  /* Scrollable product tabs — prevent horizontal overflow */
  .car-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .car-tabs::-webkit-scrollbar {
    display: none;
  }
  .car-tab {
    min-height: 44px;
    flex-shrink: 0;
  }
}
/* WooCommerce related/upsell products: responsive grid on mobile */
@media (max-width: 768px) {
  .related.products ul.products,
  .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .related.products ul.products li.product,
  .upsells.products ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    box-sizing: border-box !important;
  }
}

/* ── Global: all buttons get consistent rounding ── */
button,
.button,
.btn,
.btng,
input[type="submit"],
input[type="button"],
input[type="reset"],
.woocommerce button,
.woocommerce .button,
.woocommerce input[type="submit"],
.woocommerce-Button,
a.button,
.checkout-button,
.single_add_to_cart_button,
.add_to_cart_button,
.wc-forward,
.wp-block-button__link,
.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce-MyAccount-navigation a,
select {
  border-radius: 10px !important;
}

/* Allow page-level overrides */
.page-hero {
  padding: 80px 48px 36px;
  text-align: center;
}
.page-hero .serif {
  font-size: 48px;
  line-height: 1.02;
  font-weight: 300;
}
.page-content {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 24px;
  color: var(--dim);
}

/* End of extracted design tokens (abbreviated) */

/* ==============================
   Premium page-specific overrides
   ============================== */
body.page-about,
body.page-about-premium-fragrances,
body.page-id-28,
body.page-contact,
body.page-id-29,
body.page-cart,
body.page-id-7,
body.woocommerce-cart,
body.post-type-archive-product,
body.woocommerce-shop {
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 75, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(11, 42, 34, 0.18),
      transparent 32%
    ),
    var(--bg);
}

body.page-about .hero-panel,
body.page-about-premium-fragrances .hero-panel,
body.page-id-28 .hero-panel,
body.page-contact .hero-panel,
body.page-id-29 .hero-panel,
body.woocommerce-cart .hero-panel,
body.post-type-archive-product .hero-panel,
body.woocommerce-shop .hero-panel {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.82),
    rgba(10, 10, 11, 0.44)
  );
  border-color: rgba(201, 162, 75, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

body.page-about .hero-title,
body.page-about-premium-fragrances .hero-title,
body.page-id-28 .hero-title,
body.page-contact .hero-title,
body.page-cart .hero-title,
body.page-id-29 .hero-title,
body.page-id-7 .hero-title,
body.woocommerce-cart .hero-title,
body.post-type-archive-product .hero-title,
body.woocommerce-shop .hero-title {
  font-size: clamp(48px, 6.4vw, 92px);
  letter-spacing: -0.04em;
}

body.page-contact .hero-title,
body.page-about .hero-title,
body.page-about-premium-fragrances .hero-title {
  color: var(--ink);
}

body.page-id-28 .hero-title,
body.page-id-29 .hero-title,
body.page-id-7 .hero-title {
  color: var(--ink);
}

body.post-type-archive-product .hero-title,
body.woocommerce-shop .hero-title,
body.woocommerce-cart .hero-title {
  color: var(--gold2);
}

body.page-contact .content-body [class^="kb-row-layout"] > .kt-row-column-wrap,
body.page-contact .content-body [class*="kb-row-layout"] > .kt-row-column-wrap,
body.page-id-29 .content-body [class^="kb-row-layout"] > .kt-row-column-wrap,
body.page-id-29 .content-body [class*="kb-row-layout"] > .kt-row-column-wrap,
body.page-contact .content-body .kt-row-column-wrap,
body.page-id-29 .content-body .kt-row-column-wrap,
body.page-contact .content-body .wp-block-kadence-column,
body.page-id-29 .content-body .wp-block-kadence-column,
body.page-contact .content-body .wp-block-kadence-rowlayout,
body.page-id-29 .content-body .wp-block-kadence-rowlayout {
  background: rgba(10, 10, 11, 0.46) !important;
  border: 1px solid rgba(201, 162, 75, 0.16) !important;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

body.page-contact .content-body .kt-row-layout-overlay,
body.page-contact
  .content-body
  [class^="kb-row-layout"]
  > .kt-row-layout-overlay,
body.page-contact
  .content-body
  [class*="kb-row-layout"]
  > .kt-row-layout-overlay,
body.page-id-29 .content-body .kt-row-layout-overlay,
body.page-id-29 .content-body [class^="kb-row-layout"] > .kt-row-layout-overlay,
body.page-id-29
  .content-body
  [class*="kb-row-layout"]
  > .kt-row-layout-overlay {
  opacity: 0 !important;
  display: none !important;
}

body.page-contact .content-body form,
body.page-id-29 .content-body form,
body.page-contact .content-body .wpforms-form,
body.page-id-29 .content-body .wpforms-form,
body.page-contact .content-body .wpcf7 form,
body.page-id-29 .content-body .wpcf7 form,
body.page-contact .content-body .wp-block-kadence-form,
body.page-id-29 .content-body .wp-block-kadence-form {
  color: var(--ink);
}

body.page-contact .content-body label,
body.page-id-29 .content-body label,
body.page-contact .content-body .wpforms-field-label,
body.page-id-29 .content-body .wpforms-field-label,
body.page-contact .content-body .wpcf7-form-control-wrap,
body.page-id-29 .content-body .wpcf7-form-control-wrap {
  color: var(--ink);
}

body.page-contact .content-body input[type="text"],
body.page-id-29 .content-body input[type="text"],
body.page-contact .content-body input[type="email"],
body.page-id-29 .content-body input[type="email"],
body.page-contact .content-body input[type="tel"],
body.page-id-29 .content-body input[type="tel"],
body.page-contact .content-body input[type="url"],
body.page-id-29 .content-body input[type="url"],
body.page-contact .content-body input[type="password"],
body.page-id-29 .content-body input[type="password"],
body.page-contact .content-body input[type="search"],
body.page-id-29 .content-body input[type="search"],
body.page-contact .content-body textarea,
body.page-id-29 .content-body textarea,
body.page-contact .content-body select,
body.page-id-29 .content-body select,
body.page-contact .content-body .wpforms-field input,
body.page-id-29 .content-body .wpforms-field input,
body.page-contact .content-body .wpforms-field textarea,
body.page-id-29 .content-body .wpforms-field textarea,
body.page-contact .content-body .wpcf7 input,
body.page-id-29 .content-body .wpcf7 input,
body.page-contact .content-body .wpcf7 textarea,
body.page-id-29 .content-body .wpcf7 textarea,
body.page-contact .content-body .wpcf7 select,
body.page-id-29 .content-body .wpcf7 select {
  width: 100%;
  background: #1a1a1a !important;
  color: var(--ink) !important;
  border: 1px solid rgba(201, 162, 75, 0.24) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

body.page-contact .content-body textarea,
body.page-id-29 .content-body textarea,
body.page-contact .content-body .wpforms-field textarea,
body.page-id-29 .content-body .wpforms-field textarea,
body.page-contact .content-body .wpcf7 textarea,
body.page-id-29 .content-body .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

body.page-contact .content-body input::placeholder,
body.page-id-29 .content-body input::placeholder,
body.page-contact .content-body textarea::placeholder,
body.page-id-29 .content-body textarea::placeholder {
  color: rgba(154, 147, 133, 0.86);
}

body.page-contact .content-body input:focus,
body.page-id-29 .content-body input:focus,
body.page-contact .content-body textarea:focus,
body.page-id-29 .content-body textarea:focus,
body.page-contact .content-body select:focus {
  outline: none;
  border-color: rgba(226, 192, 121, 0.58) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}

body.page-contact .content-body .wpforms-submit,
body.page-id-29 .content-body .wpforms-submit,
body.page-contact .content-body .wpcf7-submit,
body.page-id-29 .content-body .wpcf7-submit,
body.page-contact .content-body button[type="submit"],
body.page-id-29 .content-body button[type="submit"],
body.page-contact .content-body input[type="submit"],
body.page-id-29 .content-body input[type="submit"] {
  background: linear-gradient(
    135deg,
    rgba(201, 162, 75, 0.22),
    rgba(226, 192, 121, 0.14)
  ) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  box-shadow:
    0 4px 18px rgba(201, 162, 75, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  color: var(--gold2) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 24px !important;
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.page-about .content-body .wp-block-columns,
body.page-about-premium-fragrances .content-body .wp-block-columns,
body.page-id-28 .content-body .wp-block-columns,
body.page-about .content-body .kt-row-layout-wrap,
body.page-about-premium-fragrances .content-body .kt-row-layout-wrap,
body.page-id-28 .content-body .kt-row-layout-wrap,
body.page-about .content-body .kt-row-column-wrap,
body.page-about-premium-fragrances .content-body .kt-row-column-wrap,
body.page-id-28 .content-body .kt-row-column-wrap {
  gap: 18px;
}

body.page-about .content-body .wp-block-column,
body.page-about-premium-fragrances .content-body .wp-block-column,
body.page-id-28 .content-body .wp-block-column,
body.page-about .content-body .kt-inside-inner-col,
body.page-about-premium-fragrances .content-body .kt-inside-inner-col,
body.page-id-28 .content-body .kt-inside-inner-col,
body.page-about .content-body .wp-block-group,
body.page-about-premium-fragrances .content-body .wp-block-group,
body.page-id-28 .content-body .wp-block-group,
body.page-about .content-body .kt-info-box,
body.page-about-premium-fragrances .content-body .kt-info-box,
body.page-id-28 .content-body .kt-info-box,
body.page-about .content-body [class*="icon-box"],
body.page-id-28 .content-body [class*="icon-box"],
body.page-about-premium-fragrances .content-body [class*="icon-box"] {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

body.page-about .content-body .wp-block-column,
body.page-about-premium-fragrances .content-body .wp-block-column,
body.page-id-28 .content-body .wp-block-column,
body.page-about .content-body .kt-inside-inner-col,
body.page-about-premium-fragrances .content-body .kt-inside-inner-col,
body.page-id-28 .content-body .kt-inside-inner-col,
body.page-about .content-body .wp-block-group,
body.page-about-premium-fragrances .content-body .wp-block-group,
body.page-id-28 .content-body .wp-block-group,
body.page-about .content-body .kt-info-box,
body.page-about-premium-fragrances .content-body .kt-info-box,
body.page-id-28 .content-body .kt-info-box,
body.page-about .content-body [class*="icon-box"],
body.page-id-28 .content-body [class*="icon-box"],
body.page-about-premium-fragrances .content-body [class*="icon-box"] {
  padding: 18px;
}

body.page-about .content-body svg,
body.page-about-premium-fragrances .content-body svg,
body.page-id-28 .content-body svg,
body.page-about .content-body i,
body.page-about-premium-fragrances .content-body i,
body.page-id-28 .content-body i,
body.page-about .content-body .kt-info-box-icon,
body.page-about-premium-fragrances .content-body .kt-info-box-icon,
body.page-id-28 .content-body .kt-info-box-icon,
body.page-about .content-body [class*="icon"],
body.page-id-28 .content-body [class*="icon"],
body.page-about-premium-fragrances .content-body [class*="icon"] {
  color: var(--gold2);
  fill: currentColor;
}

body.post-type-archive-product .archive-shell,
body.woocommerce-shop .archive-shell {
  background:
    radial-gradient(
      circle at top center,
      rgba(76, 18, 28, 0.2),
      transparent 42%
    ),
    radial-gradient(
      circle at 25% 20%,
      rgba(201, 162, 75, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, rgba(10, 10, 11, 0.6), rgba(10, 10, 11, 0.08));
}

body.post-type-archive-product .products,
body.woocommerce-shop .products {
  gap: 18px;
}

body.post-type-archive-product .products .product,
body.woocommerce-shop .products .product {
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(201, 162, 75, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

body.post-type-archive-product
  .products
  .product
  .woocommerce-loop-product__title,
body.woocommerce-shop .products .product .woocommerce-loop-product__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
}

body.post-type-archive-product .woocommerce-result-count,
body.post-type-archive-product .woocommerce-ordering,
body.woocommerce-shop .woocommerce-result-count,
body.woocommerce-shop .woocommerce-ordering {
  color: var(--dim);
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-message {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 75, 0.16);
  border-radius: 12px;
  color: var(--ink);
  padding: 24px 28px;
}

body.woocommerce-cart .cart-empty::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-message::before {
  content: none !important;
  display: none !important;
}

body.woocommerce-cart .cart-empty {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  text-align: center;
}

body.woocommerce-cart .return-to-shop .button,
body.woocommerce-cart a.button,
body.woocommerce-cart button.button,
body.woocommerce-cart input.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: rgba(201, 162, 75, 0.1);
  color: var(--gold2);
  border: 1px solid rgba(201, 162, 75, 0.26);
  border-radius: 10px;
}

/* Only the shipping calculator and sidebar blocks get a glass box —
   cart_totals and woocommerce-cart-form are wrapped by page-cart.php's
   own bordered divs, so giving them a second border creates nesting. */
body.woocommerce-cart .woocommerce-shipping-calculator,
body.woocommerce-cart .widget,
body.woocommerce-cart .sidebar-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 162, 75, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* WooCommerce auto-generates "Cart totals" h2 — we use our own eyebrow heading */
body.woocommerce-cart .cart_totals > h2 {
  display: none !important;
}

/* The collaterals div is empty in page-cart.php (totals are rendered separately) */
body.woocommerce-cart .cart-collaterals {
  display: none !important;
}

body.woocommerce-cart .shop_table th,
body.woocommerce-cart .shop_table td,
body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
  color: var(--ink);
}

body.woocommerce-cart .woocommerce-cart-form__cart-item,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .woocommerce-shipping-totals,
body.woocommerce-cart .woocommerce-shipping-methods li {
  border-color: rgba(201, 162, 75, 0.12);
}

body.woocommerce-cart .widget a,
body.woocommerce-cart .sidebar-block a {
  color: var(--ink);
}

body.woocommerce-cart .widget a:hover,
body.woocommerce-cart .sidebar-block a:hover {
  color: var(--gold2);
}

@media (max-width: 768px) {
  .ft-wm {
    font-size: clamp(4.5rem, 24vw, 8rem);
    white-space: normal;
    padding: 0 4px;
    line-height: 0.92;
  }
  .ft-wm-1,
  .ft-wm-2 {
    display: block;
  }
}
