/* ================================================================
   All Access Budapest — Marketing Site
   Design system + section styles
   ================================================================ */

/* ---------- Foundations ---------- */
:root {
  --ink:        #0A1D45;
  --ink-soft:   #1A2F5C;
  --ink-line:   #2A3D6B;
  --cream:      #F4EEE0;
  --cream-2:    #EBE3CE;
  --cream-3:    #DDD2B4;
  --red:        #D62828;
  --red-deep:   #B21A1F;
  --gold:       #C89B3C;
  --gold-soft:  #E4C77B;
  --muted:      #6B6A5C;
  --paper:      #FAF6EA;
  --shadow-lg:  0 30px 80px -30px rgba(10, 29, 69, 0.35);
  --shadow-md:  0 12px 40px -18px rgba(10, 29, 69, 0.30);
  --shadow-sm:  0 2px 12px -4px rgba(10, 29, 69, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(200, 155, 60, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(10, 29, 69, 0.04) 0%, transparent 45%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.11  0 0 0 0 0.27  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.6vw, 6.4rem); line-height: 0.98; font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); line-height: 1.02; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.15; }
p  { margin: 0; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- Editorial marks ---------- */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ink-soft);
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.cream { color: var(--cream-2); }
.eyebrow.cream::before { background: var(--cream-2); }

.serif-italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}
.accent { color: var(--red); }
.accent-gold { color: var(--gold); }

.underline-swash {
  position: relative;
  display: inline-block;
}
.underline-swash::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 0.05em;
  height: 0.35em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'><path d='M2 14 Q 40 2 90 10 T 198 8' fill='none' stroke='%23D62828' stroke-width='4' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  z-index: -1;
  opacity: 0.85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1), box-shadow 0.35s, background 0.35s, color 0.35s;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn svg { transition: transform 0.35s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 20px 40px -18px rgba(214, 40, 40, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-red {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 12px 30px -12px rgba(214, 40, 40, 0.5);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
header.top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 26px 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand .pin { width: 26px; height: 34px; }
.brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-top: 2px;
}

nav.links { display: flex; align-items: center; gap: 34px; }
nav.links a {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--red);
  transition: right 0.4s cubic-bezier(.2,.9,.3,1);
}
nav.links a:hover::after { right: 0; }
.top-cta { padding: 10px 20px; font-size: 0.85rem; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.lang span.active { color: var(--ink); }
.lang em { font-style: normal; color: var(--cream-3); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 130px 0 90px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: end;
  min-height: 78vh;
}
.hero-copy { padding-top: 30px; position: relative; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--cream-3);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.hero-tagline .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.7rem;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214,40,40,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(214,40,40,0); }
}

.hero h1 { margin-bottom: 32px; }
.hero h1 .line { display: block; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }

.hero-sub {
  max-width: 500px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--cream-3);
  padding-top: 28px;
  max-width: 560px;
}
.hero-stats div .num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.hero-stats div .num sup { color: var(--red); font-size: 0.9rem; margin-left: 4px; top: -0.8em; }
.hero-stats div span.label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Hero visual ---------- */
.hero-visual { position: relative; height: 620px; }
.hero-visual .plate {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .plate::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.6;
}

.parliament {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: auto;
  color: rgba(255,255,255,0.06);
  filter: drop-shadow(0 -4px 30px rgba(200, 155, 60, 0.15));
}
.parliament path { fill: currentColor; }

.stars {
  position: absolute;
  top: 12%;
  left: 0; right: 0;
  height: 40%;
  z-index: 1;
  pointer-events: none;
}
.stars i {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.85;
  box-shadow: 0 0 6px rgba(228, 199, 123, 0.6);
  animation: twinkle 3.5s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

.danube {
  position: absolute;
  bottom: 22%;
  left: -5%; right: -5%;
  height: 60px;
  z-index: 2;
  opacity: 0.85;
}
.danube-wave { animation: float 8s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateX(0);} 50%{transform:translateX(-14px);} }

