/* Hero */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero { padding-bottom: 40px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 44px; }
  .hero-grid > :first-child { text-align: center; }
  .hero-meta { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .spec-grid { margin-inline: auto; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: center;
}
.hero-meta .sep {
  width: 32px; height: 1px; background: var(--line-strong);
}

.hero h1 { margin-bottom: 26px; }

.hero-lede {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}

/* Hero spec grid — clean 2x2 fact card */
.spec-grid {
  margin-top: 44px;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spec-cell {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 3px;
  padding: 16px 22px;
  align-items: center;
  background:
    linear-gradient(180deg, var(--bone) 0%, oklch(0.955 0.016 88) 100%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.8);
  transition: background 0.3s ease, transform 0.3s ease;
}
.spec-cell:hover {
  background:
    linear-gradient(180deg, oklch(0.975 0.012 90) 0%, var(--cream-deep) 100%);
}
.spec-cell:nth-child(odd)    { border-inline-end: 1px solid var(--line); }
.spec-cell:nth-child(-n+2)   { border-bottom:   1px solid var(--line); }

.spec-ico {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: var(--olive-deep);
  opacity: 0.9;
}
.spec-lbl {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-weight: 500;
}
.spec-val {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.spec-val em {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  color: var(--olive-deep);
  padding: 0 2px;
}

@media (max-width: 720px) {
  .spec-grid { margin-top: 32px; max-width: 480px; }
  .spec-cell { padding: 14px 16px; column-gap: 12px; }
  .spec-ico { width: 26px; height: 26px; }
  .spec-lbl { font-size: 10px; letter-spacing: 0.14em; }
  .spec-val { font-size: 17px; }
}
@media (max-width: 640px) {
  .spec-grid { margin-top: 28px; max-width: 380px; }
  .spec-cell { padding: 11px 13px; column-gap: 10px; }
  .spec-ico { width: 22px; height: 22px; }
  .spec-lbl { font-size: 9.5px; letter-spacing: 0.12em; }
  .spec-val { font-size: 15px; }
}

/* Hero visual: bottle on stage.
   .hero-stage defines the frame the bottle fills — all floating labels
   are positioned relative to it, so they stay tied to the bottle on any
   screen size. */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}
.hero-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  width: min(100%, 520px);
  max-height: 78vh;
  display: grid;
  place-items: center;
}
.hero-bottle {
  position: relative;
  z-index: 2;
  height: 90%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}
.hero-badge {
  position: absolute;
  z-index: 3;
  padding: clamp(7px, 1.2vw, 10px) clamp(11px, 1.6vw, 16px);
  background: var(--olive-deep);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: clamp(10.5px, 1.05vw, 12.5px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-badge.tl { top: 3%; left: 2%; }
.hero-badge.br { bottom: 3%; right: 2%; background: var(--gold); color: var(--ink); }
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--olive-bright);
  box-shadow: 0 0 0 0 var(--olive-bright);
  animation: pulse 2.2s infinite;
}
.hero-badge .snow-ico {
  width: 14px;
  height: 14px;
  color: currentColor;
  animation: snow-spin 14s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.68 0.13 120 / 0.6); }
  70% { box-shadow: 0 0 0 12px oklch(0.68 0.13 120 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.68 0.13 120 / 0); }
}
@keyframes snow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge .snow-ico { animation: none; }
}

