/* ─────────────────────────────────────────────────────────────
   MUHAMMAD NAIM · PERSONAL HUB
   Build 2026.05 · Set in Staatliches / Space Grotesk /
   JetBrains Mono / Instrument Serif
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── Surface ── */
  --bg:        #0a0907;
  --bg-2:      #110f0c;
  --surface:   #161310;
  --surface-2: #1c1814;
  --border:    #2a251f;
  --border-2:  #3a3329;

  /* ── Ink ── */
  --text:      #f0ebe0;
  --text-2:    #c9bfa9;
  --text-dim:  #837a68;
  --text-mute: #4a4438;

  /* ── Brand ── */
  --beige:     #b0a288;
  --beige-2:   #c9b896;
  --teal:      #4d9984;
  --teal-2:    #67b59f;
  --rec:       #d44a3f;
  --gold:      #d4a44a;

  /* ── Type ── */
  --f-display: 'Staatliches', 'Impact', sans-serif;
  --f-body:    'Space Grotesk', -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-serif:   'Instrument Serif', 'Times New Roman', serif;

  --pad: clamp(20px, 4vw, 64px);
}

::selection { background: var(--teal); color: var(--bg); }

html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Film-grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ─────────────────────────────────────────────────────────────
   TICKER / STATUS BAR
   ───────────────────────────────────────────────────────────── */
.ticker {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 9px 0;
  height: 33px;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding-left: 100%;
}
.ticker-track span { padding: 0 28px; }
.ticker .rec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rec);
}
.ticker .rec::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--rec);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
.ticker .dot { color: var(--text-mute); }

@keyframes ticker { to { transform: translateX(-100%); } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,9,7,0.5);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,9,7,0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0;
}
.nav-logo {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--text);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--beige); }

.nav-time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   SECTION SCAFFOLD
   ───────────────────────────────────────────────────────────── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 0 24px;
  border-bottom: 1px dashed var(--border);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.section-head .num { color: var(--beige); }
.section-head .label { color: var(--text); }

/* ─────────────────────────────────────────────────────────────
   HERO — NATURE (duplicate above main hero)
   ───────────────────────────────────────────────────────────── */
.hero-nature {
  position: relative;
  padding: 100px var(--pad) 80px;
  overflow: hidden;
  border-bottom: none;
  background: var(--bg);
}
.hero-nature::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background: url('assets/window-shadow.jpg') center/cover no-repeat;
}
.hero-nature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(10, 9, 7, 0.7);
}
.hero-nature > .hero-grid { position: relative; z-index: 1; }

.n-stage { overflow: visible !important; }
.n-stage .p-img-wrap {
  overflow: visible !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
.n-stage .p-img {
  mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}
.n-stage .p-img { height: 280%; margin-bottom: -125%; }

.n-glow {
  background: radial-gradient(circle at 50% 50%, rgba(77, 153, 132, 0.25), transparent 65%) !important;
}

.n-float {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.n-branch-l {
  width: 180px;
  top: -5%;
  left: -8%;
  transform: rotate(-25deg);
  animation: nSway 8s ease-in-out infinite;
  z-index: 5;
}
.n-branch-r {
  width: 140px;
  bottom: 5%;
  right: -6%;
  transform: rotate(15deg);
  animation: nSway 10s ease-in-out infinite reverse;
  z-index: 5;
}
.n-leaf-round {
  width: 100px;
  top: 8%;
  right: 5%;
  transform: rotate(20deg);
  opacity: 0.5;
  animation: nSway 7s ease-in-out infinite;
}
.n-cloud {
  width: 280px;
  top: -10%;
  left: 15%;
  opacity: 0.15;
  z-index: 0;
  animation: nDrift 20s ease-in-out infinite;
}
.n-willow {
  width: 200px;
  top: -12%;
  right: -5%;
  opacity: 0.4;
  z-index: 6;
  animation: nSway 12s ease-in-out infinite;
}
.n-leaves {
  width: 160px;
  bottom: -8%;
  left: 20%;
  opacity: 0.35;
  transform: rotate(-10deg);
  animation: nFloat 9s ease-in-out infinite;
}

@keyframes nSway {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50% { transform: rotate(var(--rot, 0deg)) translateY(-12px); }
}
@keyframes nDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}
@keyframes nFloat {
  0%, 100% { transform: rotate(-10deg) translateY(0); opacity: 0.35; }
  50% { transform: rotate(-6deg) translateY(-18px); opacity: 0.5; }
}

/* ─────────────────────────────────────────────────────────────
   HERO — IDENTITY (new grid layout)
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px var(--pad) 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 60% at 78% 50%, rgba(140, 44, 51, 0.16), transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 230px);
}

/* ── LEFT COLUMN ───────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige);
}
.hero-eyebrow .bar {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--beige);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(68px, 9.5vw, 152px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  color: var(--text);
}
.hero-title span { display: block; }
.hero-title span + span { color: var(--beige); }
.hero-title em {
  font-family: var(--f-serif);
  font-style: normal;
  color: var(--teal);
}

.hero-role {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 38ch;
  font-weight: 400;
}
.hero-role span {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--beige);
  font-size: 1.1em;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-strip {
  display: flex;
  gap: 28px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-strip > div { display: flex; flex-direction: column; gap: 4px; }
.hero-strip .k { color: var(--text-mute); }
.hero-strip .v { color: var(--text); }
.hero-strip .v.on {
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-strip .v.on i {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ── RIGHT COLUMN — portrait stage ─────────────────────────── */
.hero-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.p-glow {
  position: absolute;
  inset: 5% 8%;
  background: radial-gradient(circle at 50% 60%, rgba(140, 44, 51, 0.5), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.p-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,162,136,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,162,136,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, black 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, black 50%, transparent 90%);
  z-index: 0;
}

.p-img-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}

