:root {
  color-scheme: light;
  --bg: #f7f2e8;
  --surface: #fffaf1;
  --panel: #efe5cf;
  --ink: #193526;
  --muted: #6b7566;
  --brand: #416f4b;
  --accent: #d6b75f;
  --accent-2: #f3df9e;
  --border: #d9c58c;
  --hero: linear-gradient(132deg, #416f4b 0%, #f7f2e8 58%, #d6b75f 100%);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(30, 39, 32, .14);
  --max: 1180px;
  font-family: "Avenir Next", "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 30%, color-mix(in srgb, var(--brand) 7%, transparent)),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--accent) 25%, transparent) 1px, transparent 0);
  background-size: 34px 34px;
  opacity: .18;
  z-index: -1;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: #1c1a14;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--bg) 72%, var(--surface));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand), var(--accent));
  border: 3px solid color-mix(in srgb, var(--bg) 72%, var(--surface));
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(20, 24, 18, .08);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--brand);
}

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

.brand-lockup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.brand-lockup small {
  color: var(--muted);
  margin-top: 5px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 80%, var(--muted));
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translateY(-1px);
}

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

.template-switcher,
.language-toggle,
.menu-toggle,
.button,
.price-row a {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--ink);
}

.template-switcher {
  max-width: 190px;
  padding: 10px 12px;
}

.language-toggle,
.menu-toggle {
  min-height: 42px;
  cursor: pointer;
}

.language-toggle {
  padding: 0 16px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  place-items: center;
  gap: 4px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

main {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: clamp(620px, 82vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .88fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 46px 0 44px;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.feature-band h2,
.story-section h2,
.detail-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7.2vw, 7.7rem);
  max-width: 780px;
}

.eyebrow {
  color: var(--brand);
  font-weight: 800;
  margin: 0 0 14px;
}

.hero-text,
.page-hero p,
.feature-band p,
.story-section p,
.detail-summary,
.product-card p,
.video-notes p,
.footer-note {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover,
.price-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--brand) 18%, transparent);
}

.button.primary {
  color: #19170f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button.ghost {
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.stat-strip span {
  min-height: 88px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--border) 56%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 68%, transparent);
}

.stat-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-display {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--panel) 86%, transparent)),
    var(--hero);
  box-shadow: var(--shadow);
}

.hero-display::before,
.hero-display::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent) 62%, transparent);
  transform: rotate(-12deg);
}

.hero-display::before {
  width: 72%;
  height: 72%;
}

.hero-display::after {
  width: 54%;
  height: 54%;
  transform: rotate(18deg);
}

.logo-medallion {
  position: absolute;
  top: 28px;
  inset-inline-start: 28px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  z-index: 2;
}

.logo-medallion img {
  width: 88%;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: min(72%, 390px);
  filter: drop-shadow(0 34px 34px rgba(20, 18, 15, .24));
}

.hero-ticket {
  position: absolute;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(260px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(14px);
}

.hero-ticket small,
.hero-ticket strong,
.hero-ticket span {
  display: block;
}

.hero-ticket small {
  color: var(--muted);
}

.hero-ticket strong {
  margin: 6px 0;
}

.hero-ticket span {
  color: var(--brand);
  font-weight: 900;
}

.hero-extra {
  position: absolute;
  z-index: 2;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(18, 16, 12, .12);
}

.hero-extra-editorial {
  top: 26px;
  inset-inline-end: 28px;
  display: grid;
  gap: 6px;
  min-width: 150px;
  padding: 16px;
  text-transform: uppercase;
}

.hero-extra-editorial span {
  color: var(--accent);
  font-weight: 900;
}

.hero-extra-ritual {
  bottom: 28px;
  inset-inline-start: 28px;
  display: flex;
  gap: 8px;
  padding: 10px;
}

.hero-extra-ritual span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  font-weight: 900;
}

.hero-extra-counter,
.hero-extra-price {
  top: 44%;
  inset-inline-start: 22px;
  width: 170px;
  padding: 16px;
}

