/* =========================================================
   SparkLaunch — Redesign 2026
   Brand: Navy + Orange, editorial, premium, startup-friendly
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #0E1A26;
  --navy-800: #172432;
  --navy-700: #22334A;
  --navy-600: #2E4056;
  --orange-600: #E05722;
  --orange-500: #F47A2B;
  --orange-400: #FFB76A;
  --cream-50:  #FCFAF6;
  --cream-100: #FFF4EA;
  --cream-200: #F5EEE2;
  --ink-700:   #3A4655;
  --ink-500:   #5C6674;
  --ink-300:   #8A93A0;
  --line:      rgba(23,36,50,0.09);
  --line-strong: rgba(23,36,50,0.16);
  --white:     #ffffff;

  /* Type */
  --font-display: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14,26,38,0.06), 0 2px 6px rgba(14,26,38,0.04);
  --shadow-md: 0 8px 24px rgba(14,26,38,0.08), 0 2px 4px rgba(14,26,38,0.04);
  --shadow-lg: 0 22px 44px -12px rgba(14,26,38,0.18), 0 8px 16px -8px rgba(14,26,38,0.12);
  --shadow-orange: 0 10px 28px -8px rgba(224,87,34,0.45);

  /* Layout */
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-800);
  background: var(--cream-50);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--orange-400); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy-800);
  margin: 0;
}
h1 { font-size: clamp(44px, 6.2vw, 78px); }
h2 { font-size: clamp(34px, 4.4vw, 54px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
h4 { font-size: 18px; letter-spacing: -0.01em; line-height: 1.3; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--dark { background: var(--navy-800); color: var(--cream-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section--dark .lead { color: rgba(255, 244, 234, 0.72); }
.section--cream { background: var(--cream-100); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lead { margin: 18px auto 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -8px rgba(224,87,34,0.55);
}
.btn-ghost {
  color: var(--navy-800);
  background: transparent;
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--navy-800); color: var(--cream-50); border-color: var(--navy-800); }
.btn-on-dark {
  background: var(--cream-50);
  color: var(--navy-800);
}
.btn-on-dark:hover { background: var(--orange-500); color: var(--white); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(252, 250, 246, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { height: 42px; display: flex; align-items: center; }
.nav__logo img { height: 42px; }
.nav__links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--ink-700);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--orange-600); }
@media (max-width: 840px) { .nav__links { display: none; } }
.nav__cta { display: flex; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 85% 18%, rgba(244,122,43,0.10), transparent 60%),
    radial-gradient(50% 50% at 10% 85%, rgba(23,36,50,0.05), transparent 60%),
    var(--cream-50);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(244,122,43,0.10);
  color: var(--orange-600);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(244,122,43,0.15);
}
.hero h1 {
  font-size: clamp(48px, 6.8vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-500);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-500);
  max-width: 52ch;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: var(--ink-500); font-weight: 500;
}
.hero__proof span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__proof .star { color: var(--orange-500); font-size: 14px; }

/* Hero visual composite */
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 4.6;
}
.hv-card {
  position: absolute;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hv-laptop {
  left: 0; top: 8%;
  width: 78%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a2a3d 0%, #24374f 100%);
  padding: 12px;
}
.hv-laptop .screen {
  height: 100%;
  border-radius: 10px;
  background: var(--cream-50);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.hv-laptop .dots { display: flex; gap: 5px; }
.hv-laptop .dots i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong);
  display: inline-block;
}
.hv-laptop .browser-bar {
  height: 6px; border-radius: 99px; background: var(--cream-200); width: 70%; margin: 4px 0 12px;
}
.hv-laptop .hero-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1;
}
.hv-laptop .hero-mini__txt {
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.hv-laptop .hero-mini__txt .h {
  height: 8px; border-radius: 3px; background: var(--navy-800); width: 85%;
}
.hv-laptop .hero-mini__txt .h.sm { width: 55%; background: var(--orange-500); }
.hv-laptop .hero-mini__txt .p {
  height: 4px; border-radius: 3px; background: var(--line-strong); width: 90%;
}
.hv-laptop .hero-mini__txt .p.s2 { width: 70%; }
.hv-laptop .hero-mini__txt .btn-mini {
  width: 52px; height: 14px; border-radius: 99px; background: var(--orange-500); margin-top: 6px;
}
.hv-laptop .hero-mini__img {
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,183,106,0.8), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244,122,43,0.9), transparent 55%),
    linear-gradient(135deg, #172432, #2E4056);
  position: relative;
}
.hv-laptop .hero-mini__img::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 18px);
}

