/* ============================================================
   still—room — retail layout v3
   Light, airy, editorial. Ink on bone. Clay accents.
   ============================================================ */

:root {
  --bone:        #f6f1e8;
  --paper:       #efe9dd;
  --paper-2:     #e8e1d2;
  --soft:        #f0ebdf;
  --line:        #e4dccc;
  --line-2:      rgba(20,17,13,0.08);
  --rule:        rgba(20,17,13,0.12);
  --ink:         #14110d;
  --night:       #1a1612;
  --umber:       #4a3522;
  --tobacco:     #6e4f33;
  --clay:        #b39572;
  --accent:      #b3603b;

  --serif:       "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw:        1340px;
  --gutter:      max(20px, 4vw);
  --r:           4px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--ink); color: var(--bone); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin: 0 0 16px;
  font-weight: 500;
}
.dash, .dash-thin {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.04em;
}
.thin { color: var(--clay); padding: 0 .15em; }

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: box-shadow 0.3s ease;
}
.topbar.is-scrolled { box-shadow: 0 1px 0 var(--line-2); }
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px var(--gutter);
  gap: 20px;
}

/* Brand mark — Inter, +30% bigger than v2 */
.brand {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
  justify-self: center;
}
.brand .dash {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.06em;
  margin: 0 -0.04em;
}

/* Pills — 4 pillars, aligned with brand baseline */
.pill {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  justify-self: start;
  height: fit-content;
}
.pill-btn {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--umber);
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  min-width: 78px;
}
.pill-btn:hover { color: var(--ink); }
.pill-btn:active { transform: scale(0.97); }
.pill-btn.is-on {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 1px 0 var(--line-2);
}

.topbar-right {
  justify-self: end;
  display: flex;
  gap: 4px;
  align-items: center;
}
.icon-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--paper); }

@media (max-width: 980px) {
  .topbar-inner { grid-template-columns: 1fr 1fr; row-gap: 12px; }
  .pill { grid-column: 1 / 3; grid-row: 2; justify-self: stretch; padding: 3px; }
  .pill-btn { flex: 1; padding: 8px 4px; min-width: 0; font-size: 11px; letter-spacing: 0.14em; }
  .brand { grid-column: 1; grid-row: 1; justify-self: start; font-size: clamp(26px, 7vw, 32px); }
  .topbar-right { grid-column: 2; grid-row: 1; }
}

/* ---------- Sub nav + mega menu ---------- */

.subwrap {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--bone);
}
.subnav {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 12px var(--gutter) 14px;
  border-bottom: 1px solid var(--line);
}
.subnav a {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.82;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}
.subnav a:hover { opacity: 1; }
.subnav a.is-mega-active { border-color: var(--ink); opacity: 1; }

/* Mega panel — invisible & intangible until .is-open */
.mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  border-top: 1px dashed var(--rule);
  box-shadow: 0 18px 40px -28px rgba(20,17,13,0.20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.25s ease, visibility 0s linear 0.25s, height 0s linear 0.25s;
  z-index: 49;
}
.mega.is-open {
  height: auto;
  overflow: visible;
}
.mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.mega-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) var(--gutter);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
.mega-title {
  display: none; /* "About" label is implicit from active subnav */
}
.mega-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mega-links a {
  display: block;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.2s ease, padding 0.2s ease;
}
.mega-links a:hover { color: var(--accent); padding-left: 6px; }

.mega-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mega-card {
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.mega-card:hover { transform: translateY(-2px); }
.mega-card-img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.mega-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.mega-card-img-pale { background: var(--paper); }
.mega-card-img-pale img { object-fit: contain; padding: 22px; }
.mega-card:hover .mega-card-img img { transform: scale(1.04); }
.mega-card-pip {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bone);
  border: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px 5px 22px;
  border-radius: 999px;
  color: var(--ink);
}
.mega-card-pip::before {
  content: "";
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.mega-card-cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
}
.mega-card strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}