.hero-extra-counter small,
.hero-extra-price small,
.hero-extra-counter strong,
.hero-extra-price strong {
  display: block;
}

.hero-extra-counter strong,
.hero-extra-price strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-extra-stack {
  top: 22px;
  inset-inline-end: 22px;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-extra-stack span {
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--surface) 65%, transparent));
}

.hero-extra-stack span:nth-child(2) {
  width: 132px;
}

.hero-extra-script {
  top: 34px;
  inset-inline-end: 30px;
  padding: 14px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  transform: rotate(6deg);
}

.section,
.feature-band,
.story-section,
.testimonial-strip,
.page-hero,
.videos-layout,
.detail-layout,
.catalog-layout {
  margin: clamp(42px, 8vw, 90px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading h2,
.feature-band h2,
.story-section h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  max-width: 760px;
}

.section-heading a {
  color: var(--brand);
  font-weight: 900;
}

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

.product-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 18px 42px rgba(20, 21, 18, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 24px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--panel) 78%, transparent), color-mix(in srgb, var(--surface) 70%, transparent));
}

.product-media span {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--brand);
  font-size: .82rem;
  font-weight: 900;
}

.product-image {
  width: min(78%, 250px);
  aspect-ratio: 1 / 1.22;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(20, 18, 15, .18));
  transition: transform .25s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04) rotate(-1deg);
}

.product-card-body {
  padding: 22px;
}

.product-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.price-row strong,
.detail-price {
  color: var(--brand);
  font-size: 1.15rem;
}

.price-row a {
  padding: 10px 14px;
  font-weight: 900;
  color: #17150e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: var(--hero);
  color: var(--ink);
  overflow: hidden;
}

.feature-band p {
  max-width: 650px;
}

.feature-product {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  text-align: center;
}

.feature-image {
  width: min(300px, 90%);
}

.feature-product strong,
.feature-product span {
  display: block;
}

.feature-product span {
  margin-top: 6px;
  color: var(--brand);
  font-weight: 900;
}

.story-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.story-points span {
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-weight: 800;
}

.testimonial-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-block: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.testimonial-strip blockquote {
  margin: 0;
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.7vw, 2.4rem);
  line-height: 1.22;
}

.page-hero {
  max-width: 900px;
  padding-top: 52px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 6.6rem);
}

.page-hero p {
  max-width: 700px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 108px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.catalog-search {
  display: grid;
  gap: 10px;
}

.catalog-search span {
  color: var(--muted);
  font-weight: 800;
}

.catalog-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
  outline: 0;
}

.catalog-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-chip {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.category-chip.is-active {
  color: #17150e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.catalog-status {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 54%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--muted);
  font-weight: 800;
}

.empty-state {
  padding: 42px;
  border: 1px dashed color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.empty-state h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
}

.filter-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 76%, transparent);
}

.filter-note p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding-top: 42px;
}

.gallery-panel,
.detail-copy {
  min-width: 0;
}

.main-product-frame {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: var(--hero);
  box-shadow: var(--shadow);
}

.detail-image {
  width: min(78%, 430px);
  filter: drop-shadow(0 32px 32px rgba(22, 20, 16, .22));
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumbnail-row img {
  height: 110px;
  width: 100%;
  object-fit: contain;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.detail-copy h1 {
  font-size: clamp(2.7rem, 5.8vw, 6rem);
}

.detail-price {
  display: block;
  margin-top: 18px;
  font-size: 1.65rem;
}

.detail-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--border) 56%, transparent);
}

.detail-block h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.detail-block ul {
  padding-inline-start: 20px;
  line-height: 1.9;
  color: var(--muted);
}

