/* =========================================================
   SparkLaunch — POLISH PASS
   Global rhythm, typography, cards, buttons, alignment.
   Loaded after styles.css; does not change structure or copy.
   ========================================================= */

:root {
  --space-section: clamp(96px, 11vw, 144px);
  --card-radius: 20px;
  --card-pad: clamp(26px, 2.4vw, 34px);
  --card-border: 1px solid rgba(23,36,50,0.08);
  --card-shadow: 0 1px 2px rgba(14,26,38,0.04), 0 12px 32px -18px rgba(14,26,38,0.14);
  --card-shadow-hover: 0 2px 4px rgba(14,26,38,0.05), 0 22px 48px -20px rgba(14,26,38,0.22);
  --hair: rgba(23,36,50,0.08);
  --max-w: 1160px;
}

/* ---------- Baseline ---------- */
body { font-size: 16.5px; line-height: 1.65; color: var(--ink-700); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.container { max-width: var(--max-w); }

/* ---------- Section rhythm ---------- */
.section { padding: var(--space-section) 0 !important; }
.section--cream { background: #FBF4E8; }

/* ---------- Section heads ---------- */
.section__head, .section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head .eyebrow, .section-head .eyebrow { margin-bottom: 20px; }
.section__head h2, .section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy-800);
}
.section__head .section__sub {
  margin: 18px auto 0;
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Type refinement ---------- */
h1, h2 { font-weight: 400; }
h1 { letter-spacing: -0.03em; }
h2 { letter-spacing: -0.022em; }
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-800);
  margin: 0;
}
.eyebrow { font-size: 11px; letter-spacing: 0.22em; gap: 12px; }
.eyebrow::before { width: 22px; }

/* ---------- Buttons unified ---------- */
.btn-primary, .btn-ghost, .btn-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  line-height: 1;
  transition: transform .18s ease, box-shadow .22s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(224,87,34,0.5), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(224,87,34,0.6), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(23,36,50,0.18);
}
.btn-ghost:hover {
  background: var(--navy-800); color: var(--cream-50); border-color: var(--navy-800);
  transform: translateY(-1px);
}
.btn-on-dark {
  background: transparent; color: var(--cream-50);
  border-color: rgba(255,244,234,0.28);
}
.btn-on-dark:hover { background: var(--cream-50); color: var(--navy-800); border-color: var(--cream-50); }

/* ---------- Nav ---------- */
.nav { border-bottom: 1px solid rgba(23,36,50,0.06); }
.nav__inner { padding-top: 16px; padding-bottom: 16px; }
.nav__brand img, .nav__logo img { height: 52px; }
.nav__links { gap: 30px; font-size: 14px; color: var(--ink-700); }
.nav__cta { padding: 11px 18px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(72px, 9vw, 120px) 0 clamp(88px, 11vw, 140px); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }
.hero__tag { margin-bottom: 28px; font-size: 12.5px; padding: 7px 14px; }
.hero h1 {
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 80px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em { font-weight: 400; }
.hero__sub {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__proof {
  display: flex; flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 13.5px;
  color: var(--ink-500);
  list-style: none; padding: 28px 0 0; margin: 0;
  border-top: 1px solid var(--hair);
}
.hero__proof li { display: inline-flex; align-items: baseline; gap: 8px; }
.hero__proof strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

/* ---------- Unified card system ---------- */
.step, .scenario, .svc, .project, .faq__item {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-pad);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.step:hover, .scenario:hover, .svc:hover, .project:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(23,36,50,0.12);
}

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step__num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 40px; line-height: 1;
  color: var(--orange-500);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.step__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-100);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-500); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ---------- Scenarios ---------- */
