/* =========================================================
   YOKAMI — Wellness, Within
   Design System  ·  Forest Green / Gold / Camellia Red
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* brand greens */
  --green-950: #0a2118;
  --green-900: #0e2a1f;
  --green-800: #143a2b;
  --green-700: #1c4a37;
  --green-600: #27604a;
  --green-500: #3a7d5f;
  --green-100: #e6efe7;

  /* gold */
  --gold-700: #a4762f;
  --gold-600: #b8893b;
  --gold-500: #c9a24a;
  --gold-400: #d9b96a;
  --gold-200: #ecd9a8;

  /* camellia */
  --red-600: #c8341f;
  --red-500: #d84329;

  /* surfaces */
  --cream: #f7f2e7;
  --paper: #fdfaf3;
  --sand: #efe6d3;
  --sand-soft: #f3ecdc;

  /* ink / text */
  --ink: #1f241c;
  --ink-soft: #30332a;
  --ink-mute: #585b50;
  --on-dark: #f4eedd;
  --on-dark-soft: #cdc7b4;

  --line: rgba(31, 36, 28, .12);
  --line-dark: rgba(244, 238, 221, .16);

  /* type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Be Vietnam Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 40, 30, .06);
  --shadow: 0 18px 50px -22px rgba(14, 42, 31, .45);
  --shadow-gold: 0 18px 44px -20px rgba(184, 137, 59, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

ul {
  list-style: none;
  padding: 0
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 6px
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
  letter-spacing: .005em
}

.display {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05
}

h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem)
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem)
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem)
}

h4 {
  font-size: 1.2rem
}

p {
  color: var(--ink-soft)
}

strong {
  color: var(--ink);
  font-weight: 600
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft)
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px)
}

.container-wide {
  max-width: 1360px
}

.container-narrow {
  max-width: 880px
}

.section {
  padding-block: clamp(64px, 9vw, 120px)
}

.section-sm {
  padding-block: clamp(48px, 6vw, 80px)
}

.center {
  text-align: center
}

.mx-auto {
  margin-inline: auto
}

.maxw-65 {
  max-width: 65ch
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 34px)
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr)
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr)
}

.items-center {
  align-items: center
}

/* surfaces */
.bg-cream {
  background: var(--cream)
}

.bg-paper {
  background: var(--paper)
}

.bg-sand {
  background: linear-gradient(180deg, var(--sand-soft), var(--cream))
}

.bg-forest {
  background: radial-gradient(120% 120% at 80% 0%, var(--green-700), var(--green-900) 60%, var(--green-950));
  color: var(--on-dark)
}

.bg-forest h1,
.bg-forest h2,
.bg-forest h3,
.bg-forest h4 {
  color: var(--on-dark)
}

.bg-forest p {
  color: var(--on-dark-soft)
}

/* ---------- Eyebrow + section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
}

.bg-forest .eyebrow {
  color: var(--gold-400)
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .7
}

.eyebrow.no-line::before {
  display: none
}

.section-head {
  max-width: 62ch
}

.section-head.center {
  margin-inline: auto
}

.section-head p {
  margin-top: 1rem
}

/* divider flourish */
.flourish {
  display: inline-block;
  color: var(--gold-500);
  font-size: 1.4rem;
  line-height: 1;
  margin: .4rem 0
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-800);
  --fg: var(--on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.7em;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--fg);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s;
  will-change: transform;
  text-align: center;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform .3s var(--ease)
}

.btn:hover {
  transform: translateY(-2px)
}

.btn:hover svg {
  transform: translateX(4px)
}

.btn:active {
  transform: translateY(0)
}

.btn-primary {
  --bg: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  --fg: #321f06;
  box-shadow: var(--shadow-gold)
}

.btn-primary:hover {
  box-shadow: 0 22px 50px -18px rgba(184, 137, 59, .7)
}

.btn-dark {
  --bg: var(--green-800);
  --fg: var(--on-dark);
  box-shadow: var(--shadow)
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  box-shadow: inset 0 0 0 1.5px var(--green-800)
}

.btn-outline:hover {
  background: var(--green-800);
  color: var(--on-dark)
}

.bg-forest .btn-outline {
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1.5px var(--gold-400)
}

.bg-forest .btn-outline:hover {
  background: var(--gold-400);
  color: #321f06
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  padding-inline: .4em;
  min-height: auto
}

.btn-ghost::after {
  content: "";
  display: block
}

.btn-block {
  width: 100%
}

.link-gold {
  color: var(--gold-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  transition: gap .25s var(--ease)
}

.link-gold:hover {
  gap: .85em
}

.bg-forest .link-gold {
  color: var(--gold-400)
}

/* ---------- Header (e-commerce style) ---------- */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff
}

/* top utility bar */
.topbar {
  background: var(--paper);
  color: var(--ink-soft);
  font-size: .82rem;
  border-bottom: 1px solid var(--line)
}

.topbar-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 16px;
  flex-wrap: wrap
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  transition: color .2s
}

.topbar a:hover {
  color: var(--gold-700)
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--green-700)
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.topbar .sep {
  width: 1px;
  height: 14px;
  background: var(--line)
}

.topbar .lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft)
}

.topbar .lang strong {
  color: var(--green-800);
  font-weight: 700
}

.topbar .lang a {
  display: inline
}

/* main bar: search | logo | actions */
.mainbar {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.mainbar-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-block: 14px
}

.mainbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start
}

.brand-logo {
  justify-self: center;
  display: block
}

.brand-logo img {
  height: 84px;
  width: auto;
  display: block
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-self: end
}

.hact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: var(--ink-soft);
  font-weight: 500
}

.hact .hicon {
  position: relative;
  color: var(--green-800)
}

.hact:hover {
  color: var(--gold-700)
}