.hv-phone {
  right: 2%; top: 0;
  width: 28%;
  aspect-ratio: 9 / 18;
  background: var(--navy-800);
  padding: 6px;
  border-radius: 28px;
  transform: rotate(4deg);
}
.hv-phone .screen {
  height: 100%;
  border-radius: 22px;
  background: var(--cream-50);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.hv-phone .notch {
  width: 38%; height: 14px; border-radius: 99px; background: var(--navy-800); margin: 0 auto 6px;
}
.hv-phone .p-hero {
  height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  position: relative; overflow: hidden;
}
.hv-phone .p-hero::after {
  content: "✦"; position: absolute; right: 8px; bottom: 6px; color: rgba(255,255,255,0.6); font-size: 14px;
}
.hv-phone .p-row { height: 6px; border-radius: 3px; background: var(--line-strong); }
.hv-phone .p-row.w80 { width: 80%; }
.hv-phone .p-row.w60 { width: 60%; background: var(--navy-800); height: 7px; }
.hv-phone .p-btn {
  margin-top: auto; height: 22px; border-radius: 99px; background: var(--navy-800);
}

.hv-social {
  left: 6%; bottom: 0;
  width: 34%;
  padding: 12px;
  transform: rotate(-5deg);
}
.hv-social .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  margin-bottom: 8px;
}
.hv-social .img {
  height: 82px; border-radius: 10px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,183,106,0.9), transparent 55%),
    linear-gradient(145deg, #22334A, #0E1A26);
  position: relative;
  margin-bottom: 8px;
}
.hv-social .img::after {
  content: "🎪"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 24px;
}
.hv-social .cap {
  height: 5px; border-radius: 3px; background: var(--line-strong); width: 90%; margin-top: 4px;
}
.hv-social .cap.s { width: 60%; background: var(--navy-800); height: 6px; }

.hv-ticket {
  right: 0; bottom: 10%;
  width: 34%;
  padding: 14px;
  background: var(--navy-800);
  color: var(--cream-50);
  transform: rotate(3deg);
}
.hv-ticket .ticket-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 99px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hv-ticket .t-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; line-height: 1.15; margin-bottom: 4px;
}
.hv-ticket .t-meta {
  font-size: 10px; color: rgba(255,244,234,0.6); margin-bottom: 12px;
}
.hv-ticket .t-btn {
  height: 20px; border-radius: 99px; background: var(--cream-50);
}

.hv-floater {
  position: absolute;
  width: 64px; height: 64px;
  right: 30%; top: -4%;
  border-radius: 18px;
  background: var(--cream-50);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  padding: 10px;
  transform: rotate(-8deg);
  z-index: 3;
}
.hv-floater img { height: 100%; }