.hero-annotation {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: clamp(10.5px, 1.05vw, 12.5px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: oklch(0.98 0.01 90 / 0.9);
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  white-space: nowrap;
  max-width: 70%;
}
/* Labels sit in the empty corners / sides of the stage, away from the
   bottle silhouette (centered, ~40% of stage width) and the olive
   branches (~55–75% of height). */
.hero-annotation.a1 { top: 20%; right: 0; }
.hero-annotation.a2 { top: 44%; left: 0; transform: translateY(-50%); }
.hero-annotation.a3 { bottom: 3%; left: 2%; }

@media (max-width: 640px) {
  .hero-stage { max-height: 70vh; }
  .hero-annotation { font-size: 10px; padding: 5px 9px; letter-spacing: 0.06em; }
  .hero-badge { font-size: 10px; padding: 6px 10px; letter-spacing: 0.08em; }
  .hero-annotation.a1 { top: 16%; right: 0; }
  .hero-annotation.a2 { top: 44%; left: 0; }
  .hero-annotation.a3 { bottom: 3%; left: 2%; }
}

/* Floating olive marks */
/* ---------- Grades section ---------- */
.grades {
  background:
    radial-gradient(ellipse at 80% 20%, oklch(0.3 0.05 120 / 0.8), transparent 55%),
    var(--ink);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
/* Top-right olive branch ornament. On mobile it flips to top-left. */
.grades::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(480px, 50%, 680px);
  aspect-ratio: 2400 / 1340;
  background: url("assets/olive-branch.png") right top / 100% 100% no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.1);
  transform: translate3d(0, calc(var(--parallax, 0px) * -1), 0);
  transition: transform 220ms linear;
}
@media (max-width: 640px) {
  .grades::after {
    right: auto;
    left: 0;
    width: 80%;
    transform: translate3d(0, calc(var(--parallax, 0px) * -1), 0) scaleX(-1);
    opacity: 0.10;
  }
}
/* Arch of Septimius Severus watermark — thematic tie to Leptis Magna.
   mix-blend-mode: screen drops the image's black field and leaves the
   gold lines glowing over the ink background. */
.grades::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  max-width: 920px;
  aspect-ratio: 2400 / 1340;
  background: url("assets/arch1.png") left bottom / 100% 100% no-repeat;
  transform: translate3d(0, calc(7% + var(--parallax, 0px)), 0);
  transform-origin: left bottom;
  mix-blend-mode: screen;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.1);
  transition: transform 220ms linear;
}
@media (max-width: 900px) {
  .grades::before { width: 90%; max-width: none; opacity: 0.10; }
}
@media (max-width: 640px) {
  .grades::before { width: 120%; opacity: 0.08; transform: translate3d(0, calc(9% + var(--parallax, 0px)), 0); }
}
.grades .eyebrow, .grades .section-label { color: var(--gold); }
.grades .section-label::before { background: var(--gold); }
.grades h2 { color: var(--cream); }
.grades p { color: oklch(0.82 0.02 100); }

.grades-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .grades-top { grid-template-columns: 1fr; gap: 30px; }
}

.grade-ladder {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}
.grade-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  border: 1px solid oklch(0.82 0.02 100 / 0.12);
  background: oklch(0.26 0.025 120);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.grade-row:hover {
  background: oklch(0.30 0.04 125);
  border-color: var(--gold-soft);
  transform: translateX(calc(6px * var(--dir, 1)));
}
.grade-row.top {
  background: linear-gradient(90deg, oklch(0.32 0.06 125), oklch(0.26 0.04 120));
  border-color: var(--gold);
}
.grade-row.top::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 4px;
  background: var(--gold);
}
.grade-row .rank {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  text-align: center;
}
.grade-row.mid .rank { color: oklch(0.7 0.04 100); }
.grade-row.bottom .rank { color: oklch(0.55 0.03 100); }

.grade-row h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--cream);
}
.grade-row p { margin: 0; font-size: 14.5px; line-height: 1.55; }
.grade-row .tag {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  white-space: nowrap;
}
.grade-row.mid .tag { color: oklch(0.75 0.03 100); border-color: oklch(0.75 0.03 100 / 0.5); }
.grade-row.bottom .tag { color: oklch(0.6 0.04 100); border-color: oklch(0.6 0.04 100 / 0.4); }

