/* =========================================================================
   ArabOodh — pages.css
   Per-page section layouts.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Hero (home) — cinematic full-bleed
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(100px, 12vw, 150px) clamp(24px, 6vw, 96px) clamp(60px, 8vw, 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-1);
}

@media (max-width: 700px) {
  .hero {
    align-items: flex-end;
    padding-bottom: 120px;
  }
}

/* Drifting particles inside the hero — populated by home.js */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-particles span {
  position: absolute;
  width: 1px;
  background: rgba(240, 237, 232, 0.5);
  border-radius: 99px;
  opacity: 0;
  animation: particle-rise linear infinite;
}
.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero-wood {
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  top: 35%;
  font-family: var(--font-serif);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .line {
  width: 30px;
  height: 0.5px;
  background: var(--text-mute);
  display: inline-block;
}
.hero-headline {
  font-size: clamp(52px, 8.5vw, 118px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: 0;
}
.hero-headline em { color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  max-width: 400px;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.85;
  margin-bottom: 0;
}
.hero-actions { display: inline-flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

/* KPI strip below hero */
.kpis {
  margin-top: 60px;
  padding-top: 0;
  border-top: none;
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.kpi-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.kpi-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
}
.hero-scroll-line {
  width: 0.5px;
  height: 44px;
  background: var(--text);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.5) translateY(8px); }
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 28px) clamp(20px, 5vw, 40px) 72px;
  }
  .hero-wood {
    font-size: clamp(100px, 24vw, 160px);
    right: clamp(20px, 5vw, 40px);
    top: 180px;
  }
  .hero-eyebrow {
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-eyebrow .line { width: 18px; }
  .hero-sub { max-width: 100%; }
  .kpis { gap: 28px; }
  .hero-scroll-line { height: 32px; }
}

@media (max-width: 560px) {
  .hero-headline em { display: block; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    padding-inline: 18px;
    height: 44px;
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(38px, 10.5vw, 52px); }
}

/* -------------------------------------------------------------------------
   Section header — "eyebrow · big serif heading · short sub"
   ------------------------------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: var(--space-xl);
  max-width: var(--container-narrow);
}
.section-head.is-centered { text-align: center; margin-inline: auto; }
.section-head h2 { font-size: var(--fs-3xl); }
.section-head .sub { color: var(--text-soft); font-size: var(--fs-md); max-width: 56ch; }
.section-head.is-centered .sub { margin-inline: auto; }

.section-head .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.section-featured .section-head,
.section-products .section-head,
.standalone-reviews .section-head {
  max-width: none;
}

.section-featured .section-head h2,
.section-products .section-head h2,
.standalone-reviews .section-head h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
}

.home-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 3px;
}
.home-link:hover {
  color: var(--text);
  border-bottom-color: var(--text-mute);
}

/* -------------------------------------------------------------------------
   Home standalone strip
   ------------------------------------------------------------------------- */
.marquee-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-roll {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-roll 30s linear infinite;
  font-size: 9px;
  font-family: var(--font-sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.marquee-roll span { padding: 0 24px; }
.marquee-roll .sep {
  padding: 0;
  color: var(--text-dim);
  font-size: 8px;
}
@keyframes marquee-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   Home standalone featured split — 1 main card + 4 side cards in a row.
   Mirrors the home React build's 1.55fr + 4×1fr layout.
   ------------------------------------------------------------------------- */
.section-featured {
  background: var(--bg-1);
  padding-block: clamp(72px, 9vw, 130px);
  padding-inline: clamp(24px, 5vw, 72px);
}
.section-featured .featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}
.section-featured .featured-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 1.5vw, 24px);
  background: transparent;
}
.featured-main,
.featured-side {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.featured-main:hover, .featured-side:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.featured-main {
  grid-column: 1;
  grid-row: span 2;
  padding: clamp(32px, 3.5vw, 48px);
  min-height: 520px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 60%), var(--bg-2);
}
.featured-side {
  padding: clamp(24px, 2.5vw, 32px);
  min-height: 260px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.02), transparent 70%), var(--bg-2);
}

