:root {
  --forest-950: #081d17;
  --forest-900: #0d2b22;
  --forest-800: #143b30;
  --forest-700: #1e4d3f;
  --wine-800: #541722;
  --wine-700: #722437;
  --gold-solid: #c8a96a;
  --gold-700: var(--gold-solid);
  --gold-500: var(--gold-solid);
  --gold-400: var(--gold-solid);
  --gold-300: var(--gold-solid);
  --gold-metal: linear-gradient(110deg, #80632c 0%, #c8a96a 24%, #fff0bd 48%, #c8a96a 70%, #80632c 100%);
  --cream-100: #fbf8f1;
  --cream-200: #f3ede1;
  --stone-300: #dfd6c7;
  --ink: #13241e;
  --muted: #617069;
  --white: #fffdf8;
  --line: rgba(19, 36, 30, 0.15);
  --serif: "Frank Ruhl Libre", Georgia, serif;
  --sans: "Assistant", Arial, sans-serif;
  --shell: min(1280px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 0.74, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

body.menu-open,
body.cart-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

::selection {
  background: var(--wine-700);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.page-progress {
  position: fixed;
  z-index: 140;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), #f6e4b6);
  box-shadow: 0 0 14px rgba(223, 193, 127, 0.8);
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 88px;
  padding: 0 max(34px, calc((100vw - 1480px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.4s var(--ease);
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 29, 23, 0.93);
  border-bottom-color: rgba(223, 193, 127, 0.22);
  box-shadow: 0 18px 60px rgba(2, 15, 11, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(223, 193, 127, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 164, 93, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font: 500 17px/1 var(--serif);
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 1.45vw, 27px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: right;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-switch span {
  opacity: 0.45;
}

.header-cta {
  padding: 10px 17px;
  border: 1px solid rgba(223, 193, 127, 0.75);
  font-size: 12px;
  transition: 0.3s;
}

.header-cta:hover {
  background: var(--gold-500);
  color: var(--forest-950);
}

.menu-button {
  display: none;
  width: 38px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: currentColor;
  transition: 0.3s;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 164, 93, 0.18), transparent 28%),
    var(--forest-950);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-24px);
  transition: 0.45s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu a {
  font: 400 clamp(26px, 7vw, 48px)/1.35 var(--serif);
}

.social-rail {
  position: fixed;
  z-index: 105;
  top: 50%;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid rgba(223, 193, 127, 0.44);
  border-radius: 30px;
  background: rgba(8, 29, 23, 0.72);
  box-shadow: 0 18px 55px rgba(2, 14, 11, 0.22);
  color: var(--gold-300);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-rail > span {
  margin-bottom: 4px;
  font-size: 7px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 193, 127, 0.22);
  border-radius: 50%;
  transition: 0.3s;
}

.social-rail a:hover {
  background: var(--gold-500);
  color: var(--forest-950);
  transform: translateY(-2px);
}

.social-rail svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero video {
  object-fit: cover;
  filter: brightness(1.09) contrast(1.02) saturate(1.02);
  -webkit-filter: brightness(1.09) contrast(1.02) saturate(1.02);
}

.hero-shade {
  background:
    radial-gradient(ellipse at 78% 45%, rgba(5, 20, 15, 0.52), transparent 48%),
    linear-gradient(90deg, rgba(8, 29, 23, 0.2), rgba(8, 29, 23, 0.5) 55%, rgba(8, 29, 23, 0.82)),
    linear-gradient(0deg, rgba(5, 20, 15, 0.54), transparent 52%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(730px, 54vw);
  margin-right: max(8vw, calc((100vw - 1440px) / 2));
  padding-top: clamp(170px, 23vh, 250px);
  text-shadow: 0 2px 20px rgba(3, 14, 10, 0.72);
}

.eyebrow {
  margin: 0 0 19px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.21em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--gold-500);
}

.eyebrow-dark {
  color: var(--wine-700);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.brand-scene-copy h2,
.split-copy h2,
.yayin-copy h2,
.closing-content h2,
.footer-lead h2,
.sticky-title h2,
.experience-intro h2,
.article-toolbar h2,
.contact-form h2,
.contact-aside h3,
.checkout-page h1,
.order-summary h2 {
  margin: 0;
  font: 400 clamp(52px, 6.5vw, 102px)/0.98 var(--serif);
  letter-spacing: -0.035em;
}

.hero h1 em,
.page-hero h1 em,
.section-heading h2 em,
.brand-scene-copy h2 em,
.collection-dark h2 em,
.learning-paths h2 em,
.founders h2 em {
  color: var(--gold-300);
  font-weight: 300;
  font-style: italic;
}

/* Premium metallic gold: intentionally limited to major display accents. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 em,
  .page-hero h1 em,
  .section-heading h2 em,
  .brand-scene-copy h2 em,
  .collection-dark h2 em,
  .learning-paths h2 em,
  .founders h2 em {
    background: var(--gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.button-gold,
.opening-hours > a {
  border-color: var(--gold-700);
  background: var(--gold-metal);
  box-shadow: inset 0 1px 0 rgba(255, 240, 189, 0.55), 0 12px 28px rgba(128, 99, 44, 0.18);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(5, 23, 17, 0.16);
}

.button-cream {
  background: var(--cream-100);
  color: var(--forest-900);
}

.button-cream:hover {
  background: var(--gold-300);
}

.button-forest {
  background: var(--forest-800);
  color: var(--white);
}

.button-gold {
  border-color: var(--gold-700);
  background: var(--gold-metal);
  color: var(--forest-950);
  box-shadow: inset 0 1px 0 rgba(255, 240, 189, 0.55), 0 12px 28px rgba(128, 99, 44, 0.18);
}

.line-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.line-link.light {
  color: rgba(255, 255, 255, 0.86);
}

.sound-toggle {
  position: absolute;
  z-index: 4;
  left: 29px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 10px;
}

.sound-bars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sound-bars i {
  width: 1px;
  height: 6px;
  background: currentColor;
}

.sound-toggle.is-playing .sound-bars i {
  animation: sound 0.7s ease-in-out infinite alternate;
}

.sound-toggle.is-playing .sound-bars i:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.scroll-cue i {
  width: 1px;
  height: 37px;
  margin-top: 7px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}

.living-ribbon {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 max(6vw, calc((100vw - 1280px) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(120deg, var(--wine-800), #7d273a 56%, var(--wine-800));
  background-size: 220% 100%, 100% 100%;
  color: var(--white);
  box-shadow: 0 16px 45px rgba(57, 12, 25, 0.18);
  animation: ribbonLight 5s linear infinite;
}

.ribbon-label {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  font-size: 10px;
}

.living-ribbon strong {
  flex: 1;
  color: #f3e1b9;
  font-weight: 500;
}

.living-ribbon strong::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 5px;
  vertical-align: -2px;
  background: currentColor;
  animation: blink 0.8s steps(2) infinite;
}

.living-ribbon > i {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-style: normal;
  transition: 0.3s;
}

.living-ribbon:hover > i {
  background: var(--cream-100);
  color: var(--wine-800);
  transform: translateX(-4px);
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 160px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-transition {
  position: relative;
}

.section-transition::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 50%;
  width: min(520px, 55vw);
  height: 44px;
  border-top: 1px solid rgba(223, 193, 127, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.brand-reveal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 720px;
  padding: 70px;
  gap: 22px;
  background: var(--forest-950);
}

.brand-scene,
.ad-rotator {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.brand-scene > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s var(--ease);
}

.brand-scene:hover > img {
  transform: scale(1.03);
}

.brand-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 20, 0.84), transparent 66%);
}

.brand-scene-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(36px, 6vw, 90px);
  width: min(470px, 42%);
  color: var(--white);
  transform: translateY(-50%);
}

.brand-scene-copy h2 {
  font-size: clamp(50px, 5vw, 82px);
}

.brand-scene-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.ad-rotator {
  padding: 34px;
  border: 1px solid rgba(223, 193, 127, 0.35);
  background:
    radial-gradient(circle at 50% 10%, rgba(201, 164, 93, 0.15), transparent 30%),
    #102c24;
  color: var(--white);
}

.ad-slide {
  position: absolute;
  inset: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px);
  transition: 0.65s var(--ease);
}

.ad-slide.is-active {
  opacity: 1;
  transform: none;
}

.ad-slide small {
  color: var(--gold-400);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.ad-slide strong {
  margin: 16px 0 8px;
  font: 400 41px/1.08 var(--serif);
}

.ad-slide span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.ad-rotator > a {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: var(--gold-300);
  font-size: 12px;
}

.ad-dots {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
  gap: 6px;
}

.ad-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  background: transparent;
}

.ad-dots button.is-active {
  background: var(--gold-400);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest-800);
  color: var(--white);
}

.stats-band > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-band strong {
  color: var(--gold-400);
  font: 400 54px/1 var(--serif);
}

.stats-band span {
  font-size: 13px;
}

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

.section-heading h2,
.sticky-title h2,
.experience-intro h2,
.article-toolbar h2 {
  font-size: clamp(45px, 5vw, 78px);
}

.section-heading > p,
.experience-intro .section-shell > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}

.worlds {
  background:
    linear-gradient(rgba(19, 36, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 36, 30, 0.025) 1px, transparent 1px),
    var(--cream-100);
  background-size: 72px 72px;
}

.world-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 620px 460px;
  gap: 2px;
  background: var(--forest-800);
}

.world-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.world-tile > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.world-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 23, 17, 0.89), rgba(7, 27, 20, 0.06) 68%);
}

.world-tile:hover > img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.world-tile > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.world-tile > div {
  position: absolute;
  right: 34px;
  bottom: 31px;
  left: 34px;
}

.world-tile small {
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.world-tile h3 {
  margin: 6px 0;
  font: 400 clamp(39px, 4vw, 66px)/1 var(--serif);
}

.world-tile p {
  max-width: 480px;
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.world-tile b {
  color: var(--gold-300);
  font-size: 13px;
}

.magazine-tile img {
  object-position: center 25%;
  object-fit: contain;
  padding: 34px;
  background: #102c24;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
  padding: 0;
  background: var(--cream-200);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 140px);
}

.split-copy > span {
  color: var(--gold-500);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.split-copy h2 {
  margin: 20px 0 27px;
  font-size: clamp(49px, 5.2vw, 82px);
}

.split-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.split-copy ul,
.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.split-copy li,
.check-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.split-copy li::before,
.check-list li::before {
  content: "◆";
  margin-left: 10px;
  color: var(--gold-500);
  font-size: 7px;
}

.price-lockup {
  display: flex;
  align-items: end;
  gap: 17px;
  margin: 12px 0 30px;
}

.price-lockup small,
.price-lockup span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
}

.price-lockup strong {
  color: var(--wine-700);
  font: 500 48px/1 var(--serif);
}

.split-copy .button {
  align-self: flex-start;
}

.split-image {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.split-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-seal {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 29, 23, 0.73);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(10px);
}

.image-seal strong {
  font: 400 42px/1 var(--serif);
}

.image-seal span {
  margin-top: -22px;
  color: var(--gold-300);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.shop-preview {
  background: var(--cream-100);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(290px, 31%);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  scroll-snap-align: start;
  box-shadow: 0 24px 70px rgba(12, 39, 31, 0.06);
}

.product-image {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  background: #16271f;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(223, 193, 127, 0.36);
  transform: scale(0.94);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-copy {
  padding: 26px;
}

.product-copy small {
  color: var(--gold-500);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.product-copy h3 {
  margin: 9px 0 3px;
  font: 500 26px/1.2 var(--serif);
}

.product-copy > span {
  color: var(--muted);
  font-size: 11px;
}

.product-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.product-copy strong {
  font: 500 23px/1 var(--serif);
}

.product-copy button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--wine-700);
  font-size: 12px;
  font-weight: 700;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 43%;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  cursor: pointer;
}

.carousel-arrow.next {
  left: -24px;
}

.carousel-arrow.prev {
  right: -24px;
}

.yayin-feature {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 93, 0.18), transparent 24%),
    var(--forest-950);
  color: var(--white);
}

.yayin-feature::after {
  content: "YAYIN";
  position: absolute;
  top: -120px;
  left: -20px;
  color: rgba(223, 193, 127, 0.045);
  font: 400 290px/1 var(--serif);
  letter-spacing: 0.04em;
  pointer-events: none;
}

.yayin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) 1.2fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.yayin-cover {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(223, 193, 127, 0.58);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 60px 110px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  animation: coverFloat 6s ease-in-out infinite;
  transition: transform 0.25s ease-out;
}

.yayin-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.12) 42%, transparent 60%);
  transform: translateX(-120%);
  animation: coverShine 7s ease-in-out infinite;
  pointer-events: none;
}

.yayin-cover img {
  width: 100%;
  aspect-ratio: 0.706;
  object-fit: cover;
}

.yayin-cover figcaption {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 5px 9px;
  background: rgba(8, 29, 23, 0.7);
  color: var(--gold-300);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.yayin-copy h2 {
  font-size: clamp(70px, 9vw, 145px);
  letter-spacing: 0.03em;
}

.yayin-copy h3 {
  max-width: 760px;
  margin: 10px 0 22px;
  color: var(--gold-300);
  font: 300 clamp(30px, 3vw, 48px)/1.25 var(--serif);
}

.yayin-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.feature-pills span {
  padding: 7px 12px;
  border: 1px solid rgba(223, 193, 127, 0.28);
  color: var(--gold-300);
  font-size: 10px;
}

.knowledge-preview {
  background: var(--cream-200);
}

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

.article-card {
  min-width: 0;
  background: var(--white);
  box-shadow: 0 22px 64px rgba(12, 39, 31, 0.05);
}

.article-image {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.article-card:hover .article-image img {
  transform: scale(1.045);
}

.article-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 9px;
  background: var(--forest-900);
  color: var(--gold-300);
  font-size: 9px;
}

.article-copy {
  padding: 25px;
}

.article-copy small {
  color: var(--muted);
  font-size: 10px;
}

.article-copy h3 {
  margin: 10px 0 8px;
  font: 500 26px/1.25 var(--serif);
}

.article-copy p {
  color: var(--muted);
  font-size: 14px;
}

.article-copy i {
  color: var(--wine-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.page-hero > img,
.page-hero > .page-hero-media,
.page-hero > .page-hero-media img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img,
.page-hero > .page-hero-media img {
  object-fit: cover;
  object-position: center;
}

.page-hero > .page-hero-media {
  display: block;
}

.page-hero.hero-position-left > img {
  object-position: left center;
}

.page-hero.hero-position-bottom > img {
  object-position: center 70%;
}

.page-hero.hero-position-bottom > .page-hero-media img {
  object-position: center 70%;
}

.page-hero-shade {
  background:
    radial-gradient(ellipse at 78% 56%, rgba(5, 20, 15, 0.56), transparent 48%),
    linear-gradient(90deg, rgba(8, 29, 23, 0.18), rgba(8, 29, 23, 0.82)),
    linear-gradient(0deg, rgba(6, 24, 18, 0.78), transparent 58%);
}

.page-hero-copy {
  position: absolute;
  z-index: 2;
  right: max(8vw, calc((100vw - 1280px) / 2));
  bottom: clamp(80px, 11vh, 130px);
  width: min(830px, 66vw);
  text-shadow: 0 2px 20px rgba(3, 14, 10, 0.7);
}

.page-hero h1 {
  font-size: clamp(58px, 7vw, 110px);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.page-hero-index {
  position: absolute;
  left: 28px;
  bottom: 90px;
  font-size: 8px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
}

.sticky-title {
  align-self: start;
  position: sticky;
  top: 125px;
}

.narrative-copy > p,
.about-story .narrative-copy > p {
  margin-top: 0;
  color: var(--muted);
  font: 300 25px/1.7 var(--serif);
}

.timeline {
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 45px 180px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.timeline b {
  color: var(--gold-500);
  font-size: 11px;
}

.timeline h3 {
  margin: 0;
  font: 500 25px/1.2 var(--serif);
}

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

.immersive-image {
  position: relative;
  height: min(78vw, 880px);
  overflow: hidden;
  color: var(--white);
}

.immersive-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 25, 19, 0.78), transparent 65%);
}

.immersive-image > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 9vw;
  transform: translateY(-50%);
}

.immersive-image h2 {
  margin: 0;
  font: 400 clamp(52px, 7vw, 108px)/1 var(--serif);
}

.people-story {
  background: var(--cream-100);
}

.people-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(65px, 9vw, 130px);
  align-items: center;
}

.people-grid > img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
  box-shadow: 28px 28px 0 rgba(201, 164, 93, 0.12);
}

.people-grid h2 {
  margin: 0;
  font: 400 clamp(50px, 5.5vw, 82px)/1 var(--serif);
}

.people-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 35px 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.fact-list li {
  padding: 20px;
  background: var(--cream-100);
}

.fact-list strong,
.fact-list span {
  display: block;
}

.fact-list strong {
  color: var(--wine-700);
  font: 500 37px/1 var(--serif);
}

.fact-list span {
  margin-top: 7px;
  font-size: 11px;
}

.collection-dark,
.learning-paths,
.issue-preview,
.founders,
.more-articles {
  background:
    radial-gradient(circle at 84% 20%, rgba(201, 164, 93, 0.14), transparent 27%),
    var(--forest-950);
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.65);
}

.collection-dark .product-card {
  background: #102c24;
  color: var(--white);
}

.collection-dark .product-copy > span {
  color: rgba(255, 255, 255, 0.56);
}

.experience-intro {
  text-align: center;
}

.experience-intro .section-shell {
  max-width: 900px;
}

.experience-intro .section-shell > p {
  margin: 24px auto 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 680px;
  background: var(--forest-900);
}

.experience-grid article {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.experience-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66);
  transition: 0.9s var(--ease);
}

.experience-grid article:hover img {
  filter: brightness(0.8);
  transform: scale(1.04);
}

.experience-grid article > div {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.experience-grid small {
  color: var(--gold-400);
}

.experience-grid h3 {
  margin: 5px 0;
  font: 400 44px/1.1 var(--serif);
}

.experience-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.hours-section {
  background: var(--cream-200);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.hours-grid h2,
.advertising h2,
.magazine-manifesto h2,
.workshop-list h2,
.advisors h2 {
  margin: 0;
  font: 400 clamp(52px, 5.4vw, 84px)/1.02 var(--serif);
}

.hours-card {
  padding: 42px;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 28px 28px 0 rgba(201, 164, 93, 0.15);
}

.hours-card > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-card span {
  color: var(--gold-300);
  font-size: 12px;
}

.hours-card strong {
  font: 400 29px/1 var(--serif);
}

.hours-card .button {
  margin-top: 30px;
}

.path-grid,
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(223, 193, 127, 0.25);
}

.path-grid a {
  min-height: 300px;
  padding: 35px;
  background: var(--forest-900);
}

.path-grid small,
.offering-grid article > span {
  color: var(--gold-400);
}

.path-grid h3,
.offering-grid h3 {
  margin: 35px 0 10px;
  font: 400 34px/1.2 var(--serif);
}

.path-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.path-grid b {
  color: var(--gold-300);
  font-size: 12px;
}

.offering-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: transparent;
}

.offering-grid article {
  min-height: 330px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.offering-grid h3 {
  margin-top: 22px;
  font-size: 41px;
}

.offering-grid p {
  color: var(--muted);
}

.offering-grid b,
.offering-grid a {
  display: block;
  margin-top: 22px;
  font-size: 12px;
}

.offering-grid a {
  color: var(--wine-700);
  font-weight: 700;
}

.magazine-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) 1.25fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.magazine-manifesto figure {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--gold-500);
  box-shadow: 0 35px 85px rgba(10, 35, 27, 0.16);
}

.magazine-manifesto figcaption {
  padding: 12px 5px 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.magazine-manifesto h2 {
  margin: 12px 0 27px;
}

.magazine-manifesto p {
  color: var(--muted);
  font-size: 18px;
}

.issue-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.issue-topics span {
  padding: 12px 18px;
  border: 1px solid rgba(223, 193, 127, 0.3);
  color: var(--gold-300);
}

.advertising-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.advertising-grid > div:first-child > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.ad-specs {
  border-top: 1px solid var(--line);
}

.ad-specs article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ad-specs strong {
  color: var(--wine-700);
  font: 500 45px/1 var(--serif);
}

.article-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.search-field {
  display: flex;
  align-items: center;
  min-width: 320px;
  border-bottom: 1px solid var(--ink);
}

.search-field input {
  flex: 1;
  padding: 13px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-field i {
  font-style: normal;
}

.article-detail {
  background: var(--cream-100);
}

.article-shell {
  width: min(850px, calc(100vw - 50px));
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.article-meta a {
  margin-right: auto;
  color: var(--wine-700);
}

.article-lead {
  margin: 60px 0;
  color: var(--ink);
  font: 400 clamp(29px, 3vw, 42px)/1.45 var(--serif);
}

.article-detail article section,
.article-detail > .article-shell > section {
  position: relative;
  margin: 60px 0;
  padding-right: 72px;
}

.article-detail section small {
  position: absolute;
  right: 0;
  top: 8px;
  color: var(--gold-500);
}

.article-detail section h2 {
  margin: 0 0 14px;
  font: 500 35px/1.2 var(--serif);
}

.article-detail section p {
  color: var(--muted);
  font-size: 18px;
}

.expert-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  margin-top: 90px;
  padding: 30px;
  background: var(--forest-900);
  color: var(--white);
}

.expert-note img {
  width: 160px;
  height: 190px;
  object-fit: cover;
}

.expert-note span {
  color: var(--gold-300);
  font-size: 11px;
}

.expert-note p {
  font: 300 25px/1.5 var(--serif);
}

.more-articles .section-shell {
  text-align: center;
}

.more-articles h2 {
  margin: 0 0 35px;
  font: 400 68px/1 var(--serif);
}

.shop-notice {
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
  padding: 24px 28px;
  border-right: 3px solid var(--gold-500);
  background: var(--cream-200);
}

.shop-notice p {
  margin: 0;
  color: var(--muted);
}

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

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.founder-grid article {
  padding: 18px;
  border: 1px solid rgba(223, 193, 127, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.founder-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.founder-grid small {
  display: block;
  margin-top: 22px;
  color: var(--gold-400);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.founder-grid h3 {
  margin: 7px 0;
  font: 400 44px/1.1 var(--serif);
}

.founder-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.advisor-grid article {
  padding: 32px;
  border: 1px solid var(--line);
}

.advisor-grid h3 {
  margin: 0;
  font: 500 32px/1.2 var(--serif);
}

.advisor-grid p {
  color: var(--muted);
}

.contact-page {
  background: var(--cream-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.contact-form {
  padding: clamp(35px, 5vw, 70px);
  background: var(--white);
}

.contact-form h2 {
  margin-bottom: 35px;
  font-size: 58px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label,
.checkout-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  font-size: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout-form input,
.checkout-form textarea {
  margin-top: 7px;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
}

.contact-form small {
  display: block;
  margin-top: 17px;
  color: var(--muted);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(38px, 5vw, 70px);
  background: var(--forest-900);
  color: var(--white);
}

.contact-aside h3 {
  font-size: 56px;
}

.contact-aside > a:not(.button) {
  color: var(--gold-300);
  font: 400 25px/1.7 var(--serif);
}

.contact-aside hr {
  width: 100%;
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-aside span,
.contact-aside p {
  color: rgba(255, 255, 255, 0.64);
}

.contact-aside .button {
  margin-top: auto;
}

.checkout-body .site-header {
  background: var(--forest-950);
}

.checkout-page {
  min-height: 100vh;
  padding-top: 150px;
  background: var(--cream-200);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 25px;
}

.checkout-page h1 {
  margin-bottom: 35px;
  font-size: 66px;
}

.checkout-form {
  padding: 45px;
  background: var(--white);
}

.payment-placeholder {
  margin: 25px 0;
  padding: 24px;
  border: 1px solid var(--gold-500);
  background: #fffbef;
}

.payment-placeholder span,
.payment-placeholder strong {
  display: block;
}

.payment-placeholder span {
  color: var(--gold-500);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.payment-placeholder strong {
  margin-top: 5px;
  font: 500 24px/1.2 var(--serif);
}

.payment-placeholder p {
  color: var(--muted);
  font-size: 13px;
}

.order-summary {
  padding: 45px;
  background: var(--forest-900);
  color: var(--white);
}

.order-summary h2 {
  margin-bottom: 30px;
  font-size: 50px;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  inset: 0 0 0 auto;
  width: min(440px, 100vw);
  padding: 45px 35px;
  background: var(--cream-100);
  box-shadow: -35px 0 90px rgba(3, 20, 14, 0.3);
  transform: translateX(110%);
  transition: transform 0.5s var(--ease);
}

.cart-drawer.is-open {
  transform: none;
}

.cart-drawer h2 {
  margin: 0 0 30px;
  font: 400 46px/1 var(--serif);
}

.cart-close {
  position: absolute;
  top: 20px;
  left: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 72px;
  object-fit: cover;
}

.cart-item strong,
.cart-item small {
  display: block;
}

.cart-item small {
  color: var(--muted);
}

.cart-item button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--wine-700);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 23px 0;
  font-size: 18px;
}

.cart-total strong {
  font: 500 29px/1 var(--serif);
}

.cart-checkout {
  width: 100%;
}

.floating-cart {
  position: fixed;
  z-index: 106;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--gold-500);
  border-radius: 30px;
  background: var(--forest-950);
  color: var(--gold-300);
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(3, 20, 14, 0.22);
  font-size: 11px;
}

.floating-cart span {
  display: grid;
  place-items: center;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--forest-950);
}

.closing-cta {
  --cinema-image-brightness: .78;
  --cinema-image-scale: 1.08;
  --cinema-image-shift: 6px;
  --cinema-content-opacity: .72;
  --cinema-content-shift: 34px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.closing-cta > img,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-cta > img {
  object-fit: cover;
  filter: brightness(var(--cinema-image-brightness)) saturate(1.08);
  -webkit-filter: brightness(var(--cinema-image-brightness)) saturate(1.08);
  transform: scale(var(--cinema-image-scale)) translateY(var(--cinema-image-shift));
  will-change: transform, filter;
}

.closing-shade {
  background:
    linear-gradient(180deg, rgba(8, 29, 23, 0.88), rgba(8, 35, 26, 0.58) 42%, rgba(8, 29, 23, 0.94)),
    radial-gradient(circle at 50% 45%, rgba(200, 169, 106, 0.14), transparent 47%);
}

.closing-cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 0;
  width: min(560px, 66vw);
  height: 1px;
  background: var(--gold-metal);
  box-shadow: 0 0 28px rgba(241, 216, 154, 0.42);
  opacity: var(--cinema-progress, 0);
  transform: translateX(50%) scaleX(var(--cinema-progress, 0));
}

.closing-content {
  position: relative;
  z-index: 2;
  opacity: var(--cinema-content-opacity);
  transform: translateY(var(--cinema-content-shift));
  will-change: transform, opacity;
}

.closing-content .eyebrow::before {
  display: none;
}

.closing-content h2 {
  margin: 25px 0 45px;
  font-size: clamp(64px, 8vw, 126px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.footer-scene {
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
}

.footer-scene img,
.footer-scene-shade,
.footer-sign-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-scene img {
  object-fit: cover;
}

.footer-scene-shade {
  background:
    linear-gradient(90deg, rgba(8, 29, 23, 0.72), rgba(8, 29, 23, 0.9)),
    linear-gradient(0deg, var(--forest-950), transparent 68%);
}

.ad-slide {
  display: block;
  isolation: isolate;
}

.ad-slide > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: calc(100% - 72px);
  object-fit: cover;
}

.ad-slide::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 72px;
  background: linear-gradient(0deg, rgba(8,29,23,.94), rgba(8,29,23,.12));
}

.ad-slide > div {
  position: absolute;
  right: 18px;
  bottom: 95px;
  left: 18px;
}

.ad-slide strong,
.ad-slide span {
  display: block;
}

.ad-slide strong {
  font-size: 32px;
}

.footer-sign-mask {
  right: auto;
  left: 0;
  width: 31%;
  background: linear-gradient(90deg, rgba(8, 29, 23, 0.94), rgba(8, 29, 23, 0.2));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.footer-lead {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  width: var(--shell);
  min-height: 520px;
  margin: 0 auto;
  padding: 85px 0 70px;
  align-items: center;
}

.footer-lead h2 {
  font-size: clamp(53px, 6vw, 94px);
}

.footer-lead > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.67);
}

.opening-hours {
  padding-right: 42px;
  border-right: 1px solid rgba(223, 193, 127, 0.33);
}

.opening-hours > span {
  color: var(--gold-400);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.opening-hours > div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.opening-hours small,
.opening-hours strong,
.opening-hours em {
  display: block;
}

.opening-hours small,
.opening-hours em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
}

.opening-hours strong {
  margin: 6px 0;
  color: var(--gold-300);
  font: 400 31px/1 var(--serif);
}

.opening-hours > a {
  display: inline-block;
  margin-top: 23px;
  padding: 12px 17px;
  background: var(--gold-500);
  color: var(--forest-950);
  font-size: 12px;
  font-weight: 700;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;
  width: var(--shell);
  margin: 0 auto;
  padding: 65px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  width: 62px;
  border: 1px solid rgba(223, 193, 127, 0.5);
  border-radius: 50%;
}

.footer-brand strong {
  margin-top: 15px;
  font: 500 23px/1 var(--serif);
  letter-spacing: 0.14em;
}

.footer-brand span,
.footer-brand p {
  color: var(--gold-300);
  font-size: 11px;
}

.footer-grid h3 {
  color: var(--gold-400);
  font: 500 19px/1.2 var(--serif);
}

.footer-grid a,
.footer-grid p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 19px max(36px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.toast {
  position: fixed;
  z-index: 230;
  right: 50%;
  bottom: 25px;
  padding: 13px 19px;
  background: var(--forest-950);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(4, 22, 16, 0.3);
  opacity: 0;
  transform: translate(50%, 25px);
  transition: 0.4s var(--ease);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

.product-marquee {
  direction: ltr;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  padding: 12px 0 35px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.product-marquee::-webkit-scrollbar {
  display: none;
}

.product-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.marquee-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 11px;
  margin: -17px auto 24px;
  padding: 7px 15px;
  color: rgba(255, 253, 248, 0.94);
  background: rgba(8, 29, 23, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 999px;
  box-shadow: 0 7px 24px rgba(3, 17, 13, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.marquee-swipe-hint small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.marquee-swipe-hint span {
  font-size: 20px;
  line-height: 1;
  animation: swipeHint 1.8s ease-in-out infinite;
}

.marquee-swipe-hint span:last-child {
  animation-delay: -0.9s;
}

.product-marquee-track {
  display: flex;
  width: max-content;
}

.product-marquee-group {
  display: flex;
  gap: 20px;
  padding-inline-end: 20px;
}

.product-marquee .product-card {
  direction: rtl;
  width: clamp(285px, 28vw, 365px);
  flex: 0 0 auto;
}

.product-image {
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  cursor: pointer;
  text-align: inherit;
}

.product-image img[src*="/products/"],
.product-image img[src*="bottle-collection"],
.product-image img[src*="yayin-cover"],
.product-image img[src*="/generated/reserve-"] {
  object-fit: contain;
  padding: 30px;
  background: radial-gradient(circle at 50% 42%, #315344, #10251d 65%);
}

.product-view {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(234, 213, 168, 0.65);
  background: rgba(8, 29, 23, 0.78);
  font-size: 11px;
  transform: translateX(50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-copy > p {
  min-height: 74px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.collection-dark .product-copy > p {
  color: rgba(255,255,255,.65);
}

.reserve-showcase {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(35px, 6vw, 85px);
  align-items: center;
  margin: 20px 0 75px;
  padding: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(223, 193, 127, .25);
  background: rgba(255,255,255,.035);
}

.reserve-showcase > img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

@media (min-width: 821px) {
  .reserve-showcase[data-scroll-zoom] {
    overflow: hidden;
  }

  .reserve-showcase[data-scroll-zoom] > img {
    transform: scale(var(--scroll-zoom, 1));
    transition: transform 80ms linear;
    will-change: transform;
  }
}

.reserve-showcase h3 {
  margin: 12px 0 20px;
  color: var(--white);
  font-size: clamp(46px, 5.8vw, 86px);
}

.reserve-showcase h3 em {
  color: var(--gold-300);
  font-weight: 300;
}

.reserve-showcase div > p:not(.eyebrow) {
  color: rgba(255,255,255,.67);
}

.product-modal {
  position: fixed;
  z-index: 300;
  inset: 50% auto auto 50%;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  background: var(--white);
  box-shadow: 0 0 0 100vmax rgba(3, 17, 12, .78), 0 35px 120px rgba(3, 17, 12, .5);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(.97);
  transition: .35s var(--ease);
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close,
.image-lightbox > button {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--forest-950);
  color: var(--white);
  cursor: pointer;
  font-size: 25px;
}

.product-modal-image {
  min-height: 620px;
  background: radial-gradient(circle at 50% 42%, #315344, #10251d 65%);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 45px;
}

.product-modal-copy {
  align-self: center;
  padding: 60px;
}

.product-modal-copy small {
  color: var(--gold-500);
  letter-spacing: .16em;
}

.product-modal-copy h2 {
  margin: 12px 0 4px;
  font-size: clamp(42px, 5vw, 72px);
}

.product-modal-copy > span,
.product-modal-copy > p {
  color: var(--muted);
}

.product-modal-price {
  margin: 30px 0;
  color: var(--wine-700);
  font: 500 38px/1 var(--serif);
}

.product-modal-copy .button {
  margin: 0 0 12px;
}

.product-transparency {
  margin-top: 24px;
  font-size: 11px;
}

.services-depth {
  background: var(--cream-200);
}

.service-links,
.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-links a,
.service-matrix article {
  min-height: 330px;
  padding: 42px;
  background: var(--white);
  transition: .45s var(--ease);
}

.service-links a:hover {
  background: var(--forest-900);
  color: var(--white);
  transform: translateY(-8px);
}

.service-links small,
.service-matrix span {
  color: var(--gold-500);
}

.service-links h3,
.service-matrix h3 {
  margin: 60px 0 14px;
  font: 500 31px/1.2 var(--serif);
}

.service-links p,
.service-matrix p {
  color: var(--muted);
}

.service-links a:hover p {
  color: rgba(255,255,255,.65);
}

.service-links b {
  color: var(--wine-700);
  font-size: 12px;
}

.media-story,
.testimonials,
.consulting-services {
  background:
    radial-gradient(circle at 15% 25%, rgba(201,164,93,.16), transparent 28%),
    var(--forest-950);
  color: var(--white);
}

.media-story-grid,
.podcast-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.media-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.67);
  font-size: 18px;
}

.media-collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.media-collage button,
.gallery-grid button,
.experience-grid button {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0b231b;
  color: var(--white);
  cursor: pointer;
  text-align: right;
}

.media-collage button:first-child {
  grid-row: span 2;
}

.media-collage img,
.gallery-grid img,
.experience-grid button > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.media-collage button:hover img,
.gallery-grid button:hover img,
.experience-grid button:hover > img {
  transform: scale(1.035);
}

.media-collage span,
.gallery-grid span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 6px 10px;
  background: rgba(8,29,23,.8);
  color: var(--gold-300);
  font-size: 11px;
}

.podcast-visual {
  position: relative;
}

.podcast-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.podcast-embed {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 164, 93, 0.28);
  background: var(--forest-950);
  box-shadow: 0 28px 80px rgba(7, 27, 20, 0.18);
}

.podcast-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-play {
  position: absolute;
  right: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 1;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  background: rgba(8,29,23,.77);
  color: var(--gold-300);
  transform: translate(50%,-50%);
}

.testimonial-marquee {
  overflow: hidden;
  direction: ltr;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialFlow 48s linear infinite;
  will-change: transform;
}

.testimonial-track article {
  direction: rtl;
  width: 315px;
  flex: 0 0 auto;
  padding: 35px;
  border: 1px solid rgba(223,193,127,.24);
  background: rgba(255,255,255,.04);
}

.testimonial-track img {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(.82);
}

.testimonial-track blockquote {
  margin: 36px 0;
  font: 300 27px/1.45 var(--serif);
}

.testimonial-track small {
  color: rgba(255,255,255,.55);
}

.no-image-house > img {
  display: none;
}

.no-image-house {
  background:
    radial-gradient(circle at 18% 30%, rgba(201,164,93,.18), transparent 28%),
    linear-gradient(120deg, #071b15, #173c30 70%, #541722);
}

.no-image-house::before {
  content: "WINE · TABLE · CULTURE";
  position: absolute;
  left: -3vw;
  bottom: 8vh;
  color: rgba(255,255,255,.045);
  font: 500 clamp(75px, 12vw, 190px)/.8 var(--serif);
  letter-spacing: .05em;
  white-space: nowrap;
}

.experience-intro .section-shell > p {
  max-width: 760px;
  color: var(--muted);
  font: 300 22px/1.7 var(--serif);
}

.experience-intro {
  text-align: center;
}

.experience-intro .section-shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.experience-intro .section-shell > p:not(.eyebrow) {
  margin-inline: auto;
}

.experience-grid button > img {
  transform: scale(.91);
}

.experience-grid button:hover > img {
  transform: scale(.945);
}

.shop-page .shop-grid .product-card:first-child {
  grid-column: 1 / -1;
}

.shop-page .shop-grid .product-card:first-child .product-image {
  height: clamp(430px, 48vw, 680px);
}

.shop-page .shop-grid .product-card:first-child .product-image img {
  object-fit: contain;
  padding: clamp(12px, 2.4vw, 32px);
}

@keyframes testimonialFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.wine-house-photo-hero > img {
  object-position: center 48%;
}

.experience-grid button > img {
  object-position: center 35%;
}

.experience-grid button:nth-child(2) > img {
  object-position: center 60%;
}

.experience-grid button > div {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(0deg, rgba(5,20,15,.94), transparent);
}

.experience-grid button b {
  color: var(--gold-300);
  font-size: 11px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 14px;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(6) {
  grid-row: span 2;
}

.gallery-video-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 70px;
  padding: 45px;
  background: var(--forest-950);
  color: var(--white);
}

.service-matrix {
  grid-template-columns: repeat(3, 1fr);
}

.consulting-services .service-matrix article {
  background: rgba(255,255,255,.045);
}

.consulting-services .service-matrix p {
  color: rgba(255,255,255,.62);
}

.course-curriculum .service-matrix article {
  background: var(--white);
}

.founder-grid article:nth-child(2) img {
  object-position: center 54%;
  transform: scale(1.035);
}

.image-lightbox {
  position: fixed;
  z-index: 310;
  inset: 50% auto auto 50%;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-48%);
  transition: .35s var(--ease);
  box-shadow: 0 0 0 100vmax rgba(3, 17, 12, .84), 0 35px 120px rgba(3,17,12,.5);
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%);
}

.image-lightbox figure {
  margin: 0;
  background: var(--forest-950);
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100svh - 110px);
  object-fit: contain;
}

.image-lightbox.has-copy img {
  max-height: calc(100svh - 230px);
}

.image-lightbox figcaption {
  padding: 16px 22px;
  color: var(--gold-300);
}

.image-lightbox figcaption strong {
  display: block;
  font: 500 24px/1.25 var(--serif);
}

.image-lightbox figcaption p {
  max-width: 900px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: min(650px, calc(100vw - 40px));
  margin: 30px auto 18px;
}

.newsletter-form label {
  flex: 1;
}

.newsletter-form input {
  width: 100%;
  height: 100%;
  min-height: 51px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.42);
  outline: 0;
  background: rgba(5,24,18,.45);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.62);
}

.closing-content > p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.footer-scene-shade {
  background:
    linear-gradient(90deg, rgba(8, 29, 23, 0.2), rgba(8, 29, 23, 0.55)),
    linear-gradient(0deg, var(--forest-950), transparent 68%);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Above-the-fold copy must never wait for JavaScript or a slow font request. */
.hero-copy .reveal,
.page-hero-copy.reveal {
  opacity: 1;
  transform: none;
}

[hidden] {
  display: none !important;
}

@keyframes sound {
  to { height: 14px; }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes ribbonLight {
  to { background-position: -220% 0, 0 0; }
}

@keyframes coverFloat {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-13px) rotate(0.5deg); }
}

@keyframes coverShine {
  0%, 35% { transform: translateX(-120%); }
  65%, 100% { transform: translateX(120%); }
}

@keyframes swipeHint {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2px); }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 46px, 1100px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .brand-reveal { grid-template-columns: 1fr; padding: 35px; }
  .brand-scene { min-height: 650px; }
  .ad-rotator { min-height: 280px; }
  .ad-slide { justify-content: flex-start; padding-top: 20px; }
  .article-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track { grid-auto-columns: minmax(300px, 45%); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 34px); }
  html { scroll-padding-top: 72px; }
  body { font-size: 16px; padding-bottom: env(safe-area-inset-bottom); }
  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: calc(72px + env(safe-area-inset-top));
    min-height: calc(72px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) max(17px, env(safe-area-inset-right)) 0 max(17px, env(safe-area-inset-left));
  }
  .contact-page-body .site-header.is-scrolled {
    background: rgba(8, 29, 23, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    backface-visibility: visible;
  }
  .contact-page-body {
    overflow-x: clip;
  }
  .contact-page-body .site-header,
  .contact-page-body .site-header.is-scrolled {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    isolation: isolate;
  }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .brand-mark { width: 38px; }
  .language-switch, .header-cta { display: none; }
  .social-rail { left: 8px; transform: translateY(-50%) scale(0.86); }
  .hero-copy { width: calc(100vw - 52px); margin: 0 26px; padding-top: 27svh; }
  .hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .sound-toggle { left: 15px; }
  .scroll-cue { right: calc(50% - 12px); }
  .living-ribbon { padding: 10px 18px; min-height: 68px; }
  .living-ribbon strong { font-size: 13px; }
  .brand-reveal { padding: 17px; }
  .brand-scene { min-height: 620px; }
  .brand-scene-copy { top: auto; right: 24px; bottom: 28px; left: 24px; width: auto; transform: none; }
  .brand-scene::after { background: linear-gradient(0deg, rgba(7, 27, 20, 0.92), transparent 70%); }
  .stats-band { grid-template-columns: 1fr; }
  .stats-band > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section-heading, .article-toolbar { align-items: flex-start; flex-direction: column; }
  .world-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 560px); }
  .split-feature, .two-col, .people-grid, .hours-grid, .magazine-manifesto-grid, .advertising-grid, .contact-grid, .checkout-grid, .footer-lead { grid-template-columns: 1fr; }
  .split-image { min-height: 570px; }
  .split-copy { padding: 70px 25px; }
  .yayin-grid { grid-template-columns: 1fr; }
  .yayin-cover { width: min(88vw, 470px); margin: 0 auto; }
  .yayin-feature::after { font-size: 140px; top: -35px; }
  .carousel-track { grid-auto-columns: 82%; }
  .product-marquee { width: 100vw; margin-right: calc((100vw - var(--shell)) / -2); }
  .product-marquee .product-card { width: 285px; }
  .marquee-swipe-hint {
    gap: 13px;
    margin-top: -15px;
    padding: 9px 17px;
    color: #fffdf8;
    background: rgba(8, 29, 23, 0.9);
    border-color: rgba(255, 253, 248, 0.72);
    box-shadow: 0 9px 28px rgba(3, 17, 13, 0.32);
  }
  .marquee-swipe-hint small { font-size: 12px; }
  .marquee-swipe-hint span { font-size: 23px; }
  .product-image { height: 350px; }
  .product-copy { padding: 22px; }
  .product-copy > p { min-height: 0; }
  .product-modal { grid-template-columns: 1fr; width: calc(100vw - 20px); max-height: calc(100svh - 20px - env(safe-area-inset-top)); }
  .product-modal-image { min-height: 330px; }
  .product-modal-image img { padding: 28px; }
  .product-modal-copy { padding: 30px 22px calc(30px + env(safe-area-inset-bottom)); }
  .product-modal-close { top: 12px; left: 12px; }
  .service-links, .service-matrix, .media-story-grid, .podcast-grid { grid-template-columns: 1fr; }
  .reserve-showcase { grid-template-columns: 1fr; }
  .service-links a, .service-matrix article { min-height: 250px; padding: 30px; }
  .service-links h3, .service-matrix h3 { margin-top: 35px; }
  .media-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 210px; }
  .media-collage button:first-child { grid-column: span 2; grid-row: auto; }
  .podcast-visual { grid-row: 1; }
  .podcast-visual img { height: 450px; }
  .testimonial-track { animation-duration: 48s; }
  .testimonial-track article { width: 285px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .gallery-grid button:nth-child(1), .gallery-grid button:nth-child(6) { grid-row: auto; }
  .gallery-video-cta { align-items: flex-start; flex-direction: column; padding: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-height: 54px; }
  .newsletter-form .button { width: 100%; }
  .closing-content h2 { margin-bottom: 22px; }
  .image-lightbox { width: calc(100vw - 20px); }
  .article-grid, .shop-grid, .experience-grid, .path-grid, .offering-grid, .founder-grid, .advisor-grid { grid-template-columns: 1fr; }
  .experience-grid { min-height: 0; }
  .experience-grid article { height: 570px; }
  .page-hero { min-height: 76svh; }
  .page-hero > .page-hero-media img { object-position: center 70%; }
  .page-hero-copy { right: 24px; bottom: 70px; width: calc(100vw - 48px); }
  .magazine-page-body .page-hero-copy { bottom: 104px; }
  .page-hero h1 { font-size: clamp(51px, 14vw, 78px); }
  .shop-page .shop-grid .product-card:first-child .product-image { height: 390px; }
  .sticky-title { position: static; }
  .timeline article { grid-template-columns: 35px 1fr; }
  .timeline p { grid-column: 2; }
  .immersive-image { height: 680px; }
  .immersive-image > img { transform: scale(1.9); transform-origin: center bottom; }
  .immersive-image > div { right: 28px; left: 28px; }
  .fact-list { grid-template-columns: 1fr; }
  .founder-grid img { height: 460px; }
  .search-field { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-lead { gap: 35px; }
  .opening-hours { padding: 30px 0 0; border-top: 1px solid rgba(223,193,127,.3); border-right: 0; }
  .footer-scene { height: 760px; }
  .footer-lead { min-height: 760px; padding: 75px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: center; flex-direction: column; text-align: center; }
  .closing-cta { min-height: 540px; }
  .expert-note { grid-template-columns: 95px 1fr; padding: 20px; }
  .expert-note img { width: 95px; height: 125px; }
}

@media (max-width: 820px) {
  .magazine-manifesto ~ * { min-width: 0; }
  .page-hero:has(+ .magazine-manifesto) .page-hero-index { display: none; }

  .masterclass.split-feature {
    display: grid;
    grid-template-columns: 1fr;
  }

  .masterclass .split-copy { display: contents; }
  .masterclass-intro { order: 1; padding: 62px 25px 28px; background: var(--cream-100); }
  .masterclass .split-image { order: 2; grid-row: auto; min-height: 500px; }
  .masterclass-details { order: 3; padding: 34px 25px 70px; background: var(--cream-100); }

  .image-lightbox figcaption {
    max-height: 34svh;
    overflow-y: auto;
    padding: 14px 18px calc(16px + env(safe-area-inset-bottom));
  }

  .image-lightbox figcaption strong { font-size: 21px; }
  .image-lightbox figcaption p { font-size: 14px; line-height: 1.55; }
}

/* V9.2 responsive calibration: restore the original cinematic proportions
   and keep important subjects visible without globally enlarging imagery. */
.hero h1 {
  font-size: clamp(48px, 5.8vw, 90px);
}

.page-hero {
  min-height: 82svh;
}

.page-hero h1 {
  font-size: clamp(50px, 6.1vw, 94px);
}

.contact-page-body .page-hero > img {
  object-position: center 62%;
}

.contact-page-body .page-hero-shade {
  background:
    radial-gradient(ellipse at 77% 56%, rgba(5, 20, 15, 0.28), transparent 50%),
    linear-gradient(90deg, rgba(8, 29, 23, 0.12), rgba(8, 29, 23, 0.58)),
    linear-gradient(0deg, rgba(6, 24, 18, 0.56), transparent 60%);
}

.gallery-grid span {
  border: 1px solid rgba(240, 220, 174, 0.48);
  background: rgba(7, 27, 20, 0.88);
  color: #fff2cf;
  font-weight: 600;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.founder-grid article:nth-child(2) {
  overflow: hidden;
}

.founder-grid article:nth-child(2) img {
  clip-path: inset(5px 5px 3px 3px);
  transform: scale(1.012);
}

/* The sign is part of the Wine House photograph and must stay below the
   transparent header. Anchoring the source to the top restores that framing. */
.wine-house-photo-hero > img {
  object-position: center top;
}

/* Remove the artificial close-up introduced by cinematic image scaling while
   retaining the same overlays and premium visual treatment. */
.closing-cta {
  --cinema-image-scale: 1;
  --cinema-image-shift: 0px;
}

.opening-hours > span {
  color: #c8a96a;
  -webkit-text-fill-color: #c8a96a;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

@media (max-width: 820px) {
  .hero-copy {
    padding-top: 22svh;
  }

  .hero h1 {
    font-size: clamp(46px, 12.5vw, 64px);
  }

  .page-hero {
    min-height: 78svh;
  }

  .page-hero-copy {
    bottom: 54px;
  }

  .page-hero h1 {
    font-size: clamp(45px, 11.8vw, 64px);
  }

  .contact-page-body .page-hero > img {
    object-position: 82% center;
  }

  .contact-page-body .page-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 20, 15, 0.82), rgba(8, 29, 23, 0.06) 72%);
  }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .founder-grid img {
    height: 430px;
  }

  .wine-house-photo-hero > img {
    object-position: 46% top;
  }

  /* Mobile cards use calmer proportions so portraits and hospitality scenes
     are not cropped as aggressively on narrow screens. */
  .world-mosaic {
    grid-template-rows: repeat(4, min(132vw, 520px));
  }

  .media-collage {
    grid-template-rows: 330px 200px;
  }

  .product-image {
    height: min(92vw, 360px);
  }

  .article-image {
    height: min(70vw, 280px);
  }

  .gallery-grid {
    grid-auto-rows: min(96vw, 360px);
  }

  .experience-grid article {
    height: min(132vw, 520px);
  }

  .podcast-visual img {
    height: min(118vw, 460px);
  }
}

@media (max-width: 380px) {
  :root { --shell: calc(100vw - 28px); }

  .site-header {
    padding-inline: max(14px, env(safe-area-inset-left));
  }

  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 7px; }
  .brand-mark { width: 35px; }

  .hero-copy,
  .page-hero-copy {
    right: 18px;
    width: calc(100vw - 36px);
    margin-inline: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .section { padding-block: 76px; }
  .split-copy { padding-inline: 20px; }
  .service-links a,
  .service-matrix article { padding: 24px; }
  .founder-grid img { height: 400px; }
  .floating-cart { left: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/*
 * SADAFRONIA unified metallic-gold system.
 *
 * The transparent inline padding is intentional: italic Hebrew/Latin glyphs
 * can overhang their text box on the visual right edge.  Without this room,
 * background-clipped text appears to lose the edge of letters in RTL layouts.
 */
:is(
  .hero h1 em,
  .page-hero h1 em,
  .section-heading h2 em,
  .brand-scene-copy h2 em,
  .collection-dark h2 em,
  .learning-paths h2 em,
  .founders h2 em,
  .reserve-showcase h3 em,
  .stats-band strong,
  .ad-slide small,
  .ad-rotator > a,
  .world-tile > span,
  .world-tile small,
  .world-tile b,
  .split-copy > span,
  .image-seal span,
  .product-copy small,
  .product-copy strong,
  .product-modal-copy small,
  .product-modal-price,
  .price-lockup strong,
  .yayin-cover figcaption,
  .yayin-copy h3,
  .feature-pills span,
  .article-image span,
  .timeline b,
  .experience-grid small,
  .experience-grid button b,
  .hours-card span,
  .path-grid small,
  .path-grid b,
  .offering-grid article > span,
  .issue-topics span,
  .article-detail section small,
  .expert-note span,
  .founder-grid small,
  .contact-aside > a:not(.button),
  .payment-placeholder span,
  .opening-hours > span,
  .opening-hours strong,
  .footer-brand span,
  .footer-brand p,
  .footer-grid h3,
  .footer-grid a:hover,
  .service-links small,
  .service-matrix span,
  .media-collage span,
  .gallery-grid span,
  .image-lightbox figcaption
) {
  color: var(--gold-400);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  :is(
    .hero h1 em,
    .page-hero h1 em,
    .section-heading h2 em,
    .brand-scene-copy h2 em,
    .collection-dark h2 em,
    .learning-paths h2 em,
    .founders h2 em,
    .reserve-showcase h3 em,
    .stats-band strong,
    .ad-slide small,
    .ad-rotator > a,
    .world-tile > span,
    .world-tile small,
    .world-tile b,
    .split-copy > span,
    .image-seal span,
    .product-copy small,
    .product-copy strong,
    .product-modal-copy small,
    .product-modal-price,
    .price-lockup strong,
    .yayin-cover figcaption,
    .yayin-copy h3,
    .feature-pills span,
    .article-image span,
    .timeline b,
    .experience-grid small,
    .experience-grid button b,
    .hours-card span,
    .path-grid small,
    .path-grid b,
    .offering-grid article > span,
    .issue-topics span,
    .article-detail section small,
    .expert-note span,
    .founder-grid small,
    .contact-aside > a:not(.button),
    .payment-placeholder span,
    .opening-hours > span,
    .opening-hours strong,
    .footer-brand span,
    .footer-brand p,
    .footer-grid h3,
    .footer-grid a:hover,
    .service-links small,
    .service-matrix span,
    .media-collage span,
    .gallery-grid span,
    .image-lightbox figcaption
  ) {
    background-image: var(--gold-metal);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  /* Extra room for italic display type, where glyph overhang is largest. */
  :is(
    .hero h1 em,
    .page-hero h1 em,
    .section-heading h2 em,
    .brand-scene-copy h2 em,
    .collection-dark h2 em,
    .learning-paths h2 em,
    .founders h2 em,
    .reserve-showcase h3 em
  ) {
    display: inline-block;
    max-width: 100%;
    padding-inline: 0.2em;
    margin-inline: -0.2em;
    overflow: visible;
  }
}

/*
 * Product prices on the light home/shop surfaces keep the gold identity but
 * use a calm solid tone, without the bright metallic highlight.  The winery
 * page intentionally keeps the full metallic treatment against its dark
 * background.
 */
:is(.home-page, .shop-page-body, .academy-page) :is(
  .product-copy strong,
  .product-modal-price,
  .price-lockup strong
) {
  color: var(--gold-solid);
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--gold-solid);
  text-shadow: none;
  filter: none;
}

/*
 * On the light home/shop surfaces, restore the original dark-green product
 * names.  Only the small English collection label above them stays gold.
 */
:is(.home-page, .shop-page-body) :is(
  .product-copy h3,
  .product-modal-copy h2
) {
  color: var(--ink);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--ink);
  text-shadow: none;
  filter: none;
}

/* Gold remains, but without the bright metallic streak on light cards. */
:is(.home-page, .shop-page-body) :is(
  .product-copy small,
  .product-modal-copy small
) {
  color: var(--gold-solid);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--gold-solid);
  text-shadow: none;
  filter: none;
}

/* The footer label must stay readable over the vineyard photograph. */
.opening-hours > span {
  color: #d9c08a;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #d9c08a;
  opacity: 1;
  text-shadow: none;
  filter: none;
}

/* Restore the two-tone professional-services statement from the approved design. */
.home-page .services-depth .section-heading h2 {
  color: var(--ink);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--ink);
  text-shadow: none;
  filter: none;
}