/* ---------- Ticker / Services strip ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-50);
  padding: 22px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex; gap: 48px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 14px; font-weight: 500; color: var(--ink-500);
  letter-spacing: 0.02em;
}
.ticker__track span.dot { color: var(--orange-500); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,122,43,0.25);
}
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--ink-500); margin: 0; font-size: 15.5px; line-height: 1.65; }
.step__icon {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  color: var(--orange-500);
  font-size: 18px;
}
.how__note {
  margin-top: 40px; text-align: center;
  font-size: 14.5px; color: var(--ink-500);
  font-style: italic;
}
.how__note .em { color: var(--orange-600); font-weight: 600; font-style: normal; }

/* ---------- Scenarios ("Sound Familiar?") ---------- */
.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .scenarios { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .scenarios { grid-template-columns: 1fr; } }
.scenario {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all .25s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.scenario:hover {
  border-color: rgba(244,122,43,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.scenario__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.scenario h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.scenario p {
  color: var(--ink-500);
  font-size: 15px;
  margin: 0 0 18px;
  flex: 1;
}
.scenario__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px; font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.scenario__tags span { color: var(--orange-600); }
.scenarios__footer {
  margin-top: 48px;
  text-align: center;
}
.scenarios__footer p {
  color: var(--ink-500);
  margin: 0 0 20px;
  font-size: 15px;
}

/* ---------- Services ("What I Handle") ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .services { grid-template-columns: 1fr; } }
.svc {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 4px;
  background: var(--orange-500);
  opacity: 0; transition: opacity .25s ease;
}
.svc:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc:hover::before { opacity: 1; }
.svc__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.svc__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--orange-400);
  display: grid; place-items: center;
  font-size: 20px;
}
.svc__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.svc__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
  font-size: 14.5px;
  color: var(--ink-700);
}
@media (max-width: 520px) { .svc__list { grid-template-columns: 1fr; } }
.svc__list li {
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.45;
}
.svc__list li::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange-500);
  margin-top: 8px; flex-shrink: 0;
}
.services__footer {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-500);
  font-style: italic;
}

/* ---------- Portfolio ---------- */
.portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .portfolio { grid-template-columns: 1fr; } }
.project {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.project:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project__img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.project__type {
  position: absolute; top: 18px; left: 18px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 244, 234, 0.95);
  color: var(--navy-800);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.project__body {
  padding: 30px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.project__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy-800);
  line-height: 1.2;
}
.project__location {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}
.project__location::before { content: "📍 "; }
.project__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.55;
}
.project__bullets li {
  display: flex; gap: 10px; align-items: flex-start;
}
.project__bullets li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-500);
  margin-top: 8px; flex-shrink: 0;
}
.project__result {
  margin-top: auto;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--cream-100);
  border-left: 3px solid var(--orange-500);
  font-size: 14px;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.5;
}
.project__result::before {
  content: "✦ ";
  color: var(--orange-500); font-weight: 700;
}

