/* Enjoy The Wood Maps — tier-1 editorial commerce */
:root {
  --bg: #f6f5f2;
  --bg-soft: #ffffff;
  --ink: #141413;
  --ink-2: #2e2d2a;
  --muted: #6b6862;
  --line: rgba(20, 20, 19, 0.08);
  --line-strong: rgba(20, 20, 19, 0.14);
  --accent: #2f5d45;
  --accent-deep: #234734;
  --accent-soft: rgba(47, 93, 69, 0.08);
  --accent-glow: rgba(47, 93, 69, 0.28);
  --warm: #faf6ef;
  --sage: #eef3ee;
  --cream: #fbfaf7;
  --max: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-section: clamp(4.5rem, 9vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(47, 93, 69, 0.07), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(180, 170, 150, 0.14), transparent 48%),
    var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 245, 242, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.brand span {
  font-weight: 600;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-deep);
}

.nav-cta {
  padding: 0.55rem 1.05rem !important;
  border: 0 !important;
  border-radius: 999px;
  font-weight: 560 !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent)) !important;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-deep), #3a7a55) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .lang-switch {
    order: -1;
    width: 100%;
    justify-content: center;
    padding-bottom: 0.35rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: none;
    position: absolute;
    inset-inline: 1.25rem;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1.1rem 1.2rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(20, 20, 19, 0.1);
  }

  .nav.is-open {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--ink);
  color: #fafaf8;
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn--cta {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 55%, #3d7a54 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 28px var(--accent-glow);
  animation: cta-pulse 3s ease-in-out infinite;
}

.btn--cta:hover {
  background: linear-gradient(135deg, #1f3d2c 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 12px 36px rgba(47, 93, 69, 0.38);
}

.btn--cta::after {
  content: "→";
  margin-left: 0.15rem;
  transition: transform 0.25s var(--ease);
}

.btn--cta:hover::after {
  transform: translateX(3px);
}

.btn--lg {
  padding: 1rem 1.65rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 8px 28px var(--accent-glow),
      0 0 0 0 rgba(47, 93, 69, 0.35);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 8px 28px var(--accent-glow),
      0 0 0 10px rgba(47, 93, 69, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--cta {
    animation: none;
  }
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Hero */
.hero {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2rem -4vw 0;
  z-index: -1;
  border-radius: 0 0 48px 48px;
  background:
    radial-gradient(ellipse 70% 55% at 8% 20%, rgba(47, 93, 69, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(200, 185, 155, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(246, 245, 242, 0) 88%);
  pointer-events: none;
}

.hero__cta-spot {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  animation: rise 0.85s var(--ease) 0.18s both;
}

.hero__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__cta-note {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.45;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: center;
}

.hero__copy {
  padding: 0.25rem 0;
  max-width: none;
  min-width: 0;
}

.hero__brand {
  font-size: clamp(2.4rem, 5.2vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 1.15rem;
  color: var(--ink);
  animation: rise 0.85s var(--ease) both;
}

.hero__brand em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 34ch;
  margin: 0 0 0.85rem;
  color: var(--ink-2);
  animation: rise 0.85s var(--ease) 0.06s both;
}

.hero__lead {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  animation: rise 0.85s var(--ease) 0.12s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: 0;
  animation: rise 0.85s var(--ease) 0.22s both;
}

.hero__trust span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 93, 69, 0.1);
}

.hero__trust span::before {
  display: none;
}

.hero__visual {
  position: relative;
  justify-self: start;
  width: 100%;
  max-width: 420px;
  animation: rise 0.95s var(--ease) 0.1s both;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% -8% -6% 12%;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 28% 18%, rgba(200, 190, 170, 0.4), transparent 55%),
    radial-gradient(circle at 78% 78%, rgba(47, 93, 69, 0.16), transparent 50%),
    linear-gradient(155deg, #ebe6dc, #d4ddd4);
}

.hero__frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  background: #ddd8cf;
  box-shadow: 0 28px 60px rgba(20, 20, 19, 0.12);
}

.hero__frame--video {
  position: relative;
}

.hero__frame img,
.hero__frame .img-ph,
.hero__frame .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  border-radius: 0;
  transition: transform 1.2s var(--ease);
  display: block;
}

.hero__frame--video .hero__poster {
  position: relative;
  z-index: 1;
  transition: opacity 0.55s var(--ease), transform 1.2s var(--ease);
}

.hero__frame--video .hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 1.2s var(--ease);
}

