/* =============================================================
   PLATINA BLOOM — Mobile-first demo
   Design language: warm neutrals, serif-led editorial, monospace micro
   ============================================================= */

:root {
  --bg: #eeece7;
  --panel: #f6f4ef;
  --white: #fbfaf6;
  --ink: #1a1816;
  --ink-soft: #3a3835;
  --muted: #8a857d;
  --line: #1a1816;
  --line-soft: #b8b2a7;
  --line-faint: rgba(26,24,22,0.08);
  --annotate: #9a4a1f;
  --tile: #d9d4c9;
  --tile-2: #c9c3b6;
  --tile-3: #a8a196;
  --accent: #6b4a2b;

  /* type scale */
  --f-display: 'Cormorant Garamond', serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
  --f-hand: 'Caveat', cursive;

  /* layout */
  --radius: 34px;
  --radius-inner: 26px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26,24,22,0.05) 1px, transparent 0);
  background-size: 26px 26px;
}

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================================
   STAGE — mobile is full screen, desktop is phone frame
   ============================================================= */

.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.phone {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  overflow: hidden;
}

.phone-notch { display: none; }
.phone-home-bar { display: none; }

.phone-screen {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}

/* ————— Desktop: render phone frame + chrome sidebar ————— */
@media (min-width: 900px) {
  body {
    padding: 32px 40px;
    background-color: #e8e4dc;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(26,24,22,0.06) 1px, transparent 0),
      radial-gradient(ellipse at 80% 0%, rgba(154,74,31,0.06), transparent 50%),
      radial-gradient(ellipse at 0% 100%, rgba(107,74,43,0.08), transparent 50%);
    background-size: 26px 26px, 100% 100%, 100% 100%;
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 48px;
    align-items: start;
    min-height: 100vh;
  }

  .stage {
    position: sticky;
    top: 32px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0 60px;
    min-height: auto;
  }

  .phone {
    width: 380px;
    min-height: auto;
    height: 780px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--ink);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.6) inset,
      30px 40px 80px -20px rgba(26,24,22,0.3),
      0 0 0 1px rgba(26,24,22,0.1);
  }
  .phone-notch {
    display: block;
    position: absolute;
    top: 22px; left: 50%;
    transform: translateX(-50%);
    width: 88px; height: 20px;
    background: #000;
    border-radius: 14px;
    z-index: 50;
  }
  .phone-home-bar {
    display: block;
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    z-index: 50;
  }
  .phone-screen {
    height: 100%;
    min-height: 0;
    border-radius: var(--radius-inner);
    background: var(--white);
  }
}

@media (max-width: 899px) {
  .chrome { display: none; }
}

/* =============================================================
   CHROME — desktop screens sidebar
   ============================================================= */

.chrome {
  position: sticky;
  top: 32px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line-faint);
}
.chrome-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.chrome-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.chrome-title em { font-style: italic; color: var(--ink-soft); }
.chrome-sub {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.chrome-nav { display: flex; flex-direction: column; gap: 20px; }
.chrome-group {
  display: flex; flex-direction: column; gap: 2px;
}
.chrome-group-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-faint);
  margin-bottom: 4px;
}
.chrome-nav button {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-bottom: 1px dotted transparent;
  transition: color 0.2s, border-color 0.2s;
  width: 100%;
}
.chrome-nav button span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 32px;
}
.chrome-nav button:hover {
  color: var(--ink);
  border-color: var(--line-soft);
}
.chrome-nav button.active {
  color: var(--ink);
  border-color: var(--ink);
}
.chrome-nav button.active span { color: var(--annotate); }
.chrome-foot {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
}

/* =============================================================
   SCREEN ROUTER
   ============================================================= */

.screen {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  animation: screenIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 900px) {
  .screen { min-height: 0; height: 100%; }
}
.screen.active { display: flex; }
.screen.dark { background: #1a1816; color: var(--white); }

@keyframes screenIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   PROMO BAR
   ============================================================= */

.promo-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: calc(var(--safe-top) + 8px) 16px 8px;
  z-index: 100;
  pointer-events: none;
}
@media (min-width: 900px) {
  .promo-bar { padding: 40px 16px 8px; }
}