@media (max-width: 640px) {
  .grades { padding: 90px 0; }
  .grade-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 10px;
    padding: 22px 20px;
    align-items: start;
  }
  .grade-row:hover { transform: none; }
  .grade-row .rank {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 44px;
    align-self: center;
    padding: 0;
    min-width: 0;
    line-height: 1;
  }
  .grade-row .tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    font-size: 10.5px;
    padding: 4px 10px;
    letter-spacing: 0.1em;
  }
  .grade-row > div {
    grid-column: 2;
    grid-row: 2;
  }
  .grade-row h3 { font-size: 20px; }
  .grade-row p { font-size: 13.5px; }
}

/* ---------- Benefits ---------- */
.benefits { padding: 140px 0; }
.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 860px) {
  .benefits-head { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .benefits { padding: 90px 0; }
  .benefits-head { margin-bottom: 40px; }
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.benefit-card {
  grid-column: span 4;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: var(--bone);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px oklch(0.3 0.05 120 / 0.3);
  border-color: var(--olive-mid);
}
.benefit-card.wide { grid-column: span 8; }
.benefit-card.feature {
  grid-column: span 8;
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}
.benefit-card.feature h3, .benefit-card.feature .b-num { color: var(--gold); }
.benefit-card.feature p { color: oklch(0.88 0.02 100); }

.benefit-card .b-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 44px;
  color: var(--olive-deep);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.benefit-card p { font-size: 15px; line-height: 1.6; margin: 0; }

.benefit-card .b-corner {
  position: absolute;
  top: 22px; left: 22px;
  opacity: 0.5;
}

/* Card illustration — sits behind the text as a watermark. */
.benefit-card > :not(.b-art) { position: relative; z-index: 1; }
.benefit-card .b-art {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  width: 110px;
  height: auto;
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.benefit-card.feature .b-art {
  width: 130px;
  opacity: 0.22;
}

@media (max-width: 900px) {
  .benefit-card, .benefit-card.wide, .benefit-card.feature { grid-column: span 12; }
  .benefit-card .b-art { width: 90px; }
  .benefit-card.feature .b-art { width: 110px; }
}

/* ---------- Tasting walkthrough ---------- */
.tasting {
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.tasting-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
@media (max-width: 640px) {
  .tasting { padding: 90px 0; }
  .tasting-head { margin-bottom: 40px; }
}
.tasting-head .section-label {
  justify-content: center;
  margin-bottom: 20px;
}
.tasting-head .section-label::before,
.tasting-head .section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--olive-mid);
}

.tasting-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 30px 80px -40px oklch(0.3 0.05 120 / 0.25);
}
@media (max-width: 900px) {
  .tasting-stage { grid-template-columns: 1fr; padding: 32px; gap: 36px; }
}
@media (max-width: 640px) {
  .tasting-stage { padding: 18px; gap: 24px; border-radius: var(--radius-md); }
}

/* Step video stack — tasting walkthrough */
.step-video-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bone);
}
.step-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.step-video.is-active { opacity: 1; }
.glass-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid);
}

/* Aroma/ripple animation classes (applied by JS) */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--olive-bright);
  opacity: 0;
  pointer-events: none;
}
.aroma-wisp {
  position: absolute;
  width: 2px;
  background: linear-gradient(to top, transparent, var(--olive-mid), transparent);
  opacity: 0;
  pointer-events: none;
}

/* Step panel */
.step-panel {
  display: flex;
  flex-direction: column;
}
.step-tracker {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.step-tracker .tick {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.step-tracker .tick.done { background: var(--olive-deep); }
.step-tracker .tick.active {
  background: linear-gradient(to left, var(--olive-deep) var(--progress, 0%), var(--line) var(--progress, 0%));
}

.step-num-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
}
.step-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--olive-deep);
}
.step-letter {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.step-title {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  min-height: 80px;
}

.cue-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.cue-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}
.cue-list .ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: oklch(0.92 0.04 95);
  color: var(--olive-deep);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
}