.scenarios {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .scenarios { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .scenarios { grid-template-columns: 1fr; } }
.scenario__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-100), #FFE8CF);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.scenario h3 { margin-bottom: 10px; font-size: 19px; }
.scenario p { color: var(--ink-500); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.scenario__tags {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 10px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  font-size: 12.5px; color: var(--ink-500);
  font-weight: 500;
}
.scenario__tags span:nth-child(even) { color: var(--orange-500); font-size: 10px; }

/* ---------- Services ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { position: relative; overflow: hidden; }
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange-500);
  opacity: 0; transition: opacity .25s ease;
}
.svc:hover::before { opacity: 1; }
.svc__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cream-100);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.svc h3 { margin-bottom: 8px; }
.svc > p { color: var(--ink-500); font-size: 15px; margin: 0 0 22px; line-height: 1.55; }
.svc__list {
  list-style: none; padding: 22px 0 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
  border-top: 1px solid var(--hair);
}
@media (max-width: 520px) { .svc__list { grid-template-columns: 1fr; } }
.svc__list li {
  position: relative; padding-left: 16px;
  font-size: 14.5px; color: var(--ink-700); line-height: 1.5;
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange-500);
}

/* ---------- Portfolio ---------- */
.portfolio {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .portfolio { grid-template-columns: 1fr; } }
.project { padding: 0; overflow: hidden; }
.project__img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(23,36,50,0.06);
  position: relative; overflow: hidden;
}
.project__body { padding: var(--card-pad); }
.project__type {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.project h3 { margin-bottom: 10px; font-size: 22px; }
.project__body > p { color: var(--ink-500); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.project__meta {
  list-style: none; padding: 20px 0 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  border-top: 1px solid var(--hair);
  font-size: 13px; color: var(--ink-500); font-weight: 500;
}
.project__meta li { display: inline-flex; align-items: center; gap: 8px; }
.project__meta li + li::before {
  content: "✦"; color: var(--orange-500); font-size: 10px;
  margin-right: 12px; margin-left: -12px;
}

/* ---------- Pricing ---------- */
.pricing__hero {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 32px;
}
@media (max-width: 820px) { .pricing__hero { grid-template-columns: 1fr; } }
.pricing__hero-left {
  padding: clamp(32px, 3vw, 48px);
  background: linear-gradient(160deg, var(--cream-50), var(--cream-100));
  border-right: 1px solid rgba(23,36,50,0.06);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 820px) { .pricing__hero-left { border-right: 0; border-bottom: 1px solid rgba(23,36,50,0.06); } }
.pricing__hero-left .eyebrow { margin-bottom: 14px; }
.pricing__hero-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 112px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--navy-800);
  margin-bottom: 18px;
}
.pricing__hero-left p { font-size: 14px; color: var(--ink-500); margin: 0 0 10px; }
.pricing__range {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(244,122,43,0.12);
  color: var(--orange-600);
  font-size: 13px; font-weight: 600;
  align-self: flex-start;
}
.pricing__hero-right {
  padding: clamp(32px, 3vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
}
.pricing__hero-right h3 { margin-bottom: 14px; font-size: 26px; }
.pricing__hero-right p { color: var(--ink-500); font-size: 15.5px; line-height: 1.6; margin: 0 0 24px; }
.pricing__hero-right .btn-primary { align-self: flex-start; }

.pricing__grid {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) { .pricing__grid { grid-template-columns: 1fr; } }
.pricing__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(23,36,50,0.06);
  font-size: 15px;
  color: var(--navy-800);
}
.pricing__row:nth-child(odd) { border-right: 1px solid rgba(23,36,50,0.06); }
@media (max-width: 720px) { .pricing__row:nth-child(odd) { border-right: 0; } }
.pricing__grid .pricing__row:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 720px) {
  .pricing__grid .pricing__row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(23,36,50,0.06); }
  .pricing__grid .pricing__row:last-child { border-bottom: 0; }
}
.svc-price {
  font-family: var(--font-display);
  font-weight: 500; font-size: 16px;
  color: var(--orange-600);
  letter-spacing: -0.005em;
}
.pricing__note {
  margin-top: 32px;
  background: var(--navy-800);
  border: 0;
  color: var(--cream-100);
  border-radius: var(--card-radius);
  padding: clamp(28px, 3vw, 40px);
}
.pricing__note h4 {
  color: var(--orange-400);
  font-family: var(--font-sans);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0 0 14px;
}
.pricing__note p { color: rgba(255,244,234,0.78); font-size: 15.5px; line-height: 1.65; max-width: 72ch; margin: 0; }