/* Screens that have a full-bleed dark hero should push header past promo bar */
.screen { padding-top: 34px; }
@media (min-width: 900px) {
  .screen { padding-top: 54px; }
}

/* =============================================================
   APP HEADER
   ============================================================= */

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 12px;
  border-bottom: 1px solid var(--line-faint);
  background: var(--white);
  z-index: 20;
  flex-shrink: 0;
}
.app-header.transparent {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  top: 34px; left: 0; right: 0;
  color: var(--white);
  z-index: 10;
}
@media (min-width: 900px) {
  .app-header.transparent { top: 54px; }
}
.app-header.with-back .h-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
}

.h-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.h-btn:hover { background: rgba(26,24,22,0.05); }
.h-btn.menu { flex-direction: column; gap: 4px; }
.h-btn.menu i {
  width: 16px; height: 1px;
  background: currentColor;
  display: block;
  transition: transform 0.2s;
}
.h-btn.menu i:nth-child(2) { width: 12px; }
.h-btn.menu i:nth-child(3) { width: 8px; }
.h-btn.lang {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  width: auto;
  padding: 0 10px;
  height: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}
.h-btn.wa {
  border: 1px solid var(--line-soft);
  color: var(--ink);
}
.app-header.transparent .h-btn.lang,
.app-header.transparent .h-btn.wa { border-color: rgba(255,255,255,0.5); color: var(--white); }

.logo {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-align: center;
  line-height: 1.1;
  flex: 1;
}
.logo small {
  display: block;
  font-family: var(--f-mono);
  font-size: 7px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 400;
}
.app-header.transparent .logo small { color: rgba(255,255,255,0.75); }

/* =============================================================
   SPLASH A — image hero
   ============================================================= */

.splash-hero {
  position: relative;
  flex: 1;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.splash-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.splash-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.splash-overlay {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 32px 90px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.splash-season {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
  animation: fadeUp 0.9s 0.1s both;
}
.splash-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 1.1s 0.25s both;
}
.splash-title em { font-style: italic; font-weight: 300; }
.splash-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.45s both;
}
.splash-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.2s, letter-spacing 0.3s;
  animation: fadeUp 0.9s 0.6s both;
}
.splash-cta:hover { transform: translateY(-2px); letter-spacing: 0.26em; }
.splash-foot {
  position: absolute;
  bottom: 24px; left: 32px; right: 32px;
  display: flex; justify-content: space-between;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 3;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   SPLASH B — type-led
   ============================================================= */

.splash-b {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 40px;
  background: var(--panel);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26,24,22,0.07) 1px, transparent 0);
  background-size: 22px 22px;
}
.splash-b-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-bottom: 32px;
}
.splash-b-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.splash-b-title em { font-style: italic; color: var(--ink-soft); font-weight: 300; }
.splash-b-body {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 40px;
}
.splash-b-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 48px;
}
.splash-b-strip > div {
  aspect-ratio: 1/1.3;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) contrast(0.95);
}
.splash-b-strip > div:nth-child(2) { transform: translateY(16px); }
.splash-b-cta {
  margin-top: auto;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.splash-b-cta:hover { background: var(--ink); color: var(--white); }
.splash-b-cta .kicker {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.splash-b-cta:hover .kicker { color: rgba(255,255,255,0.7); }
.splash-b-cta .label {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

/* =============================================================
   MENU DRAWER
   ============================================================= */

.drawer {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  padding: 8px 0 0;
}
.drawer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 18px;
  border-bottom: 1px solid var(--line-faint);
}
.drawer-logo {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.1;
}
.drawer-logo small {
  display: block;
  font-family: var(--f-mono);
  font-size: 7px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 4px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 22px;
}
.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  border-bottom: 1px solid var(--line-faint);
  transition: padding 0.25s, color 0.25s;
  cursor: pointer;
}
.drawer-nav a:hover { padding-left: 8px; color: var(--accent); }
.drawer-nav a .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 24px;
}
.drawer-nav a .label { flex: 1; }
.drawer-nav a .arr {
  font-family: var(--f-mono);
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.drawer-nav a:hover .arr { opacity: 1; transform: translateX(0); color: var(--accent); }

.drawer-foot {
  margin-top: auto;
  padding: 24px 22px calc(24px + var(--safe-bottom));
  border-top: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.drawer-social a {
  padding: 14px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.drawer-social a:hover { background: var(--ink); color: var(--white); }
.drawer-social a small {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}
.drawer-social a:hover small { color: rgba(255,255,255,0.7); }

.drawer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-meta .on { color: var(--ink); }
.drawer-meta i {
  width: 3px; height: 3px;
  background: var(--line-soft);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================================
   HIGHLIGHTS (stories row)
   ============================================================= */

.highlights {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line-faint);
  flex-shrink: 0;
}
.highlights::-webkit-scrollbar { display: none; }

.hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hl-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line-soft);
  transition: transform 0.2s;
}
.hl-img img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.08);
}
.hl.active .hl-img {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--white);
}
.hl:hover .hl-img { transform: scale(1.04); }
.hl-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hl.active .hl-label { font-weight: 500; }