.step-controls {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.step-controls .count {
  margin-inline-start: auto;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--olive-mid);
  letter-spacing: 0.12em;
  align-self: center;
}
.btn-auto { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 900px) {
  .step-panel { position: relative; }
  .step-tracker { margin-bottom: 18px; }

  /* Letter pill floats to the trailing corner (right in LTR, left in RTL) */
  .step-letter {
    position: absolute;
    top: 18px;
    inset-inline-end: 0;
    font-size: 10px;
    padding: 5px 10px;
    margin: 0;
  }

  /* Number + title flow inline on one row */
  .step-num-row {
    display: inline-flex;
    gap: 0;
    margin: 0 0 6px;
    margin-inline-end: 14px;
    vertical-align: baseline;
  }
  .step-num { font-size: 34px; line-height: 1; }
  .step-title {
    display: inline;
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
  }

  .step-desc {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 14px 0 16px;
    min-height: 0;
  }
  .cue-list { margin: 0 0 20px; gap: 8px; }
  .cue-list li { padding: 10px 12px; font-size: 13.5px; }
  .step-controls { padding-top: 14px; gap: 8px; flex-wrap: wrap; }
  .step-controls .btn { padding: 10px 14px; font-size: 13px; }
  .step-controls .count { display: none; }
  .btn-auto .btn-label { display: none; }
  .btn-auto { padding: 10px 12px; }
}

/* ---------- Signs section ---------- */
.signs {
  padding: 140px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.signs .section-label { color: var(--gold); }
.signs .section-label::before { background: var(--gold); }
.signs h2 { color: var(--cream); }

.signs-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
}
.signs-head h2 { margin-top: 22px; }
.signs-head h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
}
.signs-head .lede { color: oklch(0.82 0.02 100); }

@media (max-width: 860px) {
  .signs-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .signs { padding: 90px 0; }
  .signs-head h2 { margin-top: 16px; }
  .signs-head .lede { font-size: 16px; }
}

.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
@media (max-width: 640px) {
  .signs-grid { margin-top: 40px; gap: 20px; }
  .signs-card { padding: 28px 22px; }
}
@media (max-width: 860px) { .signs-grid { grid-template-columns: 1fr; } }

.signs-card {
  padding: 36px;
  border-radius: var(--radius-md);
  background: oklch(0.26 0.025 120);
  border: 1px solid oklch(0.82 0.02 100 / 0.1);
  position: relative;
}
.signs-card.good { border-color: oklch(0.6 0.12 130 / 0.5); }
.signs-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--cream);
}
.signs-card .sub {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}
.signs-card.good .sub { color: oklch(0.78 0.12 130); }
.signs-card.bad .sub { color: oklch(0.72 0.09 40); }

.signs-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 2px;
}
.signs-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid oklch(0.82 0.02 100 / 0.1);
  font-size: 15px;
  line-height: 1.5;
  color: oklch(0.88 0.02 100);
}
.signs-list li:first-child { border-top: 0; }
.signs-list .mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  margin-top: 2px;
}
.signs-card.good .mark { background: oklch(0.55 0.14 140); color: var(--cream); }
.signs-card.bad .mark { background: oklch(0.4 0.08 40); color: oklch(0.88 0.08 55); }

/* ---------- Closing ---------- */
.closing {
  padding: 140px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing h2 {
  max-width: 18ch;
  margin: 0 auto 28px;
}
.closing .quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.3;
  color: var(--olive-deep);
  max-width: 22ch;
  margin: 40px auto 12px;
}
.closing .quote-attr {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid);
}
.closing-bottle {
  width: 120px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 30px oklch(0.3 0.04 120 / 0.2));
}

/* Footer */
.footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-mid);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.footer-mark {
  width: 28px;
  height: 28px;
  color: var(--olive-deep);
  flex: 0 0 auto;
}
.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/* In LTR, reverse the DOM order so the copyright sits at the far-right
   corner — the conventional spot — mirroring the RTL visual ordering. */
html[dir="ltr"] .footer-meta { flex-direction: row-reverse; }
.footer-dot {
  color: var(--line-strong);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .footer { padding: 28px 0 32px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    font-size: 10.5px;
  }
  .footer-meta {
    gap: 8px;
    letter-spacing: 0.08em;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
