:root {
  --char: #0E0E0C;
  --char-2: #16150F;
  --ink: #2c2820;
  --off: #F1EAD8;
  --off-2: #E8E0CB;
  --off-mute: #8a8474;
  --paper: #f4f0e3;
  --paper-2: #ebe4d1;
  --gold: #C9A961;
  --gold-hot: #E4C078;
  --gold-deep: #9A7F42;
  --burgundy: #7a2a1e;
  --emerald-deep: #2ca367;
  --rule: rgba(0,0,0,0.08);
  --rule-strong: rgba(0,0,0,0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 800px 600px at 20% 0%, rgba(201,169,97,0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(228,192,120,0.06), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  background-attachment: fixed;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--char);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
body.viewer-open { overflow: hidden; }
::selection { background: var(--gold); color: var(--char); }

/* BOOT */
.boot { position: fixed; inset: 0; background: var(--paper); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity 0.6s, visibility 0.6s; }
.boot.gone { opacity: 0; visibility: hidden; }
.boot-mark { width: 44px; height: 44px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 26px; color: var(--gold-deep); animation: boot-mark 2s ease-in-out infinite; }
@keyframes boot-mark { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.boot-line { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* CURSOR */
.cursor-glow { position: fixed; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,97,0.10), transparent 60%); pointer-events: none; z-index: 1; transform: translate(-50%, -50%); opacity: 0; }
@media (hover: hover) { .cursor-glow { opacity: 1; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(244,240,227,0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); transition: padding 0.3s; }
.nav.scrolled { background: rgba(244,240,227,0.95); border-bottom-color: var(--rule-strong); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 20px 56px; display: flex; align-items: center; justify-content: space-between; transition: padding 0.3s; }
.nav.scrolled .nav-inner { padding: 14px 56px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; transition: transform 0.3s; }
.nav-brand:hover { transform: translateX(2px); }
.nav-mark { width: 28px; height: 28px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 17px; color: var(--gold-deep); transition: all 0.3s; }
.nav-brand:hover .nav-mark { background: var(--gold); color: var(--char); transform: rotate(-4deg); }
.nav-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.3px; color: var(--char); line-height: 1; text-align: left; }
.nav-name em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.nav-name small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; color: var(--off-mute); text-transform: uppercase; font-weight: 500; margin-top: 3px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--char); text-decoration: none; font-weight: 600; position: relative; transition: color 0.2s; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--char); text-decoration: none; font-weight: 700; border: 1.5px solid var(--char); padding: 10px 18px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; position: relative; overflow: hidden; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--char); transform: translateY(101%); transition: transform 0.3s; z-index: -1; }
.nav-cta:hover { color: var(--gold); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta::after { content: '→'; font-size: 12px; transition: transform 0.3s; }
.nav-cta:hover::after { transform: translateX(4px); }

/* HERO */
.hero { max-width: 1280px; margin: 0 auto; padding: 70px 56px 100px; border-bottom: 1px solid var(--rule); position: relative; }
.hero-meta-top { display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; padding-bottom: 20px; margin-bottom: 50px; border-bottom: 1px dashed var(--rule-strong); }
.hero-meta-top .left { display: flex; gap: 26px; }
.hero-meta-top .slot-indicator { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-top .slot-dot { width: 6px; height: 6px; background: var(--emerald-deep); border-radius: 50%; animation: slot-pulse 2s ease-in-out infinite; }
@keyframes slot-pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(44,163,103,0.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(44,163,103,0); } }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.hero-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(52px, 6.4vw, 92px); line-height: 0.9; letter-spacing: -0.045em; color: var(--char); margin-bottom: 26px; }
.hero-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); letter-spacing: -0.02em; display: inline-block; }
.hero-lede { font-family: 'Space Grotesk', sans-serif; font-size: 17px; line-height: 1.55; color: var(--ink); max-width: 480px; margin-bottom: 34px; }
.hero-lede strong { color: var(--char); font-weight: 700; }
.hero-lede em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--gold-deep); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 14px 22px; border: 1.5px solid var(--char); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer; }
.hero-btn::before { content: ''; position: absolute; inset: 0; transform: translateY(101%); transition: transform 0.35s; z-index: 0; }
.hero-btn span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; }
.hero-btn span::after { content: '→'; font-size: 13px; transition: transform 0.3s; }
.hero-btn:hover span::after { transform: translateX(4px); }
.hero-btn.primary { background: var(--char); color: var(--gold); }
.hero-btn.primary::before { background: var(--gold); }
.hero-btn.primary:hover { color: var(--char); }
.hero-btn.primary:hover::before { transform: translateY(0); }
.hero-btn.ghost { background: none; color: var(--char); }
.hero-btn.ghost::before { background: var(--char); }
.hero-btn.ghost:hover { color: var(--gold); }
.hero-btn.ghost:hover::before { transform: translateY(0); }
.hero-btn.big { padding: 18px 30px; font-size: 11px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 44px; border-top: 1px solid var(--rule-strong); }
.hero-stat { padding-right: 20px; border-right: 1px dashed var(--rule-strong); }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
.hero-stat:nth-child(2) { padding-left: 20px; }
.hs-val { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -1.5px; color: var(--char); margin-bottom: 8px; }
.hs-val em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.hs-lbl { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off-mute); font-weight: 600; line-height: 1.4; }