.videos-layout {
  display: grid;
  gap: 28px;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-video-copy {
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.featured-video-copy h2,
.video-library-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.featured-video-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.featured-video-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.video-library-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.video-library-head h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.video-view-controls {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  scroll-margin-top: 110px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 74%, transparent);
}

.video-view-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.video-view-controls button.is-active {
  color: #17150e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.video-grid[data-cols="1"] {
  --video-cols: 1;
}

.video-grid[data-cols="2"] {
  --video-cols: 2;
}

.video-grid[data-cols="3"] {
  --video-cols: 3;
}

.video-grid[data-cols="4"] {
  --video-cols: 4;
}

.video-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  box-shadow: 0 16px 36px rgba(20, 21, 18, .07);
  transition: transform .22s ease, border-color .22s ease;
}

.video-card:hover,
.video-card.is-active {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.video-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .86;
  transition: transform .22s ease, opacity .22s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
  opacity: 1;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
  clip-path: polygon(35% 24%, 35% 76%, 78% 50%);
}

.video-thumb span {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.video-card div {
  padding: 18px;
}

.video-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.video-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.bold-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 790px);
  margin: clamp(34px, 6vw, 70px) 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  border-radius: var(--radius);
  background: var(--hero);
  box-shadow: var(--shadow);
}

.bold-hero h1,
.bold-commerce-panel h2,
.bold-video-promo h2,
.magazine-cover h1,
.wall-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.bold-hero h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 5.2vw, 6rem);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.bold-hero p,
.bold-commerce-panel p,
.bold-video-promo p {
  color: var(--muted);
  line-height: 1.75;
}

.bold-stage-copy,
.video-first-copy,
.museum-copy,
.wall-copy {
  position: relative;
  z-index: 2;
}

.bold-theatre {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 6vw, 70px);
}

.bold-stage-product {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--accent) 18%, transparent), transparent 44%),
    color-mix(in srgb, var(--surface) 68%, transparent);
}

.bold-number {
  position: absolute;
  top: 20px;
  inset-inline-start: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 8rem);
  color: color-mix(in srgb, var(--accent) 42%, transparent);
}

.bold-hero-product {
  position: relative;
  z-index: 2;
  width: min(68%, 390px);
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, .28));
}

.bold-product-caption {
  position: absolute;
  inset-inline-end: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  backdrop-filter: blur(16px);
}

.bold-product-caption strong,
.bold-product-caption span {
  display: block;
}

.bold-product-caption span {
  margin-top: 6px;
  color: var(--brand);
  font-weight: 900;
}

.bold-marquee {
  position: absolute;
  inset-inline: -8%;
  bottom: 26px;
  z-index: 1;
  padding: 12px 0;
  transform: rotate(-2deg);
  background: color-mix(in srgb, var(--accent) 82%, transparent);
  color: #17150e;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.bold-lab {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(24px, 5vw, 60px);
}

.lab-command {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 14px;
  align-items: center;
  max-width: 980px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.lab-command span {
  color: var(--muted);
  font-weight: 800;
}

.lab-command strong {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: end;
}

.lab-product-stack {
  display: grid;
  gap: 12px;
}

.compact-product-chip {
  display: grid;
  grid-template-columns: 76px minmax(0, .55fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  min-width: 0;
  color: var(--ink);
}

.compact-product-chip strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.compact-product-chip span,
.compact-product-chip em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.compact-product-image {
  width: 76px;
  height: 92px;
  object-fit: contain;
}

.bold-video-first {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(0, .9fr);
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 5vw, 60px);
}

.video-poster-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  background: #111;
}

.video-poster-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: .72;
}

.video-poster-card span {
  position: absolute;
  top: 22px;
  inset-inline-start: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 88%, transparent);
  color: #17150e;
  font-weight: 900;
}

.bold-museum {
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(24px, 5vw, 60px);
}

.museum-copy {
  max-width: 900px;
}

.museum-plinths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.museum-plinths article {
  display: grid;
  justify-items: center;
  min-height: 460px;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--panel) 78%, transparent));
  text-align: center;
}

.museum-plinths article:nth-child(2) {
  min-height: 560px;
}