.featured-main h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 44px);
  margin: 0 0 16px;
  line-height: 1.05;
  color: var(--text);
}
.featured-side h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 26px);
  margin: 0 0 10px;
  color: var(--text);
}
.featured-main p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 280px;
}
.featured-side p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 240px;
}
.featured-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
  display: block;
}
.featured-side .featured-tag {
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
.featured-content {
  position: relative;
  z-index: 2;
}
.featured-bottle {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0px 30px 20px rgba(0,0,0,0.8));
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-slow) var(--ease-out);
}

.featured-main .featured-bottle {
  right: -30px;
  bottom: -30px;
  top: auto;
  transform: translateY(0);
  height: 85%;
  max-height: 460px;
  opacity: 0.9;
}
.featured-main:hover .featured-bottle {
  transform: translateY(-15px) scale(1.03);
  opacity: 1;
}

.featured-side .featured-bottle {
  right: -20px;
  bottom: -20px;
  top: auto;
  transform: translateY(0);
  height: 85%;
  max-height: 220px;
  opacity: 0.75;
}
.featured-side:hover .featured-bottle {
  transform: translateY(-10px) scale(1.05);
  opacity: 1;
}

@media (max-width: 1180px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .featured-main { grid-column: 1 / -1; grid-row: auto; min-height: 380px; }
  .featured-main .featured-bottle { height: 120%; right: 10%; bottom: -40px; max-height: 380px; }
  .featured-side { min-height: 240px; }
}
@media (max-width: 700px) {
  .featured-grid { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    gap: 16px;
    padding-bottom: 24px;
    margin-inline: calc(-1 * var(--pad-x));
    padding-inline: var(--pad-x);
    scrollbar-width: none;
  }
  .featured-grid::-webkit-scrollbar { display: none; }
  .featured-main, .featured-side { 
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-height: 320px; 
    padding: 28px; 
  }
  .featured-main > *:not(.featured-bottle), 
  .featured-side > *:not(.featured-bottle) { 
    max-width: 60%; 
    position: relative; 
    z-index: 2; 
  }
  .featured-main .featured-bottle, 
  .featured-side .featured-bottle { 
    height: 90%; 
    max-width: 45%; 
    object-fit: contain; 
    right: -5px; 
    bottom: -10px; 
    opacity: 0.5; 
  }
}

/* -------------------------------------------------------------------------
   Home standalone browse grid
   ------------------------------------------------------------------------- */
.section-products {
  padding-block: var(--space-2xl);
}
.product-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  margin: 0 0 var(--space-lg);
}
.product-tabs button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-mute);
  font-size: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px 11px;
  white-space: nowrap;
}
.product-tabs button[aria-selected="true"] {
  color: var(--text);
  border-bottom-color: var(--text);
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}
.mini-card {
  background: var(--bg-3);
  min-height: 216px;
  display: flex;
  flex-direction: column;
}
.mini-figure {
  position: relative;
  min-height: 124px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.02) 8px 16px),
    var(--bg-2);
}
.mini-bottle {
  width: 34px;
  height: 62px;
  border-radius: 6px 6px 9px 9px;
  background: linear-gradient(90deg, #141414 0%, #343434 45%, #141414 100%);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.mini-bottle::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -8px;
  width: 18px;
  height: 8px;
  border-radius: 2px;
  background: #171717;
}
.mini-bottle::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 22px;
  width: 22px;
  height: 16px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.mini-body {
  padding: 10px 12px 14px;
  border-top: 1px solid var(--border);
}
.mini-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.mini-body h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 5px;
}
.mini-body p {
  font-size: 10px;
  color: var(--text-mute);
  line-height: 1.6;
}
.browse-empty {
  background: var(--bg-3);
  grid-column: span 6;
  min-height: 216px;
}

/* -------------------------------------------------------------------------
   Home story tweaks
   ------------------------------------------------------------------------- */
.standalone-story .story-text h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}
.story-points {
  display: grid;
  gap: 0;
  margin-top: 12px;
}
.story-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.story-points > div span:first-child {
  font-family: var(--font-serif);
  color: var(--text-mute);
  font-size: 13px;
}
.story-points > div span:last-child {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.8;
}
.story-photo {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
}
.story-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 66px);
  color: rgba(240, 237, 232, 0.8);
}

/* -------------------------------------------------------------------------
   Home reviews
   ------------------------------------------------------------------------- */