.hact:hover .hicon {
  color: var(--gold-700)
}

.hact svg {
  width: 24px;
  height: 24px
}

.hact .badge {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red-600);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--sans)
}

/* search */
.search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  max-width: 330px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s
}

.search:focus-within {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, .14)
}

.search svg {
  width: 17px;
  height: 17px;
  color: var(--ink-mute);
  flex: none
}

.search input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  font-size: .9rem;
  color: var(--ink);
  min-width: 0
}

.search input::placeholder {
  color: var(--ink-mute)
}

.search button {
  flex: none;
  background: var(--green-800);
  color: var(--on-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .86rem;
  font-weight: 600;
  transition: background .25s
}

.search button:hover {
  background: var(--green-700)
}

/* nav bar (sticky) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999 !important;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px -22px rgba(14, 42, 31, .5)
}

.navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.navlist>li {
  position: relative
}

.navlist>li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--line)
}

.navlist>li>a,
.nav-item-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: 15px 22px;
  font-weight: 500;
  font-size: .96rem;
  color: var(--green-900);
  position: relative;
  transition: color .25s
}

.navlist>li>a::after,
.nav-item-toggle::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 8px;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s var(--ease)
}

.navlist a:hover,
.nav-item-toggle:hover {
  color: var(--red-600)
}

.navlist a:hover::after,
.nav-item-toggle:hover::after,
.navlist a.active::after {
  transform: scaleX(1)
}

.navlist a.active,
.nav-item-toggle.active {
  color: var(--red-600);
  font-weight: 600
}

.nav-item-toggle .caret {
  transition: transform .25s
}

.has-drop:hover .nav-item-toggle .caret {
  transform: rotate(180deg)
}

/* dropdown */
.has-drop {
  position: relative
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--green-900);
  font-size: .92rem
}

.dropdown a::after {
  display: none
}

.dropdown a:hover {
  background: var(--sand-soft);
  color: var(--gold-700)
}

.dropdown a small {
  display: block;
  color: var(--ink-mute);
  font-size: .78rem;
  font-weight: 400;
  margin-top: 2px
}

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--green-950);
  color: var(--on-dark);
  padding: 80px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav.open {
  transform: translateX(0)
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark)
}

.mobile-nav .sub a {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 9px 0 9px 18px;
  color: var(--on-dark-soft);
  border: none
}

.mobile-nav .m-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  color: var(--on-dark)
}

body.no-scroll {
  overflow: hidden
}

@media (max-width:980px) {

  .topbar,
  .navbar,
  .search,
  .header-actions {
    display: none
  }

  .mainbar-in {
    grid-template-columns: auto 1fr auto;
    gap: 12px
  }

  .mainbar-left {
    justify-self: start
  }

  .brand-logo {
    justify-self: center
  }

  .brand-logo img {
    height: 60px
  }

  .burger {
    display: flex
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 6vw, 84px);
  overflow: hidden;
  background: radial-gradient(130% 110% at 78% 8%, var(--green-700), var(--green-900) 55%, var(--green-950));
  color: var(--on-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 18% 90%, rgba(200, 52, 31, .14), transparent 70%),
    radial-gradient(50% 50% at 90% 20%, rgba(201, 162, 74, .16), transparent 70%);
  pointer-events: none
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center
}

.hero h1 {
  color: #fff
}

.hero .lead {
  color: var(--on-dark-soft);
  max-width: 46ch
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-400);
  font-size: 1.2rem;
  margin-bottom: 10px
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center
}

.hero-media img {
  max-height: 540px;
  width: auto;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 44px 70px -28px rgba(0, 0, 0, .7), 0 0 0 8px rgba(201, 162, 74, .06)
}

.hero-ring {
  position: absolute;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 74, .18)
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .5em 1em;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line-dark);
  color: var(--on-dark)
}

.pill svg {
  width: 1em;
  height: 1em;
  color: var(--gold-400)
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(56px, 8vw, 90px) 0 clamp(52px, 7vw, 76px);
  background: radial-gradient(120% 130% at 80% 0%, var(--green-700), var(--green-900) 60%, var(--green-950));
  color: var(--on-dark)
}

.page-hero h1 {
  color: #fff;
  max-width: 18ch
}

.page-hero .lead {
  color: var(--on-dark-soft);
  max-width: 60ch;
  margin-top: 16px
}

.breadcrumb {
  display: flex;
  gap: .5em;
  font-size: .85rem;
  color: var(--on-dark-soft);
  margin-bottom: 18px
}

.breadcrumb a:hover {
  color: var(--gold-400)
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 59, .35)
}

/* value card */
.value-card {
  padding: clamp(24px, 3vw, 34px)
}

.value-card .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--green-100), #fff);
  color: var(--green-700);
  box-shadow: inset 0 0 0 1px var(--line)
}

.value-card .ico svg {
  width: 26px;
  height: 26px
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px
}

.value-card p {
  font-size: .97rem
}

.bg-forest .value-card {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line-dark)
}

.bg-forest .value-card .ico {
  background: rgba(201, 162, 74, .14);
  color: var(--gold-400);
  box-shadow: none
}

/* numbered pillar */
.pillar {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.pillar .num {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-400);
  opacity: .55;
  font-weight: 600
}

.pillar h3 {
  margin: .4rem 0 .6rem;
  color: var(--green-900) !important;
}
.pillar p {
  color: var(--ink-soft) !important;
}
.pillar .num {
  color: var(--gold-600) !important;
  opacity: 0.85 !important;
}

.pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--gold-400), var(--gold-600))
}

/* product card */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper)
}

.product-media {
  position: relative;
  aspect-ratio: 4/3.4;
  display: grid;
  place-items: center;
  padding: 26px;
  background: radial-gradient(120% 120% at 50% 20%, var(--sand-soft), var(--cream))
}

