:root {
  --brown: #7a421c;
  --brown-2: #5f3217;
  --ink: #231815;
  --taupe: #cfc4b1;
  --paper: #f2f2f2;
  --white: #fffaf3;
  --line: rgba(147, 87, 39, 0.18);
  --shadow: 0 24px 80px rgba(147, 87, 39, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

a,
button,
input,
select,
.product-card,
.service-list article,
.ritual-list article,
.quick-links a {
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  --nav-glass: 0;
  --nav-border: 0;
  position: fixed;
  top: 18px;
  left: clamp(14px, 3vw, 38px);
  right: clamp(14px, 3vw, 38px);
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, calc(var(--nav-glass) * 0.18)), rgba(255, 250, 243, calc(var(--nav-glass) * 0.08))),
    rgba(55, 44, 36, calc(var(--nav-glass) * 0.34));
  border: 1px solid rgba(255, 250, 243, calc(var(--nav-border) * 0.18));
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, calc(var(--nav-glass) * 0.14));
  backdrop-filter: blur(calc(var(--nav-glass) * 24px)) saturate(calc(1 + var(--nav-glass) * 0.45));
  -webkit-backdrop-filter: blur(calc(var(--nav-glass) * 24px)) saturate(calc(1 + var(--nav-glass) * 0.45));
  transition:
    background 0.32s ease,
    box-shadow 0.32s ease,
    backdrop-filter 0.32s ease,
    border-color 0.32s ease;
}

.site-header.is-scrolled {
  --nav-border: 1;
}

.brand {
  position: relative;
  display: block;
  width: 174px;
  height: 58px;
}

.brand img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 174px;
  display: block;
  transition: opacity 0.72s ease;
}

.logo-brown {
  opacity: 0;
  filter: brightness(0.72) saturate(1.18) contrast(1.08);
}

.site-header.logo-dark .logo-cream {
  opacity: 0;
}