.standalone-reviews {
  padding-block: var(--space-2xl);
}
.reviews-quote {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.reviews-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}
.reviews-quote span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.reviews-grid-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}
.reviews-grid-home .review-card {
  border: 0;
  border-radius: 0;
}
.reviews-grid-home .review-text {
  font-size: 14px;
  line-height: 1.75;
}

/* -------------------------------------------------------------------------
   Home visit section
   ------------------------------------------------------------------------- */
.standalone-visit {
  background: var(--bg-1);
  padding-block: var(--space-2xl);
}
.standalone-visit h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 10px;
  margin-bottom: var(--space-lg);
}
.standalone-visit .map-wrap {
  border-radius: 0;
  min-height: 380px;
}

@media (max-width: 1180px) {
  .browse-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .browse-empty { display: none; }
  .reviews-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .browse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-card { min-height: 196px; }
  .reviews-grid-home { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Best-sellers grid
   ------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}
@media (min-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* -------------------------------------------------------------------------
   Catalog section header + sub-label
   ------------------------------------------------------------------------- */
.catalog-section { margin-top: var(--space-2xl); }
.catalog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.catalog-section-head h2 { font-size: clamp(26px, 3vw, 38px); margin: 0; }
.catalog-section-head .eyebrow { margin: 0; }
.catalog-sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.catalog-sub-label::before {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border-strong);
}
.catalog-sub-label span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.catalog-sub-label::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border-strong);
}

/* -------------------------------------------------------------------------
   Catalog grid — compact grid for attars / perfumes / burners catalog
   ------------------------------------------------------------------------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.catalog-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.catalog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.catalog-card-figure {
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.catalog-card-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-card-figure.is-empty::after {
  content: attr(data-placeholder);
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text-dim);
  max-width: calc(100% - 28px);
}
.catalog-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.2;
  margin-bottom: 6px;
}
.catalog-card-desc {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.catalog-card-cta {
  display: flex;
  gap: 8px;
}
.catalog-card-cta .btn-sm {
  flex: 1;
  justify-content: center;
  padding: 8px 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  height: auto;
  min-height: 38px;
}
/* Attar bottle images are 941×1672 (≈9:16) — match their native ratio */
#attars .catalog-card-figure { aspect-ratio: 941 / 1672; }

/* Perfume images are 1080×1350 (4:5) */
#perfumes .catalog-card-figure { aspect-ratio: 4 / 5; }

/* Burner images are 1086×1448 (3:4) */
.catalog-card.is-burner .catalog-card-figure { aspect-ratio: 3 / 4; }

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .catalog-section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .catalog-section-head p { text-align: left !important; max-width: 100% !important; margin-top: 4px; }
}
@media (max-width: 400px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .catalog-card-body { padding: 12px 12px 14px; }
  .catalog-card-name { font-size: 15px; }
}

/* -------------------------------------------------------------------------
   Story (home teaser + full About story)
   ------------------------------------------------------------------------- */
.story {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "1993";
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(180px, 26vw, 380px);
  color: rgba(240, 237, 232, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}
.story-text h2 { margin-bottom: var(--space-md); }
.story-text p { color: var(--text-soft); margin-bottom: var(--space-sm); max-width: 56ch; }
.story-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure.is-empty::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid var(--border-strong);
}
.story-figure.is-empty::after {
  content: attr(data-placeholder);
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dim);
  font-size: clamp(20px, 2vw, 26px);
}

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .story-figure { aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   About — pillars + timeline
   ------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 36px);
}
.pillar {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}
.pillar-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  margin-bottom: 10px;
}
.pillar p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.7; }

@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

.timeline {
  display: grid;
  gap: var(--space-md);
  position: relative;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid var(--border);
  max-width: 760px;
}
.timeline-item { position: relative; padding-block: 8px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(24px, 4vw, 56px));
  top: 18px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(50%);
}
.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-item p { color: var(--text-soft); max-width: 56ch; }

/* -------------------------------------------------------------------------
   Collections page bands
   ------------------------------------------------------------------------- */
.collection-band { padding-block: var(--space-2xl); }
.collection-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.collection-band-text {
  position: sticky;
  top: calc(var(--header-h) + var(--space-md));
}
.collection-band-text h2 { margin-bottom: var(--space-md); }
.collection-band-text p { color: var(--text-soft); margin-bottom: var(--space-sm); max-width: 50ch; }