.hero__frame--video.is-video-ready .hero__video {
  opacity: 1;
}

.hero__frame--video.is-video-ready .hero__poster {
  opacity: 0;
  pointer-events: none;
}

.hero__visual:hover .hero__frame img,
.hero__visual:hover .hero__frame .hero__video {
  transform: scale(1.025);
}

.hero__caption {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    width: min(100% - 1.5rem, var(--max));
    padding-top: 1.35rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2rem;
  }

  .hero__visual {
    justify-self: center;
    width: min(100%, 340px);
    order: -1;
  }

  .hero__frame {
    aspect-ratio: 4 / 5;
    max-height: 48vh;
  }

  .hero__brand {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }

  .hero__trust {
    gap: 0.5rem 1rem;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Placeholders */
.img-ph {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #d8d2c8 0%, #b7c4b5 48%, #9a8f7e 100%);
  color: rgba(20, 20, 19, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 220px;
  border-radius: var(--radius);
  padding: 1.25rem;
  line-height: 1.4;
}

.img-ph--hero {
  min-height: 100%;
  border-radius: 0;
}

.img-ph strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(20, 20, 19, 0.72);
  margin-bottom: 0.35rem;
}

.img-ph code {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.35);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e8e4dc;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame--video {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e8e4dc;
}

.media-frame--video .media-frame__poster,
.media-frame--video .media-frame__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame--video .media-frame__poster {
  position: relative;
  z-index: 1;
  aspect-ratio: auto;
  transition: opacity 0.55s var(--ease);
}

.media-frame--video .media-frame__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}

.media-frame--video.is-video-ready .media-frame__video {
  opacity: 1;
}

.media-frame--video.is-video-ready .media-frame__poster {
  opacity: 0;
  pointer-events: none;
}

/* Sections — soft color flow, no hard dividers */
.section {
  position: relative;
  padding: var(--space-section) 0;
}

.section > .wrap {
  position: relative;
  z-index: 1;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--space-section);
}

.section--warm {
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(47, 93, 69, 0.07), transparent 55%),
    linear-gradient(180deg, var(--warm) 0%, rgba(250, 246, 239, 0.4) 45%, var(--bg) 100%);
}

.section--sage {
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(47, 93, 69, 0.09), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--sage) 38%, var(--sage) 62%, var(--bg) 100%);
}

.section--cream {
  background:
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(180, 170, 150, 0.14), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--cream) 42%, var(--cream) 58%, var(--bg) 100%);
}

.section--muted {
  background:
    radial-gradient(ellipse 85% 65% at 20% 0%, rgba(47, 93, 69, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(180, 170, 150, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.25) 100%);
  border: 0;
}

.section-head--accent h2 {
  position: relative;
  padding-bottom: 0.85rem;
}

.section-head--accent h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 93, 69, 0.15));
}

.section-head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 40rem;
}

.section h2,
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.7rem;
}

.section .sub,
.section-head .sub {
  color: var(--muted);
  max-width: 46ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-hero {
  padding: 3.25rem 0 2.25rem;
}

.page-hero-shell {
  position: relative;
  padding: 0 0 1.25rem;
  margin-bottom: 0.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 12% 0%, rgba(47, 93, 69, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 50% at 95% 15%, rgba(200, 185, 155, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(246, 245, 242, 0) 100%);
}

.page-hero-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.page-hero-shell .page-hero {
  position: relative;
  z-index: 1;
}

.page-hero-shell .hero__cta-spot {
  margin-top: 1.5rem;
  max-width: none;
}

.page-hero-shell .hero__cta-actions {
  margin-top: 0.25rem;
}

.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 0.9rem;
  max-width: min(100%, 24ch);
  font-weight: 700;
}

.page-hero .lead {
  max-width: min(100%, 68ch);
  color: var(--muted);
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
}

.page-hero .btn-row {
  margin-top: 1.5rem;
}

.page-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.65rem;
  padding-top: 0;
  border-top: 0;
  max-width: none;
}