@media (max-width: 980px) {
  .subwrap { top: 134px; }
  .subnav { gap: 22px; padding: 10px var(--gutter) 12px; font-size: 12px; }
  .mega-inner { grid-template-columns: 1fr; gap: 24px; }
  .mega-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .mega-cards { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn-dark:hover { background: var(--umber); transform: translateY(-1px); }

.btn-pill {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 11px 18px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn-pill:hover { background: var(--ink); color: var(--bone); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  margin-top: 18px;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-line:hover { background: var(--ink); color: var(--bone); }

.btn-thin {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  margin-left: 18px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(420px, 60vh, 640px);
  padding: 24px var(--gutter) 0;
  isolation: isolate;
}
.hero-text {
  align-self: end;
  padding: 24px 8px 56px 0;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--umber);
  padding: 6px 12px 6px 6px;
  margin-bottom: 22px;
}
.hero-badge .badge-mark {
  background: var(--accent);
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 999px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--umber);
  max-width: 38ch;
  margin: 0 0 28px;
}

.hero-img {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 4 / 3;
  align-self: center;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.0);
}
.hero-pip {
  position: absolute;
  left: 14px; top: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(20,17,13,0.55);
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-recommend {
  position: absolute;
  right: var(--gutter);
  bottom: -8px;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 3;
  box-shadow: 0 4px 24px -16px rgba(20,17,13,0.25);
}
.recommend-rank {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.recommend-text {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 12px; }
  .hero-text { padding: 8px 0 24px; order: 2; }
  .hero-img { order: 1; aspect-ratio: 4 / 3; }
  .hero-recommend { right: 16px; bottom: 16px; padding: 10px 12px; }
}

/* ---------- Trust ---------- */

.trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.06em;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 18px;
}
.trust::-webkit-scrollbar { display: none; }
.trust-stars {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.trust-stars span { color: var(--umber); margin-left: 8px; letter-spacing: 0.04em; }
.trust-items { display: flex; gap: 22px; align-items: center; white-space: nowrap; color: var(--ink); }
.trust-author {
  color: var(--tobacco);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10.5px;
}

/* ---------- Editorial ---------- */

.editorial {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(24px, 4vw, 56px);
}
.editorial-body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.36;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 18px;
}
.ed-pill {
  background: var(--accent);
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92em;
  padding: 2px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ed-pill .dash { color: var(--bone); }

/* ---------- 4 Pillars ---------- */

.pillars {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}
.pillars-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 64px);
}
.pillars-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.pillars-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tobacco);
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bone);
  border-radius: var(--r);
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover { border-color: var(--ink); transform: translateY(-2px); }
.pillar.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}
.pillar.is-on .pillar-num,
.pillar.is-on h3,
.pillar.is-on p { color: var(--bone); }
.pillar.is-on .pillar-num { color: var(--clay); }

.pillar figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: transparent;
}
.pillar figure img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.pillar:hover figure img { transform: scale(1.06) rotate(-1deg); }

.pillar > div {
  padding: 24px 22px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar.is-on > div { border-top-color: rgba(243,237,228,0.14); }

.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--clay);
  font-size: 14px;
  letter-spacing: 0;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.pillar p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--umber);
  margin: 4px 0 0;
  max-width: 32ch;
}

@media (max-width: 920px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ---------- Big image ---------- */

.big-image {
  padding: 0 var(--gutter) 0;
  display: grid;
  place-items: center;
  gap: 16px;
}
.big-image figure {
  margin: 0;
  width: min(740px, 100%);
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
}
.big-image img { width: 100%; height: 100%; object-fit: cover; }
.big-cap {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tobacco);
  font-size: 14px;
  margin: 0;
}

/* ---------- Compare ---------- */

.compare {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(48px, 7vw, 96px);
}
.compare-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-bottom: 18px;
}
.tab {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--umber);
}
.tab-on {
  background: var(--bone);
  border-color: var(--ink);
  color: var(--ink);
}
.compare-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 48px;
}

.compare-table {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.ct-row { display: contents; }
.ct-row > div {
  padding: 18px 14px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--umber);
}
.ct-row.ct-head > div {
  background: var(--paper);
  border-top: none;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
  padding: 18px 12px;
}
.ct-row > div:first-child {
  justify-content: start;
  text-align: left;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.ct-brand-cell { background: rgba(179, 96, 59, 0.06); }
.ct-brand .ct-mark {
  display: inline-block;
  background: var(--accent);
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}
.ct-row > div em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-left: 4px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-yes { background: var(--ink); }
.dot-no { background: transparent; border: 1px solid var(--rule); }
.dot-partial { background: var(--clay); }

@media (max-width: 760px) {
  .compare-table { grid-template-columns: 1.6fr repeat(5, 1fr); font-size: 11px; }
  .ct-row > div { padding: 14px 6px; font-size: 12px; }
  .ct-row > div em { display: none; }
}

/* ---------- Shop ---------- */

.shop {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}
.shop-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.shop-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.01em;
  margin: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}