.product-media img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 24px 36px rgba(20, 40, 30, .28));
  transition: transform .5s var(--ease)
}

.product-card:hover .product-media img {
  transform: translateY(-6px) scale(1.03)
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-800);
  color: var(--on-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5em .9em;
  border-radius: 999px
}

.product-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.product-body .en {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-700);
  font-size: 1rem
}

.product-body h3 {
  font-size: 1.5rem
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px
}

.chip {
  font-size: .78rem;
  padding: .4em .8em;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 500
}

.price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green-900);
  font-weight: 600
}

.price small {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--ink-mute);
  font-weight: 400
}

.product-foot {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 8px
}

/* usecase / image card */
.figure-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.figure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.figure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.figure-card:hover img {
  transform: scale(1.04)
}

.figure-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(10, 33, 24, .86));
  color: #fff
}

.figure-card .cap h3 {
  color: #fff;
  font-size: 1.3rem
}

.figure-card .cap p {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  margin-top: 4px
}

.figure-card .cap .tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600
}

/* split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center
}

.split.reverse .split-media {
  order: 2
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.media-frame.bordered {
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line)
}

.media-frame.bordered img {
  border-radius: calc(var(--radius-lg) - 10px)
}

/* quote / testimonial */
.quote-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative
}

.quote-card .mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--gold-400);
  display: block;
  height: .5em
}

.quote-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--green-900);
  line-height: 1.5
}

.quote-card .who {
  margin-top: 18px;
  font-family: var(--sans)
}

.quote-card .who strong {
  display: block;
  color: var(--green-900)
}

.quote-card .who span {
  font-size: .85rem;
  color: var(--ink-mute)
}

.stars {
  color: var(--gold-500);
  letter-spacing: 2px;
  margin-bottom: 12px
}

/* stat strip */
.stat {
  padding: 8px 4px
}

.stat .n {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold-400);
  font-weight: 600;
  line-height: 1
}

.stat .l {
  font-size: .9rem;
  color: var(--on-dark-soft);
  margin-top: 6px
}

/* commitment list */
.commit-list {
  display: grid;
  gap: 14px
}

.commit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line)
}

.commit-item .ck {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #321f06
}

.commit-item .ck svg {
  width: 18px;
  height: 18px
}

.commit-item h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 2px
}

.commit-item p {
  font-size: .9rem
}

/* tabs (use cases / filters) */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px
}

.tab {
  padding: .6em 1.2em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all .25s var(--ease)
}

.tab:hover {
  border-color: var(--gold-500);
  color: var(--green-900)
}

.tab.active {
  background: var(--green-800);
  color: var(--on-dark);
  border-color: var(--green-800)
}

/* FAQ accordion */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper)
}

.faq-item+.faq-item {
  border-top: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 28px);
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green-900);
  font-weight: 600
}

.faq-q .ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s, color .3s
}

.faq-item.open .faq-q .ic {
  transform: rotate(45deg);
  background: var(--green-800);
  color: var(--on-dark);
  border-color: var(--green-800)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq-a-inner {
  padding: 0 clamp(20px, 3vw, 28px) 24px;
  color: var(--ink-soft)
}

/* timeline (journey) */
.timeline {
  position: relative;
  display: grid;
  gap: 30px
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold-400), transparent)
}

.tl-item {
  position: relative;
  padding-left: 62px
}

.tl-item .dot {
  position: absolute;
  left: 8px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-800);
  border: 3px solid var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, .15)
}

.tl-item h3 {
  font-size: 1.3rem;
  margin-bottom: 6px
}

/* newsletter / cta band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 130% at 85% 10%, var(--green-700), var(--green-900) 60%, var(--green-950));
  color: var(--on-dark);
  padding: clamp(40px, 6vw, 72px)
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 12% 100%, rgba(200, 52, 31, .18), transparent 70%);
  pointer-events: none
}

.cta-band>* {
  position: relative;
  z-index: 1
}

/* forms */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-900)
}

.field label .req {
  color: var(--red-600)
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 13px 16px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color .25s, box-shadow .25s;
}

.textarea {
  min-height: 130px;
  resize: vertical
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, .16)
}

.input::placeholder,
.textarea::placeholder {
  color: var(--ink-mute)
}

.helper {
  font-size: .8rem;
  color: var(--ink-mute)
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow)
}

.subscribe {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.subscribe .input {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, .94)
}

/* contact info rows */
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark)
}

.info-row .ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 74, .15);
  color: var(--gold-400)
}

.info-row .ico svg {
  width: 22px;
  height: 22px
}

.info-row h4 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--on-dark);
  font-size: .95rem;
  margin-bottom: 2px
}

.info-row p {
  color: var(--on-dark-soft);
  font-size: .95rem
}

/* blog cards */
.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.post-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden
}

.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.post-card:hover .thumb img {
  transform: scale(1.05)
}

.post-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.post-tag {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700)
}

.post-card h3 {
  font-size: 1.28rem;
  line-height: 1.25
}

.post-card .more {
  margin-top: auto
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: var(--on-dark-soft);
  padding-top: clamp(56px, 7vw, 88px)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 1.1fr 1.1fr 1.1fr;
  gap: 30px
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
  font-weight: 600
}

.site-footer a {
  color: var(--on-dark-soft);
  transition: color .2s
}

.site-footer a:hover {
  color: var(--gold-400)
}

.site-footer .f-links li {
  margin-bottom: 11px
}

.footer-brand img {
  height: 54px;
  margin-bottom: 18px
}

.footer-brand p {
  font-size: .95rem;
  max-width: 38ch;
  color: var(--on-dark-soft)
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-400);
  margin: 10px 0 16px;
  font-size: 1.15rem
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  transition: all .25s
}