.museum-plinths span {
  justify-self: start;
  color: var(--accent);
  font-weight: 900;
}

.museum-product {
  width: min(78%, 260px);
  align-self: center;
}

.museum-plinths strong,
.museum-plinths em {
  display: block;
}

.museum-plinths em {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.bold-magazine {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 26px;
  align-items: stretch;
  padding: clamp(24px, 5vw, 60px);
}

.magazine-cover {
  display: grid;
  align-content: space-between;
  min-height: 620px;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 84%, transparent), color-mix(in srgb, var(--accent) 28%, transparent));
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
}

.magazine-cover span {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.magazine-cover h1 {
  font-size: clamp(2.4rem, 4.8vw, 5.8rem);
  overflow-wrap: anywhere;
}

.magazine-product {
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 30px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
}

.bold-wall {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(380px, 1.15fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 60px);
}

.wall-copy h1 {
  font-size: clamp(2.45rem, 5vw, 5.9rem);
  overflow-wrap: anywhere;
}

.wall-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bold-commerce-panel,
.bold-video-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin: clamp(42px, 8vw, 90px) 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.bold-commerce-panel h2,
.bold-video-promo h2 {
  max-width: 800px;
  font-size: clamp(1.8rem, 3.8vw, 4.2rem);
}

.video-notes {
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.video-notes h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.fresh-hero {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  margin: clamp(34px, 6vw, 70px) 0;
  padding: clamp(20px, 4vw, 56px);
  min-height: clamp(560px, 76vh, 820px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: var(--radius);
  background: var(--hero);
  box-shadow: var(--shadow);
}

.fresh-hero h1,
.fresh-hero h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

.fresh-hero h1 {
  font-size: clamp(2.35rem, 4.7vw, 5.7rem);
  max-width: 980px;
}

.fresh-hero h2 {
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
}

.fresh-hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.fresh-product-tile {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.fresh-product-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.fresh-product-tile span,
.fresh-product-tile em {
  grid-column: 2;
  color: var(--muted);
  font-size: .86rem;
  font-style: normal;
  font-weight: 850;
}

.fresh-product-tile strong {
  grid-column: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.fresh-product-image {
  grid-row: 1 / span 3;
  width: 70px;
  height: 86px;
  object-fit: contain;
}

.fresh-large-product {
  width: min(74%, 340px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .22));
}

.fake-search {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--border) 74%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-weight: 850;
}

.fresh-20-concierge {
  grid-template-columns: minmax(210px, .66fr) minmax(0, 1fr) minmax(320px, .92fr);
  align-items: stretch;
}

.concierge-panel,
.concierge-copy,
.concierge-results {
  position: relative;
  z-index: 1;
}

.concierge-panel {
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.concierge-panel img {
  width: 112px;
}

.concierge-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.concierge-tabs span {
  padding: 8px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 84%, transparent);
  font-size: .82rem;
  font-weight: 900;
}

.concierge-copy {
  display: grid;
  align-content: center;
}

.concierge-results {
  display: grid;
  align-content: center;
  gap: 12px;
}

.fresh-22-mosaic {
  grid-template-columns: 1.05fr .78fr .72fr;
  grid-template-rows: minmax(180px, .75fr) minmax(220px, 1fr);
}

.fresh-22-mosaic > article {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.mosaic-brand {
  display: grid;
  align-content: end;
  grid-row: span 2;
  padding: clamp(22px, 4vw, 46px);
}

.mosaic-feature {
  display: grid;
  grid-row: span 2;
  place-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.mosaic-feature div,
.mosaic-note {
  display: grid;
  gap: 6px;
}

.mosaic-feature strong,
.mosaic-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
}

.mosaic-mini {
  padding: 12px;
}

.mosaic-mini .fresh-product-tile {
  height: 100%;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.mosaic-mini .fresh-product-image,
.mosaic-mini .fresh-product-tile span,
.mosaic-mini .fresh-product-tile strong,
.mosaic-mini .fresh-product-tile em,
.gift-main .fresh-product-image,
.gift-main span,
.gift-main strong,
.gift-main em,
.campaign-product-wall .fresh-product-image,
.campaign-product-wall .fresh-product-tile span,
.campaign-product-wall .fresh-product-tile strong,
.campaign-product-wall .fresh-product-tile em {
  grid-column: auto;
  grid-row: auto;
}

.mosaic-note {
  align-content: center;
  padding: 22px;
}

.fresh-23-orbit {
  grid-template-columns: minmax(0, .7fr) minmax(480px, 1.3fr);
  align-items: center;
}

.orbit-stage {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: center;
}

.orbit-center {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 480px;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  text-align: center;
}

.orbit-products {
  display: grid;
  gap: 11px;
}

.orbit-products .fresh-product-tile:nth-child(odd) {
  margin-inline-start: 26px;
}

.orbit-products .fresh-product-tile:nth-child(even) {
  margin-inline-end: 26px;
}

.fresh-24-timeline {
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
}

.routine-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.routine-timeline article {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 420px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.routine-timeline span,
.routine-timeline strong {
  color: var(--brand);
  font-weight: 900;
}

.routine-timeline div {
  display: grid;
  place-items: center;
  min-height: 132px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel) 72%, transparent);
}

.fresh-25-desk {
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.05fr) minmax(260px, .7fr);
  align-items: stretch;
}

.editorial-desk-cover,
.editorial-desk-product,
.editorial-desk-list {
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.editorial-desk-cover {
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 4vw, 42px);
}

.editorial-desk-product {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.editorial-desk-list {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px;
}

.editorial-desk-list .fresh-product-tile {
  grid-template-columns: 60px 1fr;
}

.editorial-desk-list .fresh-product-tile span,
.editorial-desk-list .fresh-product-tile em {
  grid-column: 2;
}

.fresh-26-plinth {
  grid-template-rows: auto 1fr;
}

.plinth-copy {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
}

.plinth-copy p:not(.eyebrow) {
  max-width: 480px;
}

.plinth-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.plinth-gallery article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 430px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 8px 8px 56px 56px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--panel) 76%, transparent));
  text-align: center;
}