.page-trust span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 93, 69, 0.1);
}

.page-trust span::before {
  display: none;
}

.guide-stack {
  display: grid;
  gap: 0;
  max-width: 72ch;
}

.guide-block + .guide-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 0;
  background: linear-gradient(180deg, rgba(47, 93, 69, 0.06), transparent 24px);
}

.guide-block h2:first-child {
  margin-top: 0;
}

.use-angle h2 {
  margin-top: 0;
}

.use-case {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 239, 0.85));
  border: 1px solid rgba(47, 93, 69, 0.1);
  box-shadow: 0 10px 30px rgba(20, 20, 19, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.25s ease;
}

.use-case:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 93, 69, 0.22);
  box-shadow: 0 16px 40px rgba(47, 93, 69, 0.1);
}

.use-case strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}

.use-case span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.use-case a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.use-case a:hover {
  text-decoration: underline;
}

/* Angle cards — More than a map */
.angle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .angle-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

.angle-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 93, 69, 0.1);
  box-shadow: 0 12px 36px rgba(20, 20, 19, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.25s ease;
}

.angle-card:hover {
  transform: translateY(-5px);
  color: inherit;
  border-color: rgba(47, 93, 69, 0.28);
  box-shadow: 0 22px 52px rgba(47, 93, 69, 0.14);
}

.angle-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #e4dfd6;
}

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

.angle-card:hover .angle-card__media img {
  transform: scale(1.04);
}