/* BROWSER FRAME */
.browser-frame { background: white; border: 1px solid var(--rule-strong); border-radius: 8px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,0.14); position: relative; transition: transform 0.6s var(--ease), box-shadow 0.6s; cursor: pointer; }
.hero .browser-frame:hover { transform: translateY(-4px); box-shadow: 0 32px 90px rgba(0,0,0,0.18); }
.browser-bar { background: var(--paper-2); border-bottom: 1px solid var(--rule-strong); padding: 10px 16px; display: flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--off-mute); }
.browser-bar-url { flex: 1; background: var(--paper); padding: 5px 12px; border-radius: 3px; color: var(--char); font-weight: 500; }
.browser-bar-url em { color: var(--gold-deep); font-family: 'Instrument Serif', serif; font-style: italic; }
.browser-bar-status { color: var(--gold-deep); font-weight: 600; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; }
.browser-viewport { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.browser-viewport img.real-shot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* SECTIONS */
.section { max-width: 1280px; margin: 0 auto; padding: 110px 56px; border-bottom: 1px solid var(--rule); scroll-margin-top: 80px; position: relative; }
.section-head { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: flex-start; margin-bottom: 70px; padding-bottom: 28px; border-bottom: 2px solid var(--char); }
.section-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 120px; line-height: 0.85; color: var(--gold-deep); letter-spacing: -0.05em; display: inline-block; transition: transform 0.6s var(--ease); }
.section:hover .section-num { transform: translateX(6px); }
.section-title-block { padding-top: 18px; }
.section-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 56px; line-height: 0.95; letter-spacing: -0.03em; color: var(--char); margin-bottom: 18px; }
.section-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.section-desc { font-family: 'Space Grotesk', sans-serif; font-size: 17px; line-height: 1.55; color: var(--ink); max-width: 640px; }