.plinth-gallery article:nth-child(2) {
  min-height: 500px;
}

.plinth-gallery span {
  justify-self: start;
  color: var(--accent);
  font-weight: 900;
}

.fresh-27-route {
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
}

.ingredient-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ingredient-route::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px dashed color-mix(in srgb, var(--accent) 70%, transparent);
  border-radius: 36px;
}

.route-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 210px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  text-align: center;
  color: var(--ink);
}

.route-node span {
  justify-self: start;
  color: var(--accent);
  font-weight: 900;
}

.fresh-28-clinic {
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
}

.clinic-command,
.clinic-protocols article {
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.clinic-command {
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 4vw, 42px);
}

.clinic-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.clinic-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel) 74%, transparent);
  color: var(--muted);
  font-weight: 800;
}

.clinic-metrics strong {
  color: var(--ink);
  font-size: 1.6rem;
}

.clinic-protocols {
  display: grid;
  gap: 12px;
}

.clinic-protocols article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.clinic-protocols article > span {
  grid-column: 1 / -1;
  color: var(--brand);
  font-weight: 900;
}

.clinic-protocols h2,
.clinic-protocols p {
  grid-column: 1;
}

.clinic-protocols p {
  margin: 0;
}

.clinic-protocols strong {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.fresh-29-gift {
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1.28fr);
  align-items: center;
}

.gift-table {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 34px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.gift-ribbon {
  grid-column: 1 / -1;
  padding: 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #20170c;
  font-weight: 950;
  text-align: center;
}

.gift-main {
  grid-row: span 2;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.gift-main .fresh-product-image {
  width: 140px;
  height: 170px;
}

.fresh-30-flow {
  grid-template-columns: .72fr minmax(280px, .7fr) minmax(320px, .9fr);
  align-items: center;
  color: var(--ink);
}

.flow-copy,
.flow-stage,
.flow-products {
  position: relative;
  z-index: 1;
}

.flow-stage {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 520px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, transparent);
  border-radius: 42% 42% 10px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.18));
}