.socials a:hover {
  background: var(--gold-400);
  color: var(--green-950);
  border-color: var(--gold-400);
  transform: translateY(-3px)
}

.socials svg {
  width: 18px;
  height: 18px
}

.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .84rem
}

.footer-note {
  font-size: .8rem;
  color: var(--ink-mute);
  max-width: 62ch;
  margin-top: 10px;
  font-style: italic
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--green-900);
  color: var(--on-dark);
  overflow: hidden;
  border-block: 1px solid var(--line-dark)
}

.strip-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--on-dark)
}

.strip-track span::before {
  content: "❀";
  color: var(--gold-400);
  font-size: .9rem
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@media (prefers-reduced-motion:reduce) {
  .strip-track {
    animation: none
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal[data-delay="1"] {
  transition-delay: .08s
}

.reveal[data-delay="2"] {
  transition-delay: .16s
}

.reveal[data-delay="3"] {
  transition-delay: .24s
}

.reveal[data-delay="4"] {
  transition-delay: .32s
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* ---------- Mockup-faithful patterns ---------- */
/* botanical / photo accent that blends on forest */
.botanical {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 74, .22)
}

.botanical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.botanical.tall {
  aspect-ratio: 3/4
}

.botanical.wide {
  aspect-ratio: 4/3
}

/* gold-icon value list (2-col) */
.vlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 34px
}

.vrow {
  display: flex;
  gap: 15px;
  align-items: flex-start
}

.vrow .vi {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 74, .14);
  border: 1px solid rgba(201, 162, 74, .35);
  color: var(--gold-400)
}

.vrow .vi svg {
  width: 23px;
  height: 23px
}

.vrow h4 {
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: .01em
}

.vrow p {
  font-size: .93rem;
  color: var(--on-dark-soft);
  line-height: 1.55
}

/* photo tile (image already captioned) */
.tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, .28);
  box-shadow: 0 16px 36px -20px rgba(0, 0, 0, .6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

.tile:hover {
  transform: translateY(-5px)
}

.tile:hover img {
  transform: scale(1.04)
}

/* gold-check row (quality) */
.qcheck {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark)
}

.qcheck:last-child {
  border-bottom: none
}

.qcheck .qk {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-400)
}

.qcheck .qk svg {
  width: 16px;
  height: 16px
}

.qcheck span {
  font-size: 1.02rem;
  color: var(--on-dark);
  font-weight: 500
}

/* product showcase on forest */
.prod-forest {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap
}

.prod-forest .pbox {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center
}

.prod-forest .pbox img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 50px -24px rgba(0, 0, 0, .7);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .12)
}

.prod-forest .pbox .pname {
  font-family: var(--serif);
  color: var(--gold-400);
  font-size: 1.25rem;
  margin-top: 16px
}

.prod-forest .pbox .pprice {
  color: var(--on-dark);
  font-weight: 600;
  margin-top: 2px
}

/* heading flush-left gold (mockup style) */
.h-gold {
  color: var(--gold-400)
}

.bg-forest .lead-light {
  color: var(--on-dark-soft)
}

/* utilities */
.mt-1 {
  margin-top: 8px
}

.mt-2 {
  margin-top: 16px
}

.mt-3 {
  margin-top: 24px
}

.mt-4 {
  margin-top: 34px
}

.mt-5 {
  margin-top: 48px
}

.mb-3 {
  margin-bottom: 24px
}

.gap-sm {
  gap: 14px
}

.note {
  font-size: .8rem;
  color: var(--ink-mute);
  font-style: italic
}

.hr-soft {
  height: 1px;
  background: var(--line);
  border: 0;
  margin-block: clamp(40px, 6vw, 72px)
}

/* ---------- Order page ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start
}

.step-h {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-800);
  margin: 0 0 18px
}

.step-h .n {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green-800);
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.choice {
  position: relative;
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: var(--paper);
  transition: border-color .25s, box-shadow .25s, transform .25s
}

.choice:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.choice .ci {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-100), #fff);
  color: var(--green-700);
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px var(--line)
}

.choice .ci svg {
  width: 25px;
  height: 25px
}

.choice h4 {
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--green-900);
  margin-bottom: 6px;
  line-height: 1.2
}

.choice p {
  font-size: .86rem;
  line-height: 1.5
}

.choice .radio {
  margin-top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: block;
  position: relative;
  transition: border-color .2s
}

.choice:has(input:checked) {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, .16)
}

.choice:has(input:checked) .radio {
  border-color: var(--gold-600)
}

.choice:has(input:checked) .radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold-600)
}

.order-prod {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper)
}

.order-prod img {
  width: 96px;
  height: 108px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--sand-soft);
  flex: none;
  padding: 8px
}

.order-prod h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green-900);
  line-height: 1.15
}

.order-prod p {
  font-size: .85rem;
  margin-top: 5px
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.trust {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5
}

.trust .ti {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--sand-soft);
  color: var(--green-700)
}

.trust .ti svg {
  width: 20px;
  height: 20px
}

/* light page intro (no dark hero) */
.page-intro {
  padding: clamp(36px, 5vw, 56px) 0 0;
  text-align: center
}

.page-intro .flourish-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-500)
}

.page-intro .flourish-row svg {
  width: 26px;
  height: 26px
}

.page-intro h1 {
  margin-top: 6px
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-grid {
    gap: 30px
  }
}

