:root {
  --ink: #241c16;
  --ink-soft: #665140;
  --burgundy: #8a2f36;
  --burgundy-deep: #2d3a23;
  --copper: #c75e2d;
  --copper-light: #e3b63f;
  --cream: #f1ddb2;
  --paper: #fbf1d8;
  --white: #ffffff;
  --forest: #394a2d;
  --turquoise: #1d6962;
  --stone: #d8c59d;
  --line: rgba(36, 28, 22, 0.28);
  --shadow-sm: 6px 6px 0 rgba(36, 28, 22, 0.18);
  --shadow-lg: 12px 12px 0 rgba(36, 28, 22, 0.22);
  --radius-sm: 4px;
  --radius-md: 7px;
  --radius-lg: 10px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", Arial, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.1rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--burgundy-deep);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--burgundy-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--copper-light);
}

.lead {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.announcement {
  position: relative;
  z-index: 80;
  padding: 9px 20px;
  color: #f8e8d5;
  background: var(--burgundy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  display: inline-block;
  margin: 0 9px;
  color: var(--copper-light);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid rgba(93, 54, 36, 0.08);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(188, 112, 64, 0.45);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 70% 30% 70% 30%;
  background: var(--copper);
  transform-origin: center;
}

.brand-mark i:nth-child(1) {
  top: 5px;
  left: 7px;
  transform: rotate(-45deg);
}

.brand-mark i:nth-child(2) {
  top: 5px;
  right: 7px;
  transform: rotate(45deg);
}

.brand-mark i:nth-child(3) {
  bottom: 5px;
  left: 7px;
  transform: rotate(-135deg);
}

.brand-mark i:nth-child(4) {
  right: 7px;
  bottom: 5px;
  transform: rotate(135deg);
}

.brand-word {
  display: grid;
  font-family: var(--serif);
  font-size: 1.46rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-word small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a {
  position: relative;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--burgundy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 4%, rgba(204, 130, 79, 0.26), transparent 26%),
    linear-gradient(135deg, var(--burgundy-deep), #5b1520 64%, #371014);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100vh - 112px));
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  padding-block: clamp(62px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 780px;
}

.hero h1 em {
  color: var(--copper-light);
  font-weight: 400;
}

.hero .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.79);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--burgundy-deep);
  background: var(--copper-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #efb888;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.09);
}

.btn-dark {
  color: var(--white);
  background: var(--burgundy);
}

.btn-outline {
  color: var(--burgundy);
  border-color: rgba(104, 28, 39, 0.3);
  background: transparent;
}

.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.availability span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.availability span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--copper-light);
  box-shadow: 0 0 0 5px rgba(223, 163, 115, 0.12);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: #d8c2a8;
  box-shadow: 0 35px 80px rgba(15, 3, 5, 0.36);
  transform: rotate(1.4deg);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 158px;
  height: 158px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--burgundy-deep);
  background: var(--copper-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
}

.season-strip {
  border-bottom: 1px solid var(--line);
  background: #f1e5d4;
}

.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.season {
  display: grid;
  min-height: 82px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
}

.season:first-child {
  border-left: 1px solid var(--line);
}

.season b {
  margin-right: 7px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.definition-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.definition-card::before {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--burgundy);
  content: "MEVSIM";
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.definition-card p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.definition-card small {
  color: var(--ink-soft);
}

.benefits-heading {
  max-width: 760px;
  margin-top: 56px;
}

.benefits-heading h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.benefits-heading + .facts-grid {
  margin-top: 28px;
}

.facts-grid {
  display: grid;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 12px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.fact span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.55;
}

.story-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.story-image::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(188, 112, 64, 0.5);
  border-radius: var(--radius-lg);
  content: "";
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  content: "";
  transform: rotate(-45deg);
}

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

.section-heading > div:first-child {
  max-width: 760px;
}

.section-note {
  max-width: 320px;
  padding-left: 18px;
  border-left: 2px solid var(--copper);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f1e8db, #e5d2bc);
}