.angle-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.angle-card__label {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.angle-card__body strong {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.angle-card__body > span:not(.angle-card__label):not(.angle-card__link) {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.angle-card__link {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease);
}

.angle-card:hover .angle-card__link {
  color: var(--accent);
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

/* Type / collection links — image-led, minimal chrome */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem 1.25rem;
}

@media (max-width: 900px) {
  .type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 560px) {
  .type-grid {
    grid-template-columns: 1fr;
  }
}

.type-link {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.65rem;
  text-decoration: none;
  color: inherit;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: visible;
  border: 1px solid rgba(20, 20, 19, 0.06);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(20, 20, 19, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.25s ease;
}

.type-link:hover {
  transform: translateY(-5px);
  color: inherit;
  border-color: rgba(47, 93, 69, 0.22);
  box-shadow: 0 20px 48px rgba(47, 93, 69, 0.12);
}

.type-link .img-ph,
.type-link img {
  aspect-ratio: 5 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 0;
  border-radius: var(--radius);
  display: block;
  background: #e4dfd6;
}

.type-link .type-link__text {
  padding: 0 0.15rem;
}

.type-link strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.type-link span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.type-link:hover strong {
  color: var(--accent-deep);
}

/* Prose */
.prose {
  max-width: 66ch;
}

.prose p {
  color: var(--ink-2);
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
}

.prose h2,
.prose h3 {
  letter-spacing: -0.025em;
  margin: 2rem 0 0.65rem;
  line-height: 1.15;
}

.prose h2 {
  font-size: 1.7rem;
  font-weight: 650;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.prose ul {
  padding-left: 1.15rem;
  color: var(--ink-2);
  margin: 0 0 1.1rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.panel {
  position: sticky;
  top: 5.5rem;
  border: 1px solid rgba(47, 93, 69, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(47, 93, 69, 0.35), transparent 55%),
    linear-gradient(155deg, #1a241d, #141413 62%);
  color: #f6f5f2;
  box-shadow:
    0 24px 60px rgba(20, 20, 19, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.panel h3 {
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 0 0 0.55rem;
  color: inherit;
}

.panel p {
  margin: 0 0 0.85rem;
  color: rgba(246, 245, 242, 0.72);
  font-size: 0.95rem;
}

.panel .price-note {
  font-size: 0.82rem;
  color: rgba(180, 210, 190, 0.95);
}

.panel .btn--primary {
  background: linear-gradient(135deg, #f6f5f2, #fff);
  color: var(--ink);
  width: 100%;
  margin-top: 0.35rem;
  animation: cta-pulse 3s ease-in-out infinite;
}

.panel .btn--primary:hover {
  background: #fff;
  color: var(--ink);
}

/* Feature row */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: center;
}

.feature--flip {
  direction: rtl;
}

.feature--flip > * {
  direction: ltr;
}

.feature .prose h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .feature,
  .feature--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }
}

/* FAQ */
.faq {
  display: grid;
  gap: 0;
  max-width: 720px;
  border-top: 1px solid var(--line);
}

.faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.15rem 0;
  background: transparent;
}

.faq summary {
  cursor: pointer;
  font-weight: 560;
  letter-spacing: -0.015em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

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

.faq details[open] summary {
  margin-bottom: 0.55rem;
  color: var(--accent-deep);
}

.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 58ch;
}

/* CTA */
.cta-band {
  margin: 0 0 var(--space-section);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(47, 93, 69, 0.42), transparent 55%),
    radial-gradient(500px 220px at 100% 80%, rgba(180, 210, 190, 0.12), transparent 50%),
    linear-gradient(145deg, #1a241d, #141413 60%);
  color: #f6f5f2;
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(47, 93, 69, 0.35);
  box-shadow: 0 28px 70px rgba(20, 20, 19, 0.18);
}

.cta-band .btn--primary {
  background: linear-gradient(135deg, #f6f5f2, #fff);
  color: var(--ink);
  justify-self: start;
  animation: cta-pulse 3s ease-in-out infinite;
}

.cta-band .btn--primary:hover {
  background: #fff;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: inherit;
  max-width: 22ch;
}

.cta-band p {
  margin: 0 0 1.35rem;
  color: rgba(246, 245, 242, 0.72);
  max-width: 42ch;
  font-size: 1.02rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.25rem 0 2rem;
  background: rgba(255, 255, 255, 0.4);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.site-footer h3 {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.site-footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--accent-deep);
}

.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  max-width: 34ch;
  line-height: 1.5;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer__disclosure {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.5;
}

.site-footer__disclosure a {
  display: inline;
  color: var(--accent-deep);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare th,
.compare td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.compare th {
  font-size: 1rem;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

/* Before / after */
.ba {
  max-width: 960px;
  margin-inline: auto;
}

.ba__inner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #141413;
  --ba-pos: 50%;
  user-select: none;
  touch-action: none;
  box-shadow: 0 24px 50px rgba(20, 20, 19, 0.1);
}

.ba__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(246, 245, 242, 0.92);
  z-index: 2;
  pointer-events: none;
}

.ba__img {
  position: absolute;
  inset: 0;
}

.ba__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba__img--after {
  z-index: 1;
}

.ba__img--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(246, 245, 242, 0.65);
  background: rgba(20, 20, 19, 0.88);
  cursor: ew-resize;
  padding: 0;
  display: grid;
  place-items: center;
}

.ba__knob {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f6f5f2;
}

.ba__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Coupon: dark green band + wider dashed stub on the right */
.coupon {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(47, 93, 69, 0.45), transparent 55%),
    radial-gradient(500px 240px at 100% 100%, rgba(47, 93, 69, 0.22), transparent 50%),
    linear-gradient(145deg, #1a241d, #141413 62%);
  color: #f6f5f2;
  overflow: hidden;
  position: relative;
}

.coupon__main {
  position: relative;
  z-index: 1;
  padding: 0.35rem 0.25rem 0.35rem 0.5rem;
  text-align: left;
}

.coupon__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 210, 190, 0.95);
}

.coupon__main h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
  color: inherit;
  max-width: 18ch;
}

.coupon__main p {
  margin: 0;
  color: rgba(246, 245, 242, 0.72);
  font-size: 1.02rem;
  max-width: 42ch;
  line-height: 1.55;
}

.coupon__main .btn-row {
  margin-top: 1.25rem;
}

.coupon .btn--primary {
  background: #f6f5f2;
  color: var(--ink);
}

.coupon .btn--primary:hover {
  background: #fff;
  color: var(--ink);
}

.coupon .btn--ghost {
  border-color: rgba(246, 245, 242, 0.28);
  color: #f6f5f2;
}

.coupon .btn--ghost:hover {
  border-color: rgba(246, 245, 242, 0.7);
  color: #fff;
}

.coupon__stub {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-width: 280px;
  padding: 1.5rem 1.4rem;
  text-align: center;
  background: #fff;
  color: var(--ink);
  border: 2px dashed var(--accent);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.coupon__stub::before,
.coupon__stub::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #151a16;
}

.coupon__stub::before {
  top: 22%;
}

.coupon__stub::after {
  bottom: 22%;
}

.coupon__stub-label {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.coupon-code {
  appearance: none;
  width: 100%;
  border: 2px dashed rgba(47, 93, 69, 0.55);
  background: #f7faf8;
  color: var(--accent-deep);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: clamp(1.95rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  padding: 0.85rem 0.8rem 0.85rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease), border-color 0.2s ease;
}

.coupon-code:hover {
  background: #eef5f0;
  transform: translateY(-1px);
  border-color: var(--accent);
}

.coupon-code:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.coupon-code.is-copied {
  border-style: solid;
  border-color: var(--accent);
  background: var(--accent-soft);
}

.coupon__stub .btn--ghost {
  border-color: rgba(47, 93, 69, 0.35);
  color: var(--accent-deep);
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  width: 100%;
}

.coupon__stub .btn--ghost:hover,
.coupon__stub .btn.copied {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: rgba(47, 93, 69, 0.06);
}

.btn.copied {
  border-color: var(--accent);
  color: var(--accent-deep);
}

@media (max-width: 800px) {
  .coupon {
    grid-template-columns: 1fr;
  }

  .coupon__stub::before,
  .coupon__stub::after {
    top: -8px;
    bottom: auto;
  }

  .coupon__stub::before {
    left: 22%;
  }

  .coupon__stub::after {
    left: auto;
    right: 22%;
  }
}

/* Proof strip */
.proof-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
}

.proof-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Reviews */
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.reviews-head .sub {
  margin: 0.4rem 0 0;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}

.rating-stars {
  color: #b8962e;
  letter-spacing: 0.04em;
}

.reviews-wrap {
  position: relative;
  margin-inline: -0.25rem;
}

.reviews-scroller {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 300px;
  border-radius: var(--radius);
  border: 0;
  background: var(--bg-soft);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 var(--line), 0 12px 32px rgba(20, 20, 19, 0.05);
}

.review-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe7e0;
}

.review-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.28rem;
  font-size: 0.86rem;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.review-card__verified {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 560;
}

.review-card__date {
  color: var(--muted);
  font-size: 0.75rem;
}

.review-card__stars {
  color: #b8962e;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

.review-card__text {
  margin: 0.25rem 0 0;
  color: var(--ink-2);
  line-height: 1.48;
}

.reviews-arrow {
  position: absolute;
  top: 36%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(20, 20, 19, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-arrow:hover {
  background: #fff;
  transform: scale(1.04);
}

.reviews-arrow--left {
  left: -0.6rem;
}

.reviews-arrow--right {
  right: -0.6rem;
}

.reviews-dots {
  display: none;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #d5d0c6;
  cursor: pointer;
}

.reviews-dot.is-active {
  background: var(--accent);
}

@media (max-width: 800px) {
  .reviews-arrow {
    display: none;
  }

  .reviews-dots {
    display: flex;
  }

  .review-card {
    flex-basis: min(280px, 82vw);
  }
}

@media (min-width: 1100px) {
  .reviews-arrow--left {
    left: -1.1rem;
  }

  .reviews-arrow--right {
    right: -1.1rem;
  }
}

/* Language switcher + soft suggest banner */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--muted);
}

.lang-switch a:hover {
  color: var(--accent-deep);
}

.lang-switch a[aria-current="true"] {
  background: var(--ink);
  color: #f6f5f2;
}

.lang-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 36, 29, 0.96);
  color: #f6f5f2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.lang-banner__inner p {
  margin: 0;
  font-size: 0.92rem;
}