.chain-bridge {
  position: absolute;
  top: 44%;
  left: 10%; right: 10%;
  height: 90px;
  z-index: 3;
  color: rgba(228, 199, 123, 0.55);
}
.chain-bridge path, .chain-bridge line { stroke: currentColor; fill: none; }

.moon {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #E4C77B, #B0873A 70%);
  box-shadow: 0 0 60px rgba(228, 199, 123, 0.35);
  z-index: 1;
}

.billboard-card {
  position: absolute;
  left: -46px;
  bottom: 30px;
  width: 220px;
  background: var(--cream);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  z-index: 5;
  border: 1px solid var(--cream-2);
}
.billboard-card .qr {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.qr-svg { width: 100%; height: 100%; background: var(--cream); border-radius: 6px; padding: 6px; }
.billboard-card p {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
  line-height: 1.25;
  color: var(--ink);
}
.billboard-card p em { font-style: italic; color: var(--red); }
.billboard-card .corner {
  position: absolute;
  top: -8px; right: -8px;
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
}

.phone-card {
  position: absolute;
  right: -30px;
  top: 20px;
  width: 190px;
  height: 380px;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(6deg);
  padding: 12px;
  z-index: 6;
  border: 2px solid var(--cream-2);
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F0E9D6, #F4EEE0);
  border-radius: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.phone-header {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.phone-header small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}
.phone-map {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, #E8DFC9, #DDD2B4);
  border-radius: 12px;
  margin: 12px 0;
  overflow: hidden;
}
.phone-pin {
  position: absolute;
  width: 12px; height: 15px;
  background: var(--red);
  clip-path: path("M 6 0 C 2.7 0 0 2.7 0 6 C 0 10.5 6 15 6 15 C 6 15 12 10.5 12 6 C 12 2.7 9.3 0 6 0 Z");
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.phone-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.66rem;
  border-bottom: 1px solid rgba(10, 29, 69, 0.08);
  color: var(--ink);
}
.phone-list li span:last-child { color: var(--red); font-weight: 700; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-inner b { font-style: italic; font-weight: 300; color: var(--gold-soft); }
.marquee-inner .diamond {
  width: 6px; height: 6px;
  background: var(--red);
  transform: rotate(45deg);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- How it works ---------- */
section.how { padding: 140px 0 100px; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head p.intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--cream-3) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--cream-3);
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
}
.step-num::after {
  content: attr(data-mini);
  position: absolute;
  top: 8px; right: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  color: var(--red);
  font-weight: 700;
}
.step h3 { margin-bottom: 14px; }
.step p { color: var(--ink-soft); line-height: 1.6; max-width: 320px; }
.step .step-illust {
  width: 100%;
  max-width: 240px;
  margin-top: 26px;
  color: var(--ink);
}
.step .step-illust svg { width: 100%; height: auto; }

/* ---------- Audiences ---------- */
section.audiences {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
section.audiences::before, section.audiences::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 22px;
  background-repeat: repeat-x;
  background-size: 22px 22px;
}
section.audiences::before {
  top: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'><path d='M0 22 L11 0 L22 22 Z' fill='%23F4EEE0'/></svg>");
}
section.audiences::after {
  bottom: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'><path d='M0 0 L11 22 L22 0 Z' fill='%23F4EEE0'/></svg>");
}

.audience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-2);
}
.audience-card:last-child { border-bottom: none; }
.audience-card.flip { direction: rtl; }
.audience-card.flip > * { direction: ltr; }

.audience-body h2 {
  margin: 20px 0 20px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}
.audience-body ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 34px;
  display: grid;
  gap: 12px;
}
.audience-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.audience-body ul li::before {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 60%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 60%;
}