@media (max-width:900px) {

  .nav-links,
  .nav-actions .btn {
    display: none
  }

  .burger {
    display: flex
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero .lead {
    margin-inline: auto
  }

  .hero-cta,
  .hero-badges {
    justify-content: center
  }

  .hero-media {
    order: -1;
    margin-bottom: 10px
  }

  .hero-media img {
    max-height: 360px
  }

  .split {
    grid-template-columns: 1fr
  }

  .split.reverse .split-media {
    order: 0
  }

  .cols-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:760px) {
  .vlist {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

@media (max-width:900px) {
  .order-grid {
    grid-template-columns: 1fr
  }

  .choices {
    grid-template-columns: 1fr
  }
}

@media (max-width:600px) {

  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr
  }

  .trust-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column
  }

  .display {
    font-size: clamp(2.2rem, 9vw, 3rem)
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-h) + 30px) 60px
  }

  .section {
    padding-block: clamp(52px, 12vw, 72px)
  }
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  /* Standardized aspect ratio to prevent height jumps */
  max-height: 720px;
  min-height: 300px;
  overflow: hidden;
  background: var(--green-950);
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.0s cubic-bezier(.22, .61, .36, 1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide .banner-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Prevents height jumping by scaling all images uniformly */
  display: block;
}

/* Real interactive overlay button */
.real-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  /* Transparent background */
  border: none;
  color: var(--gold-500);
  font-family: var(--serif);
  /* Serif Cormorant Garamond for elegant premium styling */
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: clamp(9px, 1.25vw, 20px);
  /* Slightly increased size for Cormorant Garamond readability */
  letter-spacing: 0.03em;
  padding: 0 1.8vw;
  box-sizing: border-box;
  white-space: nowrap;
}

/* SVG border overlays for Slide 1 and Slide 10 */
.btn-border-svg,
.btn-border-svg-s10 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.btn-border-svg path,
.btn-border-svg-s10 rect {
  transition: all 0.3s ease;
}

.btn-border-svg .outer-border {
  stroke: var(--gold-500);
  stroke-width: 1.5;
  fill: rgba(10, 25, 15, 0.6);
}

.btn-border-svg .inner-border {
  stroke: var(--gold-500);
  stroke-width: 0.8;
  opacity: 0.8;
  fill: none;
}

.btn-border-svg-s10 .outer-border {
  stroke: var(--gold-500);
  stroke-width: 1.5;
  fill: #0b2416;
}

.btn-border-svg-s10 .inner-border {
  stroke: var(--gold-500);
  stroke-width: 0.8;
  opacity: 0.8;
  fill: none;
}

/* Hover effects for SVG borders */
.btn-slide-1:hover .btn-border-svg .outer-border {
  stroke: var(--gold-400);
  filter: drop-shadow(0 0 4px rgba(201, 162, 74, 0.6));
  fill: rgba(10, 25, 15, 0.75);
}

.btn-slide-1:hover .btn-border-svg .inner-border {
  stroke: var(--gold-400);
}

.btn-slide-10:hover .btn-border-svg-s10 .outer-border {
  stroke: var(--gold-400);
  filter: drop-shadow(0 0 4px rgba(201, 162, 74, 0.6));
  fill: #0e301d;
}

.btn-slide-10:hover .btn-border-svg-s10 .inner-border {
  stroke: var(--gold-400);
}

/* Slide-specific coordinates to align perfectly with each banner's text blocks */
.btn-slide-1 {
  left: 66.0%;
  top: 70.1%;
  width: 22.0%;
  height: 8.5%;
  color: var(--gold-500);
}

.btn-slide-1:hover {
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-slide-2 {
  left: 64.5%;
  top: 63.0%;
  width: 22.0%;
  height: 8.0%;
  color: var(--gold-500);
  border: 1.2px solid var(--gold-500);
  border-radius: 6px;
  background: linear-gradient(to bottom, #3b2813 0%, #150f08 100%);
}

.btn-slide-2:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
  background: linear-gradient(to bottom, #4c3419 0%, #20170c 100%);
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.3);
  transform: translateY(-2px);
}

.btn-slide-3,
.btn-slide-4,
.btn-slide-5 {
  border: none;
  border-radius: 999px;
  color: #0b2416;
  font-weight: 600;
  background: linear-gradient(180deg, #f3dfb6 0%, #d8b26c 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-slide-3 {
  left: 64.5%;
  top: 71.5%;
  width: 22.0%;
  height: 8.0%;
}

.btn-slide-4 {
  left: 66.0%;
  top: 80.8%;
  width: 22.0%;
  height: 8.5%;
}

.btn-slide-5 {
  left: 4.8%;
  top: 75.5%;
  width: 22.0%;
  height: 8.5%;
}

.btn-slide-3:hover,
.btn-slide-4:hover,
.btn-slide-5:hover {
  background: linear-gradient(180deg, #f7e6c4 0%, #e0bd7e 100%);
  box-shadow: 0 6px 15px rgba(201, 162, 74, 0.4);
  transform: translateY(-2px);
}

.btn-slide-6 {
  left: 4.0%;
  top: 75.0%;
  width: 22.0%;
  height: 8.5%;
  border: 1.2px solid var(--gold-500);
  border-radius: 999px;
  color: var(--gold-500);
  background: rgba(10, 25, 15, 0.4);
}

.btn-slide-6:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
  background: rgba(10, 25, 15, 0.6);
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.35);
  transform: translateY(-2px);
}

.btn-slide-7 {
  left: 8.8%;
  top: 77.5%;
  width: 22.0%;
  height: 8.5%;
  border: none;
  border-radius: 999px;
  color: #0b2416;
  font-weight: 600;
  background: linear-gradient(180deg, #f3dfb6 0%, #d8b26c 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding-right: 1.2vw;
  /* Extra padding on right for circle-chevron */
  justify-content: space-between;
  /* Space out text and badge */
  padding-left: 2vw;
}

.btn-slide-7:hover {
  background: linear-gradient(180deg, #f7e6c4 0%, #e0bd7e 100%);
  box-shadow: 0 6px 15px rgba(201, 162, 74, 0.4);
  transform: translateY(-2px);
}

.btn-slide-8 {
  left: 41.0%;
  top: 40.8%;
  width: 18.0%;
  height: 8.0%;
  border: 1px solid var(--gold-500);
  border-radius: 4px;
  color: var(--gold-500);
  background: transparent;
}

.btn-slide-8:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
  background: rgba(201, 162, 74, 0.08);
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.25);
  transform: translateY(-2px);
}

.btn-slide-9 {
  left: 64.5%;
  top: 75.5%;
  width: 22.0%;
  height: 8.0%;
  border: 1.2px solid var(--gold-500);
  border-radius: 999px;
  color: var(--gold-500);
  background: transparent;
}

.btn-slide-9:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
  background: rgba(201, 162, 74, 0.08);
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.25);
  transform: translateY(-2px);
}