/* Project image mockups */
.pm {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
/* Portugal Day */
.pm-portugal {
  background:
    radial-gradient(circle at 20% 30%, rgba(244,122,43,0.35), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,183,106,0.35), transparent 55%),
    linear-gradient(135deg, #1a2a3d 0%, #0E1A26 100%);
}
.pm-portugal .badge {
  text-align: center; color: var(--cream-50);
  font-family: var(--font-display);
}
.pm-portugal .badge .kicker {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px; font-family: var(--font-sans); font-weight: 600;
}
.pm-portugal .badge .main {
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em; line-height: 1;
}
.pm-portugal .badge .main em { font-style: italic; color: var(--orange-400); }
.pm-portugal .badge .sub {
  margin-top: 14px;
  font-size: 12px; font-family: var(--font-sans); color: rgba(255,244,234,0.7);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.pm-portugal .flag-accent {
  position: absolute;
  width: 120%; height: 8px;
  background: linear-gradient(90deg, #2e7d32 0%, #2e7d32 40%, #c62828 40%, #c62828 100%);
  bottom: 0; left: -10%;
  opacity: 0.8;
}

/* Halloween */
.pm-halloween {
  background: linear-gradient(135deg, #1a0f1e 0%, #2a1d3d 100%);
  color: var(--cream-50);
}
.pm-halloween::before {
  content: "🎃";
  position: absolute;
  font-size: 140px;
  right: -20px; bottom: -30px;
  opacity: 0.25;
}
.pm-halloween .badge {
  text-align: center; font-family: var(--font-display);
  z-index: 2;
}
.pm-halloween .badge .kicker {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange-400);
  margin-bottom: 10px;
}
.pm-halloween .badge .main {
  font-size: 42px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 18px;
}
.pm-halloween .ticket {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 18px;
  background: rgba(255,244,234,0.08);
  border: 1px dashed rgba(255,183,106,0.4);
  border-radius: 10px;
  font-family: var(--font-sans);
}
.pm-halloween .ticket .price { font-size: 22px; font-weight: 700; color: var(--orange-400); }
.pm-halloween .ticket .label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,244,234,0.6); }

/* Local Business */
.pm-biz {
  background:
    radial-gradient(circle at 75% 25%, rgba(244,122,43,0.15), transparent 60%),
    var(--cream-100);
  padding: 28px;
}
.pm-biz .window {
  width: 92%;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(14,26,38,0.20);
  overflow: hidden;
  border: 1px solid var(--line);
}
.pm-biz .window__bar {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px;
}
.pm-biz .window__bar i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong);
  display: inline-block;
}
.pm-biz .window__bar .url {
  flex: 1; height: 6px; border-radius: 99px; background: var(--cream-200); margin-left: 10px;
}
.pm-biz .window__body {
  padding: 20px;
}
.pm-biz .window__body h4 {
  font-family: var(--font-display); font-size: 20px; color: var(--navy-800);
  font-weight: 500; line-height: 1.1; margin-bottom: 8px;
}
.pm-biz .window__body h4 em { color: var(--orange-500); font-style: italic; }
.pm-biz .window__body .lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.pm-biz .window__body .lines span {
  height: 4px; border-radius: 3px; background: var(--line-strong);
}
.pm-biz .window__body .lines span:nth-child(1) { width: 90%; }
.pm-biz .window__body .lines span:nth-child(2) { width: 75%; }
.pm-biz .window__body .mini-btn {
  display: inline-block;
  height: 14px; width: 70px; border-radius: 99px;
  background: var(--orange-500);
}

/* Event Dashboard */
.pm-dash {
  background: linear-gradient(135deg, #172432 0%, #0E1A26 100%);
  padding: 26px;
}
.pm-dash .panel {
  width: 100%;
  background: rgba(255,244,234,0.04);
  border: 1px solid rgba(255,244,234,0.1);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(10px);
  color: var(--cream-50);
  font-family: var(--font-sans);
}
.pm-dash .panel__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,244,234,0.6);
}
.pm-dash .panel__head::after {
  content: "●"; color: var(--orange-400); letter-spacing: 0;
}
.pm-dash .panel__title {
  font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pm-dash .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pm-dash .stats .stat {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,244,234,0.06);
}
.pm-dash .stats .value {
  font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--orange-400);
  letter-spacing: -0.01em; line-height: 1;
}
.pm-dash .stats .label {
  margin-top: 6px;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,244,234,0.5);
}

/* ---------- Pricing ---------- */
.pricing {
  position: relative;
  background:
    linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}
.pricing__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
@media (max-width: 880px) { .pricing__hero { grid-template-columns: 1fr; padding: 36px 28px; } }
.pricing__hero .big {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy-800);
}
.pricing__hero .big .from {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.pricing__hero .big sup { font-size: 0.4em; font-weight: 400; color: var(--orange-500); top: -0.7em; position: relative; }
.pricing__hero p { color: var(--ink-500); margin: 0 0 8px; }
.pricing__hero .range {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--cream-100);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}
.pricing__hero .range em { color: var(--orange-600); font-style: normal; margin: 0 4px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (max-width: 720px) { .pricing__grid { grid-template-columns: 1fr; } }
.pricing__item {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background .2s;
}
.pricing__item:hover { background: var(--cream-50); }
.pricing__item:nth-child(2n) { border-right: 0; }
.pricing__item:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 720px) {
  .pricing__item { border-right: 0; }
  .pricing__item:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}