.collection-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

@media (max-width: 880px) {
  .collection-band-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .collection-band-text { position: static; }
}
@media (max-width: 520px) {
  .collection-card .label { font-size: clamp(13px, 3.6vw, 16px); }
  .collection-card { padding: 12px; }
}
@media (max-width: 340px) {
  .collection-grid-4 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Reviews carousel
   ------------------------------------------------------------------------- */
.reviews-track-wrap {
  position: relative;
  overflow: hidden;
  margin-inline: calc(-1 * var(--pad-x));
  padding-inline: var(--pad-x);
}
.reviews-track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  transition: transform var(--t-slow) var(--ease-out);
  will-change: transform;
}
.reviews-track .review-card {
  flex: 0 0 calc(100% - 0px);
  max-width: 720px;
  margin-inline: auto;
}
@media (min-width: 880px) {
  .reviews-track .review-card { flex-basis: calc(50% - 14px); }
}
@media (min-width: 1200px) {
  .reviews-track .review-card { flex-basis: calc(33.333% - 19px); }
}

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: var(--space-lg);
}
.reviews-dots { display: inline-flex; gap: 8px; }
.reviews-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background var(--t-fast), transform var(--t-fast);
}
.reviews-dots button[aria-current="true"] { background: var(--accent); transform: scale(1.2); }

.reviews-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.reviews-arrow:hover { color: var(--text); border-color: var(--text); }
.reviews-arrow svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------
   Visit / Contact section
   ------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: var(--space-md); }
.visit-info h2 { font-size: var(--fs-3xl); margin-bottom: 8px; }
.visit-info .lead { max-width: 50ch; }

.info-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  padding-block: 14px;
  border-top: 1px solid var(--border);
}
.info-block:last-of-type { border-bottom: 1px solid var(--border); }
.info-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  padding-top: 4px;
}
.info-value { color: var(--text); line-height: 1.7; }
.info-value a { color: var(--text); border-bottom: 1px solid var(--border-strong); padding-bottom: 1px; }
.info-value a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.map-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 460px;
  background: var(--bg-3);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}

@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .map-wrap { min-height: 320px; }
}
@media (max-width: 540px) {
  .info-block {
    grid-template-columns: 84px 1fr;
    gap: 12px;
    padding-block: 12px;
  }
  .info-label { font-size: 9px; letter-spacing: 0.22em; }
  .info-value { font-size: 14px; line-height: 1.6; }
  .map-wrap { min-height: 280px; }
}

/* -------------------------------------------------------------------------
   Inner page hero (about / collections / contact / 404)
   ------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: var(--bg-1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero h1 { font-size: var(--fs-3xl); }
.page-hero .lead { margin-top: var(--space-md); max-width: 56ch; }
.page-hero.is-centered { text-align: center; }
.page-hero.is-centered .lead { margin-inline: auto; }

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: var(--space-md);
}
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: 0.4; }

/* -------------------------------------------------------------------------
   404
   ------------------------------------------------------------------------- */
.notfound {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-2xl);
}
.notfound .code {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(110px, 22vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

/* -------------------------------------------------------------------------
   Tag pills (used in collections overview chips)
   ------------------------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.chip:hover { color: var(--text); border-color: var(--text); }
.chip.is-active { background: var(--accent); color: var(--bg-1); border-color: var(--accent); }

/* -------------------------------------------------------------------------
   Visit teaser (home compact)
   ------------------------------------------------------------------------- */
.visit-teaser {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}
.visit-teaser .vt-eyebrow { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-mute); }
.visit-teaser h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin-top: 8px;
  max-width: 38ch;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .visit-teaser { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* =========================================================================
   HOME page-specific layouts (used only on index.html).
   These mirror the visual grammar of the original React build.
   ========================================================================= */

/* Section eyebrow line (small horizontal rule + uppercase label) */
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.home-eyebrow.is-centered {
  display: flex;
  justify-content: center;
}
.home-eyebrow .line {
  width: 28px;
  height: 0.5px;
  background: rgba(240, 237, 232, 0.45);
  display: inline-block;
}
.home-eyebrow .label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}

/* Section heading — home rhythm */
.home-section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text);
}
.home-section-title em { color: var(--accent); }