.product-card:nth-child(2) .product-media {
  background: linear-gradient(145deg, #eadfd3, #d9c0aa);
}

.product-card:nth-child(3) .product-media {
  background: linear-gradient(145deg, #e2e9df, #bfcebd);
}

.product-card:nth-child(4) .product-media {
  background: linear-gradient(145deg, #dcebea, #afd0cf);
}

.product-card:nth-child(5) .product-media {
  background: linear-gradient(145deg, #efeeea, #d7d2ca);
}

.product-card:nth-child(6) .product-media {
  background: linear-gradient(145deg, #f4eadc, #dcc5a9);
}

.product-media::before {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  content: "";
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(55, 29, 17, 0.23));
  transition: transform 300ms ease;
}

.product-card:hover .product-media img {
  transform: translateY(-3px);
}

.product-status {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(59, 12, 20, 0.84);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 24px 24px 28px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 1.65rem;
}

.product-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-meta span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
}

.ritual-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 8vw, 106px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.ritual-image-wrap {
  position: relative;
}

.ritual-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ritual-label {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 180px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  box-shadow: var(--shadow-sm);
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
}

.step strong {
  display: block;
  margin-bottom: 3px;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.culture-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 104px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.culture-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.culture-image img {
  width: 100%;
  height: auto;
}

.quote {
  margin: 30px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.4;
}

.partner-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.partner-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.partner-image img {
  width: 100%;
  height: auto;
}

.partner-types {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.partner-types li {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 700;
}

.disclaimer {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 44px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 1.5px;
  content: "";
  background: var(--burgundy);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 62px 22px 24px;
  color: var(--ink-soft);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(223, 163, 115, 0.24), transparent 26%),
    var(--burgundy);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

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

.contact-card h2 {
  max-width: 760px;
}

.contact-card .lead {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 30px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 4px;
}

.contact-details svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--copper-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  padding: 58px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background: #241014;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-word small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-about {
  max-width: 410px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.85rem;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--copper-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.64);
  text-underline-offset: 3px;
}

.legal-hero {
  padding: clamp(68px, 9vw, 110px) 0;
  color: var(--white);
  background: var(--burgundy-deep);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.legal-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-content {
  padding: clamp(64px, 8vw, 104px) 0;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--burgundy);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 36px 0;
  padding: 24px;
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  color: var(--white);
  background: var(--burgundy-deep);
  text-align: center;
}

.error-page strong {
  display: block;
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 500;
  line-height: 0.9;
}

.error-page h1 {
  margin: 26px 0 16px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.error-page p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

/* Retro MEVSIM brand system */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(57, 74, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 94, 45, 0.025), transparent 48%, rgba(227, 182, 63, 0.03));
  background-size: 13px 13px, 100% 100%;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section {
  position: relative;
  border-bottom: 3px solid var(--ink);
}

.section-cream {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(135deg, rgba(36, 28, 22, 0.025) 0 2px, transparent 2px 12px);
}

.section-dark {
  color: #fff7df;
  background:
    radial-gradient(circle at 82% 22%, rgba(227, 182, 63, 0.18), transparent 26%),
    var(--forest);
}

.announcement {
  padding-block: 10px;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  background: var(--copper-light);
  font-weight: 900;
}

.announcement span {
  color: var(--burgundy);
}

.site-header {
  border-bottom: 3px solid var(--forest);
  background: rgba(251, 241, 216, 0.96);
  backdrop-filter: none;
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--forest);
  border-radius: 50% 50% 48% 52%;
  background: var(--copper-light);
  box-shadow: 3px 3px 0 var(--burgundy);
}

.brand-mark i {
  background: var(--forest);
}

.brand-word {
  font-weight: 800;
  letter-spacing: 0.13em;
}

.main-nav > a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.main-nav > a::after {
  bottom: 0;
  height: 3px;
  background: var(--copper);
}

.language-switcher {
  padding: 3px;
  border: 2px solid var(--forest);
  border-radius: 3px;
  background: #fff7df;
}

.language-switcher a {
  border-radius: 1px;
}

.language-switcher a[aria-current="page"] {
  color: #fff7df;
  background: var(--forest);
}

.menu-toggle {
  border: 2px solid var(--forest);
  border-radius: 3px;
  background: var(--copper-light);
  box-shadow: 3px 3px 0 var(--burgundy);
}

.hero {
  border-bottom: 3px solid var(--ink);
  color: #fff7df;
  background:
    radial-gradient(circle at 16% 110%, rgba(227, 182, 63, 0.26), transparent 38%),
    radial-gradient(circle at 92% 0%, rgba(199, 94, 45, 0.22), transparent 32%),
    var(--forest);
}

.hero::before {
  opacity: 0.13;
  background-image: repeating-radial-gradient(circle at 10% 100%, rgba(255, 247, 223, 0.72) 0 1px, transparent 1px 18px);
  background-size: auto;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-grid {
  min-height: min(760px, calc(100vh - 112px));
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--copper-light);
  font-style: italic;
  font-weight: 800;
}

.hero .lead {
  color: rgba(255, 247, 223, 0.84);
}

.eyebrow {
  color: var(--burgundy);
  font-weight: 900;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: var(--copper-light);
}

.btn {
  min-height: 52px;
  border-width: 2px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(36, 28, 22, 0.62);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 2px 2px 0 rgba(36, 28, 22, 0.62);
  transform: translate(3px, 3px);
}

.btn-primary {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--copper-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0c84f;
}

.btn-secondary {
  color: #fff7df;
  border-color: #fff7df;
  background: transparent;
}

.availability {
  gap: 8px;
}

.availability span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 247, 223, 0.38);
  color: #fff7df;
  background: rgba(36, 28, 22, 0.18);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability span::before {
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--copper-light);
  box-shadow: none;
  transform: rotate(45deg);
}