/* =============================================================
   FEED A — single column posts
   ============================================================= */

.feed {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post {
  border-bottom: 1px solid var(--line-faint);
  cursor: pointer;
  transition: background 0.2s;
}
.post:hover { background: rgba(26,24,22,0.01); }
.post-media {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--tile);
}
.post-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post:hover .post-media img { transform: scale(1.02); }
.post-count {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  background: rgba(26,24,22,0.55);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.post-body {
  padding: 14px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.post-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.post-caption {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 2px;
}
.post-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-faint);
}
.post-action {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-inquire {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.post-inquire:hover { color: var(--annotate); }

.feed-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 40px 20px 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.feed-end small {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =============================================================
   FEED B — hero + grid
   ============================================================= */

.feed-b .feed-b-hero {
  position: relative;
  aspect-ratio: 1/0.78;
  overflow: hidden;
  display: block;
  width: 100%;
}
.feed-b-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-b-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.feed-b-hero:hover img { transform: scale(1.03); }
.feed-b-lbl {
  position: absolute;
  bottom: 20px; left: 18px;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 300;
  z-index: 2;
}
.feed-b-cap {
  position: absolute;
  bottom: 24px; right: 18px;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  z-index: 2;
}

.feed-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  background: var(--line-faint);
}
.feed-b-grid button {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.feed-b-grid button::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.feed-b-grid button:hover::after { opacity: 1; }
.feed-b-grid button span {
  position: absolute;
  bottom: 10px; left: 12px;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* =============================================================
   FEED C — editorial
   ============================================================= */

.feed-c {
  padding: 24px 20px 0;
}
.feed-c-eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.feed-c-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.feed-c-title em { font-style: italic; color: var(--ink-soft); font-weight: 300; }
.feed-c-pair {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.feed-c-pair button {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.feed-c-pair button:nth-child(2) { aspect-ratio: 3/4; transform: translateY(20px); }
.feed-c-pair button:hover { transform: translateY(-2px); }
.feed-c-pair button:nth-child(2):hover { transform: translateY(18px); }
.feed-c-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  padding: 0 4px;
}
.feed-c-body em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.feed-c-quote {
  position: relative;
  padding: 32px 24px;
  margin: 0 -20px 32px;
  background: var(--panel);
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.feed-c-quote-mark {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 0;
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--annotate);
  opacity: 0.4;
}
.feed-c-quote-by {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
.feed-c-tile {
  display: block;
  width: calc(100% + 40px);
  margin: 0 -20px 20px;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.feed-c-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.feed-c-tile-cat {
  position: absolute;
  top: 18px; left: 20px;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}
.feed-c-tile-title {
  position: absolute;
  bottom: 22px; left: 20px;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  z-index: 2;
}

/* =============================================================
   WHATSAPP BAR
   ============================================================= */

.wa-bar {
  position: sticky;
  bottom: 66px;
  padding: 12px 16px;
  margin-bottom: 0;
  background: rgba(246,244,239,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
  flex-shrink: 0;
}
.wa-bar-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.1;
}
.wa-bar-text strong {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.wa-bar-text small {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.wa-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.2s;
}
.wa-bar-pill:hover { transform: translateY(-1px); }

/* =============================================================
   BOTTOM NAV
   ============================================================= */

.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 8px calc(10px + var(--safe-bottom));
  background: var(--white);
  border-top: 1px solid var(--line-faint);
  position: sticky;
  bottom: 0;
  z-index: 20;
  flex-shrink: 0;
}
.bn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 6px;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  min-width: 52px;
}
.bn svg { color: currentColor; }
.bn span { font-weight: 500; }
.bn.active { color: var(--ink); }
.bn:hover { color: var(--ink-soft); }

.bn.inquire .bn-inquire-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  margin-top: -16px;
  box-shadow: 0 4px 12px -3px rgba(26,24,22,0.35);
  transition: transform 0.2s;
}
.bn.inquire:hover .bn-inquire-icon { transform: translateY(-2px) scale(1.05); }
.bn.inquire.active .bn-inquire-icon { background: var(--annotate); }

/* =============================================================
   COLLECTIONS EXPLORER
   ============================================================= */

.explore-intro {
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--line-faint);
}
.explore-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.explore-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.explore-title em { font-style: italic; color: var(--ink-soft); }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  background: var(--line-faint);
}
.ex-card {
  position: relative;
  aspect-ratio: 1/1.25;
  background-size: cover;
  background-position: center;
  display: block;
  overflow: hidden;
}
.ex-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
  transition: opacity 0.3s;
}
.ex-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.8) 100%); }
.ex-num {
  position: absolute;
  top: 12px; left: 14px;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  opacity: 0.85;
  z-index: 2;
}
.ex-name {
  position: absolute;
  bottom: 24px; left: 14px;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.ex-count {
  position: absolute;
  bottom: 10px; left: 14px;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
}

/* =============================================================
   COLLECTION FEED
   ============================================================= */

.col-cover {
  position: relative;
  aspect-ratio: 1/0.62;
  overflow: hidden;
}
.col-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.col-cover::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, rgba(0,0,0,0.75) 100%);
}
.col-cover-text {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--white);
  z-index: 2;
}
.col-kicker {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 6px;
}
.col-cover-text h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.col-count {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.col-desc {
  padding: 18px 20px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-faint);
}
.col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  background: var(--line-faint);
}
.col-grid button {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  transition: opacity 0.2s;
}
.col-grid button:hover { opacity: 0.85; }