/* ---------- Chips ---------- */
.chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  max-width: 820px; margin: 0 auto;
}
.chip {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: var(--card-border);
  color: var(--navy-800);
  font-size: 14px; font-weight: 500;
  box-shadow: 0 1px 2px rgba(14,26,38,0.04);
}

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .about { grid-template-columns: 1fr; } }
.about__portrait {
  position: relative;
  background: var(--navy-800);
  color: var(--cream-50);
  border: 0;
  border-radius: var(--card-radius);
  padding: clamp(36px, 4vw, 56px);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.about__watermark {
  position: absolute;
  right: -40px; bottom: -120px;
  font-family: var(--font-display);
  font-weight: 400; font-size: 440px; line-height: 1;
  color: rgba(255,244,234,0.04);
  pointer-events: none; user-select: none;
}
.about__monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500; font-size: 17px;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.about__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--cream-50);
  margin: 0 0 28px;
  position: relative; z-index: 1;
}
.about__quote em { font-style: italic; color: var(--orange-400); font-weight: 400; }
.about__attrib {
  padding-top: 22px;
  border-top: 1px solid rgba(255,244,234,0.15);
  display: flex; flex-direction: column; gap: 2px;
  position: relative; z-index: 1;
}
.about__attrib strong { font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--cream-50); }
.about__attrib span { font-size: 13px; color: rgba(255,244,234,0.6); }

.about__copy .eyebrow { margin-bottom: 18px; }
.about__copy h2 { margin-bottom: 22px; }
.about__copy > p { color: var(--ink-500); font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.about__proof {
  list-style: none; padding: 28px 0 0; margin: 28px 0 0;
  border-top: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 12px;
}
.about__proof li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--navy-800);
}
.about__proof .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.about__stats > div { display: flex; flex-direction: column; gap: 4px; }
.about__stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--orange-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__stats span { font-size: 12.5px; color: var(--ink-500); letter-spacing: 0.01em; }

/* ---------- FAQ ---------- */
.faq__list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 840px; margin: 0 auto;
}
.faq__item { padding: 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-800);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-100);
  color: var(--navy-800);
  font-size: 16px; font-weight: 500;
  transition: transform .25s ease, background .2s, color .2s;
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); background: var(--orange-500); color: #fff; }
.faq__body { padding: 0 26px 24px; color: var(--ink-500); font-size: 15.5px; line-height: 1.65; }
.faq__body p { margin: 0; }

/* ---------- Ticker ---------- */
.ticker {
  padding: 22px 0;
  background: var(--navy-800);
  color: var(--cream-100);
  overflow: hidden;
  border-top: 1px solid rgba(255,244,234,0.06);
  border-bottom: 1px solid rgba(255,244,234,0.06);
}
.ticker__track {
  display: inline-flex; gap: 40px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  padding-left: 40px;
}
.ticker__track span:nth-child(even) { color: var(--orange-400); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 82% 22%, rgba(244,122,43,0.18), transparent 60%),
    radial-gradient(40% 50% at 15% 80%, rgba(255,183,106,0.08), transparent 60%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-final .hero__tag { background: rgba(244,122,43,0.15); color: var(--orange-400); }
.cta-final h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  color: var(--cream-50);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 22px 0 20px;
}
.cta-final h2 em { color: var(--orange-400); font-weight: 400; }
.cta-final p {
  color: rgba(255,244,234,0.72);
  font-size: 17px; line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 32px;
}
.cta-final .hero__ctas { justify-content: center; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,244,234,0.7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,244,234,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 40px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,244,234,0.6); font-size: 14px; line-height: 1.6; max-width: 34ch; margin: 0; }
.footer h5 {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-400);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,244,234,0.72); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--orange-400); }
.footer li { font-size: 14px; }
.footer__base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,244,234,0.08);
  font-size: 12.5px;
  color: rgba(255,244,234,0.5);
  letter-spacing: 0.01em;
}
@media (max-width: 620px) { .footer__base { flex-direction: column; gap: 8px; text-align: center; } }