.p-img {
  position: relative;
  height: 112%;
  width: auto;
  margin-bottom: -24%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  animation: bodyWiggle 6s ease-in-out infinite;
}

@keyframes bodyWiggle {
  0%, 100% { transform: rotate(-0.6deg) translate(0, 0); }
  50%      { transform: rotate(0.6deg)  translate(0, -6px); }
}

/* ── FLOATING ELEMENTS ─────────────────────────────────────── */
.float {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  transform: rotate(var(--rot, 0deg));
  animation: wiggle 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translate(0, 0); }
  25%      { transform: rotate(calc(var(--rot, 0deg) + 4deg)) translate(2px, -5px); }
  50%      { transform: rotate(calc(var(--rot, 0deg) - 2deg)) translate(-3px, 2px); }
  75%      { transform: rotate(calc(var(--rot, 0deg) + 3deg)) translate(1px, 4px); }
}

.float img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5))
          drop-shadow(0 0 1px rgba(255,255,255,0.08));
}

.float::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(8px);
  opacity: 0.35;
  z-index: -1;
  transform: translate(6px, 8px);
}

.float.card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 0 1px rgba(176,162,136,0.05);
}
.float.card .k { color: var(--text-mute); }
.float.card .v { color: var(--beige); }

.f-ae {
  top: 8%;
  left: -4%;
  width: 90px;
  animation-duration: 4.6s;
}
.f-nch {
  top: 22%;
  right: -6%;
  width: 78px;
  animation-duration: 5.4s;
  animation-delay: -1.2s;
}
.f-rec {
  top: 4%;
  right: 8%;
  animation-duration: 4.2s;
  animation-delay: -2.4s;
}
.f-rec .dot {
  width: 8px; height: 8px;
  background: var(--rec);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.f-rec .lbl { color: var(--rec); font-weight: 600; }
.f-rec .tc { color: var(--text); }

.f-frame {
  bottom: 22%;
  left: -10%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 16px;
  animation-duration: 5.8s;
  animation-delay: -0.8s;
}

.f-tag {
  bottom: 8%;
  right: -2%;
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  animation-duration: 5.2s;
  animation-delay: -1.6s;
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.f-tag span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  display: block;
  margin-top: 4px;
}

.f-star {
  top: 32%;
  left: 6%;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--teal);
  animation-duration: 6.4s;
}
.f-plus {
  bottom: 38%;
  right: 4%;
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--beige);
  font-weight: 500;
  animation-duration: 5s;
  animation-delay: -2s;
}
.f-asterisk {
  top: 56%;
  left: -2%;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 40px;
  color: var(--beige);
  animation-duration: 5.6s;
  animation-delay: -3s;
}

.f-ribbon {
  top: 14%;
  right: -10%;
  width: 240px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige);
  padding: 8px 14px;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  text-align: center;
  background: rgba(176,162,136,0.04);
  overflow: hidden;
  white-space: nowrap;
  animation-duration: 7s;
  animation-delay: -1s;
  display: none;
}

.f-star::after, .f-plus::after, .f-asterisk::after, .f-tag::after, .f-rec::after, .f-frame::after, .f-ribbon::after {
  display: none;
}

/* ─────────────────────────────────────────────────────────────
   VENTURES — directory listing
   ───────────────────────────────────────────────────────────── */