.hero-image-frame {
  border: 7px solid #fff7df;
  border-radius: 2px;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--copper);
  transform: none;
}

.hero-image-frame img,
.story-image img,
.ritual-image-wrap img,
.culture-image img,
.partner-image img,
.product-media img {
  image-rendering: auto;
  filter: none;
}

.hero-note {
  right: -10px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--copper-light);
  box-shadow: 7px 7px 0 var(--burgundy);
}

.season-strip {
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}

.seasons {
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
}

.season {
  min-height: 86px;
  border-right: 3px solid var(--ink);
  color: #fff7df;
  font-style: normal;
  font-weight: 800;
}

.season:first-child {
  border-left: 0;
  background: var(--forest);
}

.season:nth-child(2) {
  color: var(--ink);
  background: var(--copper-light);
}

.season:nth-child(3) {
  background: var(--copper);
}

.season:nth-child(4) {
  border-right: 0;
  background: var(--burgundy);
}

.season b {
  color: inherit;
  font-size: 0.7rem;
}

.definition-card {
  border: 3px solid var(--ink);
  border-radius: 3px;
  background: var(--copper-light);
  box-shadow: 9px 9px 0 var(--burgundy);
}

.definition-card::before {
  top: -17px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  color: #fff7df;
  background: var(--forest);
}

.definition-card small {
  color: var(--ink);
}

.facts-grid {
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}

.fact {
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: #fff7df;
}

.fact:nth-child(2) {
  background: var(--copper-light);
}

.fact:nth-child(3) {
  color: #fff7df;
  background: var(--copper);
}

.fact:nth-child(4) {
  color: #fff7df;
  background: var(--forest);
}

.fact strong {
  color: var(--burgundy);
  font-weight: 800;
}

.fact:nth-child(3) strong,
.fact:nth-child(4) strong,
.fact:nth-child(3) span,
.fact:nth-child(4) span {
  color: #fff7df;
}

.story-image img,
.ritual-image-wrap img,
.culture-image,
.partner-image {
  border: 5px solid var(--ink);
  border-radius: 2px;
  box-shadow: 10px 10px 0 var(--copper);
}

.story-image::after {
  display: none;
}

.check-list li::before {
  border-color: var(--forest);
}

.section-note {
  max-width: 370px;
  padding: 15px 16px;
  border: 2px solid var(--ink);
  border-left-width: 8px;
  color: var(--ink);
  background: var(--copper-light);
  font-weight: 700;
  box-shadow: 5px 5px 0 rgba(36, 28, 22, 0.16);
}