/* ---------- Micro polish ---------- */
::selection { background: var(--orange-500); color: #fff; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Hero copy polish ---------- */
.hero h1 { text-wrap: balance; max-width: 15ch; }
.hero__copy .hero__sub { text-wrap: pretty; max-width: 50ch; }
.hero-br { display: inline; }
@media (min-width: 760px) { .hero-br { display: block; } }


/* ---------- Spark hero asset ---------- */
.hero__visual--asset {
  position: relative;
  max-width: 700px;
  margin-left: auto;
  filter: drop-shadow(0 32px 52px rgba(14, 26, 38, 0.08));
}
.hero__visual-image {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 980px) {
  .hero__visual--asset {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media (max-width: 760px) {
  .hero__visual--asset {
    max-width: 100%;
    padding-inline: 4px;
  }
}
/* ---------- End Spark hero asset ---------- */

/* =========================================================
   HERO COMPOSITION — final polish pass
   Rebalance scale, reduce empty space, unify the composition.
   ========================================================= */

@media (min-width: 980px) {
  /* Give the visual more room; let it breathe as one block */
  .hero__inner {
    grid-template-columns: 1.02fr 1.12fr;
    gap: clamp(40px, 4.5vw, 72px);
    align-items: center;
  }
  .hero__copy { max-width: 560px; }
}

/* Hero visual frame — scale up, remove awkward negative space */
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 4.3;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}
@media (min-width: 1180px) {
  .hero__visual { max-width: 680px; aspect-ratio: 5 / 4.2; }
}

/* ---- Laptop: clear focal point ---- */
.hv-laptop {
  left: 0; top: 6%;
  width: 82%;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 1px 2px rgba(14,26,38,0.08),
    0 30px 60px -20px rgba(14,26,38,0.28),
    0 12px 24px -12px rgba(14,26,38,0.18);
  border-radius: 16px;
  z-index: 2;
}

/* ---- Phone: tighter, legible, supportive ---- */
.hv-phone {
  right: 0; top: -2%;
  width: 24%;
  aspect-ratio: 9 / 18.5;
  transform: rotate(3deg);
  padding: 5px;
  border-radius: 26px;
  box-shadow: 0 22px 44px -16px rgba(14,26,38,0.3), 0 6px 14px -6px rgba(14,26,38,0.2);
  z-index: 3;
}
.hv-phone .screen, .hv-phone__screen { padding: 12px 9px; gap: 7px; }
.hv-phone .p-hero, .hv-phone__hero { height: 44px; }
.hv-phone .p-row { height: 5px; }
.hv-phone .p-row.w60 { height: 6px; }
.hv-phone .p-btn { height: 18px; }
/* mobile-mock fallback shape if elements render as text */
.hv-phone__notch { width: 34%; height: 12px; border-radius: 99px; background: var(--navy-800); margin: 0 auto 6px; }

/* ---- Dark center/social card: quieted, supportive only ---- */
.hv-social {
  left: 4%; bottom: 2%;
  width: 30%;
  padding: 10px;
  transform: rotate(-4deg);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 38px -18px rgba(14,26,38,0.22), 0 4px 10px -4px rgba(14,26,38,0.12);
  z-index: 4;
  opacity: 0.98;
}
.hv-social .img, .hv-social__img {
  height: 64px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,183,106,0.55), transparent 60%),
    linear-gradient(145deg, #2B3D55, #172432);
}
.hv-social .img::after, .hv-social__img::after {
  font-size: 20px;
  opacity: 0.85;
}

/* ---- Ticket card: lighter supporting layer ---- */
.hv-ticket {
  right: 4%; bottom: 6%;
  width: 30%;
  padding: 12px 14px;
  transform: rotate(2deg);
  border-radius: 14px;
  background: var(--navy-800);
  box-shadow: 0 18px 38px -18px rgba(14,26,38,0.3);
  z-index: 3;
}
.hv-ticket .t-title, .hv-ticket__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.hv-ticket .ticket-badge, .hv-ticket__badge {
  font-size: 8.5px;
  padding: 3px 7px;
  margin-bottom: 8px;
}
.hv-ticket .t-btn, .hv-ticket__cta {
  height: 18px;
  font-size: 10.5px;
}

/* ---- Floater: smaller, tucked in, less busy ---- */
.hv-floater {
  width: 54px; height: 54px;
  right: 26%; top: -2%;
  border-radius: 14px;
  padding: 8px;
  transform: rotate(-6deg);
  box-shadow: 0 14px 28px -12px rgba(14,26,38,0.22);
  z-index: 5;
}

/* ---- Tighter breakpoints so the composition stays composed ---- */
@media (max-width: 1100px) {
  .hv-laptop { width: 84%; }
  .hv-phone { width: 25%; }
  .hv-social { width: 32%; }
  .hv-ticket { width: 32%; }
}
@media (max-width: 980px) {
  .hero__visual { max-width: 560px; margin: 0 auto; aspect-ratio: 5 / 4.2; }
}
@media (max-width: 620px) {
  .hero__visual { aspect-ratio: 5 / 4.6; }
  .hv-laptop { width: 88%; }
  .hv-phone { width: 28%; }
  .hv-social { width: 36%; }
  .hv-ticket { width: 36%; }
  .hv-floater { width: 46px; height: 46px; }
}

/* Keep any stray ticket/phone text from overflowing */
.hv-ticket, .hv-phone, .hv-social { overflow: hidden; }

/* ---------- Selected Work — Editorial Refinement ---------- */
.portfolio { gap: 36px; }
@media (min-width: 1100px) { .portfolio { gap: 40px; } }

.project { border-radius: 6px; border: 1px solid rgba(23,36,50,0.08); background: #fff; }
.project:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -20px rgba(14,26,38,0.18); }

/* Editorial cover — replaces the gimmicky mockups */
.project__img { aspect-ratio: 16 / 10; border-bottom: 1px solid rgba(23,36,50,0.06); }
.project__img .cover {
  width: 100%; height: 100%;
  padding: 28px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.project__img .cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.12));
  pointer-events: none;
}
.cover__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; position: relative; z-index: 2;
}
.cover__num {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.72;
}
.cover__cat {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.9;
}
.cover__title {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.02;
  position: relative; z-index: 2;
  margin: 0;
}
.cover__title em { font-style: italic; font-weight: 400; }
.cover__meta {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.72;
  position: relative; z-index: 2;
}