.btn-slide-10 {
  left: 7.8%;
  top: 76.4%;
  width: 22.0%;
  height: 8.0%;
  color: var(--gold-500);
}

.btn-slide-10:hover {
  color: var(--gold-400);
  transform: translateY(-2px);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding-inline: clamp(10px, 2vw, 30px);
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--gold-600);
  border-color: var(--gold-500);
  transform: scale(1.05);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.slider-dots {
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.slider-dot.active {
  background: var(--gold-500);
  transform: scale(1.25);
  box-shadow: 0 0 8px var(--gold-400);
}

@media (max-width: 900px) {
  .slider-arrows {
    display: none;
  }
}

/* =========================================================
   YOKAMI Homepage Redesign Below Banner
   ========================================================= */

/* General Premium Containers & Mobile Fallbacks */
.premium-card-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(184, 137, 59, 0.25);
  box-shadow: var(--shadow-sm);
  transition: all 0.6s var(--ease);
  background: var(--paper);
}

.premium-card-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-500);
}

.premium-card-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-text-grid {
  display: none;
}

.desktop-only-img {
  display: block;
}

/* Premium Typography Helpers */
.font-serif {
  font-family: var(--serif);
  font-weight: 700;
}

.font-sans {
  font-family: var(--sans);
}

.text-italic {
  font-style: italic;
}

.color-deep {
  color: var(--green-950) !important;
}

.line-height-luxury {
  line-height: 1.7;
}

.letter-spacing-thin {
  letter-spacing: -0.015em;
}

.premium-card-wrapper {
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.premium-card-wrapper:hover {
  border-color: var(--gold-500);
  box-shadow: 0 30px 70px -20px rgba(10, 33, 24, 0.15);
  transform: translateY(-2px);
}

.fine-gold-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.25) 50%, transparent);
  margin-block: 40px;
}

/* Interactive Breathe Widget - Section 1 */
.breathe-container {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(201, 162, 74, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.15);
  padding: 18px 24px;
  border-radius: 12px;
  margin-top: 30px;
  max-width: 480px;
}

.breathe-circle-wrap {
  width: 48px;
  height: 48px;
  position: relative;
  flex: none;
}

.breathe-circle-bg {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 50%;
}

.breathe-indicator {
  position: absolute;
  inset: 4px;
  border: 2.5px solid var(--gold-600);
  border-radius: 50%;
  animation: breathe-pulse 9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathe-indicator svg {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
}

.breathe-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.breathe-status {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.02em;
}

.breathe-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@keyframes breathe-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 16px rgba(201, 162, 74, 0.35);
  }

  100% {
    transform: scale(0.85);
    opacity: 0.8;
  }
}

/* Value Story Accordion - Section 2 */
.value-accordion {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 440px;
}

.accordion-item {
  flex: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 74, 0.16);
  background: var(--paper);
  padding: 30px;
  overflow: hidden;
  position: relative;
  transition: flex 0.6s var(--ease), background 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accordion-item:hover,
.accordion-item.active {
  flex: 2.5;
  background: linear-gradient(180deg, var(--paper), var(--cream));
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-400);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.accordion-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold-600);
  font-weight: 300;
  line-height: 1;
}

.accordion-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-950);
}

.accordion-content {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  margin-top: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accordion-item:hover .accordion-content,
.accordion-item.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.accordion-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.accordion-img-preview {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.accordion-item:hover .accordion-img-preview,
.accordion-item.active .accordion-img-preview {
  opacity: 1;
}

.accordion-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section 3 Collage styles */
.collage-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 74, 0.2);
}

.collage-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(10, 33, 24, 0.88);
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: var(--radius-sm);
  padding: 24px;
  color: var(--on-dark);
  backdrop-filter: blur(8px);
}

/* Section 4 Boutique Lookbook & Flavor Profiler */
.product-card-boutique {
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.product-card-boutique:hover {
  border-color: var(--gold-500);
  box-shadow: 0 20px 40px rgba(10, 33, 24, 0.08);
  transform: translateY(-2px);
}

.boutique-img-wrap {
  aspect-ratio: 1/1;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 162, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boutique-img-wrap img {
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.product-card-boutique:hover .boutique-img-wrap img {
  transform: scale(1.04);
}

.taste-profile {
  background: rgba(201, 162, 74, 0.04);
  border: 1px solid rgba(201, 162, 74, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-block: 16px;
}

.taste-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.taste-row:last-child {
  margin-bottom: 0;
}

.taste-label {
  font-weight: 500;
}

.taste-bar-container {
  width: 90px;
  height: 4px;
  background: rgba(201, 162, 74, 0.15);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.taste-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  border-radius: 99px;
}

.ritual-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201, 162, 74, 0.08);
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(201, 162, 74, 0.15);
  margin-bottom: 12px;
  align-self: flex-start;
}

.ritual-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Section 5 Horizontal Journey Timeline */
.journey-track-wrapper {
  position: relative;
  width: 100%;
}

.journey-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-track::-webkit-scrollbar {
  display: none;
}

.journey-step-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.journey-step-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 15px 35px rgba(10, 33, 24, 0.06);
}

.journey-step-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.1);
}