.product-grid {
  gap: 26px;
}

.product-card {
  border: 3px solid var(--ink);
  border-radius: 2px;
  background: #fff7df;
  box-shadow: 7px 7px 0 rgba(57, 74, 45, 0.24);
}

.product-card:hover {
  box-shadow: 3px 3px 0 rgba(57, 74, 45, 0.3);
  transform: translate(4px, 4px);
}

.product-media {
  min-height: 470px;
  border-bottom: 3px solid var(--ink);
  background: var(--cream);
}

.product-media::before {
  width: 300px;
  height: 300px;
  border: 3px solid rgba(36, 28, 22, 0.14);
  border-radius: 50%;
}

.product-media img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: none;
}

.product-status {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 1px;
  color: var(--ink);
  background: var(--copper-light);
  backdrop-filter: none;
}

.product-body {
  padding: 28px;
}

.product-kicker {
  color: var(--burgundy);
}

.product-meta span {
  border: 2px solid var(--ink);
  border-radius: 1px;
  color: var(--ink);
  background: var(--cream);
}

.ritual-label {
  border: 3px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: var(--copper-light);
  box-shadow: 6px 6px 0 var(--burgundy);
}

.step {
  border-top: 2px solid var(--ink);
}

.step:last-child {
  border-bottom: 2px solid var(--ink);
}

.step-number {
  color: var(--burgundy);
  font-weight: 800;
}

section[aria-labelledby="culture-title"] {
  color: var(--ink);
  background: var(--copper-light);
}