.pricing__item .svc-name {
  font-weight: 500;
  color: var(--navy-800);
  font-size: 15.5px;
}
.pricing__item .svc-price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--orange-600);
  font-size: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pricing__item .svc-price .from-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-300);
  margin-right: 4px;
}

.pricing__note {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--navy-800);
  color: var(--cream-100);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .pricing__note { grid-template-columns: 1fr; } }
.pricing__note .why {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--orange-400);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pricing__note p { margin: 0; color: rgba(255,244,234,0.82); font-size: 15px; max-width: 60ch; }

/* ---------- Who I Work With ---------- */
.clients {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.clients .chip {
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 500; font-size: 15px;
  color: var(--navy-800);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.clients .chip:hover {
  border-color: rgba(244,122,43,0.4);
  transform: translateY(-2px);
}

/* ---------- About ---------- */
.about {
  position: relative;
  background:
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,183,106,0.5), transparent 55%),
    linear-gradient(145deg, #172432 0%, #0E1A26 100%);
  padding: 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--cream-50);
  box-shadow: var(--shadow-lg);
}
.about__portrait::before {
  content: "D";
  position: absolute;
  top: -30px; left: -20px;
  font-family: var(--font-display);
  font-size: 520px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,244,234,0.04);
  line-height: 1;
}
.about__portrait .monogram {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--orange-500);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 40px; font-weight: 500;
  color: var(--cream-50); letter-spacing: -0.03em;
}
.about__portrait .quote {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.about__portrait .quote em { color: var(--orange-400); font-style: italic; }
.about__portrait .attrib {
  position: relative; z-index: 2;
  font-size: 13px; font-weight: 500; color: rgba(255,244,234,0.6);
  letter-spacing: 0.02em;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,244,234,0.14);
}

.about__content h2 { margin-bottom: 20px; }
.about__content .intro {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.about__content p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.about__stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--orange-600);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.about__stats .stat .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.about__proof {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 10px;
}
.about__proof li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--navy-800);
  line-height: 1.5;
}
.about__proof li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-500); color: var(--cream-50);
  display: grid; place-items: center;
  flex-shrink: 0; font-size: 12px; font-weight: 700;
  margin-top: 1px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color .2s;
}
.faq__q:hover { color: var(--orange-600); }
.faq__q .toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-100);
  color: var(--orange-600);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s;
}
.faq__item[open] .toggle {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--cream-50);
}
.faq__a {
  padding: 0 60px 28px 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(244,122,43,0.18), transparent 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(255,183,106,0.10), transparent 60%),
    var(--navy-900);
  color: var(--cream-50);
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--cream-50);
  margin-bottom: 20px;
}
.cta-final h2 em { color: var(--orange-400); font-style: italic; font-weight: 400; }
.cta-final p {
  max-width: 58ch; margin: 0 auto 36px;
  color: rgba(255,244,234,0.72);
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.6;
}
.cta-final .urgency {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,244,234,0.6);
  font-weight: 500;
}
.cta-final .urgency .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 0 rgba(255,183,106,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,183,106,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,183,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,183,106,0); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,244,234,0.7);
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255,244,234,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: rgba(255,244,234,0.6); max-width: 30ch; line-height: 1.6; }
.footer h5 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-400);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer ul a { transition: color .2s; }
.footer ul a:hover { color: var(--orange-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,244,234,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,244,234,0.5);
}

/* ---------- Floating brand mark ---------- */
.floatmark {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 40;
  background: var(--cream-50);
  padding: 6px;
  transition: transform .2s;
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
}
.floatmark.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floatmark:hover { transform: translateY(-3px) scale(1.05); }
@media (max-width: 720px) { .floatmark { width: 48px; height: 48px; bottom: 16px; right: 16px; } }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 32px; }