.journey-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journey-step-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-600);
  line-height: 1;
}

.journey-step-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-950);
}

.journey-step-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.journey-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(201, 162, 74, 0.12);
  position: relative;
  margin-top: 16px;
  border-radius: 99px;
}

.journey-progress-fill {
  height: 100%;
  width: 16.66%;
  background: var(--gold-600);
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease;
  border-radius: 99px;
}

/* Section 6 Inspection Certificate Drawer */
.quality-item-card {
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  padding-bottom: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.quality-item-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.quality-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--on-dark);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.quality-item-header .check-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quality-item-header svg.chevron {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  transition: transform 0.3s var(--ease);
}

.quality-item-card:hover .quality-item-header {
  color: var(--gold-400);
}

.quality-item-card.active .quality-item-header svg.chevron {
  transform: rotate(180deg);
}

.quality-item-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  padding-left: 28px;
  transition: max-height 0.4s var(--ease), opacity 0.3s, padding-top 0.3s;
}

.quality-item-card.active .quality-item-body {
  max-height: 120px;
  opacity: 1;
  padding-top: 8px;
}

/* Section 7 Asymmetric Blog Masonry */
.blog-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}

.blog-featured-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease);
}

.blog-featured-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.blog-featured-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 74, 0.12);
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-side-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-side-card {
  display: flex;
  gap: 16px;
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.35s var(--ease);
}

.blog-side-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.blog-side-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}

.blog-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-side-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-side-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-block: 4px;
}

.filter-tag-editorial {
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.filter-tag-editorial:hover {
  color: var(--gold-700);
}

.filter-tag-editorial.active {
  color: var(--green-950);
  border-bottom-color: var(--gold-600);
  font-weight: 700;
}

/* Section 8 Yokami Cinema & Ambient Glow */
.cinema-theater-sec {
  background: var(--green-950);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}

.cinema-glow-effect {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.12) 0%, rgba(201, 162, 74, 0) 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transform: translate(-50%, -50%);
}

.cinema-theater-sec:hover .cinema-glow-effect {
  opacity: 1;
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.video-card-cinema {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.video-card-cinema:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.video-thumb-cinema {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.video-card-cinema:hover .video-thumb-cinema img {
  transform: scale(1.04);
}

.play-overlay-cinema {
  position: absolute;
  inset: 0;
  background: rgba(10, 33, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-circle-cinema {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-600);
  color: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.play-btn-circle-cinema svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: translateX(2px);
}

.video-card-cinema:hover .play-btn-circle-cinema {
  transform: scale(1.1);
  background: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.video-body-cinema {
  padding: 16px 20px;
}

.video-tag-cinema {
  font-size: 0.74rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.video-title-cinema {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--on-dark);
  margin-bottom: 4px;
}

.video-desc-cinema {
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  line-height: 1.4;
}

/* Cinematic Video Modal */
.video-modal-theater {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.video-modal-theater.active {
  display: flex;
  opacity: 1;
}

.modal-content-theater {
  position: relative;
  width: 90%;
  max-width: 840px;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: scale(0.92);
  transition: transform 0.3s var(--ease);
}

.video-modal-theater.active .modal-content-theater {
  transform: scale(1);
}

.close-modal-theater {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  color: #fff;
  z-index: 11;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.25s var(--ease), color 0.2s;
}

.close-modal-theater:hover {
  transform: rotate(90deg);
  color: var(--gold-400);
}

#theaterVideo {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* Responsive Rules Override (UI/UX Pro Max & Impeccable Mobile Layout) */

/* Global Typographic Scales for Mobile & Tablet */
@media (max-width: 991px) {
  h1, .h1 {
    font-size: clamp(2.0rem, 4vw + 1rem, 2.8rem) !important;
    line-height: 1.2 !important;
  }
  h2, .h2 {
    font-size: clamp(1.6rem, 3.5vw + 0.8rem, 2.2rem) !important;
    line-height: 1.25 !important;
  }
  h3, .h3 {
    font-size: clamp(1.25rem, 3vw + 0.6rem, 1.6rem) !important;
    line-height: 1.3 !important;
  }
  .lead {
    font-size: 1.05rem !important;
  }
}

/* Tablet & Smaller Screen Adjustments (991px) */
@media (max-width: 991px) {
  .section {
    padding-block: 60px !important;
  }
  .rich-section {
    padding-block: 50px !important;
  }

  /* Overlapping Layouts to Vertical Stacks */
  .overlap-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .overlap-card-info {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: -30px !important;
    padding: 35px 28px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  }
  
  .overlap-wrapper.reverse .overlap-card-info {
    margin-right: 0 !important;
    margin-top: -30px !important;
  }

  /* Accordion fallback */
  .value-accordion {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .accordion-item {
    min-height: 140px !important;
    justify-content: flex-start !important;
  }
  .accordion-item:hover,
  .accordion-item.active {
    flex: none !important;
    min-height: 280px !important;
  }

  .blog-asymmetric-grid {
    grid-template-columns: 1fr !important;
  }

  .cinema-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
}

/* Mobile Screen Adjustments (767px and below) */
@media (max-width: 767px) {
  .section {
    padding-block: 45px !important;
  }
  .rich-section {
    padding-block: 35px !important;
  }

  /* Core Layout Insets for Mobile Framed Look */
  .container {
    padding-inline: 16px !important;
  }

  /* Header & Navigation Mobile adjustments */
  .brand-logo img {
    height: 52px !important;
  }

  /* Centered Hero Slider texts & CTA buttons on mobile */
  .hero-slider .hero-slide {
    height: 540px !important;
  }
  .hero-slider .hero-slide.active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-slider .hero-slide img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .hero-slider .real-btn {
    position: absolute !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 14px 28px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    background: var(--gold-600) !important;
    color: #fff !important;
    border: none !important;
    width: max-content !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  }

  /* Hide complicated SVG border paths in slide 1 on mobile */
  .hero-slider .real-btn svg.btn-border-svg,
  .hero-slider .real-btn svg.btn-border-svg-s10 {
    display: none !important;
  }
  .hero-slider .real-btn span {
    position: static !important;
    color: #fff !important;
  }

  /* Grid layout overrides */
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Step V - Centered Editorial card */
  .editorial-frame-card {
    padding: 30px 20px !important;
    margin-inline: 4px !important;
    border-radius: 8px !important;
  }
  
  /* Triết lý ba lõi centring button on mobile */
  .overlap-card-info div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .overlap-card-info .btn-dark {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  /* Timeline spacing & alignment */
  .timeline-premium-item {
    margin-bottom: 16px !important;
    padding: 20px !important;
  }
  
  /* Infographic image padding */
  .overlap-img-box img {
    border-radius: 8px !important;
  }

  /* Prevent blog filtering horizontal scroll overflow */
  #goc-yokami .tabs, 
  #yokami-video .tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
  }
  
  #goc-yokami .tab,
  #yokami-video .tab {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    border: 1px solid rgba(201, 162, 74, 0.2) !important;
    border-radius: 20px !important;
    background: #faf8f5 !important;
  }
  
  #goc-yokami .tab.active,
  #yokami-video .tab.active {
    background: var(--gold-700) !important;
    color: #fff !important;
    border-color: var(--gold-700) !important;
  }

  /* Video Gallery mobile vertical alignment */
  .cinema-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Order Page Grid & Product card stacking */
  .order-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .order-prod {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
  }
  
  .order-prod img {
    margin-right: 0 !important;
    margin-bottom: 16px !important;
    max-width: 140px !important;
  }

  /* Article Modal popup on small viewports */
  #articleModal > div {
    max-height: 92vh !important;
    margin: 8px !important;
    padding: 25px 20px !important;
  }
  
  #articleModal h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }
  
  #articleModal #modalBody {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .desktop-only-img {
    display: none !important;
  }

  .mobile-text-grid {
    display: block !important;
  }

  .collage-overlay-card {
    position: static !important;
    background: var(--green-950) !important;
    border: none !important;
    padding: 20px 0 0 !important;
    backdrop-filter: none !important;
  }
}

.footer-note, .footer-bottom, .footer-tag, .f-links li, .footer-brand p {
  font-weight: 450 !important;
}

/* Desktop & Mobile display helper rules */
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: block !important;
}

@media (max-width: 980px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
}

/* --- Antigravity Desktop Container Protection from Tailwind Override --- */
body .desktop-only .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  display: block !important;
}

/* =========================================================
   YOKAMI — Article Detail Page (Premium WordPress Style)
   ========================================================= */
.article-hero {
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.article-hero .breadcrumb {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mute);
}

.article-hero .breadcrumb a {
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.2s ease;
}

.article-hero .breadcrumb a:hover {
  color: var(--gold-600);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

/* --- Main Content --- */
.article-main {
  background: var(--paper);
}

.article-header {
  margin-bottom: 30px;
}

.article-header .post-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-900);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.article-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1.2;
  color: var(--green-950);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-600);
}