.ventures-wrap {
  position: relative;
  background: url('assets/ventures-bg.jpg') center/cover no-repeat;
}
.ventures-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.85);
  pointer-events: none;
}
.ventures {
  padding-bottom: 24px;
  position: relative;
  z-index: 1;
}
.venture {
  display: grid;
  grid-template-columns: 50px 1.4fr 1fr 1.6fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .25s ease, padding .25s ease;
}
.venture:last-child { border-bottom: none; }
.venture:hover { background: linear-gradient(90deg, transparent, var(--beige) 6%, var(--beige) 94%, transparent); padding-left: 16px; padding-right: 16px; color: var(--bg); }
.venture:hover .v-num,
.venture:hover .v-name,
.venture:hover .v-kind,
.venture:hover .v-desc,
.venture:hover .v-name .ar { color: var(--bg); }
.venture:hover .v-cta { background: var(--bg); color: var(--beige); border-color: var(--bg); }
.venture .v-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
}
.venture .v-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.venture .v-name .ar {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.42em;
  color: var(--teal);
  font-weight: 400;
  letter-spacing: 0;
}
.venture .v-kind {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
}
.venture .v-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.45;
  max-width: 36ch;
}
.venture .v-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border-2);
  border-radius: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.venture .v-cta:hover {
  background: var(--beige);
  color: var(--bg);
  border-color: var(--beige);
}
.venture .v-cta .arr { transition: transform .25s ease; }
.venture:hover .v-cta .arr { transform: translateX(4px); }

.venture[data-flag="primary"] .v-cta {
  background: var(--beige);
  color: var(--bg);
  border-color: var(--beige);
}
.venture[data-flag="primary"] .v-cta:hover { background: var(--teal); border-color: var(--teal); color: var(--bg); }

/* ─────────────────────────────────────────────────────────────
   FEATURED PRODUCT
   ───────────────────────────────────────────────────────────── */
.featured {
  padding-bottom: 80px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.featured-thumb {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(176,162,136,0.04) 12px 13px);
}
.featured-thumb .ph {
  position: relative;
  text-align: center;
}
.featured-thumb .ph .ttl {
  font-family: var(--f-display);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
}
.featured-thumb .ph .ttl span { color: var(--teal); }
.featured-thumb .ph .sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige);
  margin-top: 10px;
}
.featured-thumb .ph .placeholder-note {
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.featured-thumb .crop {
  position: absolute;
  width: 18px; height: 18px;
}
.featured-thumb .crop.tl { top: 12px; left: 12px; border-top: 1px solid var(--beige); border-left: 1px solid var(--beige); }
.featured-thumb .crop.tr { top: 12px; right: 12px; border-top: 1px solid var(--beige); border-right: 1px solid var(--beige); }
.featured-thumb .crop.bl { bottom: 12px; left: 12px; border-bottom: 1px solid var(--beige); border-left: 1px solid var(--beige); }
.featured-thumb .crop.br { bottom: 12px; right: 12px; border-bottom: 1px solid var(--beige); border-right: 1px solid var(--beige); }

.featured-meta { display: flex; flex-direction: column; gap: 18px; }
.featured-meta .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.featured-meta h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 400;
}
.featured-meta h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--beige);
  font-size: 0.5em;
  vertical-align: 0.45em;
  margin-left: 4px;
}
.featured-meta .lede {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 42ch;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}
.feature-list li .ix { color: var(--text-mute); }
.feature-list li .yes { color: var(--teal); }

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.price-row .price {
  font-family: var(--f-display);
  font-size: 64px;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
}
.price-row .price .cur {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--beige);
  letter-spacing: 0.16em;
  margin-left: 6px;
  vertical-align: 0.9em;
}
.price-row .price .strk {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  margin-left: 10px;
  text-decoration: line-through;
  vertical-align: 1.5em;
}

/* ─────────────────────────────────────────────────────────────
   BUTTON
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--beige);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--beige);
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--teal); border-color: var(--teal); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn.ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ─────────────────────────────────────────────────────────────
   TIMELINE — JOURNEY
   ───────────────────────────────────────────────────────────── */
.timeline-section { padding-bottom: 80px; }
.timeline {
  position: relative;
  margin-top: 48px;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.tl-progress {
  width: 100%;
  height: 0%;
  background: var(--beige);
  transition: height 0.05s linear;
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.tl-dot span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--beige);
  font-weight: 600;
}
.tl-item.visible .tl-dot span {
  background: var(--beige);
  color: var(--bg);
}
.tl-left { padding-right: 40px; text-align: right; }
.tl-right { padding-left: 40px; }
.tl-item.reverse .tl-left { text-align: left; padding-right: 0; padding-left: 40px; }
.tl-item.reverse .tl-right { padding-left: 0; padding-right: 40px; text-align: right; }
.tl-item.reverse .tl-left { order: 3; }
.tl-item.reverse .tl-dot { order: 2; }
.tl-item.reverse .tl-right { order: 1; }