.audience-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.audience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 29, 69, 0.55) 100%);
}
.audience-visual .label {
  position: absolute;
  left: 24px; bottom: 24px;
  color: var(--cream);
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
}
.audience-visual .label small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.visual-hosts    { background: linear-gradient(160deg, #C89B3C 0%, #8B6423 100%); }
.visual-venues   { background: linear-gradient(160deg, #B21A1F 0%, #6D0F13 100%); }
.visual-services { background: linear-gradient(160deg, var(--ink-soft) 0%, var(--ink) 100%); }
.visual-illust { position: absolute; inset: 0; z-index: 1; opacity: 0.95; }

/* ---------- Billboard showcase ---------- */
section.billboard-showcase { padding: 140px 0; position: relative; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.showcase-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.showcase-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(228, 199, 123, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(214, 40, 40, 0.12) 0%, transparent 45%);
}
.billboard-real {
  position: relative;
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 24px;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
}
.billboard-real .bb-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.billboard-real .bb-brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.billboard-real h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.1;
  max-width: 260px;
  margin: 14px 0 8px;
  font-weight: 400;
}
.billboard-real h4 em { color: var(--red); font-style: italic; }
.billboard-real .qr-large { width: 60%; aspect-ratio: 1; margin: 12px 0; }
.billboard-real .qr-large svg { width: 100%; height: 100%; }
.billboard-real .scan-note {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billboard-real .scan-note::before { content: "→"; color: var(--red); font-weight: 700; }
.billboard-real .nfc-tag {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.billboard-real .stand-base {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  background: linear-gradient(180deg, var(--ink), var(--ink-soft));
  border-radius: 0 0 20px 20px;
}

.showcase-copy .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  margin-top: 40px;
}
.feature { padding-top: 20px; border-top: 1px solid var(--cream-3); }
.feature .icon {
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 12px;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 22px; height: 22px; }
.feature h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.feature p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Pricing ---------- */
section.pricing {
  padding: 140px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
section.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' preserveAspectRatio='xMidYMid slice'><path d='M -100 500 Q 300 350 600 500 T 1300 500' fill='none' stroke='rgba(228,199,123,0.08)' stroke-width='1.5'/><path d='M -100 540 Q 300 390 600 540 T 1300 540' fill='none' stroke='rgba(228,199,123,0.06)' stroke-width='1'/><path d='M -100 580 Q 300 430 600 580 T 1300 580' fill='none' stroke='rgba(228,199,123,0.04)' stroke-width='1'/></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

section.pricing h2 { color: var(--cream); }
section.pricing .eyebrow { color: var(--gold-soft); }
section.pricing .eyebrow::before { background: var(--gold-soft); }
section.pricing p.intro { color: rgba(244, 238, 224, 0.7); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
  align-items: stretch;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244, 238, 224, 0.12);
  border-radius: 22px;
  padding: 40px 32px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(228, 199, 123, 0.4); }
.price-card.featured {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 40px 80px -20px rgba(228, 199, 123, 0.25);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card.featured .price-cat { color: var(--red); }
.price-card.featured ul li { color: var(--ink-soft); }
.price-card.featured ul li::before { background: var(--red); }

.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 400;
}
.price small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: rgba(244, 238, 224, 0.6);
  font-weight: 400;
}
.price-card.featured .price small { color: var(--muted); }

.price-card .divider {
  height: 1px;
  background: rgba(244, 238, 224, 0.15);
  margin: 30px 0 24px;
}
.price-card.featured .divider { background: var(--cream-3); }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(244, 238, 224, 0.85);
}
.price-card ul li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--gold-soft);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 100%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 100%;
}

.price-card .btn { margin-top: auto; justify-content: center; }
.price-card:not(.featured) .btn {
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--cream);
}
.price-card:not(.featured) .btn:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