.home-page .services-depth .section-heading h2 em {
  color: var(--gold-solid);
  background-image: linear-gradient(110deg, #80632c 0%, #c8a96a 32%, #ddc486 52%, #c8a96a 72%, #80632c 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
}

/* Solid details use the middle tone of the same metallic palette. */
.eyebrow::before,
.page-progress span,
.ad-dots button.is-active,
.closing-cta::after {
  background: var(--gold-metal);
}

:is(
  .brand-mark,
  .menu-button,
  .social-rail a,
  .ad-dots button,
  .image-seal,
  .feature-pills span,
  .carousel-arrow,
  .product-image::after,
  .reserve-showcase,
  .hours-card,
  .path-grid article,
  .offering-grid article,
  .issue-topics span,
  .expert-note,
  .payment-placeholder,
  .footer-brand img,
  .image-lightbox,
  .gallery-video-cta
) {
  border-color: var(--gold-solid);
}

:is(
  .social-rail,
  .site-footer,
  .contact-aside,
  .hours-card,
  .service-links,
  .service-matrix
) svg {
  color: var(--gold-solid);
  stroke: var(--gold-solid);
}

@media (max-width: 820px) {
  .hero-shade {
    background:
      radial-gradient(ellipse at 72% 48%, rgba(5, 20, 15, 0.5), transparent 54%),
      linear-gradient(0deg, rgba(5, 20, 15, 0.84), rgba(8, 29, 23, 0.18) 72%);
  }

  .page-hero-shade {
    background:
      radial-gradient(ellipse at 70% 72%, rgba(5, 20, 15, 0.58), transparent 58%),
      linear-gradient(0deg, rgba(5, 20, 15, 0.88), rgba(8, 29, 23, 0.14) 70%);
  }
}

/* V9.3 hero refinement
   Keep the original premium framing while lifting the overly dark right side.
   The Wine House uses a small, top-anchored enlargement so its photographed
   sign remains visible below the header while the guests regain presence. */
.page-hero-shade {
  background:
    radial-gradient(ellipse at 78% 56%, rgba(5, 20, 15, 0.42), transparent 50%),
    linear-gradient(90deg, rgba(8, 29, 23, 0.12), rgba(8, 29, 23, 0.68)),
    linear-gradient(0deg, rgba(6, 24, 18, 0.66), transparent 60%);
}

.wine-house-photo-hero > img {
  object-position: center top;
  transform: scale(1.055);
  transform-origin: center top;
}

/* Preserve the lighter, location-specific Contact treatment. */
.contact-page-body .page-hero-shade {
  background:
    radial-gradient(ellipse at 77% 56%, rgba(5, 20, 15, 0.24), transparent 52%),
    linear-gradient(90deg, rgba(8, 29, 23, 0.08), rgba(8, 29, 23, 0.50)),
    linear-gradient(0deg, rgba(6, 24, 18, 0.50), transparent 62%);
}

@media (min-width: 821px) and (max-width: 1180px) {
  .wine-house-photo-hero > img {
    transform: scale(1.04);
  }
}

@media (max-width: 820px) {
  .page-hero-shade {
    background:
      radial-gradient(ellipse at 70% 72%, rgba(5, 20, 15, 0.46), transparent 60%),
      linear-gradient(0deg, rgba(5, 20, 15, 0.78), rgba(8, 29, 23, 0.09) 72%);
  }

  .wine-house-photo-hero > img {
    object-position: 46% top;
    transform: scale(1.025);
  }

  .contact-page-body .page-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 20, 15, 0.74), rgba(8, 29, 23, 0.04) 74%);
  }
}

@media (max-width: 380px) {
  .wine-house-photo-hero > img {
    object-position: 45% top;
    transform: scale(1.015);
  }
}