.flow-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.flow-lines span {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
}

.flow-products {
  display: grid;
  gap: 12px;
}

.fresh-31-shelf {
  grid-template-columns: .58fr 1.42fr;
  align-items: center;
}

.pastel-shelves {
  display: grid;
  gap: 18px;
}

.pastel-shelves > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 8px solid color-mix(in srgb, var(--accent) 46%, transparent);
}

.pastel-shelves > div:nth-child(2) {
  margin-inline-start: 48px;
}

.pastel-shelves > div:nth-child(3) {
  margin-inline-end: 48px;
}

.fresh-32-majlis {
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
  align-items: center;
  direction: rtl;
}

.majlis-copy {
  text-align: right;
}

.majlis-table {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 42px 42px 12px 12px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.majlis-table > div {
  display: grid;
  gap: 12px;
}

.fresh-33-split {
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.split-pane {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 680px;
  padding: clamp(24px, 5vw, 58px);
}

.split-day {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.split-night {
  background: color-mix(in srgb, var(--panel) 84%, transparent);
}

.split-bridge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: min(28vw, 320px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--accent) 62%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.split-bridge .fresh-large-product {
  width: 78%;
}

.fresh-34-motion {
  grid-template-columns: .64fr 1.08fr .48fr;
  align-items: center;
}

.motion-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.motion-wall a {
  display: grid;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  border-radius: 20px;
  background: #111;
  color: #fff;
}

.motion-wall img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: .78;
}

.motion-wall strong {
  padding: 14px;
}

.fresh-35-floating {
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
}

.floating-search-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid color-mix(in srgb, var(--border) 66%, transparent);
  border-radius: 36px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.floating-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.floating-card-stack .fresh-product-tile:nth-child(2n) {
  transform: translateY(18px);
}

.fresh-36-wall {
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  align-items: start;
  color: #fff8e8;
}

.campaign-strip {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(213, 175, 84, .42);
  border-radius: 24px;
  background: rgba(0, 0, 0, .26);
}

.campaign-strip > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 900;
}

.campaign-strip h1 {
  font-size: clamp(2.35rem, 3.7vw, 4.5rem);
  line-height: 1.06;
  max-width: 100%;
}

.campaign-strip p,
.fresh-36-wall .eyebrow {
  color: #f5dfaa;
}

.campaign-product-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.campaign-product-wall .fresh-product-tile {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 210px;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(213, 175, 84, .42);
  color: #fff8e8;
  text-align: center;
}

.campaign-product-wall .fresh-product-tile span,
.campaign-product-wall .fresh-product-tile em {
  color: #f5dfaa;
}

@media (max-width: 1080px) {
  .fresh-20-concierge,
  .fresh-23-orbit,
  .fresh-24-timeline,
  .fresh-25-desk,
  .fresh-27-route,
  .fresh-28-clinic,
  .fresh-29-gift,
  .fresh-30-flow,
  .fresh-31-shelf,
  .fresh-32-majlis,
  .fresh-34-motion,
  .fresh-35-floating,
  .fresh-36-wall {
    grid-template-columns: 1fr;
  }

  .fresh-22-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-brand,
  .mosaic-feature {
    grid-row: auto;
  }

  .fresh-33-split {
    grid-template-columns: 1fr;
  }

  .split-pane {
    min-height: 460px;
  }

  .split-bridge {
    position: static;
    transform: none;
    width: min(360px, 78%);
    margin: -90px auto 24px;
  }
}

@media (max-width: 720px) {
  .fresh-hero {
    min-height: auto;
    padding: 18px;
  }

  .fresh-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.8rem);
  }

  .fresh-product-tile,
  .compact-product-chip,
  .clinic-protocols article {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .fresh-product-tile span,
  .fresh-product-tile em,
  .compact-product-chip span,
  .compact-product-chip em {
    grid-column: 2;
  }

  .fresh-22-mosaic,
  .routine-timeline,
  .plinth-gallery,
  .ingredient-route,
  .clinic-metrics,
  .gift-table,
  .pastel-shelves > div,
  .majlis-table,
  .motion-wall,
  .floating-card-stack,
  .campaign-product-wall,
  .editorial-desk-product {
    grid-template-columns: 1fr;
  }

  .orbit-stage {
    grid-template-columns: 1fr;
  }

  .orbit-center {
    min-height: 360px;
    border-radius: 34px;
  }

  .orbit-products .fresh-product-tile:nth-child(n),
  .pastel-shelves > div:nth-child(n),
  .floating-card-stack .fresh-product-tile:nth-child(n) {
    margin-inline: 0;
    transform: none;
  }

  .plinth-copy {
    display: grid;
  }

  .plinth-gallery article,
  .plinth-gallery article:nth-child(2),
  .flow-stage,
  .split-pane {
    min-height: 340px;
  }
}