/* "View all →" hairline link */
.home-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  border-bottom: 0.5px solid rgba(240, 237, 232, 0.08);
  padding-bottom: 3px;
  display: inline-block;
}
.home-link:hover {
  color: var(--text);
  border-bottom-color: rgba(240, 237, 232, 0.45);
}

/* -------------------------------------------------------------------------
   Home → Browse by Category (tabs + product grid)
   ------------------------------------------------------------------------- */
.section-products {
  background: #0f0f0f;
  padding-block: clamp(72px, 9vw, 130px);
  padding-inline: clamp(24px, 5vw, 72px);
}
.section-products .home-section-title {
  margin-bottom: 40px;
}
.product-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(240, 237, 232, 0.1);
  margin: 0 0 48px;
}
.product-tabs button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(240, 237, 232, 0.45);
  font-size: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px 11px;
  white-space: nowrap;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}
.product-tabs button[aria-selected="true"],
.product-tabs button.is-active {
  color: var(--text);
  border-bottom-color: var(--text);
}
.product-tabs button:hover { color: var(--text); }

/* Home product grid — explicit 7-col on wide so 14 cells fill 2 rows cleanly */
.home-prod-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: rgba(240, 237, 232, 0.08);
}
@media (max-width: 1180px) {
  .home-prod-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .home-prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .home-prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-prod-name { font-size: 14px; }
  .home-prod-body { padding: 10px 10px 12px; gap: 3px; }
}
@media (max-width: 320px) {
  .home-prod-grid { grid-template-columns: 1fr; }
  .home-prod-name { font-size: 17px; }
  .home-prod-body { padding: 14px 14px 18px; gap: 5px; }
}
.home-prod-card {
  background: #131313;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  animation: card-in 0.45s var(--ease-out) both;
}
.home-prod-card.is-hidden { display: none; }
.home-prod-figure {
  background: #1c1c1c;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.home-prod-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.025) 8px 16px);
  opacity: 0.35;
  pointer-events: none;
}
.home-prod-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.home-prod-card:hover .home-prod-figure img { transform: translateY(-6px) scale(1.04); }
.home-prod-figure .placeholder {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: rgba(240, 237, 232, 0.32);
  letter-spacing: 0.02em;
  padding: 14%;
  text-align: center;
}
.home-prod-body {
  padding: 16px 18px 22px;
  border-top: 0.5px solid rgba(240, 237, 232, 0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-prod-label {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}
.home-prod-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}
.home-prod-note {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.45);
  letter-spacing: 0.08em;
}
.home-prod-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.45);
  line-height: 1.8;
  margin-top: 4px;
}

/* "+N more products" card */
.home-prod-card.is-more {
  cursor: pointer;
}
.home-prod-card.is-more .home-prod-figure {
  border-bottom: 0.5px solid rgba(240, 237, 232, 0.08);
  flex-direction: column;
  text-align: center;
  background: #1c1c1c;
}
.home-prod-card.is-more .home-prod-figure::before { display: none; }
.home-prod-card.is-more .more-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.home-prod-card.is-more .more-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.home-prod-card.is-more:hover {
  background: #181818;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .home-prod-name { font-size: 17px; }
}

/* -------------------------------------------------------------------------
   Home → Story (1993 watermark + two-column)
   ------------------------------------------------------------------------- */