.lang-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lang-banner .btn--primary {
  background: #f6f5f2;
  color: var(--ink);
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.lang-banner .btn--ghost {
  border-color: rgba(246, 245, 242, 0.35);
  color: #f6f5f2;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

/* Inner pages — related guides, intro layout */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .related {
    grid-template-columns: 1fr;
  }
}

.related a {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.88));
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(47, 93, 69, 0.1);
  box-shadow: 0 8px 26px rgba(20, 20, 19, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.2s ease, box-shadow 0.25s ease;
}

.related a:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 93, 69, 0.28);
  box-shadow: 0 16px 40px rgba(47, 93, 69, 0.1);
  color: inherit;
}

.related a strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
  letter-spacing: -0.015em;
}

.related a span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.page-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .page-intro {
    grid-template-columns: 1fr;
  }
}

.prose .compare {
  width: 100%;
  margin: 1rem 0 1.25rem;
}

/* Media frames & spotlight cards */
.media-frame {
  box-shadow:
    0 24px 60px rgba(20, 20, 19, 0.1),
    0 0 0 1px rgba(47, 93, 69, 0.08);
}

.spotlight-grid a {
  position: relative;
  overflow: hidden;
}

.spotlight-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 93, 69, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.spotlight-grid a:hover::before {
  opacity: 1;
}