.serving-section {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(227, 182, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 182, 63, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.serving-heading {
  max-width: 900px;
}

.sugar-grid {
  display: grid;
  margin-top: 38px;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.sugar-card {
  min-height: 210px;
  padding: 26px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: #fff7df;
}

.sugar-card:nth-child(2) {
  background: var(--copper-light);
}

.sugar-card:nth-child(3) {
  color: #fff7df;
  background: var(--copper);
}

.sugar-card:nth-child(4) {
  color: #fff7df;
  background: var(--forest);
}

.choice-term {
  display: block;
  margin-bottom: 22px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sugar-card:nth-child(3) .choice-term,
.sugar-card:nth-child(4) .choice-term {
  color: var(--cream);
}

.sugar-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}

.sugar-card p {
  margin: 0;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.55;
}

.serving-lower-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.milk-card,
.pairing-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(36, 28, 22, 0.16);
}

.milk-card {
  color: #fff7df;
  background: var(--forest);
}

.milk-card .eyebrow,
.milk-card p {
  color: #fff7df;
}

.pairing-card {
  background: var(--copper-light);
}

.pairing-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pairing-list li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 2px solid var(--ink);
}

.pairing-list li:last-child {
  border-bottom: 2px solid var(--ink);
}

.pairing-list strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.pairing-list span {
  font-size: 0.84rem;
  line-height: 1.5;
}

.source-note {
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 6px solid var(--burgundy);
  color: var(--ink-soft);
  background: rgba(255, 247, 223, 0.86);
  font-size: 0.76rem;
  line-height: 1.65;
}

.source-note a {
  color: var(--burgundy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

section[aria-labelledby="culture-title"] .lead,
section[aria-labelledby="culture-title"] p {
  color: var(--ink);
}

.quote {
  border-top: 3px solid var(--ink);
  border-left: 6px solid var(--burgundy);
  color: var(--burgundy);
  font-weight: 800;
}

.partner-image {
  border-color: var(--copper-light);
  box-shadow: 10px 10px 0 var(--burgundy);
}

.partner-types li {
  border: 2px solid rgba(255, 247, 223, 0.7);
  border-radius: 2px;
  color: #fff7df;
  background: rgba(36, 28, 22, 0.18);
}

.disclaimer {
  padding: 14px;
  border-left: 5px solid var(--copper-light);
  color: rgba(255, 247, 223, 0.76);
  background: rgba(36, 28, 22, 0.2);
}

.faq-list {
  gap: 14px;
}

.faq-list details {
  border: 3px solid var(--ink);
  border-radius: 2px;
  background: #fff7df;
  box-shadow: 5px 5px 0 rgba(36, 28, 22, 0.14);
}

.faq-list details:nth-child(even) {
  background: var(--copper-light);
}

.faq-list summary::before,
.faq-list summary::after {
  height: 3px;
  background: var(--forest);
}

.faq-answer {
  color: var(--ink);
}

.contact-card {
  border: 5px solid var(--ink);
  border-radius: 3px;
  background:
    radial-gradient(circle at 88% 14%, rgba(227, 182, 63, 0.26), transparent 26%),
    var(--burgundy);
  box-shadow: 12px 12px 0 var(--forest);
}

.contact-card::after {
  border-width: 3px;
  border-color: rgba(255, 247, 223, 0.18);
}

.site-footer {
  border-top: 8px solid var(--copper-light);
  color: rgba(255, 247, 223, 0.78);
  background: #202b1a;
}

.site-footer .brand {
  color: #fff7df;
}

.footer-title {
  color: var(--copper-light);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 247, 223, 0.2);
  color: rgba(255, 247, 223, 0.72);
}

.footer-bottom a {
  color: rgba(255, 247, 223, 0.82);
}

.legal-hero,
.error-page {
  border-bottom: 5px solid var(--copper-light);
  background:
    radial-gradient(circle at 88% 16%, rgba(227, 182, 63, 0.2), transparent 28%),
    var(--forest);
}

.legal-callout {
  border: 3px solid var(--ink);
  border-left: 8px solid var(--copper);
  border-radius: 2px;
  background: var(--copper-light);
  box-shadow: 5px 5px 0 rgba(36, 28, 22, 0.15);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a {
    font-size: 0.82rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 820px);
  }

  .hero-note {
    right: 18px;
  }

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

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: auto;
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    padding: 36px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
  }

  .main-nav > a::after {
    display: none;
  }

  .language-switcher {
    width: fit-content;
    margin-top: 20px;
  }

  .intro-grid,
  .story-grid,
  .ritual-grid,
  .culture-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .story-image,
  .ritual-image-wrap,
  .culture-image,
  .partner-image {
    width: min(100%, 720px);
  }

  .story-grid .story-image,
  .partner-grid .partner-image {
    order: -1;
  }

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

  .sugar-grid,
  .serving-lower-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-note {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    padding-inline: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    top: 100%;
    height: auto;
    max-height: calc(100vh - 116px);
    max-height: calc(100dvh - 116px);
  }

  .brand-word {
    font-size: 1.22rem;
  }

  .brand-word small {
    font-size: 0.42rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-mark i {
    width: 7px;
    height: 10px;
  }

  .brand-mark i:nth-child(1),
  .brand-mark i:nth-child(3) {
    left: 6px;
  }

  .brand-mark i:nth-child(2),
  .brand-mark i:nth-child(4) {
    right: 6px;
  }

  .hero-grid {
    padding-block: 50px 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .hero-image-frame {
    border-width: 4px;
    border-radius: 2px;
    box-shadow: 8px 8px 0 var(--copper);
    transform: none;
  }

  .hero-note {
    right: 10px;
    bottom: -38px;
    width: 116px;
    height: 116px;
    font-size: 0.56rem;
  }

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

  .season:nth-child(3) {
    border-left: 3px solid var(--ink);
  }

  .season {
    min-height: 62px;
    border-bottom: 3px solid var(--ink);
  }

  .season:nth-child(2),
  .season:nth-child(4) {
    border-right: 0;
  }

  .season:nth-child(3),
  .season:nth-child(4) {
    border-bottom: 0;
  }

  .facts-grid,
  .sugar-grid,
  .serving-lower-grid,
  .product-grid,
  .partner-types,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 170px;
  }

  .sugar-card,
  .milk-card,
  .pairing-card {
    min-height: 0;
  }

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

  .product-media img {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 400px;
  }

  .ritual-label {
    right: 12px;
    bottom: -22px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media print {
  .announcement,
  .site-header,
  .hero-actions,
  .contact-actions,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .legal-content {
    padding: 28px 0;
  }
}