/* =============================================================
   LIGHTBOX / POST DETAIL
   ============================================================= */

.ld {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #1a1816;
  color: var(--white);
}
.ld-hero {
  position: relative;
  aspect-ratio: 1/1.05;
  overflow: hidden;
  background: #0f0d0a;
}
.ld-hero.tall { aspect-ratio: 1/1.3; }
.ld-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ld-close {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  backdrop-filter: blur(10px);
  transition: background 0.2s;
}
.ld-close:hover { background: var(--white); }
.ld-count {
  position: absolute;
  top: 16px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 5;
}
.ld-dots {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}
.ld-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: width 0.2s, background 0.2s;
}
.ld-dots span.on {
  width: 20px;
  border-radius: 3px;
  background: var(--white);
}
.ld-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.ld-arrow.left { left: 12px; }
.ld-arrow.right { right: 12px; }
.ld-more {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  padding: 7px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.ld-body {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #1a1816;
}
.ld-body.compact { padding: 16px 20px 20px; gap: 8px; }
.ld-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ld-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
}
.ld-title em { font-style: italic; color: rgba(255,255,255,0.8); font-weight: 300; }
.ld-title.small { font-size: 24px; }
.ld-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.ld-desc.small { font-size: 11px; }

.ld-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 14px 0;
  margin: 6px 0 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ld-specs > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ld-specs .k {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ld-specs .v {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.ld-cta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 16px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.2s, letter-spacing 0.3s;
}
.ld-cta:hover { transform: translateY(-1px); letter-spacing: 0.24em; }
.ld-cta-secondary {
  padding: 12px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.ld-cta-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* =============================================================
   INQUIRY SHEET
   ============================================================= */

.inq {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.inq-preview {
  position: relative;
  aspect-ratio: 1/0.72;
  overflow: hidden;
  background: var(--tile);
}
.inq-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.inq-preview::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.inq-preview-meta {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--white);
  z-index: 2;
}
.inq-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 6px;
}
.inq-preview-meta h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 4px;
}
.inq-preview-meta small {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.inq-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inq-section-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line-faint);
}
.inq-section-label:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.inq-opt {
  padding: 15px 16px;
  border: 1px solid var(--ink);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.inq-opt:hover { transform: translateY(-1px); }
.inq-opt.filled { background: var(--ink); color: var(--white); }
.inq-opt.filled:hover { background: var(--ink-soft); }
.inq-opt:not(.filled):hover { background: var(--panel); }
.inq-opt-k {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.inq-arr {
  font-family: var(--f-mono);
  font-size: 14px;
  opacity: 0.6;
}

.inq-pre {
  background: var(--panel);
  border: 1px dashed var(--line-soft);
  padding: 14px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 4px;
  border-radius: 2px;
  position: relative;
}
.inq-pre em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
}
.inq-pre-head, .inq-pre-foot {
  display: block;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.inq-pre-head { margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px dashed var(--line-soft); }
.inq-pre-foot { margin-top: 8px; padding-top: 6px; border-top: 1px dashed var(--line-soft); text-align: right; }

.inq-trust {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-faint);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.inq-trust > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.inq-trust strong {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.inq-trust small {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================================
   ABOUT
   ============================================================= */

.about-hero {
  position: relative;
  aspect-ratio: 1/0.85;
  overflow: hidden;
}
.about-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.about-body {
  padding: 28px 22px 32px;
  background: var(--panel);
  flex: 1;
}
.about-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--ink-soft); font-weight: 300; }
.about-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 20px;
}
.about-divider span {
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}
.about-divider small {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-para {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.about-facts > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fact-n {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.fact-l {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.about-sign {
  margin-top: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
}
.about-sign-hand {
  font-family: var(--f-hand);
  font-size: 28px;
  color: var(--annotate);
  font-style: normal;
  margin-left: 8px;
}

/* =============================================================
   CONTACT
   ============================================================= */

.contact {
  padding: 24px 22px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact-title em { font-style: italic; color: var(--ink-soft); font-weight: 300; }

.contact-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 24px;
}
.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-faint);
  transition: padding 0.25s;
}
.contact-row:hover:not(.static) { padding-left: 6px; }
.c-k {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-v {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.c-v small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}
.c-arr {
  font-family: var(--f-mono);
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.contact-row:hover .c-arr { opacity: 1; transform: translateX(0); color: var(--annotate); }

.contact-map {
  position: relative;
  aspect-ratio: 1/0.5;
  background: var(--panel);
  border: 1px solid var(--line-faint);
  margin-bottom: 20px;
  overflow: hidden;
}
.contact-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,24,22,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,24,22,0.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(154,74,31,0.08), transparent 40%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
}
.contact-map::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 38%;
  height: 1px;
  background: var(--line-soft);
}
.contact-map::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 35%;
  width: 1px;
  background: var(--line-soft);
}
.contact-map-pin {
  position: absolute;
  top: 45%; left: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.pin-dot {
  width: 14px; height: 14px;
  background: var(--annotate);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(154,74,31,0.4);
}
.pin-label {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 4px;
}
.contact-map-corner {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--muted);
  z-index: 2;
}

.contact-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.2s, letter-spacing 0.3s;
}
.contact-cta:hover { transform: translateY(-1px); letter-spacing: 0.24em; }

/* =============================================================
   SCREENS TOGGLE (mobile floating button to jump between screens)
   ============================================================= */

.screens-toggle {
  position: fixed;
  bottom: 90px; right: 16px;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 200;
  box-shadow: 0 8px 20px -4px rgba(26,24,22,0.4);
}
@media (max-width: 899px) {
  .screens-toggle { display: inline-flex; }
}

.screens-sheet {
  position: fixed;
  inset: 0;
  background: rgba(26,24,22,0.6);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.screens-sheet.open { display: flex; }
.screens-sheet-inner {
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  background: var(--panel);
  padding: 20px 22px calc(20px + var(--safe-bottom));
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  animation: sheetUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes sheetUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.screens-sheet-inner h4 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}
.screens-sheet-inner p {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-faint);
}
.screens-sheet-inner button {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line-faint);
  width: 100%;
  text-align: left;
}
.screens-sheet-inner button:last-child { border-bottom: 0; }
.screens-sheet-inner button span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 34px;
}
.screens-sheet-inner button.active { color: var(--ink); }
.screens-sheet-inner button.active span { color: var(--annotate); }