.review-card {
  border: 1px solid rgba(47, 93, 69, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(47, 93, 69, 0.1);
}

/* Sticky store bar — appears after scroll */
.store-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 20, 19, 0.94);
  backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid rgba(47, 93, 69, 0.35);
  box-shadow: 0 -12px 40px rgba(20, 20, 19, 0.18);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}

.store-bar.is-visible {
  transform: translateY(0);
}

.store-bar--promo {
  border-top-color: rgba(180, 210, 190, 0.55);
  background:
    linear-gradient(180deg, rgba(26, 36, 29, 0.98), rgba(20, 20, 19, 0.96));
}

.store-bar--promo .store-bar__text strong {
  color: #e8f5ec;
}

.store-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-bar__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(246, 245, 242, 0.78);
  line-height: 1.4;
}

.store-bar__text strong {
  display: block;
  color: #f6f5f2;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.15rem;
}

.store-bar__text span {
  display: block;
}

@media (max-width: 560px) {
  .store-bar__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .store-bar .btn--cta {
    width: 100%;
  }
}

body.has-store-bar {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

/* Page visuals — image grids, photo map showcase, size compare */
.visual-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

@media (max-width: 900px) {
  .visual-grid--2,
  .visual-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .visual-grid--2,
  .visual-grid--3 {
    grid-template-columns: 1fr;
  }
}

.visual-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 20, 19, 0.06);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 32px rgba(20, 20, 19, 0.05);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.visual-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.photo-showcase__head {
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.photo-showcase__head .eyebrow {
  margin-bottom: 0.5rem;
}

.photo-showcase__head h2 {
  margin-top: 0;
}

.photo-showcase__hero {
  margin-bottom: 1.25rem;
}

.photo-showcase__hero img {
  aspect-ratio: 16 / 10;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 760px) {
  .size-grid {
    grid-template-columns: 1fr;
  }
}

.size-card {
  margin: 0;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 20, 19, 0.06);
  background: rgba(255, 255, 255, 0.6);
}

.size-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.85rem;
}

.size-card figcaption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.size-card figcaption span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.feature--reverse .media-frame {
  order: 2;
}

@media (max-width: 900px) {
  .feature--reverse .media-frame {
    order: 0;
  }
}