/* ---------- Map section ---------- */
section.map-section { padding: 140px 0; position: relative; overflow: hidden; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.map-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 50%, var(--paper), var(--cream-2));
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-3);
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; }
.map-pin {
  fill: var(--red);
  filter: drop-shadow(0 3px 6px rgba(214, 40, 40, 0.4));
  animation: pinBounce 3s ease-in-out infinite;
}
.map-pin:nth-child(2) { animation-delay: 0.4s; }
.map-pin:nth-child(3) { animation-delay: 0.8s; }
.map-pin:nth-child(4) { animation-delay: 1.2s; }
.map-pin:nth-child(5) { animation-delay: 1.6s; }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.map-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.72rem;
  fill: var(--ink-soft);
}
.map-district-name {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  fill: var(--ink);
  font-weight: 500;
}
.river { fill: none; stroke: rgba(10, 29, 69, 0.35); stroke-width: 20; stroke-linecap: round; }
.river-shadow { fill: none; stroke: rgba(10, 29, 69, 0.1); stroke-width: 30; }
.district-line { fill: none; stroke: var(--cream-3); stroke-width: 1; stroke-dasharray: 3 3; }

.map-copy h2 { margin-bottom: 26px; }
.map-copy .neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.neighborhood {
  padding: 16px 0;
  border-top: 1px solid var(--cream-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.neighborhood::before {
  content: attr(data-num);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 500;
}
.neighborhood strong { display: block; font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 500; color: var(--ink); }
.neighborhood small { color: var(--ink-soft); font-size: 0.78rem; }

/* ---------- Partners ---------- */
section.partners { padding: 120px 0; background: var(--paper); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 70px;
}
.partner-tile {
  padding: 34px 24px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--cream-2);
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 130px;
}
.partner-tile:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.partner-tile .name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.partner-tile .cat {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
section.faq { padding: 140px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.faq-side p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 340px;
}
.faq-side .badge-help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  margin-top: 30px;
  font-size: 0.86rem;
  font-weight: 500;
}
.faq-side .badge-help svg { color: var(--red); }

.faq-list details {
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-3);
  cursor: pointer;
}
.faq-list details:first-child { border-top: 1px solid var(--cream-3); }
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--cream-3);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1D45' stroke-width='2' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") no-repeat center / 40%;
  transition: transform 0.35s ease, background-color 0.35s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4EEE0' stroke-width='2' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  border-color: var(--red);
}
.faq-list .answer {
  padding-top: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 620px;
}

/* ---------- Contact CTA ---------- */
section.contact { padding: 140px 0; position: relative; overflow: hidden; }
.contact-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 30px;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='none'><path d='M0 150 Q100 100 200 150 T400 150' fill='none' stroke='rgba(228,199,123,0.15)' stroke-width='1'/><path d='M0 130 Q100 80 200 130 T400 130' fill='none' stroke='rgba(228,199,123,0.1)' stroke-width='1'/><path d='M0 110 Q100 60 200 110 T400 110' fill='none' stroke='rgba(228,199,123,0.06)' stroke-width='1'/></svg>");
  background-size: cover;
}
.contact-panel .eyebrow.gold { justify-content: center; }
.contact-panel h2 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 20px auto 26px;
  max-width: 780px;
}
.contact-panel h2 em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.contact-panel p.lead {
  max-width: 520px;
  margin: 0 auto 42px;
  color: rgba(244, 238, 224, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(244, 238, 224, 0.12);
  font-size: 0.9rem;
  color: rgba(244, 238, 224, 0.7);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.contact-info a { color: var(--cream); border-bottom: 1px dotted rgba(228, 199, 123, 0.5); padding-bottom: 2px; }
.contact-info a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

.contact-panel .contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  color: rgba(244, 238, 224, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
footer {
  padding: 80px 0 40px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--cream-2);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--cream-2);
}
.footer-brand p {
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 300px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-col ul a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom .heart {
  color: var(--red);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ---------- Entrance Animations ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: riseIn 1s cubic-bezier(.2,.9,.3,1) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }
.d6 { animation-delay: 0.85s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner, .section-head, .showcase-grid, .map-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual { height: 520px; }
  .how-steps, .price-grid { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .audience-card { grid-template-columns: 1fr; padding: 40px 0; }
  .audience-card.flip { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.links { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  header.top { padding: 18px 0; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .contact-panel { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .showcase-copy .feature-grid { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .top-cta { display: none; }
}