.article-featured-image {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.article-body p {
  margin-bottom: 24px;
  text-align: justify;
}

.article-body .article-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--green-900);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.article-body h3 {
  font-size: 1.5rem;
  color: var(--green-900);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px 30px;
  background: var(--cream);
  border-left: 4px solid var(--gold-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--green-900);
  box-shadow: inset 0 0 10px rgba(14, 42, 31, 0.02);
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-body ul {
  list-style-type: none;
  margin-bottom: 24px;
  padding-left: 8px;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.article-body ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--gold-600);
  font-size: 1.3rem;
  top: -2px;
}

/* --- Share & CTA --- */
.article-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.share-box {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.share-btn.fb {
  background: #1877f2;
  color: #fff;
}

.share-btn.fb:hover {
  background: #166fe5;
}

.share-btn.print {
  background: var(--sand);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.share-btn.print:hover {
  background: var(--sand-soft);
}

.article-cta-box {
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  background-image: linear-gradient(135deg, var(--green-950), var(--green-900));
}

.article-cta-box h3 {
  color: var(--gold-400);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.article-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: 30px;
}

/* --- Sidebar --- */
.article-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-widget {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.3rem;
  color: var(--green-900);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-500);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.related-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item:hover .related-thumb img {
  transform: scale(1.05);
}

.related-info {
  display: flex;
  flex-direction: column;
}

.related-tag {
  font-size: 0.72rem;
  color: var(--gold-700);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.related-title {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: var(--sans);
}

.related-title a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item:hover .related-title a {
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
}

.related-date {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

.promo-widget {
  border: 1px solid var(--gold-200);
  text-align: center;
}

.promo-widget h3 {
  font-size: 1.6rem;
  color: var(--green-900);
  margin-bottom: 4px;
}

.promo-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-700);
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* --- Responsive Article --- */
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .article-sidebar {
    position: static;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
  
  .article-body {
    font-size: 1.02rem;
  }
  
  .article-cta-box {
    padding: 24px;
  }
  
  .article-cta-box h3 {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .article-hero {
    padding-top: calc(var(--header-h) + 15px);
  }
  
  .article-meta {
    gap: 12px;
    font-size: 0.8rem;
  }
  
  .article-featured-image {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
  
  .article-body blockquote {
    padding: 16px 20px;
    font-size: 1.1rem;
    margin: 24px 0;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
}