/* Cover palettes — restrained, cohesive */
.cover--1 { background: linear-gradient(160deg, #1a2a3d 0%, #0E1A26 100%); color: #FFF4EA; }
.cover--1 .cover__title em { color: #F6A15E; }
.cover--2 { background: linear-gradient(160deg, #2a1d3d 0%, #150c20 100%); color: #FFF4EA; }
.cover--2 .cover__title em { color: #F47A2B; }
.cover--3 { background: #FFF4EA; color: #0E1A26; border-bottom-color: rgba(23,36,50,0.1); }
.cover--3 .cover__title em { color: #F47A2B; }
.cover--4 { background: linear-gradient(160deg, #0E1A26 0%, #05080B 100%); color: #FFF4EA; }
.cover--4 .cover__title em { color: #F6A15E; }

/* Body hierarchy — tighten, clarify */
.project__body { padding: 30px 32px 28px; display: flex; flex-direction: column; gap: 0; }
.project__type {
  position: static !important;
  padding: 0 !important; background: none !important; backdrop-filter: none !important;
  color: var(--orange-600) !important;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px !important;
}
.project h3 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 23px; font-weight: 500; line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-800, #0E1A26);
  margin: 0 0 12px;
}
.project__body > p {
  color: var(--ink-500, #54606E); font-size: 15px; line-height: 1.65;
  margin: 0 0 22px;
}
.project__meta {
  list-style: none; padding: 20px 0 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  border-top: 1px solid rgba(23,36,50,0.08);
  font-size: 13px; color: var(--ink-500, #54606E); font-weight: 500;
}
.project__meta li { display: inline-flex; align-items: center; }
.project__meta li + li::before {
  content: "·"; color: rgba(23,36,50,0.3); font-size: 16px;
  margin-right: 22px; margin-left: -12px;
}

@media (max-width: 880px) {
  .project__img .cover { padding: 22px 24px; }
  .cover__title { font-size: 30px; }
  .project__body { padding: 26px 24px 24px; }
  .project h3 { font-size: 21px; }
}

/* ---------- Selected Work — Real image integration ---------- */
.project__img {
  aspect-ratio: 16 / 10;
  margin: 0; padding: 0;
  position: relative; overflow: hidden;
  background: #0E1A26;
  border-bottom: 1px solid rgba(23,36,50,0.08);
}
.project__img > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project:hover .project__img > img { transform: scale(1.025); }
.project__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,38,0) 55%, rgba(14,26,38,0.55) 100%);
  pointer-events: none;
}
.project__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  color: #FFF4EA;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 2;
}
.project__caption span:last-child {
  padding: 4px 10px;
  border: 1px solid rgba(255,244,234,0.6);
  border-radius: 2px;
  letter-spacing: 0.18em;
}
/* Neutralize legacy cover/pm-* styles if any still render */
.project__img .cover, .project__img .pm,
.project__img .pm-portugal, .project__img .pm-halloween,
.project__img .pm-biz, .project__img .pm-dash { display: none !important; }

@media (max-width: 880px) {
  .project__caption { padding: 14px 18px; font-size: 10px; }
}

/* ============================================================
   FINAL POLISH PASS — sections below hero
   ============================================================ */

/* ---------- Selected Work — additional polish ---------- */
.project { border-radius: 8px; }
.project__body {
  padding: 32px 34px 30px;
}
.project__type {
  color: var(--orange-600, #C9541F);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.project h3 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 24px; font-weight: 500; line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
}
.project__body > p {
  font-size: 15px; line-height: 1.65;
  margin: 0 0 24px;
  color: var(--ink-500, #54606E);
}
.project__meta {
  padding-top: 22px;
  gap: 8px 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-700, #2E3A48);
  font-weight: 500;
}
.project__meta li { padding-right: 18px; margin-right: 18px; position: relative; }
.project__meta li + li::before { content: none; }
.project__meta li:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--orange-500, #F47A2B); transform: translateY(-50%);
}
@media (max-width: 880px) {
  .project__body { padding: 26px 24px 24px; }
  .project h3 { font-size: 21px; }
}

/* ---------- Pricing — polish + premium note ---------- */
.pricing__hero { border-radius: 10px; }
.pricing__hero-num {
  font-family: var(--font-display, 'Fraunces', serif);
  letter-spacing: -0.02em;
}
.pricing__grid {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(23,36,50,0.08);
}
.pricing__row {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(23,36,50,0.06);
  transition: background 0.2s ease;
}
.pricing__row:last-child { border-bottom: none; }
.pricing__row:hover { background: rgba(244,122,43,0.04); }
.pricing__row .svc-price {
  font-family: var(--font-display, 'Fraunces', serif);
  font-weight: 500;
  color: var(--navy-800, #0E1A26);
  letter-spacing: -0.01em;
}

.pricing__note {
  margin-top: 40px;
  padding: 36px 40px;
  background: var(--navy-800, #172432);
  color: #FFF4EA;
  border-radius: 10px;
  border: none;
  display: grid;
  grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 860px) {
  .pricing__note {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    padding: 44px 48px;
    align-items: center;
  }
}
.pricing__note .eyebrow {
  color: rgba(246,161,94,0.9) !important;
  font-size: 11px; letter-spacing: 0.24em;
  font-weight: 600; text-transform: uppercase;
  display: block; margin-bottom: 0;
}
.pricing__note h4 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(22px, 2.2vw, 28px); font-weight: 500;
  letter-spacing: -0.012em; line-height: 1.2;
  color: #FFF4EA; margin: 0;
}
.pricing__note p {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,244,234,0.82);
  margin: 0;
}

/* ---------- About — hierarchy polish ---------- */
.about__portrait {
  border-radius: 12px;
  border: 1px solid rgba(23,36,50,0.08);
}
.about__quote {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400; line-height: 1.35;
  letter-spacing: -0.01em;
}
.about__quote em {
  font-style: italic;
  color: var(--orange-500, #F47A2B);
}
.about__copy h2 { letter-spacing: -0.012em; }
.about__copy > p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-500, #54606E);
}
.about__proof {
  list-style: none; padding: 0; margin: 22px 0 28px;
  display: grid; gap: 12px;
}
.about__proof li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5;
  color: var(--ink-700, #2E3A48);
}
.about__proof .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,122,43,0.12);
  color: var(--orange-600, #C9541F);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(23,36,50,0.08);
}
.about__stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.about__stats strong {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 28px; font-weight: 500;
  color: var(--navy-800, #0E1A26);
  letter-spacing: -0.015em; line-height: 1;
}
.about__stats span {
  font-size: 12px; color: var(--ink-500, #54606E);
  font-weight: 500;
}

/* ---------- FAQ — premium accordion ---------- */
.faq__list {
  border-top: 1px solid rgba(23,36,50,0.08);
}
.faq__item {
  border-bottom: 1px solid rgba(23,36,50,0.08);
  padding: 0;
  background: transparent;
}
.faq__item summary {
  padding: 22px 4px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 18px; font-weight: 500;
  color: var(--navy-800, #0E1A26);
  list-style: none;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange-600, #C9541F); }
.faq__toggle {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(23,36,50,0.05);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; color: var(--navy-800, #0E1A26);
  transition: all 0.25s ease;
}
.faq__item[open] .faq__toggle {
  background: var(--orange-500, #F47A2B);
  color: #FFF4EA;
  transform: rotate(45deg);
}
.faq__body {
  padding: 0 4px 24px;
}
.faq__body p {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-500, #54606E);
  margin: 0; max-width: 760px;
}

/* ---------- Chips (Who I work with) — polish ---------- */
.chips { gap: 10px; }
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23,36,50,0.12);
  background: #fff;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-700, #2E3A48);
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: var(--orange-500, #F47A2B);
  color: var(--orange-600, #C9541F);
}

/* ---------- Footer — refinement ---------- */
.footer__brand img { height: 40px; margin-bottom: 14px; }
.footer h5 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { transition: opacity 0.2s ease; }
.footer ul a:hover { opacity: 0.7; }
.footer__base {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,244,234,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; opacity: 0.6;
}

/* ---------- Hero — micro polish only ---------- */
.hero__proof {
  gap: 32px;
}
.hero__proof strong {
  font-family: var(--font-display, 'Fraunces', serif);
  letter-spacing: -0.015em;
}

/* ---------- Mobile QA safety ---------- */
@media (max-width: 640px) {
  .pricing__row { padding: 16px 18px; font-size: 14px; }
  .pricing__note { padding: 28px 24px; }
  .about__stats { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; }
  .about__stats strong { font-size: 24px; }
  .faq__item summary { font-size: 16px; padding: 18px 2px; }
  .project__caption { font-size: 9.5px; padding: 12px 16px; }
}