/* =============================================================
   UTILITY — hide scrollbars but keep scrolling
   ============================================================= */

.feed, .drawer, .contact, .about-body, .inq-body, .explore-grid {
  -webkit-overflow-scrolling: touch;
}

/* Smooth focus outlines */
:focus-visible {
  outline: 2px solid var(--annotate);
  outline-offset: 2px;
}
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }

/* =============================================================
   V02 — live brand integration additions
   ============================================================= */

/* Desktop chrome live indicator */
.chrome-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 12px;
  background: rgba(26,24,22,0.04);
  border: 1px solid var(--line-faint);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.chrome-live-hours { margin-left: auto; color: var(--muted); }
.chrome-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #b8b2a7;
  box-shadow: 0 0 0 3px rgba(184,178,167,0.25);
}
.chrome-live.open .chrome-dot { background: #4a8a5f; box-shadow: 0 0 0 3px rgba(74,138,95,0.25); animation: pulse 2s ease-in-out infinite; }
.chrome-live.closed .chrome-dot { background: #b85a3a; box-shadow: 0 0 0 3px rgba(184,90,58,0.22); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.85; }
}

.chrome-foot a { border-bottom: 1px dotted currentColor; }
.chrome-foot a:hover { color: var(--ink); }

/* Promo bar live status */
.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.promo-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #6ea180;
  box-shadow: 0 0 0 2px rgba(110,161,128,0.3);
}
.promo-bar.closed .promo-dot { background: #d49477; box-shadow: 0 0 0 2px rgba(212,148,119,0.3); }
.promo-sep { opacity: 0.45; }

/* Post price chip */
.post-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.post-price {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.post-price small {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-inquire {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: 0.2s ease;
}
.post-inquire:hover { background: var(--ink); color: var(--white); }

/* Post lightbox price block */
.ld-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  margin: 6px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.ld-price-n {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.ld-price-n small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ld-price-note {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
  max-width: 50%;
  line-height: 1.6;
}

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  transition: 0.2s ease;
}
.lang-toggle:hover { border-color: var(--line); color: var(--ink); }
.lang-toggle .on { color: var(--ink); font-weight: 500; }

/* About — list + IG row */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 1px;
  background: var(--line);
}

.about-ig {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  margin: 16px 0 24px;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.about-ig-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
}
.about-ig-v {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  flex: 1;
}
.about-ig-arr { color: var(--muted); font-size: 16px; }
.about-ig:hover .about-ig-arr { color: var(--ink); }

/* Inquiry — payment methods */
.inq-pay {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-faint);
}
.inq-pay-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.inq-pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-chip {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
}

/* Contact status bar */
.contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 20px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cs-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #b8b2a7;
  box-shadow: 0 0 0 3px rgba(184,178,167,0.2);
}
.contact-status.open .cs-dot { background: #6ea180; box-shadow: 0 0 0 3px rgba(110,161,128,0.25); animation: pulse 2s ease-in-out infinite; }
.contact-status.closed .cs-dot { background: #d49477; box-shadow: 0 0 0 3px rgba(212,148,119,0.25); }
.cs-label { color: var(--ink); font-weight: 500; }
.cs-hours { margin-left: auto; color: var(--muted); }

/* Contact map — open in maps */
.contact-map { text-decoration: none; color: inherit; }
.contact-map-open {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--annotate);
  background: rgba(246,244,239,0.9);
  backdrop-filter: blur(4px);
  padding: 5px 8px;
  border-radius: 4px;
}

/* Legal screen */
.legal {
  padding: 20px 22px 120px;
  flex: 1;
  overflow-y: auto;
}
.legal-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-title {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 18px;
}
.legal-title em { font-style: italic; color: var(--accent); }
.legal-lede {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 56ch;
}
.legal-block {
  border-top: 1px solid var(--line-faint);
  padding: 14px 0;
}
.legal-block:last-of-type { border-bottom: 1px solid var(--line-faint); }
.legal-block summary {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.legal-block summary::-webkit-details-marker { display: none; }
.legal-block summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.legal-block[open] summary::after { content: "−"; color: var(--ink); }
.legal-block p {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 10px 0 4px;
  max-width: 62ch;
}
.legal-block p a { border-bottom: 1px dotted currentColor; }
.legal-links {
  display: flex;
  gap: 16px;
  margin: 22px 0;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--annotate);
}
.legal-links a { border-bottom: 1px dotted currentColor; padding-bottom: 2px; }
.legal-foot {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line-faint);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================================
   RTL / Arabic support
   ============================================================= */

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .hl, html[dir="rtl"] .chrome-nav button { text-align: right; }
html[dir="rtl"] .feed-b-lbl,
html[dir="rtl"] .ex-num { left: auto; right: 14px; }
html[dir="rtl"] .ex-name,
html[dir="rtl"] .ex-count { text-align: right; }
html[dir="rtl"] .highlights { flex-direction: row-reverse; }
html[dir="rtl"] .bottom-nav { direction: rtl; }
html[dir="rtl"] .chrome-nav button span { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .h-title,
html[dir="rtl"] .post-title,
html[dir="rtl"] .post-caption,
html[dir="rtl"] .post-cat,
html[dir="rtl"] .ld-title,
html[dir="rtl"] .ld-desc,
html[dir="rtl"] .about-title,
html[dir="rtl"] .about-para,
html[dir="rtl"] .about-lede,
html[dir="rtl"] .contact-title,
html[dir="rtl"] .legal-title,
html[dir="rtl"] .legal-lede,
html[dir="rtl"] .drawer-nav .label { text-align: right; }
html[dir="rtl"] .drawer-nav a .arr { transform: scaleX(-1); }
html[dir="rtl"] .splash-cta svg,
html[dir="rtl"] .inq-arr,
html[dir="rtl"] .c-arr { transform: scaleX(-1); }
html[dir="rtl"] .chrome-live-hours,
html[dir="rtl"] .cs-hours { margin-left: 0; margin-right: auto; }
html[dir="rtl"] body {
  font-family: 'Cormorant Garamond', 'Amiri', 'Noto Naskh Arabic', serif;
}
html[lang="ar"] .post-caption,
html[lang="ar"] .ld-desc,
html[lang="ar"] .about-para,
html[lang="ar"] .about-lede,
html[lang="ar"] .about-list li,
html[lang="ar"] .legal-lede,
html[lang="ar"] .legal-block p {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  font-size: 15px;
  line-height: 1.85;
}
html[lang="ar"] .splash-title,
html[lang="ar"] .splash-b-title,
html[lang="ar"] .about-title,
html[lang="ar"] .contact-title,
html[lang="ar"] .legal-title,
html[lang="ar"] .post-title,
html[lang="ar"] .ld-title,
html[lang="ar"] .feed-c-title {
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  line-height: 1.2;
}

/* Desktop chrome stays LTR for the studio list */
html[dir="rtl"] .chrome { direction: ltr; }
html[dir="rtl"] .stage { direction: ltr; }
html[dir="rtl"] .phone-screen { direction: rtl; }

/* Hide the language-inactive label in drawer-meta on toggle (visual cue) */
.drawer-meta .lang-toggle span.on { color: var(--ink); }

/* Slightly softer feel for price note on dark post screen */
.ld-body.compact .ld-desc.small em { color: rgba(255,255,255,0.9); }