.tl-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  background: var(--surface);
}
.tl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.tl-item:hover .tl-img-wrap img { opacity: 1; }

.tl-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.tl-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.1;
}
.tl-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .tl-item,
  .tl-item.reverse {
    grid-template-columns: 40px 1fr;
    gap: 0;
  }
  .tl-line { left: 20px; }
  .tl-dot { justify-content: flex-start; }
  .tl-dot span { width: 40px; height: 40px; font-size: 10px; }
  .tl-left,
  .tl-right,
  .tl-item.reverse .tl-left,
  .tl-item.reverse .tl-right {
    padding: 0 0 0 24px;
    text-align: left;
    order: unset;
  }
  .tl-item .tl-left { display: none; }
  .tl-item.reverse .tl-right { display: none; }
  .tl-item.reverse .tl-left { display: block; order: unset; }
  .tl-item { margin-bottom: 48px; }
}

/* ─────────────────────────────────────────────────────────────
   CONNECT
   ───────────────────────────────────────────────────────────── */
.connect { padding-bottom: 80px; }
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.connect-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s ease;
}
.connect-card:hover { background: var(--bg-2); }
.connect-card .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.connect-card .val {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--text);
  word-break: break-all;
  line-height: 1;
}
.connect-card .note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--beige);
  margin-top: 2px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1px;
}
.social-card {
  background: var(--bg);
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 140px;
  transition: background .25s ease;
  position: relative;
}
.social-card:hover { background: var(--surface); }
.social-card .ix {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.social-card .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
}
.social-card .handle {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 4px;
}
.social-card .arr {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--beige);
  transition: transform .25s ease;
}
.social-card:hover .arr { transform: translate(3px, -3px); }

/* ─────────────────────────────────────────────────────────────
   COLOPHON / FOOTER
   ───────────────────────────────────────────────────────────── */
footer.colophon {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px var(--pad) 36px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.colophon-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px dashed var(--border);
}
.colophon-block .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.colophon-block .v {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  line-height: 1.7;
}
.colophon-block.brand .v {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
}
.colophon-block.brand .v small {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--beige);
  letter-spacing: 0;
  margin-top: 6px;
}
.colophon-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ─────────────────────────────────────────────────────────────
   CORNER REGISTRATION MARKS
   ───────────────────────────────────────────────────────────── */
.regmark {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--beige);
  opacity: 0.5;
  pointer-events: none;
}
.regmark.tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.regmark.tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.regmark.bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.regmark.br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }

/* ─────────────────────────────────────────────────────────────
   SHOP PAGE
   ───────────────────────────────────────────────────────────── */
.shop-hero {
  padding: 64px var(--pad) 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.shop-hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.shop-hero-meta .num { color: var(--beige); }
.shop-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 400;
}
.shop-hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.42em;
  color: var(--beige);
  vertical-align: 0.7em;
  margin-left: 0.2em;
}
.shop-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.shop-sub .lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.25;
  color: var(--text);
}
.shop-sub .lede em { color: var(--teal); }
.shop-sub .pay-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pay-info .row { display: flex; gap: 14px; align-items: center; }
.pay-info .k { color: var(--text-mute); min-width: 90px; }
.pay-info .v { color: var(--text); }
.pay-info .pill {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--border-2);
  font-size: 10px;
  color: var(--beige);
  letter-spacing: 0.14em;
}

.products {
  padding: 64px var(--pad) 96px;
}
.product-list {
  display: flex;
  flex-direction: column;
}
.product-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  background: var(--bg);
}
.product-row + .product-row { margin-top: -29px; }
.product-row .pr-media {
  position: relative;
  background: var(--surface);
  border-right: 1px solid var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-row .pr-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(77,153,132,0.04) 14px 15px);
}
.pr-media .ttl {
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: center;
}
.pr-media .ttl span { color: var(--teal); }
.pr-media .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--beige);
  padding: 4px 8px;
  border: 1px solid var(--beige);
}
.pr-media .ver {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
}
.pr-media .crop { position: absolute; width: 14px; height: 14px; }
.pr-media .crop.tl { top: 10px; left: 10px; border-top: 1px solid var(--text-mute); border-left: 1px solid var(--text-mute); }
.pr-media .crop.tr { top: 10px; right: 10px; border-top: 1px solid var(--text-mute); border-right: 1px solid var(--text-mute); }
.pr-media .crop.bl { bottom: 10px; left: 10px; border-bottom: 1px solid var(--text-mute); border-left: 1px solid var(--text-mute); }
.pr-media .crop.br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--text-mute); border-right: 1px solid var(--text-mute); }