.site-footer {
  width: min(calc(100% - 28px), var(--max));
  margin: 80px auto 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.site-footer img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--brand);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid a {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 62%, transparent);
  font-weight: 800;
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: width .18s ease, height .18s ease, border-color .18s ease;
}

body.cursor-ready {
  cursor: none;
}

body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready select,
body.cursor-ready input {
  cursor: none;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-ready.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--brand);
}

[dir="rtl"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

[dir="rtl"] .hero-copy h1,
[dir="rtl"] .page-hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .feature-band h2,
[dir="rtl"] .story-section h2,
[dir="rtl"] .detail-copy h1,
[dir="rtl"] .testimonial-strip blockquote,
[dir="rtl"] .product-card h3,
[dir="rtl"] .video-card h3,
[dir="rtl"] .detail-block h2,
[dir="rtl"] .video-notes h2,
[dir="rtl"] .featured-video-copy h2,
[dir="rtl"] .video-library-head h2 {
  font-family: Georgia, Tahoma, serif;
  line-height: 1.18;
}

[dir="rtl"] .nav-links,
[dir="rtl"] .hero-actions,
[dir="rtl"] .story-points,
[dir="rtl"] .header-actions,
[dir="rtl"] .price-row {
  direction: rtl;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .header-actions {
    justify-self: end;
  }

  .template-switcher {
    max-width: 150px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .detail-layout,
  .featured-video,
  .catalog-layout,
  .story-section,
  .bold-theatre,
  .lab-grid,
  .bold-video-first,
  .bold-magazine,
  .bold-wall {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

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

  .museum-plinths,
  .wall-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid[data-cols] {
    --video-cols: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 18px), var(--max));
    gap: 12px;
    padding: 9px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup span {
    display: none;
  }

  .template-switcher {
    display: none;
  }

  main,
  .site-footer {
    width: min(calc(100% - 18px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
    gap: 28px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: clamp(2.55rem, 16vw, 4.35rem);
  }

  .hero-display,
  .main-product-frame {
    min-height: 440px;
  }

  .stat-strip,
  .product-grid,
  .product-grid.three,
  .video-grid[data-cols],
  .museum-plinths,
  .wall-products,
  .feature-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .video-grid[data-cols] {
    --video-cols: 1;
  }

  .section-heading,
  .testimonial-strip,
  .price-row,
  .video-library-head,
  .bold-commerce-panel,
  .bold-video-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .bold-hero {
    min-height: auto;
  }

  .bold-stage-product,
  .video-poster-card,
  .video-poster-card img,
  .magazine-cover,
  .museum-plinths article {
    min-height: 380px;
  }

  .lab-command,
  .compact-product-chip {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 270px;
  }

  .thumbnail-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