.site-header.logo-dark .logo-brown {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 250, 243, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.nav a:hover {
  color: #d7ae73;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-btn,
.lang-switch {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(147, 87, 39, 0.2);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255, 250, 243, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.lang-switch {
  width: auto;
  min-width: 40px;
  padding: 0;
  font-weight: 750;
}

.icon-btn:hover,
.lang-switch:hover,
.btn:hover {
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.lang-switch svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #d7ae73;
  color: var(--paper);
  font-size: 11px;
}

.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 238, 200, 0.18), rgba(255, 238, 200, 0.09) 28%, transparent 68%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-dark {
  background:
    linear-gradient(135deg, rgba(255, 239, 205, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(122, 66, 28, 0.72);
  color: var(--paper);
  border-color: rgba(255, 235, 194, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(122, 66, 28, 0.24);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.btn-glass,
.btn-light,
.btn-cream {
  background:
    linear-gradient(135deg, rgba(255, 239, 205, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(122, 66, 28, 0.2);
  color: var(--paper);
  border-color: rgba(255, 235, 194, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(122, 66, 28, 0.18);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.btn.compact {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(7%, 0, 0) scale(1.035);
  will-change: transform;
  transition:
    opacity 1.65s ease,
    transform 3.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-image.is-leaving {
  z-index: 0;
  opacity: 0;
  transform: translate3d(-7%, 0, 0) scale(1.015);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 15, 10, 0.7), rgba(24, 15, 10, 0.34) 42%, rgba(24, 15, 10, 0.12)),
    linear-gradient(180deg, rgba(20, 12, 8, 0.15), rgba(20, 12, 8, 0.08) 38%, rgba(20, 12, 8, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(22px, 8vw, 108px);
  padding: 120px 0 96px;
  min-height: 440px;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-copy-layer {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(760px, 100%);
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition:
    opacity 0.62s ease;
}

.hero-copy-layer.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-copy-layer.is-exiting {
  opacity: 0;
  transform: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin: 0;
  color: var(--brown-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--brown-2);
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero-actions {
  position: absolute;
  left: 0;
  bottom: 106px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .eyebrow,
.hero h1,
.hero-copy {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 8vw, 108px);
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  position: relative;
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 250, 243, 0.38);
  cursor: pointer;
  overflow: hidden;
}

.hero-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--paper);
}

.hero-dots button.is-active::after {
  animation: slide-progress 10s linear forwards;
}

@keyframes slide-progress {
  to {
    width: 100%;
  }
}

.hero-dots button.is-active {
  background: var(--paper);
  background: rgba(255, 250, 243, 0.34);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(215, 174, 115, 0.18);
  border-bottom: 1px solid rgba(215, 174, 115, 0.18);
  background: #15100d;
}

.quick-links a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  border-right: 1px solid rgba(215, 174, 115, 0.16);
}

.quick-links a::before,
.quick-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quick-links a::before {
  background-image: var(--quick-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  filter: brightness(0.86) saturate(0.95) contrast(1.08);
  transform: scale(1.04);
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-links a::after {
  background:
    linear-gradient(90deg, rgba(16, 10, 7, 0.86), rgba(16, 10, 7, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32));
  transition: opacity 0.35s ease;
}

.quick-links a:nth-child(1) {
  --quick-bg: url("./assets/products/oil-01.jpeg");
}

.quick-links a:nth-child(2) {
  --quick-bg: url("./assets/services-bg-v2.png");
}

.quick-links a:nth-child(3) {
  --quick-bg: url("./assets/hero-oil.png");
}

.quick-links a:nth-child(4) {
  --quick-bg: url("./assets/products/oil-02.jpeg");
}

.quick-links a:hover::before {
  opacity: 0.92;
  filter: brightness(1.36) saturate(1.16) contrast(1.02);
  transform: scale(1);
}

.quick-links a:hover::after {
  opacity: 0.62;
}

.quick-links a:hover {
  color: var(--paper);
  background: #251812;
  transform: translateY(-3px);
}

.quick-links span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  color: #f4eadc;
}

.quick-links small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(244, 234, 220, 0.62);
}

.quick-links a:hover small {
  color: rgba(242, 242, 242, 0.84);
}

.section {
  padding: 78px clamp(22px, 5vw, 76px);
}

.services-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(22px, 7vw, 108px);
  overflow: hidden;
  color: var(--paper);
}

.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.services-immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 15, 10, 0.78), rgba(24, 15, 10, 0.36) 46%, rgba(24, 15, 10, 0.08)),
    linear-gradient(180deg, rgba(24, 15, 10, 0.12), rgba(24, 15, 10, 0.8));
}

.services-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.services-copy h2,
.services-copy .eyebrow,
.services-copy p,
.services-copy h3 {
  color: var(--paper);
}

.services-copy > p {
  width: min(560px, 100%);
  line-height: 1.72;
  color: rgba(255, 250, 243, 0.78);
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.service-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  width: min(620px, 100%);
  padding: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(18, 12, 9, 0.64), rgba(78, 50, 34, 0.28)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -18px 36px rgba(255, 255, 255, 0.025),
    0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(1.75) contrast(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(1.75) contrast(1.08);
  transform-origin: center;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.55s ease,
    box-shadow 0.55s ease,
    border-color 0.55s ease;
}

.service-list article::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 20px;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 28%, rgba(255, 255, 255, 0.045) 68%, transparent),
    radial-gradient(circle at 80% 0%, rgba(215, 174, 115, 0.16), transparent 26%);
  opacity: 0.74;
}

.service-list article:hover {
  transform: translateX(6px) scale(1.025);
  border-color: rgba(255, 250, 243, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(26, 17, 12, 0.68), rgba(94, 61, 41, 0.34)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 70px rgba(0, 0, 0, 0.26);
}

.service-list svg {
  width: 24px;
  height: 24px;
  color: #d9b184;
}

.service-list p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.55;
}

.service-list h3 {
  margin-bottom: 6px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-card:hover,
.ritual-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(122, 66, 28, 0.12);
}

.ritual-panel p,
.gift p,
.booking-copy p {
  line-height: 1.72;
  color: rgba(35, 24, 21, 0.68);
}

.booking-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
  padding: 72px clamp(22px, 5vw, 76px);
  background: linear-gradient(135deg, #d8cdbb, #cfc4b1 54%, #eadfce);
}

.shop-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(207, 196, 177, 0.38), transparent 30%),
    linear-gradient(180deg, var(--paper), #ebe4d8 100%);
}

.shop-section h2,
.shop-section .eyebrow {
  color: var(--brown-2);
}

.shop-section .section-head {
  border-bottom: 1px solid rgba(147, 87, 39, 0.14);
  padding-bottom: 28px;
}

.section-copy {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(35, 24, 21, 0.68);
  line-height: 1.62;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: rgba(255, 250, 243, 0.64);
  border: 1px solid rgba(147, 87, 39, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.booking-form .btn {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus {
  outline: 0;
  border-color: rgba(122, 66, 28, 0.55);
  box-shadow: 0 0 0 4px rgba(122, 66, 28, 0.1);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--brown);
  font-size: 13px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(147, 87, 39, 0.18);
  border-radius: var(--radius-sm);
  color: var(--brown-2);
  background: rgba(255, 250, 243, 0.48);
  cursor: pointer;
}

.filter-tabs button:hover {
  background: rgba(147, 87, 39, 0.1);
}

.filter-tabs button.active {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
}

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

.product-card {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.72);
  border-color: rgba(147, 87, 39, 0.16);
  box-shadow: 0 18px 48px rgba(122, 66, 28, 0.08);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.06;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(207, 196, 177, 0.56), transparent 34%),
    linear-gradient(145deg, #fffaf3, #ded2c0);
}

.product-media::before {
  content: none;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 174, 115, 0.24);
  background: rgba(215, 174, 115, 0.06);
}

.product-media i {
  position: absolute;
  width: 44px;
  height: 44px;
  color: var(--brown);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(35, 24, 21, 0.58);
  font-size: 13px;
}

.product-title {
  min-height: 44px;
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 700;
  color: var(--ink);
}

.product-description {
  min-height: 48px;
  margin: 0;
  color: rgba(35, 24, 21, 0.66);
  font-size: 13px;
  line-height: 1.48;
}

.stock-pill {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: rgba(122, 66, 28, 0.1);
  color: var(--brown-2);
  font-size: 12px;
  font-weight: 800;
}

.stock-pill.low {
  background: rgba(194, 137, 55, 0.16);
}

.stock-pill.out {
  background: rgba(130, 48, 36, 0.12);
  color: #823024;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(147, 87, 39, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brown-2);
  background: rgba(255, 250, 243, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.product-buy button,
.product-detail-actions button {
  min-width: 116px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #7a421c;
  color: #f4eadc;
  cursor: pointer;
  font-weight: 800;
}

.product-buy button:disabled,
.product-detail-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(207, 196, 177, 0.42), transparent 30%),
    linear-gradient(180deg, #f2f2f2 0%, #e8dfd2 58%, #231815 100%);
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.product-header img {
  width: 172px;
}

.product-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-header .lang-switch {
  color: var(--brown-2);
  text-shadow: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 6vw, 74px) clamp(20px, 5vw, 72px) 86px;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
  border-radius: var(--radius-lg);
  background: #d8cdbb;
  box-shadow: var(--shadow);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-thumb {
  overflow: hidden;
  aspect-ratio: 1 / 0.8;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.7);
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--brown);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail-copy {
  padding-top: 24px;
}

.product-detail-copy h1 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-detail-copy p {
  color: rgba(35, 24, 21, 0.72);
  line-height: 1.72;
}

.product-detail-price {
  margin: 20px 0;
  color: var(--brown-2);
  font-size: 30px;
  font-weight: 850;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.product-detail-actions .btn {
  min-width: 150px;
}

.product-detail-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.58);
}

.related-products {
  padding: 0 clamp(20px, 5vw, 72px) 90px;
}

.related-products h2 {
  color: #f4eadc;
}

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

.related-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.9);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  display: block;
  object-fit: cover;
}

.related-card div {
  padding: 14px;
}

.rituals {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) 1.12fr;
  gap: 20px;
  padding: 78px clamp(22px, 5vw, 76px) 88px;
  background:
    radial-gradient(circle at 78% 0%, rgba(207, 196, 177, 0.34), transparent 32%),
    linear-gradient(180deg, #ebe4d8, var(--paper));
}

.ritual-panel {
  padding: 48px;
  color: var(--paper);
  background: linear-gradient(135deg, #6c3a1a, #9a633a);
  border-radius: var(--radius-lg);
}

.ritual-panel h2 {
  color: var(--paper);
}

.ritual-panel .eyebrow,
.ritual-panel p {
  color: rgba(255, 250, 243, 0.82);
}

.ritual-list {
  display: grid;
  gap: 14px;
}

.ritual-list article {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.ritual-list strong {
  color: var(--brown-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.ritual-list span {
  margin-top: 8px;
  color: rgba(35, 24, 21, 0.66);
}

.gift {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(22px, 5vw, 76px) 86px;
  padding: 42px;
  background:
    radial-gradient(circle at 86% 20%, rgba(215, 174, 115, 0.24), transparent 34%),
    linear-gradient(135deg, #050403, #15100d 52%, #0b0806);
  color: #f4eadc;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 174, 115, 0.26);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.gift::after {
  content: "VIP";
  position: absolute;
  right: 56px;
  bottom: 34px;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Playfair Display", Georgia, serif;
  font-size: clamp(82px, 14vw, 168px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, rgba(255, 235, 171, 0.54), rgba(194, 137, 55, 0.18) 58%, rgba(92, 58, 23, 0.12));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.5;
  pointer-events: none;
}

.gift > * {
  position: relative;
  z-index: 1;
}

.gift h2 {
  color: #f4eadc;
}

.gift img {
  width: 54px;
  opacity: 0.92;
}

.gift .eyebrow,
.gift p {
  color: rgba(244, 234, 220, 0.78);
}

.gift .eyebrow {
  color: #d7ae73;
}

.gift .btn-cream {
  color: #15100d;
  background: linear-gradient(135deg, #f1d9ab, #d7ae73);
  border-color: rgba(215, 174, 115, 0.45);
  box-shadow: 0 14px 34px rgba(215, 174, 115, 0.18);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--white);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 26px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line p {
  margin: 0 0 6px;
  font-weight: 700;
}

.cart-line span {
  color: rgba(35, 24, 21, 0.62);
  font-size: 13px;
}

.cart-line-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.72);
  color: var(--brown-2);
  cursor: pointer;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: rgba(130, 48, 36, 0.86);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(242, 242, 242, 0.6);
}

.checkout-form[hidden] {
  display: none;
}

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

.payment-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-option {
  min-height: 42px;
  border: 1px dashed rgba(147, 87, 39, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.72);
  color: var(--brown-2);
  cursor: pointer;
  font-weight: 800;
}

.payment-option.is-selected {
  border-style: solid;
  background: var(--brown);
  color: var(--paper);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: rgba(35, 24, 21, 0.66);
}

.footer img {
  width: 154px;
}

.hero-content,
.quick-links,
.section,
.services-immersive,
.booking-band,
.rituals,
.gift {
  animation: fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .nav {
    display: none;
  }

  .services-immersive,
  .booking-band,
  .rituals {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

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

  .booking-form .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    min-height: 64px;
  }

  .brand img {
    width: 138px;
  }

  .header-actions .compact,
  .header-actions .icon-btn:first-of-type {
    display: none;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(24, 15, 10, 0.16), rgba(24, 15, 10, 0.52) 48%, rgba(24, 15, 10, 0.84));
  }

  .hero-content {
    margin: 0 auto;
    padding: 120px 0 68px;
  }

  .hero-dots {
    left: 20px;
    bottom: 28px;
  }

  .quick-links,
  .product-grid,
  .gift {
    grid-template-columns: 1fr;
  }

  .product-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-header-actions,
  .product-detail-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions a,
  .product-buy button,
  .product-detail-actions .btn,
  .related-grid {
    width: 100%;
  }

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

  .checkout-form {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    aspect-ratio: auto;
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .booking-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-immersive {
    min-height: 760px;
    padding: 96px 22px 58px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .gift {
    margin-bottom: 58px;
    padding: 30px;
  }
}