/* CAT GRID */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-tile { background: white; border: 1px solid var(--rule-strong); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.03); cursor: pointer; }
.cat-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: var(--gold); }
.cat-thumb { aspect-ratio: 4 / 3; position: relative; overflow: hidden; border-bottom: 1px solid var(--rule-strong); }
.cat-thumb.hospitality { background: radial-gradient(ellipse at 30% 30%, rgba(201,169,97,0.2), transparent 55%), linear-gradient(180deg, #1a1410 0%, #0a0806 100%); padding: 14px 16px; display: flex; flex-direction: column; }
.cat-thumb-mini-top { display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1px; color: rgba(241,234,216,0.5); text-transform: uppercase; font-weight: 600; padding-bottom: 8px; margin-bottom: 12px; border-bottom: 1px solid rgba(201,169,97,0.15); }
.cat-thumb-mini-top .brand-mini { color: var(--gold); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 8px; }
.cat-thumb.hospitality .cat-thumb-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; color: var(--off); margin-bottom: 6px; }
.cat-thumb.hospitality .cat-thumb-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
.cat-thumb.hospitality .cat-thumb-sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 9px; color: rgba(241,234,216,0.6); margin-bottom: auto; }
.cat-thumb.hospitality .cat-thumb-cta { align-self: flex-start; background: var(--gold); color: var(--char); font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; padding: 5px 8px; }
.cat-thumb.ecom { background: linear-gradient(180deg, #f4ede0 0%, #d8c8a5 100%); padding: 14px 16px; display: flex; flex-direction: column; }
.cat-thumb.ecom .cat-thumb-mini-top { color: rgba(0,0,0,0.4); border-color: rgba(122,90,40,0.2); }
.cat-thumb.ecom .brand-mini { color: #7a5f2e; }
.cat-thumb.ecom .cat-thumb-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; color: #1a1208; margin-bottom: 6px; }
.cat-thumb.ecom .cat-thumb-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.ecom-product { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.ecom-thumb { display: flex; align-items: flex-end; padding: 5px; border-radius: 2px; font-family: 'JetBrains Mono', monospace; font-size: 6px; color: #1a1208; font-weight: 700; }
.ecom-thumb:nth-child(1) { background: linear-gradient(135deg, #7a5f2e, #4a3820); color: var(--gold-hot); }
.ecom-thumb:nth-child(2) { background: linear-gradient(135deg, #a58750, #7a5f2e); color: var(--paper); }
.ecom-thumb:nth-child(3) { background: linear-gradient(135deg, #d4c4a5, #a58750); }
.ecom-thumb:nth-child(4) { background: linear-gradient(135deg, #4a3820, #2a1810); color: var(--gold-hot); }
.cat-thumb.services { background: radial-gradient(ellipse at 70% 30%, rgba(200,50,31,0.2), transparent 55%), linear-gradient(180deg, #14181e, #08090b); padding: 14px 16px; display: flex; flex-direction: column; }
.cat-thumb.services .cat-thumb-mini-top { color: rgba(241,234,216,0.4); border-color: rgba(255,255,255,0.1); }
.cat-thumb.services .brand-mini { color: #ff8570; }
.cat-thumb.services .cat-thumb-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; color: var(--off); margin-bottom: 6px; }
.cat-thumb.services .cat-thumb-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #ff8570; }
.svc-progress { margin-top: auto; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); }
.svc-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.svc-bar-fill { height: 100%; width: 72%; background: #ff8570; }
.svc-progress-lbl { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1px; text-transform: uppercase; color: rgba(241,234,216,0.6); font-weight: 600; }
.cat-thumb.property { background: radial-gradient(ellipse at 30% 30%, rgba(122,144,178,0.15), transparent 55%), linear-gradient(180deg, #1a2028, #0a1218); padding: 14px 16px; display: flex; flex-direction: column; }
.cat-thumb.property .cat-thumb-mini-top { color: rgba(241,234,216,0.4); border-color: rgba(255,255,255,0.08); }
.cat-thumb.property .brand-mini { color: #b8c8dc; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 10px; }
.cat-thumb.property .cat-thumb-title { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; font-size: 26px; line-height: 0.95; color: var(--off); margin-bottom: 6px; }
.cat-thumb.property .cat-thumb-title em { color: #9aa8bc; }
.prop-list { margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.prop-row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dotted rgba(255,255,255,0.1); font-family: 'JetBrains Mono', monospace; font-size: 7px; color: rgba(241,234,216,0.7); font-weight: 500; }
.prop-row .price { color: #b8c8dc; font-weight: 700; }
.cat-info { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.cat-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--char); margin-bottom: 6px; line-height: 1; }
.cat-name em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.cat-desc { font-family: 'Space Grotesk', sans-serif; font-size: 13px; line-height: 1.5; color: var(--ink); margin-bottom: 16px; flex: 1; }
.cat-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px dashed var(--rule-strong); font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off-mute); font-weight: 600; }
.cat-meta .count { color: var(--gold-deep); }
.cat-meta .go { color: var(--char); transition: transform 0.3s; }
.cat-tile:hover .cat-meta .go { transform: translateX(4px); color: var(--gold-deep); }

/* PREVIEW STRIP */
.preview-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.preview-card { background: white; border: 1px solid var(--rule-strong); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.preview-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,0.13); border-color: var(--gold); }
.preview-card .proj-badge { position: absolute; top: 10px; left: 10px; z-index: 4; padding: 3px 8px; background: var(--char); color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; border-radius: 2px; }
.preview-card .proj-html-badge { position: absolute; top: 10px; right: 10px; z-index: 4; padding: 3px 8px; background: rgba(44,163,103,0.9); color: white; font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; border-radius: 2px; }
.preview-card .browser-frame { cursor: pointer; border-radius: 0; border: none; border-bottom: 1px solid var(--rule-strong); box-shadow: none; }
.preview-info { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.preview-industry { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 8px; }
.preview-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.5px; color: var(--char); margin-bottom: 10px; line-height: 1; }
.preview-name em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.preview-dek { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 15px; line-height: 1.45; color: var(--ink); margin-bottom: 18px; flex: 1; }
.preview-dek em { color: var(--gold-deep); }
.preview-open { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--char); font-weight: 700; padding-top: 14px; border-top: 1px dashed var(--rule-strong); transition: color 0.2s, transform 0.3s; align-self: flex-start; }
.preview-card:hover .preview-open { color: var(--gold-deep); transform: translateX(3px); }
.preview-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; padding-top: 20px; }

/* HOME CTA */
.home-cta { max-width: 1280px; margin: 0 auto; padding: 120px 56px; text-align: center; border-bottom: 1px solid var(--rule); }
.home-cta-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 28px; }
.home-cta-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(52px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.045em; color: var(--char); margin-bottom: 28px; }
.home-cta-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.home-cta-lede { font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1.4; color: var(--ink); max-width: 620px; margin: 0 auto 48px; }
.home-cta-lede em { font-style: italic; color: var(--gold-deep); }
.contact-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--char); color: var(--gold); padding: 22px 40px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 0.5px; text-decoration: none; border: 1.5px solid var(--char); transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer; }
.contact-cta::before { content: ''; position: absolute; inset: 0; background: var(--paper); transform: translateY(101%); transition: transform 0.4s; }
.contact-cta:hover { color: var(--char); }
.contact-cta:hover::before { transform: translateY(0); }
.contact-cta span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; }
.contact-cta span::after { content: '→'; font-size: 18px; transition: transform 0.3s; }
.contact-cta:hover span::after { transform: translateX(4px); }

/* MOCK STYLES — Featured */
.mock-bertrand .browser-viewport { background: radial-gradient(ellipse at 25% 20%, rgba(201,169,97,0.18), transparent 55%), linear-gradient(180deg, #14100c 0%, #08060a 100%); padding: 26px 34px; display: flex; flex-direction: column; color: var(--off); }
.mb-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(201,169,97,0.15); }
.mb-brand { display: flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; }
.mb-brand em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
.mb-brand .k { width: 18px; height: 18px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; color: var(--gold); font-size: 11px; }
.mb-nav { display: flex; gap: 20px; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(241,234,216,0.6); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.mb-nav .a { color: var(--gold); }
.mb-cta { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 7px 12px; background: var(--gold); color: var(--char); }
.mb-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.mb-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.mb-headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(24px, 3.6vw, 44px); line-height: 0.9; letter-spacing: -0.035em; margin-bottom: 14px; max-width: 72%; }
.mb-headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
.mb-sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 13px; line-height: 1.4; color: rgba(241,234,216,0.7); max-width: 55%; margin-bottom: 22px; }
.mb-reserve { display: inline-flex; align-items: center; gap: 20px; background: rgba(201,169,97,0.08); border: 1px solid rgba(201,169,97,0.28); padding: 12px 18px; align-self: flex-start; }
.mb-rb { display: flex; flex-direction: column; gap: 3px; }
.mb-rb-l { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.mb-rb-v { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 11px; color: var(--off); }
.mb-rb-btn { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 8px 12px; background: var(--gold); color: var(--char); margin-left: 8px; }
.mb-foot { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(201,169,97,0.15); font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off-mute); font-weight: 600; }

.mock-taste .browser-viewport { background: radial-gradient(ellipse at 75% 25%, rgba(228,192,120,0.35), transparent 60%), linear-gradient(180deg, #ebe2c8 0%, #d4c5a2 100%); padding: 26px 34px; display: flex; flex-direction: column; color: #1a1208; }
.mt-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(122,90,40,0.2); }
.mt-brand { display: flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; }
.mt-brand em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.mt-brand .k { width: 18px; height: 18px; border: 1px solid #7a5f2e; display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; color: #7a5f2e; font-size: 11px; }
.mt-nav { display: flex; gap: 20px; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(26,18,8,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.mt-nav .a { color: #1a1208; }
.mt-cta { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 7px 12px; background: #1a1208; color: var(--paper); }
.mt-body { flex: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center; padding: 20px 0; }
.mt-headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(22px, 3.4vw, 40px); line-height: 0.9; letter-spacing: -0.035em; margin-bottom: 12px; }
.mt-headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.mt-sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 12px; line-height: 1.45; color: #4a3820; max-width: 90%; }
.mt-seats { background: rgba(26,18,8,0.06); border: 1px solid rgba(26,18,8,0.15); padding: 14px 16px; border-radius: 4px; }
.mt-seats-lbl { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: #7a5f2e; margin-bottom: 8px; font-weight: 700; display: flex; justify-content: space-between; }
.mt-seats-lbl .free { color: #2ca367; }
.mt-seats-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px; margin-bottom: 8px; }
.mt-seat { aspect-ratio: 1; background: #7a5f2e; border-radius: 2px; }
.mt-seat.free { background: rgba(122,95,46,0.2); border: 1px dashed #7a5f2e; }
.mt-book { display: block; text-align: center; background: #1a1208; color: var(--paper); font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 7px; }

.mock-pata .browser-viewport { background: radial-gradient(ellipse at 30% 40%, rgba(200,50,31,0.32), transparent 55%), radial-gradient(ellipse at 75% 65%, rgba(100,30,80,0.45), transparent 60%), linear-gradient(180deg, #14080e 0%, #1a0a14 100%); padding: 26px 34px; display: flex; flex-direction: column; color: var(--off); }
.mp-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mp-brand { display: flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; color: var(--off); }
.mp-brand em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #ff8f5a; }
.mp-brand .k { width: 18px; height: 18px; border: 1px solid #ff8f5a; display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; color: #ff8f5a; font-size: 11px; }
.mp-nav { display: flex; gap: 20px; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(241,234,216,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.mp-nav .a { color: #ff8f5a; }
.mp-cta { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 7px 12px; background: #ff8f5a; color: var(--char); }
.mp-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 18px 0; }
.mp-tick { background: rgba(200,50,31,0.15); border: 1px solid rgba(200,50,31,0.3); padding: 6px 12px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: #ff8570; font-weight: 600; }
.mp-tick .d { width: 6px; height: 6px; background: #ff5030; border-radius: 50%; animation: slot-pulse 1.6s infinite; }
.mp-headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(28px, 4.2vw, 52px); line-height: 0.88; letter-spacing: -0.04em; margin-bottom: 12px; }
.mp-headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #ff8f5a; }
.mp-sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 12px; line-height: 1.4; color: rgba(241,234,216,0.65); max-width: 55%; margin-bottom: 22px; }
.mp-stats { display: flex; gap: 26px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.mp-stat b { display: block; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 18px; line-height: 1; color: #ff8f5a; margin-bottom: 3px; }
.mp-stat span { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(241,234,216,0.5); font-weight: 600; }

/* ARCHIVE MOCKS */
.m-lumen-bf { background: linear-gradient(180deg, #1a0808, #3a0e0e); color: var(--off); }
.m-lumen-bf .top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-lumen-bf .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #ff8570; }
.m-lumen-bf .timer { background: #c8321f; color: white; padding: 2px 8px; font-family: 'JetBrains Mono', monospace; font-size: 8px; font-weight: 700; }
.m-lumen-bf .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 4px; }
.m-lumen-bf .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #ff8570; }
.m-lumen-bf .off { color: #ff8570; font-family: 'JetBrains Mono', monospace; font-size: 9px; margin-bottom: auto; }
.m-lumen-bf .buy { background: #ff8570; color: #1a0808; text-align: center; padding: 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; margin-top: 8px; }
.m-maison { background: linear-gradient(180deg, #f0e8d4, #d8ccae); color: #1a1208; }
.m-maison .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 12px; }
.m-maison .top .num { font-family: 'JetBrains Mono', monospace; font-style: normal; font-size: 8px; color: #7a5f2e; }
.m-maison .center { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.m-maison .center .lbl { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 2px; color: #7a5f2e; margin-bottom: 8px; }
.m-maison .center .name { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 4px; }
.m-maison .center .sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 12px; color: #4a3820; }
.m-under { background: radial-gradient(ellipse at 30% 30%, rgba(100,30,150,0.4), transparent 55%), linear-gradient(180deg, #0a0818, #14082a); color: var(--off); }
.m-under .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-under .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #b878ff; }
.m-under .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 14px 0 8px; }
.m-under .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #b878ff; }
.m-under .dates { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(241,234,216,0.6); margin-bottom: auto; }
.m-under .lineup { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: 7px; color: rgba(241,234,216,0.8); }
.m-under .lineup .act { display: flex; justify-content: space-between; padding: 2px 0; border-bottom: 1px dotted rgba(255,255,255,0.1); }
.m-lumen-skin { background: linear-gradient(180deg, #f8f2e2, #e8dcc0); color: #1a1208; }
.m-lumen-skin .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-lumen-skin .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.m-lumen-skin .products { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; flex: 1; }
.m-lumen-skin .product { background: rgba(26,18,8,0.06); border: 1px solid rgba(26,18,8,0.12); border-radius: 3px; padding: 6px; display: flex; flex-direction: column; justify-content: space-between; }
.m-lumen-skin .product .name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 8px; color: #1a1208; }
.m-lumen-skin .product .price { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: #7a5f2e; font-weight: 700; align-self: flex-end; }
.m-mzansi { background: radial-gradient(ellipse at 60% 30%, rgba(200,80,30,0.25), transparent 55%), linear-gradient(180deg, #1a0e08, #08050a); color: var(--off); }
.m-mzansi .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-mzansi .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #e4a578; }
.m-mzansi .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 14px 0 6px; }
.m-mzansi .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #e4a578; }
.m-mzansi .sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 10px; color: rgba(241,234,216,0.6); margin-bottom: auto; }
.m-mzansi .book { background: #e4a578; color: #1a0e08; text-align: center; padding: 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; margin-top: 8px; }
.m-regis { background: linear-gradient(180deg, #0a0a0a, #1a1a1a); color: var(--off); }
.m-regis .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-regis .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #a8ff30; }
.m-regis .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 6px; text-transform: uppercase; }
.m-regis .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #a8ff30; text-transform: none; }
.m-regis .trial { display: flex; align-items: center; gap: 8px; margin-bottom: auto; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: #a8ff30; }
.m-regis .trial::before { content: '●'; }
.m-regis .cta { background: #a8ff30; color: #0a0a0a; text-align: center; padding: 6px; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 10px; margin-top: 8px; text-transform: uppercase; }
.m-sharp { background: linear-gradient(180deg, #f0e8d4, #d4c4a0); color: #1a1208; }
.m-sharp .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-sharp .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.m-sharp .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 20px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 6px; }
.m-sharp .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #7a5f2e; }
.m-sharp .slots { flex: 1; display: flex; flex-direction: column; gap: 3px; margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: 8px; }
.m-sharp .slot { display: flex; justify-content: space-between; padding: 3px 6px; background: rgba(26,18,8,0.06); border-radius: 2px; }
.m-sharp .slot .time { color: #1a1208; font-weight: 700; }
.m-sharp .slot .status { color: #2ca367; }
.m-sharp .slot.full .status { color: #7a5f2e; opacity: 0.5; }
.m-apex { background: linear-gradient(135deg, #0a0e14, #1a2028); color: var(--off); }
.m-apex .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-apex .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #78a8c8; }
.m-apex .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 6px; }
.m-apex .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #78a8c8; }
.m-apex .tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-top: auto; }
.m-apex .tier { background: rgba(120,168,200,0.1); border: 1px solid rgba(120,168,200,0.25); padding: 6px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 7px; color: rgba(241,234,216,0.7); }
.m-apex .tier b { display: block; font-family: 'Archivo', sans-serif; font-size: 10px; color: #78a8c8; margin-bottom: 2px; }
.m-sandton { background: linear-gradient(180deg, #1a2028, #0a1218); color: var(--off); }
.m-sandton .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 14px; color: #b8c8dc; }
.m-sandton .top .num { font-family: 'JetBrains Mono', monospace; font-style: normal; font-size: 8px; color: rgba(241,234,216,0.5); }
.m-sandton .listings { flex: 1; display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.m-sandton .listing { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dotted rgba(255,255,255,0.1); font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(241,234,216,0.75); }
.m-sandton .listing .price { color: #b8c8dc; font-weight: 700; }
.m-bloom { background: linear-gradient(180deg, #f0f5f2, #d4e2d8); color: #1a2820; }
.m-bloom .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; }
.m-bloom .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #2ca367; }
.m-bloom .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 20px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 6px; }
.m-bloom .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #2ca367; }
.m-bloom .sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 10px; color: #4a5a4e; margin-bottom: auto; }
.m-bloom .book { background: #2ca367; color: white; text-align: center; padding: 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; margin-top: 8px; }
.m-thandi { background: linear-gradient(180deg, #f4ede0, #e8ddc4); color: #1a1208; }
.m-thandi .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 14px; color: #7a5f2e; }
.m-thandi .top .num { font-family: 'JetBrains Mono', monospace; font-style: normal; font-size: 8px; color: rgba(0,0,0,0.4); }
.m-thandi .gallery { flex: 1; display: grid; grid-template-columns: 2fr 1fr; gap: 5px; margin: 10px 0; }
.m-thandi .gallery .main { background: linear-gradient(135deg, #a58750, #7a5f2e); border-radius: 2px; }
.m-thandi .gallery .side { display: grid; grid-template-rows: 1fr 1fr; gap: 5px; }
.m-thandi .gallery .side div { background: linear-gradient(135deg, #7a5f2e, #4a3820); border-radius: 2px; }
.m-thandi .caption { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 10px; color: #4a3820; text-align: center; }
.m-kasi { background: linear-gradient(180deg, #e4c848, #c8a828); color: #1a1208; }
.m-kasi .top { display: flex; justify-content: space-between; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.15); font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 11px; }
.m-kasi .top em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.m-kasi .headline { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; line-height: 0.9; letter-spacing: -0.03em; margin: 12px 0 6px; }
.m-kasi .headline em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.m-kasi .bundle { background: #1a1208; color: #e4c848; padding: 8px 10px; font-family: 'JetBrains Mono', monospace; font-size: 8px; margin-bottom: auto; }
.m-kasi .bundle b { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 14px; display: block; margin-top: 2px; }
.m-kasi .wa { background: #1a1208; color: #e4c848; text-align: center; padding: 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; margin-top: 8px; }

/* FOOTER */
.foot { max-width: 1280px; margin: 0 auto; padding: 40px 56px 46px; display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.foot-center { font-family: 'Instrument Serif', serif; font-style: italic; text-transform: none; letter-spacing: 0; font-size: 15px; color: var(--char); }
.foot-center strong { font-family: 'Archivo', sans-serif; font-style: normal; font-weight: 800; color: var(--char); }

/* VIEWER */
.viewer { position: fixed; inset: 0; background: rgba(14,14,12,0.95); z-index: 9998; display: none; flex-direction: column; }
.viewer.open { display: flex; animation: viewer-in 0.3s ease; }
@keyframes viewer-in { from { opacity: 0; } to { opacity: 1; } }
.viewer-topbar { background: var(--char); color: var(--off); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(201,169,97,0.2); flex-shrink: 0; }
.viewer-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.viewer-mark { width: 26px; height: 26px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; color: var(--gold); font-size: 15px; flex-shrink: 0; }
.viewer-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; color: var(--off); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.viewer-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
.viewer-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(201,169,97,0.7); padding: 4px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,97,0.15); border-radius: 3px; font-weight: 700; }
.viewer-actions { display: flex; gap: 8px; align-items: center; }
.viewer-pagebar { display: none; gap: 6px; align-items: center; padding-right: 4px; border-right: 1px solid rgba(201,169,97,0.2); margin-right: 4px; }
.viewer-pagebar.on { display: inline-flex; }
.viewer-pagebar select { background: rgba(255,255,255,0.04); color: var(--off); border: 1px solid rgba(201,169,97,0.3); padding: 6px 10px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; border-radius: 3px; cursor: pointer; max-width: 220px; }
.viewer-pagebar select:focus { outline: none; border-color: var(--gold); }
.viewer-btn { background: transparent; color: var(--off); border: 1px solid rgba(201,169,97,0.3); padding: 8px 14px; cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; border-radius: 3px; transition: all 0.15s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.viewer-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,97,0.08); }
.viewer-btn.close { background: var(--gold); color: var(--char); border-color: var(--gold); }
.viewer-btn.close:hover { background: var(--gold-hot); }
.viewer-frame-wrap { flex: 1; background: white; position: relative; overflow: hidden; }
.viewer-frame { width: 100%; height: 100%; border: none; display: block; }
.viewer-empty { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; height: 100%; padding: 40px; background: var(--paper); }
.viewer-empty-mark { width: 60px; height: 60px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 30px; }
.viewer-empty-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; color: var(--char); letter-spacing: -0.03em; text-align: center; line-height: 1; }
.viewer-empty-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold-deep); }
.viewer-empty-msg { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 16px; color: var(--ink); text-align: center; max-width: 460px; line-height: 1.5; }
.viewer-empty-msg em { color: var(--gold-deep); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .nav-inner { padding: 16px 28px; }
  .nav-links { display: none; }
  .hero { padding: 40px 28px 60px; }
  .hero-meta-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px dashed var(--rule-strong); padding: 16px 0 !important; }
  .section { padding: 70px 28px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-num { font-size: 80px; }
  .section-title { font-size: 40px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .preview-strip { grid-template-columns: 1fr; }
  .home-cta { padding: 70px 28px; }
  .foot { flex-direction: column; gap: 20px; padding: 30px; text-align: center; }
  .mt-body { grid-template-columns: 1fr; gap: 16px; }
  .mp-stats { flex-wrap: wrap; gap: 16px; }
  .viewer-topbar { flex-wrap: wrap; gap: 10px; padding: 10px 14px; }
  .viewer-tag { display: none; }
  .viewer-title { font-size: 12px; }
  .viewer-pagebar select { max-width: 140px; }
}
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }