/* ============================================================
   VIETSHIP 2026 — professional / sleek / modern
   ============================================================ */

:root {
  /* Palette */
  --ink:        #0a0e1a;
  --ink-soft:   #1a2030;
  --navy:       #0a2547;
  --navy-2:     #163464;
  --bone:       #f6f4ee;
  --bone-2:     #ece9df;
  --paper:      #ffffff;
  --line:       #e3e0d4;
  --line-2:     #edeae0;
  --line-dark:  #1d2438;
  --muted:      #6b7186;
  --muted-2:    #9aa0b4;
  --muted-3:    #c8c4b8;

  /* Accents */
  --red:        #d22e23;
  --red-deep:   #a8221a;
  --gold:       #c9a04a;
  --teal:       #1d7f72;

  /* System */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --container:  1320px;

  --shadow-sm:  0 1px 2px rgba(10,15,26,.06), 0 1px 3px rgba(10,15,26,.04);
  --shadow:     0 8px 28px -12px rgba(10,15,26,.22), 0 2px 6px rgba(10,15,26,.04);
  --shadow-lg:  0 40px 90px -30px rgba(10,15,26,.45), 0 10px 30px rgba(10,15,26,.10);

  --display: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --body:    "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-feature-settings: "cv11", "ss01", "ss03", "cv02";
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bone); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-feature-settings: "cv11", "ss01", "ss03";
  letter-spacing: -.025em;
  line-height: 1.02;
  font-weight: 600;
  color: var(--ink);
}
.mono {
  font-family: var(--mono); font-feature-settings: "ss01";
  letter-spacing: 0;
}
/* Neutralize decorative italic / accent that mixed inconsistently */
.ital, .accent {
  font-style: inherit; font-weight: inherit;
  color: inherit; letter-spacing: inherit;
}

/* ============================================================
   TICKER (top)
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px; padding: 11px 0; white-space: nowrap;
  animation: scroll-x 42s linear infinite;
}
.ticker-track span {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  display: inline-flex; gap: 60px; align-items: center;
  color: var(--bone);
}
.ticker-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HEADER (floating glass)
   ============================================================ */
.header {
  position: sticky; top: 14px; z-index: 50;
  margin: 14px 18px 0; pointer-events: none;
}
.header .nav {
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 10px 12px 10px 20px;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(10,15,26,.07);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; letter-spacing: -1px; font-size: 17px;
}
.brand .name {
  font-weight: 700; font-size: 16px; letter-spacing: -.02em; color: var(--ink);
}
.brand .name em { font-style: normal; color: var(--red); font-weight: 700; }
.menu { display: flex; gap: 2px; justify-self: center; }
.menu a {
  padding: 9px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--ink); opacity: .65; transition: opacity .2s, background .2s;
  letter-spacing: -.005em;
}
.menu a:hover { opacity: 1; background: rgba(10,15,26,.04); }
.menu a.active { opacity: 1; background: var(--ink); color: var(--bone); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.lang {
  background: transparent; border: 0; padding: 8px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink); opacity: .65;
  letter-spacing: .5px;
}
.lang:hover { opacity: 1; background: rgba(10,15,26,.04); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; border: 0;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  letter-spacing: -.005em;
  transition: transform .15s var(--ease), background .2s, color .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px rgba(210,46,35,.55); }
.btn-primary:hover { background: var(--red-deep); }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-bone { background: var(--bone); color: var(--ink); }
.btn-bone:hover { background: var(--bone-2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(10,15,26,.18); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn-light:hover { background: rgba(255,255,255,.18); }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============================================================
   KICKER (label above section title)
   ============================================================ */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red);
}
.kicker::before {
  content:""; width: 24px; height: 1px; background: currentColor;
}

/* ============================================================
   HERO — full-bleed photo background (DAMEN-style)
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 140px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,15,26,.55) 0%, rgba(10,15,26,.82) 100%),
    url("https://images.unsplash.com/photo-1605281317010-fe5ffe798166?auto=format&fit=crop&w=2400&q=80") center/cover;
}
/* Subtle vignette and warm tint */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(circle at 80% 30%, rgba(201,160,74,.10), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(10,15,26,.45), transparent 55%);
}
.hero .meta-top {
  display: grid; grid-template-columns: repeat(4, 1fr);
  font-size: 11px; font-family: var(--mono); font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14);
  gap: 24px;
}
.hero .meta-top .item { display: flex; flex-direction: column; gap: 4px; }
.hero .meta-top .lab { color: rgba(255,255,255,.55); }
.hero .meta-top .val { color: #fff; font-size: 13px; letter-spacing: 0; font-family: var(--display); font-weight: 600; text-transform: none; }

.hero h1 {
  font-size: clamp(48px, 7vw, 116px);
  font-weight: 600;
  margin: 0;
  letter-spacing: -.04em;
  line-height: .96;
  color: #fff;
}

/* Hero — content on photo background; visual is a floating glass card */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 50px;
  min-height: 420px;
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center; gap: 22px;
}
.hero-content .kicker {
  margin: 0; color: var(--gold);
}
.hero-content .lead {
  font-size: 17px; color: rgba(255,255,255,.85);
  line-height: 1.55; font-weight: 400; margin: 0;
  max-width: 560px;
}
.hero-content .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.hero-content .actions .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.4);
}
.hero-content .actions .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Hero visual — compact glass countdown card */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: center;
  max-height: 200px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px;
  gap: 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.55);
}
.hero-visual .badge {
  position: relative;
  align-self: flex-start;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono);
}
.hero-visual .badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(210,46,35,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-visual .countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 16px 14px;
}
.hero-visual .countdown .cell { text-align: center; }
.hero-visual .countdown .num {
  font-family: var(--display); font-weight: 600; font-size: 32px;
  line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}
.hero-visual .countdown .lab {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: 5px; font-family: var(--mono);
}
.hero-visual .when {
  font-size: 11px; color: rgba(255,255,255,.65);
  letter-spacing: 1.5px; text-transform: uppercase; text-align: center; font-family: var(--mono);
}

/* ============================================================
   LOGO MARQUEE
   ============================================================ */
.logo-marquee {
  background: var(--paper);
  color: var(--ink);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  margin-top: 0;
}
.logo-marquee .row { display: flex; align-items: center; gap: 40px; padding: 0 28px; }
.logo-marquee .label {
  font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); flex-shrink: 0;
}
.logo-marquee .track {
  display: flex; gap: 36px; align-items: center;
  animation: scroll-x 42s linear infinite;
  flex-shrink: 0;
}
.logo-marquee .track span {
  font-weight: 600; letter-spacing: -.005em;
  color: var(--ink); opacity: .55; font-size: 14px; white-space: nowrap;
  font-feature-settings: "ss01";
  transition: opacity .2s;
}
.logo-marquee .track span:hover { opacity: 1; }
.logo-marquee .sep { opacity: .25; color: var(--muted-3); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section { padding: 110px 0; position: relative; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  margin-bottom: 56px;
}
.section-head .right { padding-top: 14px; }
.section-head .left h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 600;
  margin: 18px 0 0;
  color: var(--ink);
  letter-spacing: -.035em;
}
.section-head .left h2 .ital { font-style: italic; font-weight: 400; }
.section-head .right { color: var(--ink-soft); font-size: 16px; max-width: 460px; }

.section-dark { background: var(--ink); color: var(--bone); }
.section-dark .section-head .left h2 { color: var(--bone); }
.section-dark .section-head .right { color: var(--muted-2); }
.section-dark .kicker { color: var(--gold); }

/* ============================================================
   STATS — editorial line
   ============================================================ */
.stats-line {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-line .cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stats-line .cell:last-child { border-right: 0; }
.stats-line .cell::before {
  content: attr(data-i);
  position: absolute; top: 18px; right: 22px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 1.5px; color: var(--muted);
}
.stats-line .num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5vw, 68px); letter-spacing: -.04em;
  color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums;
}
.stats-line .num .plus { color: var(--red); }
.stats-line .lab { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* ============================================================
   HIGHLIGHTS — dramatic bento grid
   ============================================================ */
.section-dark { position: relative; overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(201,160,74,.14), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(210,46,35,.16), transparent 45%);
  animation: glow-pulse 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .75; }
}
.section-dark::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Huge section watermark number */
.section-dark .sec-watermark {
  position: absolute; right: -30px; top: 80px;
  font-family: var(--display);
  font-size: clamp(280px, 32vw, 540px);
  font-weight: 800;
  line-height: 1; letter-spacing: -.05em;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  z-index: 0;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
}

/* Featured pulse badge on card A */
.bento .card .feat-tag {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  color: #fff;
}
.bento .card .feat-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,160,74,.25);
  animation: pulse 1.8s infinite;
}

/* Editorial section divider */
.sec-divider {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  padding: 36px 0; margin-bottom: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.sec-divider .num {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: 2px; color: var(--gold);
}
.sec-divider .name {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.55);
  justify-self: start;
}
.sec-divider .meta {
  font-family: var(--mono); font-size: 12px;
  color: rgba(255,255,255,.4); letter-spacing: 2px; text-transform: uppercase;
}

/* Big editorial heading for dark section */
.section-dark .big-head {
  margin: 0 0 70px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end;
}
.section-dark .big-head h2 {
  font-size: clamp(48px, 7vw, 116px);
  font-weight: 600; letter-spacing: -.045em;
  margin: 0; color: var(--bone); line-height: .92;
}
.section-dark .big-head .lead {
  color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.55;
  max-width: 480px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  position: relative; z-index: 1;
}
.bento .card {
  border-radius: var(--radius);
  padding: 30px;
  background: #131a2e;
  border: 1px solid rgba(255,255,255,.07);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s, opacity .8s var(--ease-out);
  color: var(--bone);
  isolation: isolate;
  opacity: 0;
  transform: translateY(40px);
}
.bento.in .card { opacity: 1; transform: none; }
.bento.in .card:nth-child(1) { transition-delay: 0s, 0s, 0s, 0s; }
.bento.in .card:nth-child(2) { transition-delay: 0s, 0s, 0s, .12s; }
.bento.in .card:nth-child(3) { transition-delay: 0s, 0s, 0s, .22s; }
.bento.in .card:nth-child(4) { transition-delay: 0s, 0s, 0s, .32s; }
.bento.in .card:nth-child(5) { transition-delay: 0s, 0s, 0s, .42s; }
.bento.in .card:nth-child(6) { transition-delay: 0s, 0s, 0s, .52s; }
.bento.in .card { transform: none !important; }
.bento .card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(201,160,74,.6);
  box-shadow: 0 40px 90px -30px rgba(201,160,74,.55);
}
/* Big ghost number watermark */
.bento .card .ghost-num {
  position: absolute; top: -18px; right: -14px;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 1; letter-spacing: -.08em;
  color: rgba(255,255,255,.04);
  pointer-events: none; z-index: 0;
  transition: color .3s, transform .5s var(--ease-out);
}
.bento .card:hover .ghost-num {
  color: rgba(201,160,74,.10);
  transform: translateX(-6px);
}
.bento .card > * { position: relative; z-index: 1; }
.bento .card .ix {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.bento .card .ix::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.bento .card h3 {
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600; margin: 0 0 10px; color: var(--bone);
  letter-spacing: -.025em; line-height: 1.1;
}
.bento .card p { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.55; margin: 0; max-width: 380px; }
.bento .card .more {
  margin-top: 18px; font-size: 13px; font-weight: 500; color: var(--bone);
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 9px 14px 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, gap .25s var(--ease);
}
.bento .card:hover .more { background: var(--gold); border-color: var(--gold); color: var(--ink); gap: 12px; }
.bento .card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; color: var(--gold);
  margin-bottom: auto;
}

/* Layout */
.bento .a { grid-column: span 4; grid-row: span 2; }
.bento .b { grid-column: span 2; grid-row: span 2; }
.bento .c { grid-column: span 3; grid-row: span 1; }
.bento .d { grid-column: span 3; grid-row: span 1; }
.bento .e { grid-column: span 3; grid-row: span 1; }
.bento .f { grid-column: span 3; grid-row: span 1; }

/* Card A — big with imagery */
.bento .a {
  background:
    linear-gradient(180deg, rgba(10,14,26,.15) 0%, rgba(10,14,26,.90) 100%),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1400&q=80") center/cover;
  border-color: rgba(255,255,255,.12);
}
.bento .a h3 { font-size: clamp(28px, 2.4vw, 44px); max-width: 520px; }
.bento .a p { font-size: 15px; max-width: 480px; }
.bento .a .ghost-num { font-size: clamp(180px, 22vw, 320px); }

/* Card variant: Green (Metizoft-inspired sustainability theme) */
.bento .card.green {
  background: linear-gradient(160deg, #1d7f72 0%, #115850 100%);
  border-color: transparent;
}
.bento .card.green h3, .bento .card.green p, .bento .card.green .ix, .bento .card.green .more { color: #fff; }
.bento .card.green p { color: rgba(255,255,255,.85); }
.bento .card.green .ix { color: rgba(255,255,255,.85); }
.bento .card.green .ix::before { background: #fff; }
.bento .card.green .ico { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }
.bento .card.green:hover { box-shadow: 0 30px 70px -30px rgba(29,127,114,.55); border-color: var(--gold); }
.bento .card.green .ghost-num { color: rgba(255,255,255,.10); }

/* Card B — red brand */
.bento .b {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: transparent;
}
.bento .b h3, .bento .b p, .bento .b .ix, .bento .b .more { color: #fff; }
.bento .b p { color: rgba(255,255,255,.85); }
.bento .b .ix { color: rgba(255,255,255,.85); }
.bento .b .ix::before { background: #fff; }
.bento .b .ico { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }
.bento .b:hover { box-shadow: 0 30px 70px -30px rgba(210,46,35,.6); border-color: var(--gold); }
.bento .b .ghost-num { color: rgba(255,255,255,.08); }

/* Card C — image */
.bento .c {
  background:
    linear-gradient(180deg, rgba(10,14,26,.20), rgba(10,14,26,.85)),
    url("https://images.unsplash.com/photo-1577416412292-747c6607f055?auto=format&fit=crop&w=1000&q=80") center/cover;
}

/* Card D, E, F — solid dark with accent strip */
.bento .d, .bento .e, .bento .f { background: #131a2e; }
.bento .d::before, .bento .e::before, .bento .f::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
  z-index: 2;
}
.bento .d:hover::before, .bento .e:hover::before, .bento .f:hover::before { transform: scaleY(1); }

.section-dark .bottom-cta {
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
}
.section-dark .bottom-cta .text {
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.section-dark .bottom-cta .text strong { color: #fff; font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-split .copy { padding-top: 8px; }
.about-split .copy h3 {
  font-size: clamp(30px, 3vw, 46px); font-weight: 600; margin: 18px 0 16px;
  color: var(--ink); letter-spacing: -.03em;
}
.about-split .copy h3 .ital { font-style: italic; font-weight: 400; }
.about-split .copy p { color: var(--ink-soft); font-size: 17px; margin: 0 0 14px; max-width: 480px; }
.about-split .copy ul.checks {
  list-style: none; padding: 0; margin: 28px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.about-split .copy ul.checks li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.about-split .copy ul.checks .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.about-split .media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}
.about-split .media img { width: 100%; height: 100%; object-fit: cover; }
.about-split .media .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  padding: 14px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
}
.about-split .media .badge .yr {
  font-weight: 600; font-size: 36px; letter-spacing: -.04em; color: var(--ink);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.about-split .media .badge .yrtxt {
  font-size: 11px; color: var(--muted); line-height: 1.4;
  font-family: var(--mono); letter-spacing: .5px;
}

/* ============================================================
   EXHIBITOR LOGO WALL — 3-row scrolling marquee (home)
   ============================================================ */
.bg-paper { background: var(--paper); }

.logo-wall {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.logo-wall .row {
  display: flex; gap: 14px;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}
.logo-wall .row.r1 { animation: marq-left  72s linear infinite; }
.logo-wall .row.r2 { animation: marq-right 88s linear infinite; }
.logo-wall .row.r3 { animation: marq-left 104s linear infinite; }
.logo-wall:hover .row { animation-play-state: paused; }

@keyframes marq-left  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes marq-right { from { transform: translateX(-50%); } to { transform: translateX(0);    } }

.logo-wall .cell {
  flex-shrink: 0;
  width: 196px; height: 104px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.logo-wall .cell:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--ink);
  box-shadow: var(--shadow);
  z-index: 2;
}
.logo-wall .cell img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block;
}
.logo-wall .cell .lg {
  font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); font-size: 16px; line-height: 1.1;
  text-align: center;
}

.brand-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.brand-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  aspect-ratio: 5/3;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.brand-cell:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.brand-cell img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block;
  transition: transform .25s var(--ease);
}
.brand-cell:hover img { transform: scale(1.06); }
.brand-cell .lg {
  font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); font-size: 18px; line-height: 1;
  text-align: center; font-feature-settings: "ss01";
}
.brand-cell .lg small {
  display: block; font-size: 9px; font-weight: 500; letter-spacing: 2px;
  color: var(--muted); margin-top: 5px; text-transform: uppercase;
  font-family: var(--mono);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
}
.gallery .tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery .tile:hover img { transform: scale(1.05); }
.gallery .tile .cap {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  padding: 5px 11px; border-radius: 999px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); font-family: var(--mono);
}
.gallery .t1 { grid-column: span 7; grid-row: span 4; }
.gallery .t2 { grid-column: span 5; grid-row: span 2; }
.gallery .t3 { grid-column: span 5; grid-row: span 2; }
.gallery .t4 { grid-column: span 4; grid-row: span 3; }
.gallery .t5 { grid-column: span 4; grid-row: span 3; }
.gallery .t6 { grid-column: span 4; grid-row: span 3; }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-row { margin-bottom: 28px; }
.sponsors-row .label {
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.sponsors-row .label::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.sponsors-row .grid { display: grid; gap: 10px; }
.tier-1 .grid { grid-template-columns: repeat(3, 1fr); }
.tier-1 .cell { aspect-ratio: 5/2; }
.tier-2 .grid { grid-template-columns: repeat(5, 1fr); }
.tier-2 .cell { aspect-ratio: 4/2; }
.tier-3 .grid { grid-template-columns: repeat(7, 1fr); }
.tier-3 .cell { aspect-ratio: 3/1.4; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink); color: var(--bone);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::after{
  content:""; position:absolute; right:-100px; top:-100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,74,.30), transparent 70%);
  pointer-events: none;
}
.cta-band h3 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 600;
  margin: 0 0 14px; line-height: 1; color: var(--bone);
  letter-spacing: -.035em;
}
.cta-band h3 .ital { font-style: italic; font-weight: 400; }
.cta-band p { margin: 0; color: var(--muted-2); font-size: 16px; max-width: 460px; }
.cta-band form {
  display: flex; gap: 8px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 6px;
}
.cta-band input {
  flex: 1; background: transparent; border: 0; padding: 12px 16px;
  color: #fff; font-size: 15px; font-family: inherit;
}
.cta-band input::placeholder { color: var(--muted-2); }
.cta-band input:focus { outline: 0; }
.cta-band .btn-primary { box-shadow: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--bone); padding: 80px 0 26px; }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.footer .cols.cols-org { grid-template-columns: 1fr 1.1fr 1.3fr; gap: 60px; }

.footer .org-block .org-name {
  color: #fff; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 16px; line-height: 1.35;
}
.footer .org-info { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer .org-info li {
  display: grid; grid-template-columns: 76px 1fr; gap: 12px; align-items: start;
  font-size: 13px; color: var(--muted-2); line-height: 1.5;
}
.footer .org-info .lab {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  font-weight: 500; padding-top: 2px;
}
.footer .org-info a { color: var(--muted-2); border-bottom: 1px solid transparent; transition: border-color .15s, color .15s; }
.footer .org-info a:hover { color: #fff; border-color: var(--gold); }
.footer h4 {
  font-family: var(--mono); color: rgba(255,255,255,.55); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; margin: 0 0 20px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 11px; font-size: 14px; color: var(--muted-2); }
.footer a:hover { color: #fff; }
.footer .brand-block { max-width: 360px; }
.footer .brand-block .big {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600; letter-spacing: -.035em; color: var(--bone); line-height: 1;
}
.footer .brand-block .big em { font-style: normal; color: var(--red); }
.footer .brand-block p { color: var(--muted-2); margin: 16px 0 22px; font-size: 14px; }
.footer .socials { display: flex; gap: 8px; }
.footer .socials a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); color: var(--bone);
  transition: background .2s;
}
.footer .socials a:hover { background: var(--red); border-color: var(--red); }
.footer .bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); font-family: var(--mono); letter-spacing: .5px;
}

/* ============================================================
   DIRECTORY — BALANCED HERO
   ============================================================ */
.dir-hero {
  position: relative;
  padding: 120px 0 70px;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.dir-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,26,.65) 0%, rgba(10,15,26,.85) 70%, var(--ink) 100%),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=80") center/cover;
  filter: contrast(1.04) saturate(.85);
}
.dir-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(201,160,74,.16), transparent 50%);
  pointer-events: none;
}
.dir-hero .container { position: relative; z-index: 1; }
.dir-hero .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px;
}
.dir-hero .crumb a { color: var(--muted-2); }
.dir-hero .crumb a:hover { color: #fff; }
.dir-hero .row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.dir-hero h1 {
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 76px);
  margin: 12px 0 18px;
  letter-spacing: -.04em; line-height: 1.02;
  color: var(--bone);
}
.dir-hero h1 .secondary { color: rgba(255,255,255,.4); font-weight: 600; }
.dir-hero .lead {
  color: rgba(255,255,255,.72); font-size: 16px; max-width: 540px;
  line-height: 1.55;
}
.dir-hero .quick-search {
  margin-top: 24px;
  display: flex; gap: 8px; max-width: 540px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 5px;
}
.dir-hero .quick-search input {
  flex: 1; background: transparent; border: 0; padding: 11px 18px;
  color: #fff; font-size: 14.5px; font-family: inherit;
}
.dir-hero .quick-search input::placeholder { color: rgba(255,255,255,.5); }
.dir-hero .quick-search input:focus { outline: 0; }
.dir-hero .quick-search .btn-primary { box-shadow: none; padding: 11px 18px; }

/* ============================================================
   ASIDE PANEL — Industry coverage donut
   ============================================================ */
.dir-hero-aside {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.aside-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.aside-head .title {
  font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -.015em;
  line-height: 1.3;
}
.aside-head .subtitle {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; font-weight: 500;
}
.aside-head .pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,160,74,.12);
  border: 1px solid rgba(201,160,74,.3);
  padding: 4px 10px; border-radius: 6px; font-weight: 600;
  white-space: nowrap;
}

/* Donut coverage row */
.coverage {
  display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center;
}
.donut-wrap { position: relative; width: 160px; height: 160px; }
.donut {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    var(--red) 0% 28%,
    var(--navy-2) 28% 50%,
    var(--teal) 50% 64%,
    var(--gold) 64% 76%,
    #6c7593 76% 85%,
    #d8a9a0 85% 100%
  );
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.donut::after {
  content: ""; position: absolute; inset: 26px; border-radius: 50%;
  background: linear-gradient(180deg, #161d33 0%, #0c1226 100%);
}
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
}
.donut-center .num {
  font-size: 28px; font-weight: 700; letter-spacing: -.03em;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.donut-center .lab {
  font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px;
  color: rgba(255,255,255,.55); margin-top: 6px; text-transform: uppercase;
  font-weight: 500;
}

.seg-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.seg-list li {
  display: grid; grid-template-columns: 10px 1fr auto;
  gap: 10px; align-items: center;
}
.seg-list .dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.seg-list .seg-name {
  font-size: 13px; color: rgba(255,255,255,.92); font-weight: 500;
  letter-spacing: -.005em;
}
.seg-list .seg-pct {
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.55);
  font-weight: 600; font-variant-numeric: tabular-nums;
}

.coverage-foot {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.coverage-foot .mini {
  display: flex; flex-direction: column; gap: 4px;
}
.coverage-foot .mini .v {
  font-size: 19px; font-weight: 600; color: #fff; letter-spacing: -.02em;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.coverage-foot .mini .l {
  font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500;
}

/* Dashboard stat tiles, overlapping bottom */
.dir-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: -50px; position: relative; z-index: 5;
  margin-bottom: 32px;
}
.dir-stats .tile {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.dir-stats .tile .lab {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.dir-stats .tile .num {
  font-size: 42px; font-weight: 600; letter-spacing: -.04em;
  color: var(--ink); margin: 6px 0 4px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dir-stats .tile .delta {
  font-size: 12px; color: var(--teal); font-weight: 500;
}
.dir-stats .tile .ico {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bone); display: grid; place-items: center;
  color: var(--ink);
}
.dir-stats .tile.dark { background: var(--ink); color: var(--bone); border-color: transparent; }
.dir-stats .tile.dark .lab { color: var(--muted-2); }
.dir-stats .tile.dark .num { color: var(--bone); }
.dir-stats .tile.dark .ico { background: rgba(255,255,255,.08); color: var(--gold); }

/* ============================================================
   DIRECTORY — FEATURED CAROUSEL
   ============================================================ */
.featured-block {
  background: var(--paper);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.featured-block .head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 22px;
}
.featured-block h2 {
  font-size: 26px; font-weight: 600; margin: 8px 0 0;
  letter-spacing: -.025em; color: var(--ink);
}
.carousel-actions { display: flex; gap: 6px; }
.carousel-actions button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bone); border: 0; color: var(--ink);
  display: grid; place-items: center; transition: background .2s;
}
.carousel-actions button:hover { background: var(--ink); color: var(--bone); }
.carousel-actions button:disabled { opacity: .4; }

/* Viewport masks the overflow so cards fade at edges */
.featured-viewport {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
/* Marquee track — continuous smooth scroll, pause on hover */
.featured-track {
  display: flex; gap: 14px;
  width: max-content;
  animation: marq-feat 90s linear infinite;
  will-change: transform;
}
.featured-viewport:hover .featured-track,
.featured-viewport:focus-within .featured-track { animation-play-state: paused; }
@keyframes marq-feat {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}
.featured-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  width: 320px; min-height: 296px;
  flex-shrink: 0;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
  text-decoration: none;
}
.featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

/* Top brand-color strip */
.featured-card .top {
  background: var(--brand-color, var(--ink));
  color: var(--brand-text, #fff);
  padding: 11px 16px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.featured-card .top::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.featured-card .top .meta {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: inherit; opacity: .9; font-weight: 500;
  position: relative; z-index: 1;
}
.featured-card .booth-pill {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,.18); color: inherit;
  padding: 4px 9px; border-radius: 5px;
  position: relative; z-index: 1;
}

/* Logo panel */
.featured-card .logo-chip {
  background: var(--paper);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.featured-card .logo-chip img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block;
}
.featured-card .logo-chip .fallback {
  font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  color: var(--ink); text-align: center;
  font-feature-settings: "ss01";
}

/* Body */
.featured-card .body {
  padding: 16px 18px;
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.featured-card .feat-name {
  font-size: 17px; font-weight: 600; letter-spacing: -.015em;
  color: var(--ink); line-height: 1.2;
}
.featured-card .feat-desc {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-top: 2px;
}

/* CTA bottom */
.featured-card .more {
  padding: 12px 18px 16px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  margin-top: auto;
}
.featured-card .more svg { transition: transform .2s var(--ease); }
.featured-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   DIRECTORY — TOOLBAR (sticky)
   ============================================================ */
.toolbar-wrap {
  position: sticky; top: 80px; z-index: 20;
  background: var(--bone);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  margin: 0 -32px;
  padding-left: 32px; padding-right: 32px;
}
.toolbar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.search {
  flex: 1; min-width: 280px; position: relative;
}
.search input {
  width: 100%; padding: 13px 14px 13px 44px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.search input:focus { outline: 0; border-color: var(--ink); }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }

.select { position: relative; min-width: 180px; }
.select select {
  appearance: none; width: 100%;
  padding: 13px 36px 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); font-size: 13px; font-weight: 500;
  color: var(--ink); font-family: inherit; cursor: pointer;
}
.select select:focus { outline: 0; border-color: var(--ink); }
.select::after {
  content:""; position:absolute; right:14px; top:50%;
  width: 7px; height: 7px; border-right: 1.6px solid var(--ink);
  border-bottom: 1.6px solid var(--ink);
  transform: translateY(-70%) rotate(45deg); pointer-events:none;
}
.view-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.view-toggle button {
  border: 0; background: transparent; padding: 9px 11px; border-radius: 7px;
  color: var(--muted); display: grid; place-items: center;
}
.view-toggle button.active { background: var(--ink); color: var(--bone); }

/* Category pill tabs (scrollable) */
.cat-tabs {
  display: flex; gap: 6px; overflow-x: auto; padding: 8px 0;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tabs button {
  flex-shrink: 0;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-weight: 500; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s, color .2s, border-color .2s;
}
.cat-tabs button:hover { border-color: var(--ink); }
.cat-tabs button.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.cat-tabs button .count {
  font-size: 11px; font-family: var(--mono); opacity: .65;
  background: rgba(0,0,0,.06); padding: 1px 7px; border-radius: 6px;
}
.cat-tabs button.active .count { background: rgba(255,255,255,.15); opacity: 1; }

/* A-Z bar */
.az-bar {
  display: flex; gap: 2px; flex-wrap: wrap; margin: 20px 0 28px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 6px;
}
.az-bar button {
  flex: 1; min-width: 30px; height: 32px; border-radius: 6px;
  border: 0; background: transparent; color: var(--ink); font-weight: 600;
  font-size: 12px; letter-spacing: .5px;
  font-feature-settings: "ss01";
  transition: background .15s, color .15s;
}
.az-bar button:hover:not(:disabled):not(.active) { background: var(--bone); }
.az-bar button.active { background: var(--ink); color: var(--bone); }
.az-bar button:disabled { color: var(--muted-3); cursor: not-allowed; }

/* Single-column layout (no sidebar) */
.dir-layout { padding-top: 36px; }

/* ============================================================
   FILTER BUTTON (in toolbar) + DRAWER MODAL
   ============================================================ */
.filter-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--paper);
  font-size: 13px; font-weight: 500; color: var(--ink); font-family: inherit;
  transition: background .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn .count-badge {
  background: var(--red); color: #fff;
  border-radius: 999px; padding: 2px 7px;
  font-size: 10px; font-weight: 600; font-family: var(--mono);
  min-width: 18px; text-align: center;
}

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,15,26,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: 460px; max-width: 92vw;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform .35s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px rgba(10,15,26,.25);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-head h3 {
  font-size: 20px; font-weight: 600; margin: 0;
  letter-spacing: -.02em;
}
.drawer-head .close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bone); border: 0;
  display: grid; place-items: center; color: var(--ink);
  transition: background .2s;
}
.drawer-head .close:hover { background: var(--ink); color: var(--bone); }
.drawer-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.drawer-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; justify-content: space-between;
  background: var(--bone);
}
.drawer-foot .left-meta {
  display: flex; flex-direction: column; gap: 2px;
  align-self: center;
}
.drawer-foot .left-meta .num { font-weight: 600; font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }
.drawer-foot .left-meta .lab { font-size: 11px; color: var(--muted); font-family: var(--mono); letter-spacing: 1px; text-transform: uppercase; }
.drawer-foot .actions { display: flex; gap: 8px; }

/* Filter groups inside drawer */
.filters .group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.filters .group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.filters .grp-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.filters .grp-head .name {
  font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
}
.filters .grp-head .picked {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.filters label.opt {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; cursor: pointer;
  font-size: 14px; color: var(--ink);
  transition: color .15s;
}
.filters label.opt:hover { color: var(--red); }
.filters label.opt input { accent-color: var(--red); width: 16px; height: 16px; flex-shrink: 0; }
.filters label.opt .count {
  margin-left: auto; font-size: 11px; color: var(--muted);
  font-family: var(--mono);
  background: var(--bone); padding: 2px 7px; border-radius: 4px;
}
.filters .pill-group { display: flex; gap: 6px; flex-wrap: wrap; }
.filters .pill-group label {
  position: relative; cursor: pointer;
}
.filters .pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.filters .pill-group .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: all .15s;
}
.filters .pill-group input:checked + .pill {
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.filters .pill-group .pill .count {
  font-family: var(--mono); font-size: 10px;
  background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 4px;
}
.filters .pill-group input:checked + .pill .count {
  background: rgba(255,255,255,.18);
}

/* Results meta */
.results-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; color: var(--muted); font-size: 14px;
}
.results-meta strong { color: var(--ink); font-weight: 600; font-size: 16px; font-variant-numeric: tabular-nums; }
#active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; font-size: 11px; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); letter-spacing: 1px; text-transform: uppercase;
}
.chip .x {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(0,0,0,.08); display: grid; place-items: center;
  font-size: 10px; cursor: pointer;
}

/* ============================================================
   EXHIBITOR CARDS — rich, bigger
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards.list { grid-template-columns: 1fr; }
@media (min-width: 1500px) { .cards:not(.list) { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1800px) { .cards:not(.list) { grid-template-columns: repeat(5, 1fr); } }

.card-exh {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .2s, box-shadow .25s;
  position: relative;
  display: flex; flex-direction: column;
}
.card-exh:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }

/* Cover — brand strip + white logo panel */
.card-exh .cover {
  position: relative;
  background: var(--paper);
}
.card-exh .cover .strip {
  background: var(--brand-color, var(--ink));
  color: var(--brand-text, #fff);
  padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  position: relative;
}
.card-exh .cover .strip::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.card-exh .cover .country-row {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
  opacity: .9;
  position: relative; z-index: 1;
}
.card-exh .cover .country-row .flag {
  width: 14px; height: 10px; border-radius: 2px;
  background: rgba(255,255,255,.25);
}
.card-exh .cover .booth-pill {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,.18); color: inherit;
  padding: 4px 9px; border-radius: 5px;
  position: relative; z-index: 1;
}
.card-exh .cover .strip-actions {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}

/* Logo panel */
.card-exh .cover .logo-panel {
  position: relative;
  height: 110px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.card-exh .cover .logo-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block;
  transition: transform .25s var(--ease);
}
.card-exh:hover .cover .logo-img { transform: scale(1.04); }
.card-exh .cover .wordmark {
  font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  line-height: 1.05; font-feature-settings: "ss01";
  color: var(--ink); text-align: center;
}

/* Save / favorite button on card */
.card-exh .fav-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  color: inherit;
  display: grid; place-items: center;
  cursor: pointer; transition: background .2s, transform .2s var(--ease);
  flex-shrink: 0; padding: 0;
}
.card-exh .fav-btn:hover { background: rgba(255,255,255,.32); transform: scale(1.1); }
.card-exh .fav-btn.saved {
  background: var(--red); border-color: var(--red); color: #fff;
}
.card-exh .fav-btn.saved svg { fill: currentColor; }

/* ============================================================
   NAV — My List button
   ============================================================ */
.nav-actions .saved-btn {
  position: relative;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(10,15,26,.10);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.nav-actions .saved-btn:hover { background: var(--bone); border-color: rgba(10,15,26,.18); }
.nav-actions .saved-btn .count-dot {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: var(--red); color: #fff;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid var(--paper);
  transform: scale(0); transition: transform .2s var(--ease-out);
}
.nav-actions .saved-btn.has-items .count-dot { transform: scale(1); }

/* ============================================================
   SAVED LIST — drawer body + items
   ============================================================ */
.saved-list { padding: 0; margin: 0; list-style: none; }
.saved-list .item {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.saved-list .item:last-child { border-bottom: 0; }
.saved-list .item .logo {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  padding: 6px;
  overflow: hidden;
}
.saved-list .item .logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.saved-list .item .logo .initials {
  font-weight: 700; font-size: 11px; color: var(--ink);
  letter-spacing: -.01em; text-align: center;
  font-feature-settings: "ss01";
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.saved-list .item .info .name {
  font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
}
.saved-list .item .info .meta {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; font-weight: 500;
}
.saved-list .item .remove {
  background: none; border: 0; color: var(--muted); width: 28px; height: 28px;
  border-radius: 50%; display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.saved-list .item .remove:hover { background: var(--bone); color: var(--red); }
.saved-empty {
  padding: 40px 0; text-align: center; color: var(--muted);
}
.saved-empty .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bone); display: inline-grid; place-items: center;
  color: var(--muted); margin-bottom: 12px;
}
.saved-empty h4 { color: var(--ink); margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.saved-empty p { font-size: 13px; margin: 0; }

/* ============================================================
   FILTER GROUP — collapsible accordion (for hierarchical cats)
   ============================================================ */
.cat-acc { display: flex; flex-direction: column; gap: 4px; }
.cat-acc .grp {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
}
.cat-acc .grp summary {
  list-style: none; cursor: pointer;
  padding: 11px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
  transition: background .2s;
}
.cat-acc .grp summary::-webkit-details-marker { display: none; }
.cat-acc .grp summary:hover { background: var(--bone); }
.cat-acc .grp summary .right {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--muted); font-weight: 500;
}
.cat-acc .grp summary .chev {
  width: 16px; height: 16px; transition: transform .25s var(--ease);
  color: var(--muted);
}
.cat-acc .grp[open] summary .chev { transform: rotate(180deg); }
.cat-acc .grp[open] summary { background: var(--bone); }
.cat-acc .grp .items {
  padding: 4px 14px 12px;
  display: flex; flex-direction: column; gap: 0;
}
.cat-acc .grp .items label.opt { padding: 6px 0; font-size: 13.5px; }
.cat-acc .grp.has-picked summary .right .picked-num {
  background: var(--red); color: #fff; padding: 1px 7px; border-radius: 4px; font-weight: 600;
}

/* Body */
.card-exh .body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.card-exh .body h3 {
  margin: 0; font-size: 20px; font-weight: 600;
  color: var(--ink); letter-spacing: -.02em; line-height: 1.15;
}
.card-exh .body .meta {
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
}
.card-exh .body .meta .dot { opacity: .4; margin: 0 6px; }
.card-exh .body .desc {
  font-size: 14px; color: var(--ink-soft); margin: 4px 0 8px;
  line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-exh .body .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.card-exh .body .tags .tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--line-2);
}

/* Foot */
.card-exh .foot {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 22px; border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
}
.card-exh .foot a.web {
  color: var(--muted); display: inline-flex; gap: 6px; align-items: center;
  font-family: inherit; letter-spacing: 0; text-transform: none;
}
.card-exh .foot a.web:hover { color: var(--ink); }
.card-exh .foot a.detail {
  color: var(--ink); margin-left: auto;
  display: inline-flex; gap: 6px; align-items: center;
  font-weight: 600;
}
.card-exh .foot a.detail svg { transition: transform .2s var(--ease); }
.card-exh .foot a.detail:hover { color: var(--red); }
.card-exh .foot a.detail:hover svg { transform: translateX(3px); }

/* List view — horizontal card */
.cards.list .card-exh { flex-direction: row; align-items: stretch; }
.cards.list .card-exh .cover {
  width: 220px; flex-shrink: 0;
  display: flex; flex-direction: column;
}
.cards.list .card-exh .cover .strip { flex-shrink: 0; }
.cards.list .card-exh .cover .logo-panel { flex: 1; border-bottom: 0; border-right: 1px solid var(--line); }
.cards.list .card-exh .body { flex: 1; padding: 22px 24px; }
.cards.list .card-exh .foot {
  flex-direction: column; align-items: flex-end; justify-content: center;
  border-top: 0; border-left: 1px solid var(--line);
  width: 200px; flex-shrink: 0; padding: 22px 24px;
  gap: 14px;
}
.cards.list .card-exh .foot a.detail { margin-left: 0; }

/* Load more — modern replacement for pagination */
.load-more-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.load-more-wrap .progress-text {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.load-more-wrap .progress-text strong { color: var(--ink); font-weight: 600; }
.load-more-wrap .progress-bar {
  width: 280px; height: 3px; background: var(--line); border-radius: 999px;
  overflow: hidden;
}
.load-more-wrap .progress-bar .fill {
  height: 100%; background: var(--red);
  transition: width .6s var(--ease-out);
  border-radius: 999px;
}
.load-more-wrap .load-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--ink); color: var(--bone);
  border: 0; border-radius: 999px;
  font-family: inherit; font-weight: 500; font-size: 14px;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s;
  min-width: 240px; justify-content: center;
}
.load-more-wrap .load-more-btn:hover { background: var(--ink-soft); transform: translateY(-1px); }
.load-more-wrap .load-more-btn:active { transform: translateY(0); }
.load-more-wrap .load-more-btn .num { font-family: var(--mono); font-weight: 600; opacity: .75; }
.load-more-wrap .all-loaded {
  font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px;
  color: var(--muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.load-more-wrap .all-loaded::before {
  content: "✓"; color: var(--teal); font-weight: 700;
}

.empty {
  background: var(--paper); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 70px; text-align: center; color: var(--muted);
}
.empty h3 { color: var(--ink); margin: 14px 0 6px; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.detail-hero {
  background: var(--ink); color: var(--bone);
  padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.detail-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(201,160,74,.10), transparent 50%);
  pointer-events: none;
}
.detail-hero .container { position: relative; z-index: 1; }
.detail-hero .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 24px;
}
.detail-hero .crumb a { color: var(--muted-2); }
.detail-hero .crumb a:hover { color: #fff; }
.detail-hero .row {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 36px; align-items: center;
}
.detail-hero .logo-lg {
  width: 200px; height: 200px; border-radius: var(--radius-lg);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,.5);
}
.detail-hero .logo-lg img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block;
}
.detail-hero .logo-lg span {
  color: var(--ink); font-weight: 700;
  font-size: 30px; letter-spacing: -.02em;
  text-align: center;
}
.detail-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600; letter-spacing: -.04em; margin: 0 0 14px;
  color: var(--bone);
}
.detail-hero .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-hero .tag {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  padding: 5px 11px; border-radius: 999px; font-size: 10px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--mono);
}
.detail-hero .tag.booth {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.detail-hero .actions { display: flex; flex-direction: column; gap: 8px; }

.detail-body { padding: 90px 0; background: var(--bone); }
.detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; margin-bottom: 16px;
}
.panel h2 {
  font-size: 24px; font-weight: 600; margin: 0 0 16px;
  color: var(--ink); letter-spacing: -.025em;
}
.panel h2 .ital { font-style: italic; font-weight: 400; }
.panel p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.panel ul.products {
  padding: 0; margin: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.panel ul.products li {
  background: var(--bone); padding: 12px 16px;
  border-radius: var(--radius-sm); font-weight: 500;
  color: var(--ink); font-size: 14px;
  border-left: 3px solid var(--red);
}
.info-list { padding: 0; margin: 0; list-style: none; }
.info-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .k {
  color: var(--muted); font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 500;
}
.info-list .v { color: var(--ink); font-weight: 500; }
.info-list .v a { color: var(--red); }

/* Floor plan — architectural blueprint */
.floorplan {
  aspect-ratio: 4/3;
  background:
    /* tiny dot pattern + paper warm */
    radial-gradient(circle at 1px 1px, rgba(10,15,26,.06) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(180deg, #faf7ef 0%, #f1ede1 100%);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.floorplan svg { width: 100%; height: 100%; display: block; }

/* Hall walls — thicker like architectural plans */
.floorplan .fp-hall rect.fp-hall-body {
  fill: #ffffff; stroke: #b8b2a0; stroke-width: 2;
  transition: fill .25s, stroke .25s;
}
.floorplan .fp-hall.active rect.fp-hall-body {
  fill: #fff5f3; stroke: var(--red); stroke-width: 2.5;
}
.floorplan .fp-hall rect.fp-hall-head {
  fill: var(--ink); transition: fill .25s;
}
.floorplan .fp-hall.active rect.fp-hall-head { fill: var(--red); }
.floorplan .fp-hall text.fp-hall-label {
  fill: #fff; font-family: var(--mono); font-weight: 600;
  font-size: 11px; letter-spacing: 2px;
}
.floorplan .fp-hall text.fp-hall-name {
  fill: var(--muted); font-family: var(--mono); font-weight: 500;
  font-size: 9px; letter-spacing: 1.5px;
}

/* Individual booth rectangles (real blueprint look) */
.floorplan .fp-booth rect {
  fill: #f5f0df; stroke: #c5bea8; stroke-width: 0.7;
  transition: fill .2s, stroke .2s;
}
.floorplan .fp-booth.occupied rect { fill: #ebe5d0; }
.floorplan .fp-booth.current rect {
  fill: var(--red); stroke: var(--red-deep); stroke-width: 1.5;
  filter: drop-shadow(0 3px 8px rgba(210,46,35,.45));
}
.floorplan .fp-booth text {
  fill: #8a8068; font-family: var(--mono); font-size: 5.5px;
  font-weight: 600; letter-spacing: 0.2px; pointer-events: none;
}
.floorplan .fp-booth.current text { fill: #fff; }

/* Aisles between booth rows (walking paths) */
.floorplan .fp-row-aisle {
  fill: rgba(10,15,26,.025);
}

.floorplan .fp-aisle { fill: rgba(10,15,26,.05); }
.floorplan .fp-aisle text {
  fill: rgba(10,15,26,.35); font-family: var(--mono); font-weight: 500;
  font-size: 9px; letter-spacing: 2.5px;
}
.floorplan .fp-entrance {
  fill: var(--ink);
}
.floorplan .fp-entrance text { fill: #fff; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; }
.floorplan .fp-compass circle { fill: #fff; stroke: var(--muted); stroke-width: 1; }
.floorplan .fp-compass text { fill: var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 600; }

/* Pin */
.floorplan .fp-pin .pulse-bg {
  fill: var(--red); opacity: .25;
  transform-origin: center;
  animation: fp-pulse 1.8s ease-out infinite;
}
.floorplan .fp-pin .pin-dot {
  fill: var(--red);
  filter: drop-shadow(0 4px 10px rgba(210,46,35,.5));
}
.floorplan .fp-pin .pin-label {
  fill: #fff; font-family: var(--mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1px;
}
@keyframes fp-pulse {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.floorplan .fp-legend {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.floorplan .fp-legend .pin-mini {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(210,46,35,.25);
}

.panel-dark {
  background: var(--ink); color: var(--bone); border: 0;
  position: relative; overflow: hidden;
}
.panel-dark h2 { color: var(--bone); }
.panel-dark p { color: var(--muted-2); }
.panel-dark::after {
  content:""; position: absolute; right: -80px; bottom: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,74,.20), transparent 70%);
  pointer-events: none;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { align-self: stretch; max-height: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .bento .a { grid-column: span 4; grid-row: span 2; }
  .bento .b { grid-column: span 4; grid-row: span 1; }
  .bento .c, .bento .d, .bento .e, .bento .f { grid-column: span 2; grid-row: span 1; }
  .section-dark .big-head { grid-template-columns: 1fr; gap: 20px; }
  .about-split { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery .t1 { grid-column: span 6; }
  .gallery .t2, .gallery .t3 { grid-column: span 3; }
  .gallery .t4, .gallery .t5, .gallery .t6 { grid-column: span 2; }
  .stats-line { grid-template-columns: repeat(2, 1fr); }
  .stats-line .cell:nth-child(1), .stats-line .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stats-line .cell:nth-child(2) { border-right: 0; }
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
  .dir-hero .row { grid-template-columns: 1fr; }
  .dir-stats { grid-template-columns: repeat(2, 1fr); }
  .dir-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .detail-hero .row { grid-template-columns: 140px 1fr; }
  .detail-hero .actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .detail-hero .logo-lg { width: 140px; height: 140px; font-size: 24px; }
  .detail-grid { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .footer .cols.cols-org { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards.list .card-exh { flex-direction: column; }
  .cards.list .card-exh .cover { width: 100%; }
  .cards.list .card-exh .foot { width: 100%; flex-direction: row; border-left: 0; border-top: 1px solid var(--line); padding: 14px 22px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .header { margin: 8px 8px 0; }
  .header .nav { padding: 8px 10px 8px 16px; }
  .menu { display: none; }
  section { padding: 70px 0; }
  .hero { padding-top: 28px; }
  .hero .meta-top { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento .a, .bento .b, .bento .c, .bento .d, .bento .e, .bento .f { grid-column: span 1; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-1 .grid, .tier-2 .grid, .tier-3 .grid { grid-template-columns: repeat(2, 1fr); }
  .footer .cols { grid-template-columns: 1fr; gap: 40px; }
  .footer .cols.cols-org { grid-template-columns: 1fr; gap: 40px; }
  .footer .bottom { flex-direction: column; gap: 12px; }
  .gallery { grid-auto-rows: 80px; }
  .gallery .t1 { grid-row: span 3; }
  .dir-stats { grid-template-columns: 1fr 1fr; }
  .toolbar-wrap { position: static; }
  .cards { grid-template-columns: 1fr; }
  .drawer { width: 100vw; max-width: 100vw; }
  .logo-wall .cell { width: 144px; height: 84px; padding: 12px; }
}