.pr-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
.pr-body .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.pr-body h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 0.95;
  font-weight: 400;
}
.pr-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 40ch;
}
.pr-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}
.pr-bottom .price {
  font-family: var(--f-display);
  font-size: 48px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.pr-bottom .price .cur {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--beige);
  letter-spacing: 0.16em;
  margin-left: 4px;
  vertical-align: 0.9em;
}

/* Empty slot teaser */
.product-slot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 240px;
}
.product-slot .slot-art {
  background: repeating-linear-gradient(135deg, var(--bg-2) 0 14px, transparent 14px 28px);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}
.product-slot .slot-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.product-slot .slot-body .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--beige);
  text-transform: uppercase;
}
.product-slot .slot-body h4 {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--text-2);
  line-height: 1;
}
.product-slot .slot-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   MODAL
   ───────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,7,5,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.modal-head .num { color: var(--beige); }
.modal-close {
  width: 26px; height: 26px;
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 14px; line-height: 1;
  color: var(--text-2);
  transition: all .2s ease;
}
.modal-close:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.modal-body { padding: 28px 28px 24px; }
.modal-body h2 {
  font-family: var(--f-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  font-weight: 400;
}
.modal-body .price {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--beige);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.modal-body .details {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  white-space: pre-line;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.payment-btn {
  padding: 14px;
  border: 1px solid;
  background: transparent;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.payment-btn .lbl { font-size: 14px; font-family: var(--f-display); letter-spacing: 0.06em; }
.payment-btn .sub { font-size: 9px; opacity: 0.7; }
.payment-btn.bkash { border-color: #e2136e; color: #e2136e; }
.payment-btn.bkash:hover { background: #e2136e; color: var(--bg); }
.payment-btn.nagad { border-color: #f6921e; color: #f6921e; }
.payment-btn.nagad:hover { background: #f6921e; color: var(--bg); }

#paymentInstructions {
  margin-top: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.85;
  letter-spacing: 0.02em;
}
#paymentInstructions strong { color: var(--beige); font-weight: 500; }
#paymentInstructions .step {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 4px;
}
#paymentInstructions .step .n { color: var(--teal); }
#paymentInstructions .ok {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   MOTION / UTILS
   ───────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.fade-in {
  animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────
   HERO LEGACY — portrait + wordmark (bottom section)
   ───────────────────────────────────────────────────────────── */
.hero-legacy {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px var(--pad) 28px;
  margin-top: 80px;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(55% 60% at 50% 60%, rgba(140, 44, 51, 0.16), transparent 72%),
    var(--bg);
}
.hero-legacy::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  z-index: 5;
  pointer-events: none;
}

.hero-legacy .hero-stage {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  min-height: 660px;
  padding-top: 48px;
}

.hero-legacy .hero-corner {
  position: absolute;
  z-index: 6;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.45;
}
.hero-legacy .hero-corner .dim { color: var(--text-dim); }
.hero-legacy .hero-corner.tl { top: 0; left: 0; }
.hero-legacy .hero-corner.tr { top: 0; right: 0; text-align: right; align-items: flex-end; }
.hero-legacy .hero-corner.bl { bottom: 0; left: 0; }
.hero-legacy .hero-corner.br { bottom: 0; right: 0; text-align: right; align-items: flex-end; }
.hero-legacy .hero-corner .status-on {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
}
.hero-legacy .hero-corner .status-on i {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.hero-legacy .hero-word {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.hero-legacy .hero-word span {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(78px, 18.5vw, 280px);
  line-height: 0.84;
  letter-spacing: 0.015em;
  color: var(--text);
  white-space: nowrap;
}
.hero-legacy .hero-word .hw-bot {
  color: var(--beige);
  position: relative;
  top: -0.55em;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(100px, 24vw, 360px);
}

.hero-legacy .hero-word-stroke {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.hero-legacy .hero-word-stroke span {
  font-family: var(--f-display);
  font-size: clamp(78px, 18.5vw, 280px);
  line-height: 0.84;
  letter-spacing: 0.015em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--beige);
  white-space: nowrap;
}
.hero-legacy .hero-word-stroke .hw-top-ghost {
  visibility: hidden;
}
.hero-legacy .hero-word-stroke span:last-child {
  position: relative;
  top: -0.55em;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(100px, 24vw, 360px);
}

.hero-legacy .hero-portrait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%);
  height: 130%;
  max-height: 1100px;
  width: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.55))
          drop-shadow(0 0 1px rgba(176,162,136,0.1));
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translate(-50%, -47%); }
  50%      { transform: translate(-50%, -49%); }
}

.hero-legacy .hero-tag {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hero-legacy .hero-tag em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--beige);
  font-size: 19px;
  letter-spacing: 0;
  margin-right: 4px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; min-height: auto; padding-top: 12px; }
  .hero-right { min-height: 480px; }
  .portrait-stage { max-width: 460px; }
  .hero-strip { flex-wrap: wrap; gap: 18px 28px; }
  .hero-nature { padding: 40px var(--pad) 56px; }
  .n-branch-l { width: 120px; }
  .n-branch-r { width: 100px; }
  .n-willow { width: 140px; }
  .n-cloud { width: 200px; }

  .hero-legacy .hero-stage { min-height: 540px; }
  .hero-legacy .hero-word span { font-size: clamp(60px, 18vw, 160px); }
  .hero-legacy .hero-word-stroke span { font-size: clamp(60px, 18vw, 160px); }
  .hero-legacy .hero-portrait { height: 86%; max-height: 540px; }
  .hero-legacy .hero-corner { font-size: 10px; }

  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .colophon-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .connect-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .product-row { grid-template-columns: 1fr; }
  .product-row .pr-media { border-right: none; border-bottom: 1px solid var(--border); }
  .product-slot { grid-template-columns: 1fr; }
  .product-slot .slot-art { border-right: none; border-bottom: 1px solid var(--border); padding: 36px; }
  .shop-sub { grid-template-columns: 1fr; gap: 28px; }

  .venture { grid-template-columns: 36px 1fr; gap: 14px 18px; padding: 22px 0; }
  .venture .v-num { grid-row: 1; }
  .venture .v-name { grid-column: 2; }
  .venture .v-kind { grid-column: 2; }
  .venture .v-desc { grid-column: 2; }
  .venture .v-cta { grid-column: 2; justify-self: start; margin-top: 4px; }
  .venture .v-name { font-size: clamp(28px, 7vw, 38px); }
  .venture:hover { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 640px) {
  .hero { padding: 40px var(--pad) 56px; }
  .hero-right { min-height: 380px; }
  .portrait-stage { max-width: 360px; }
  .f-ae { width: 64px; }
  .f-nch { width: 56px; }
  .f-tag { font-size: 20px; }
  .f-asterisk { font-size: 30px; }

  .hero-legacy .hero-stage { min-height: 460px; }
  .hero-legacy .hero-word span { font-size: clamp(46px, 17vw, 100px); }
  .hero-legacy .hero-word-stroke span { font-size: clamp(46px, 17vw, 100px); -webkit-text-stroke-width: 1.5px; }
  .hero-legacy .hero-portrait { height: 80%; }
  .hero-legacy .hero-tag { font-size: 11px; }
  .hero-legacy .hero-tag em { font-size: 15px; }
  .hero-legacy .hero-corner.tr { max-width: 40%; }
  .hero-legacy .hero-corner.bl, .hero-legacy .hero-corner.br { font-size: 9px; }

  .nav-links { gap: 16px; }
  .nav-time { display: none; }
  .nav-links a span.hide-sm { display: none; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .colophon-grid { grid-template-columns: 1fr; }
  .colophon-bot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .venture .v-name { font-size: 28px; }
  .modal-body h2 { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES · v2 · 2026.05
   Appended responsive layer — desktop styles above are untouched.
   ═══════════════════════════════════════════════════════════════ */

.nav-toggle { display: none; }

/* ── Tablet / Small-laptop break (860px) ──────────────────── */
@media (max-width: 860px) {
  .nav-inner {
    padding: 14px var(--pad);
    max-width: 100%;
  }
  .nav-logo {
    font-size: 13px;
    letter-spacing: 0.16em;
    gap: 8px;
  }
  .nav-logo img { width: 22px; height: 22px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-2);
    background: transparent;
    cursor: pointer;
    z-index: 120;
    position: relative;
    padding: 0;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav-toggle:hover { border-color: var(--beige); }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease;
    transform-origin: center;
  }
  .nav-toggle.open { border-color: var(--beige); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    padding: 92px var(--pad) 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.32,.72,.24,1);
    z-index: 110;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li {
    list-style: none;
    border-bottom: 1px dashed var(--border);
  }
  .nav-links a {
    display: block;
    padding: 22px 4px;
    font-family: var(--f-display);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1;
  }
  .nav-links a.active {
    color: var(--beige);
  }
  .nav-links a::after {
    content: '→';
    float: right;
    font-family: var(--f-mono);
    font-size: 16px;
    color: var(--text-mute);
    transition: transform .2s ease, color .2s ease;
  }
  .nav-links a:hover::after { color: var(--beige); transform: translateX(4px); }

  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10,9,7,0.55);
    backdrop-filter: blur(4px);
    z-index: 105;
    animation: navFade .25s ease;
  }
  @keyframes navFade { from { opacity: 0; } to { opacity: 1; } }
}

/* ── Mobile break (720px) ─────────────────────────────────── */
@media (max-width: 720px) {
  :root { --pad: 20px; }

  .hero-nature { padding: 76px var(--pad) 40px; }
  .hero-grid { gap: 36px; padding-top: 0; }
  .hero-left { gap: 22px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.14em; gap: 10px; }
  .hero-eyebrow .bar { width: 32px; }
  .hero-title { font-size: clamp(56px, 15vw, 96px); line-height: 0.9; }
  .hero-role { font-size: 15px; max-width: none; }
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 14px 16px;
    font-size: 11px;
    gap: 8px;
  }
  .hero-strip {
    gap: 14px 22px;
    font-size: 10px;
    padding-top: 18px;
    letter-spacing: 0.10em;
  }
  .hero-strip > div { gap: 3px; }

  .hero-right { min-height: 340px; }
  .portrait-stage { max-width: 320px; }
  .f-ae { width: 56px; top: 6%; left: 0%; }
  .f-nch { width: 48px; right: -2%; }
  .f-tag { font-size: 16px; right: 2%; bottom: 6%; }
  .f-tag span { font-size: 9px; letter-spacing: 0.14em; }
  .f-asterisk { font-size: 26px; }
  .f-star { font-size: 22px; }
  .f-plus { font-size: 18px; }
  .f-frame { left: -2%; padding: 8px 12px; gap: 1px; }
  .f-frame .k, .f-frame .v { font-size: 9px; }
  .f-rec { right: 6%; padding: 6px 10px; gap: 7px; font-size: 9px; }
  .f-rec .lbl, .f-rec .tc { font-size: 9px; }
  .f-rec .dot { width: 6px; height: 6px; }

  .hero-legacy {
    margin-top: 20px;
    padding: 8px var(--pad) 16px;
    min-height: auto;
  }
  .hero-legacy::after { height: 56px; }
  .hero-legacy .hero-stage {
    min-height: 420px;
    padding-top: 8px;
  }
  .hero-legacy .hero-corner { font-size: 9px; gap: 3px; letter-spacing: 0.12em; }
  .hero-legacy .hero-corner.tr { max-width: 44%; }
  .hero-legacy .hero-word { gap: 6px; }
  .hero-legacy .hero-word-stroke { gap: 6px; }
  .hero-legacy .hero-word span { font-size: clamp(40px, 18vw, 80px); }
  .hero-legacy .hero-word-stroke span { font-size: clamp(40px, 18vw, 80px); -webkit-text-stroke-width: 1px; }
  .hero-legacy .hero-portrait {
    height: 74%;
    max-height: 460px;
  }
  .hero-legacy .hero-tag { font-size: 10px; bottom: 24px; }
  .hero-legacy .hero-tag em { font-size: 13px; }

  .section-head {
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 28px 0 18px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .venture {
    grid-template-columns: 32px 1fr;
    gap: 6px 14px;
    padding: 22px 0;
  }
  .venture .v-num { font-size: 10px; }
  .venture .v-name {
    font-size: clamp(28px, 8vw, 36px);
    gap: 10px;
    flex-wrap: wrap;
    line-height: 0.95;
  }
  .venture .v-name .ar { font-size: 13px; }
  .venture .v-kind { font-size: 10px; letter-spacing: 0.10em; }
  .venture .v-desc { font-size: 13.5px; max-width: none; line-height: 1.5; }
  .venture .v-cta {
    padding: 11px 14px;
    font-size: 10px;
    letter-spacing: 0.10em;
    gap: 8px;
  }
  .venture:hover {
    padding-left: 6px;
    padding-right: 6px;
    background: var(--bg-2);
    color: var(--text);
  }
  .venture:hover .v-num,
  .venture:hover .v-name,
  .venture:hover .v-kind,
  .venture:hover .v-desc { color: inherit; }
  .venture:hover .v-cta { background: var(--beige); color: var(--bg); border-color: var(--beige); }
  .venture[data-flag="primary"]:hover .v-cta { background: var(--teal); border-color: var(--teal); }

  .connect-card { padding: 26px 22px; gap: 12px; }
  .connect-card .val {
    font-size: 26px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.05;
  }
  .connect-card .lbl { font-size: 9px; letter-spacing: 0.14em; }
  .connect-card .note { font-size: 10px; }

  .social-card {
    padding: 18px 16px 16px;
    min-height: 110px;
    gap: 16px;
  }
  .social-card .name { font-size: 18px; }
  .social-card .handle { font-size: 10px; }
  .social-card .ix { font-size: 9px; }
  .social-card .arr { top: 16px; right: 16px; font-size: 12px; }

  footer.colophon { padding: 40px var(--pad) 28px; }
  .colophon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }
  .colophon-block.brand { grid-column: 1 / -1; }
  .colophon-block.brand .v { font-size: 22px; }
  .colophon-block.brand .v small { font-size: 13px; }
  .colophon-block .v { font-size: 11px; line-height: 1.65; }
  .colophon-bot {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    font-size: 9px;
    padding-top: 20px;
  }

  .shop-hero { padding: 56px var(--pad) 36px; }
  .shop-hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    font-size: 9px;
    margin-bottom: 28px;
    letter-spacing: 0.12em;
  }
  .shop-hero h1 {
    font-size: clamp(56px, 16vw, 110px);
    line-height: 0.88;
  }
  .shop-hero h1 em { font-size: 0.38em; }
  .shop-sub {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .shop-sub .lede {
    font-size: 19px;
    line-height: 1.3;
  }
  .pay-info { gap: 10px; }
  .pay-info .row { gap: 10px; font-size: 10px; }
  .pay-info .k { min-width: 70px; }
  .pay-info .pill { font-size: 9px; padding: 3px 8px; }

  .products { padding: 36px var(--pad) 56px; }
  .product-row { margin-bottom: 16px; }
  .product-row + .product-row { margin-top: 0; }
  .product-row .pr-media { aspect-ratio: 16/11; }
  .pr-media .badge { font-size: 9px; padding: 3px 6px; top: 12px; left: 12px; }
  .pr-media .ver { font-size: 9px; bottom: 12px; right: 12px; }
  .pr-body { padding: 24px 20px; gap: 14px; }
  .pr-body h3 { font-size: clamp(30px, 8vw, 40px); }
  .pr-body p { font-size: 14px; }
  .pr-body .tag { font-size: 10px; }
  .feature-list li {
    font-size: 10px;
    grid-template-columns: 22px 1fr auto;
    gap: 10px;
    padding: 11px 0;
  }
  .pr-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 16px !important;
    margin-top: 12px !important;
  }
  .pr-bottom .price { font-size: 36px; }
  .pr-bottom .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .product-slot { grid-template-columns: 1fr; min-height: auto; margin-bottom: 16px; }
  .product-slot .slot-art {
    aspect-ratio: 4/1;
    border-right: none;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .product-slot .slot-body { padding: 24px 20px; gap: 10px; }
  .product-slot .slot-body h4 { font-size: 28px; }
  .product-slot .slot-body p { font-size: 13.5px; }
  .product-slot .slot-body .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .modal-overlay { padding: 14px; }
  .modal-head { padding: 14px 18px; font-size: 10px; }
  .modal-body { padding: 22px 20px 20px; }
  .modal-body h2 { font-size: 28px; }
  .modal-body .price { font-size: 24px; }
  .modal-body .details { font-size: 13px; padding-top: 14px; margin-top: 14px; }
  .payment-options { gap: 8px; margin-top: 18px; }
  .payment-btn { padding: 12px; font-size: 11px; }
  #paymentInstructions { padding: 14px; font-size: 11px; line-height: 1.7; }
}

/* ── Small mobile break (480px) ───────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 16vw, 78px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; flex: none; }

  .portrait-stage { max-width: 280px; }
  .f-ae { width: 48px; }
  .f-nch { width: 42px; }
  .f-asterisk { font-size: 22px; }
  .f-tag { font-size: 14px; }

  .hero-legacy .hero-stage { min-height: 360px; padding-top: 18px; }
  .hero-legacy .hero-portrait { height: 76%; max-height: 380px; }

  .venture .v-name { font-size: clamp(24px, 8vw, 32px); }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .colophon-grid { grid-template-columns: 1fr; }
  .colophon-block.brand { grid-column: auto; }

  .shop-hero h1 { font-size: clamp(46px, 15vw, 84px); }
}