.standalone-story {
  background: var(--bg-1);
  padding-block: clamp(72px, 9vw, 130px);
  padding-inline: clamp(24px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.standalone-story::before {
  content: "1993";
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(90px, 14vw, 200px);
  color: rgba(240, 237, 232, 0.16);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  opacity: 0.35;
}
.standalone-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.standalone-story h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--text);
}
.standalone-story p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.45);
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 56ch;
}
.standalone-story .story-points {
  margin-top: 22px;
  display: grid;
  gap: 0;
}
.standalone-story .story-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  border-bottom: 0.5px solid rgba(240, 237, 232, 0.08);
  padding: 12px 0;
}
.standalone-story .story-points > div span:first-child {
  font-family: var(--font-serif);
  color: rgba(240, 237, 232, 0.45);
  font-size: 13px;
  opacity: 0.7;
}
.standalone-story .story-points > div span:last-child {
  font-family: var(--font-sans);
  font-weight: 300;
  color: rgba(240, 237, 232, 0.45);
  font-size: 12px;
  line-height: 1.8;
}
.standalone-story .story-photo {
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(240, 237, 232, 0.08);
}
.standalone-story .story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
}
.standalone-story .story-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.standalone-story .story-photo .photo-stamp {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
}
.standalone-story .story-photo .photo-stamp .year {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: rgba(240, 237, 232, 0.75);
}
.standalone-story .story-photo .photo-stamp .label {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .standalone-story .story-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* -------------------------------------------------------------------------
   Home → Reviews (rotating quote + grid)
   ------------------------------------------------------------------------- */
.standalone-reviews {
  background: #0f0f0f;
  padding-block: clamp(72px, 9vw, 130px);
  padding-inline: clamp(24px, 5vw, 72px);
}
.standalone-reviews .reviews-head {
  text-align: center;
  margin-bottom: 64px;
}
.standalone-reviews .reviews-head .home-section-title {
  font-size: clamp(32px, 4.5vw, 58px);
}
.reviews-rotator {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
  min-height: 130px;
  position: relative;
}
.reviews-rotator .quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.reviews-rotator .quote:first-child {
  position: relative;
}
.reviews-rotator .quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.reviews-rotator .quote-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}
.reviews-rotator .quote-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}
.reviews-dots-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.reviews-dots-bar button {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  border: 0;
  background: rgba(240, 237, 232, 0.16);
  padding: 0;
  cursor: pointer;
  transition: width 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.reviews-dots-bar button[aria-current="true"] {
  width: 22px;
  background: var(--text);
}

.reviews-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(240, 237, 232, 0.08);
}
.reviews-grid-home .review-card-home {
  background: #131313;
  padding: clamp(22px, 2.5vw, 32px);
  transition: background var(--t-fast) var(--ease-out);
  border: 0;
  border-radius: 0;
}
.reviews-grid-home .review-card-home:hover { background: #1c1c1c; }
.reviews-grid-home .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--text);
}
.reviews-grid-home .stars svg { width: 9px; height: 9px; }
.reviews-grid-home .rule {
  width: 18px;
  height: 0.5px;
  background: rgba(240, 237, 232, 0.15);
  margin-bottom: 14px;
}
.reviews-grid-home .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
}
.reviews-grid-home .author {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}
.reviews-grid-home .author-loc {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(240, 237, 232, 0.16);
  margin-top: 2px;
}
.standalone-reviews .reviews-foot {
  text-align: center;
  margin-top: 36px;
}

/* -------------------------------------------------------------------------
   Home → Visit (two-col with map)
   ------------------------------------------------------------------------- */
.standalone-visit .home-section-title {
  margin-bottom: 48px;
}
.standalone-visit .visit-grid {
  align-items: stretch;
}
.standalone-visit .visit-info-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}
.standalone-visit .visit-info-stack .info-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.55);
  margin-bottom: 8px;
}
.standalone-visit .visit-info-stack .info-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  white-space: pre-line;
}
.standalone-visit .visit-info-stack .info-text a {
  color: var(--text);
  border-bottom: 0;
  transition: color var(--t-fast) var(--ease-out);
}
.standalone-visit .visit-info-stack .info-text a:hover { color: var(--accent); }
.standalone-visit .visit-info-stack > .visit-actions {
  margin-top: auto;
  padding-top: 8px;
}
.standalone-visit .visit-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}
.standalone-visit .map-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.standalone-visit .map-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0.5px solid rgba(240, 237, 232, 0.08);
  filter: grayscale(1) brightness(0.55) invert(1);
}
.standalone-visit .map-frame iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.standalone-visit .follow-row {
  background: #131313;
  border: 0.5px solid rgba(240, 237, 232, 0.08);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.standalone-visit .follow-row .follow-label {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  margin-bottom: 5px;
}
.standalone-visit .follow-row .follow-handle {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text);
}
.standalone-visit .follow-row .follow-links {
  display: flex;
  gap: 20px;
}
.standalone-visit .follow-row .follow-links a {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}
.standalone-visit .follow-row .follow-links a:hover { color: var(--text); }