.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: visible;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}
.card.is-out {
  display: none;
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: transparent;
  overflow: hidden;
  display: grid; place-items: center;
  border-radius: var(--r);
}
.card-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.8s ease;
  filter: drop-shadow(0 14px 22px rgba(20,17,13,0.10));
}
.card:hover .card-media img { transform: scale(1.04); }

.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
}
.card-foot {
  position: absolute;
  right: 12px; bottom: 12px;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 4px;
  display: flex; gap: 8px; align-items: center;
}
.card-foot .recommend-rank { font-size: 18px; }
.card-foot .recommend-text { font-size: 8.5px; letter-spacing: 0.16em; }

.card-body {
  padding: 14px 4px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.card-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
}
.card-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--umber);
  max-width: 38ch;
}
.card-foot-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 4px;
  font-size: 13px;
}
.price { font-weight: 500; }
.price em { color: var(--tobacco); font-style: normal; font-size: 12px; }
.rating { color: var(--tobacco); font-size: 12px; }
.rating em { font-style: normal; color: var(--clay); }

@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .shop-grid { grid-template-columns: 1fr; } }

/* ---------- Hotels upside ---------- */

.hotels {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(24px, 4vw, 48px);
}
.hotels-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.hotels-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.hotels-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tobacco);
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hotels-grid article {
  background: var(--bone);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.hotels-grid strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hotels-grid span { font-size: 13.5px; color: var(--umber); max-width: 26ch; }
@media (max-width: 880px) { .hotels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hotels-grid { grid-template-columns: 1fr; } }

/* ---------- Partners ---------- */

.partners {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  border-top: 1px solid var(--line);
}
.partners-head { text-align: center; margin-bottom: 40px; }
.partners-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.015em;
  margin: 0;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}
.partners-grid article {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.partners-grid h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--ink);
}
.partners-grid p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--umber);
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 880px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .partners-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */

.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter);
  border-top: 1px solid var(--line);
}
.about-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.about-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

.about-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.about-side { position: sticky; top: 140px; }
.side-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin: 0 0 12px;
  font-weight: 500;
}
.side-title-2 { margin-top: 36px; }

.side-tabs {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.side-tabs li { border-bottom: 1px solid var(--line); }
.side-tab {
  display: flex; width: 100%;
  align-items: center; justify-content: space-between;
  border: none; background: transparent;
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--umber);
  cursor: pointer;
  letter-spacing: 0;
  text-align: left;
  transition: color 0.2s ease, padding 0.2s ease;
}
.side-tab:hover { color: var(--ink); padding-left: 8px; }
.side-tab.is-on {
  color: var(--ink);
  font-weight: 500;
}
.side-tab.is-on::after {
  content: "→";
  color: var(--accent);
  margin-left: 8px;
}

.side-articles {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.side-articles li { border-bottom: 1px solid var(--line); }
.side-articles a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 4px;
  transition: padding 0.2s ease;
}
.side-articles a:hover { padding-left: 8px; }
.side-articles a span {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.side-articles a strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.about-pane { min-height: 360px; }
.pane { display: none; }
.pane.is-on { display: block; }
.pane h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.pane p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--umber);
  margin: 0 0 18px;
  max-width: 60ch;
}
.pane-mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tobacco);
  display: flex; flex-wrap: wrap; gap: 14px;
}
.pane-mark span:last-child { color: var(--ink); font-style: normal; }

.pane-stats {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 24px;
}
.pane-stats li {
  background: var(--bone);
  padding: 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.pane-stats strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
}
.pane-stats span {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tobacco);
}

@media (max-width: 880px) {
  .about-shell { grid-template-columns: 1fr; }
  .about-side { position: relative; top: auto; }
}

/* ---------- Community ---------- */

.community {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter) 24px;
}
.community-eyebrow {
  text-align: center;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.c-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 240px;
}
.c-card-img {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 0;
}
.c-card-img img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20,17,13,0.55);
  border: 1px solid rgba(246,241,232,0.4);
  display: grid; place-items: center;
}
.play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--bone);
  margin-left: 3px;
}
.c-stars { color: var(--accent); font-size: 11px; letter-spacing: 0.2em; }
.c-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0;
}
.c-card p { margin: 0; color: var(--umber); font-size: 14px; }
.c-author {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.c-author em { color: var(--tobacco); font-style: normal; }

@media (max-width: 920px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .c-card-img { aspect-ratio: 4 / 3; }
}

/* ---------- Promo ---------- */

.promo {
  display: grid;
  place-items: center;
  padding: 32px var(--gutter) 64px;
}
.promo-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 22px 32px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  box-shadow: 0 14px 40px -28px rgba(20,17,13,0.3);
}
.promo-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
}
.promo-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
}
.promo-card h3 em { color: var(--accent); font-style: italic; }

/* ---------- Final quote ---------- */

.final-quote {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.final-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  color: var(--ink);
  margin: 0 0 18px;
}
.final-author {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tobacco);
}
.final-author span { color: var(--clay); }

/* ---------- Footer ---------- */

.foot {
  background: var(--paper);
  padding: clamp(48px, 7vw, 96px) var(--gutter) 32px;
  border-top: 1px solid var(--line);
}
.foot-mark-wrap {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.foot-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.015em;
}
.dash-thin { font-size: 0.5em; vertical-align: super; color: var(--clay); }

.foot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.foot-grid > div { display: flex; flex-direction: column; gap: 6px; }
.foot-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 600;
}
.foot-grid a {
  font-size: 13px;
  color: var(--umber);
  transition: color 0.2s ease;
}
.foot-grid a:hover { color: var(--ink); }

.news-form {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.news-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 0;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.news-form input::placeholder { color: var(--tobacco); }
.news-form button {
  border: none;
  background: transparent;
  padding: 8px 4px;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
}
.news-form .news-thanks {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  font-size: 12.5px;
  color: var(--accent);
  background: var(--paper);
}
.news-form.done .news-thanks { display: flex; }
.foot-fine { font-size: 11.5px; color: var(--tobacco); margin: 8px 0 0; }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11.5px;
  color: var(--tobacco);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 920px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-news { grid-column: 1 / 3; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-news { grid-column: 1; }
}

/* ---------- Wellness Game page ---------- */

.wg-hero {
  padding: clamp(48px, 8vw, 120px) var(--gutter) clamp(32px, 6vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.wg-hero .eyebrow { color: var(--accent); }
.wg-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.wg-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tobacco);
  font-size: clamp(16px, 1.4vw, 22px);
  max-width: 56ch;
  margin: 0 auto 32px;
}

.wg-quiz {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}
.wg-step { display: none; }
.wg-step.is-on { display: block; }
.wg-step h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  text-align: center;
}
.wg-prog {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 24px;
}
.wg-prog span {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--line);
  transition: background 0.4s ease;
}
.wg-prog span.is-done { background: var(--accent); }
.wg-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.wg-opt {
  border: 1px solid var(--line);
  background: var(--bone);
  padding: 22px 20px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.wg-opt:hover { border-color: var(--ink); }
.wg-opt:active { transform: scale(0.99); }
.wg-opt strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.wg-opt span { color: var(--tobacco); font-size: 13px; }
@media (max-width: 540px) { .wg-options { grid-template-columns: 1fr; } }

.wg-result {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.wg-score {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 16px 0;
}
.wg-score em { color: var(--accent); font-style: normal; }
.wg-score-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
}
.wg-rec {
  margin-top: 56px;
  text-align: left;
}
.wg-rec h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-align: center;
}
.wg-rec-sub { text-align: center; color: var(--tobacco); margin: 0 0 28px; font-size: 14px; }
.wg-rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 760px) { .wg-rec-grid { grid-template-columns: 1fr; } }

.wg-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin: 36px 0 0;
}

/* Articles grid (Wellness Game) */
.wg-articles {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--gutter);
  border-top: 1px solid var(--line);
}
.wg-art-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.wg-art-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
  margin: 0;
}
.wg-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}
.wg-article {
  display: flex; flex-direction: column; gap: 10px;
}
.wg-article-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.wg-article-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.wg-article:hover .wg-article-img img { transform: scale(1.04); }
.wg-article-cat {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.wg-article h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  margin: 0;
}
.wg-article p {
  margin: 0;
  font-size: 14px;
  color: var(--umber);
  max-width: 42ch;
}
.wg-article-read {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: auto;
}
@media (max-width: 920px) { .wg-art-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .wg-art-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */

.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  .card-media img, .pillar figure img { transition: none; transform: none; }
}
