/* ============================================================
   Our Creative Works — Design System
   Brand: navy #13294B · crimson #C02435 · warm white #F7F5F0
   Fonts: Sora (headings) · Inter (body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (locked to logo) */
  --navy:        #13294B;
  --navy-800:    #1B3560;
  --navy-700:    #274279;
  --crimson:     #C02435;
  --crimson-600: #A81C2C;
  --crimson-400: #D8434F;

  /* Neutrals */
  --cream:       #F7F5F0;
  --white:       #FFFFFF;
  --ink:         #16233B;   /* body text on light */
  --muted:       #5A6478;   /* secondary text */
  --line:        #E4E2DB;   /* hairline borders */
  --line-dark:   rgba(255,255,255,.14);

  /* Typography */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --radius:    14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(19,41,75,.06);
  --shadow-md: 0 14px 40px -12px rgba(19,41,75,.18);
  --shadow-lg: 0 30px 70px -20px rgba(19,41,75,.30);

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

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--crimson); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--crimson-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--ink); }
:focus-visible { outline: 3px solid var(--crimson-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--crimson);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--crimson); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: .9rem; }

.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--crimson);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(192,36,53,.55);
}
.btn:hover { transform: translateY(-2px); color: #fff;
  box-shadow: 0 16px 30px -10px rgba(192,36,53,.6); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border-color: rgba(19,41,75,.22); box-shadow: none;
}
.btn--ghost:hover { --btn-fg: var(--navy); background: rgba(19,41,75,.05);
  border-color: var(--navy); box-shadow: none; }

.btn--on-dark { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: 0 12px 30px -12px rgba(0,0,0,.5); }
.btn--on-dark:hover { --btn-fg: var(--navy); color: var(--navy); }
.btn--ghost.btn--on-dark { --btn-bg: transparent; --btn-fg:#fff; border-color: var(--line-dark); }
.btn--ghost.btn--on-dark:hover { background: rgba(255,255,255,.08); border-color:#fff; color:#fff; }

.btn .btn-arrow { transition: transform .2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.textlink svg { transition: transform .2s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(19,41,75,.4);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 112px;
}
.nav__logo img { height: 90px; width: auto; }
/* Desktop: links + CTA sit on one balanced row, pushed to the right */
.nav__menu { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav__links {
  display: flex; align-items: center; gap: .35rem; list-style: none;
}
.nav__links a {
  display: block; padding: .55rem .85rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--navy);
}
.nav__links a:hover { background: rgba(19,41,75,.06); color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--crimson); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__cta .phone {
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
  font-size: .95rem; white-space: nowrap;
}
.nav__cta .phone:hover { color: var(--crimson); }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: none; background: transparent;
  cursor: pointer; border-radius: 10px; padding: 11px;
}
.nav__toggle span { display:block; height:2px; background: var(--navy); border-radius:2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle span + span { margin-top: 5px; }
.nav.is-open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 112px 0 auto 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    display: grid; gap: 1.25rem; padding: 1.5rem var(--gutter) 2rem;
    margin-left: 0;
    transform: translateY(-140%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__links a { padding: .8rem 1rem; font-size: 1.05rem; }
  .nav__cta { flex-direction: column; align-items: stretch; }
  .nav__cta .btn { justify-content: center; }
  .nav__cta .phone { text-align: center; padding: .4rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: clip; padding-block: clamp(3rem,7vw,5.5rem) clamp(3.5rem,8vw,6rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.1rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--crimson); }
.hero__lead { font-size: 1.22rem; color: var(--muted); max-width: 34ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__trust { display: flex; gap: 1.75rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero__trust .stat b {
  font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); display: block; line-height: 1;
}
.hero__trust .stat span { font-size: .85rem; color: var(--muted); }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__art img { width: min(420px, 100%); filter: drop-shadow(0 30px 50px rgba(19,41,75,.18)); }
.hero__ring {
  position: absolute; border-radius: 50%; border: 2px dashed rgba(19,41,75,.16);
  inset: -6% -6% -6% -6%; animation: spin 60s linear infinite;
}
.hero__ring--inner { inset: 10% 10%; border-color: rgba(192,36,53,.20); animation-duration: 45s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__ring { animation: none; } }

.hero__blob {
  position: absolute; z-index: -1; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(192,36,53,.10), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(19,41,75,.10), transparent 60%);
  top: -20%; right: -14%; filter: blur(10px);
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art img { width: min(300px, 70%); }
  .hero__lead { max-width: none; }
}

/* ============================================================
   Service cards
   ============================================================ */
.grid-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
@media (max-width: 900px){ .grid-services{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid-services{ grid-template-columns: 1fr;} }
/* Center a lone trailing card (e.g. a 7th service) on its own last row */
@media (min-width: 901px){
  .grid-services > :last-child:nth-child(3n+1){ grid-column: 2 / 3; }
}

.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::after {
  content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none;
  background: radial-gradient(140px 140px at 100% 0, rgba(192,36,53,.07), transparent 70%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(19,41,75,.14); }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff; margin-bottom: 1.25rem;
}
.card__icon svg { width: 30px; height: 30px; }
.card:nth-child(3n+2) .card__icon { background: linear-gradient(150deg, var(--crimson), var(--crimson-600)); }
.card h3 { color: var(--navy); font-weight: 800; margin-bottom: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 1.1rem; }
.card .textlink { color: var(--navy); }
.card .textlink:hover { color: var(--crimson); }

/* ============================================================
   Value / feature rows
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center;
}
@media (max-width: 820px){ .split{ grid-template-columns: 1fr; } }

.check-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: .85rem; align-items: start; }
.check-list li svg { margin-top: 3px; color: var(--crimson); flex: none; }
.check-list li b { font-family: var(--font-head); color: var(--navy); display: block; }
.check-list li span { color: var(--muted); font-size: .96rem; }

.media-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--navy), var(--navy-800));
  padding: clamp(2rem,4vw,3rem); color: #fff; min-height: 320px;
  display: grid; align-content: center; gap: 1rem;
}
.media-panel h3, .media-panel p { color: #fff; }
.media-panel p { color: rgba(255,255,255,.78); }
.media-panel .ring-deco { position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.18); }
.media-panel .ring-deco::after { content:""; position:absolute; inset: 40px; border-radius:50%;
  border: 2px solid rgba(192,36,53,.5); }

/* ============================================================
   Process steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; counter-reset: step; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr;} }
.step { position: relative; padding-top: 3.4rem; }
.step__num {
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff;
  background: var(--crimson);
  box-shadow: 0 8px 18px -8px rgba(192,36,53,.6);
}
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* ============================================================
   Stats band
   ============================================================ */
.band-navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy p { color: rgba(255,255,255,.78); }
.band-navy .eyebrow { color: var(--crimson-400); }
.band-navy .eyebrow::before { background: var(--crimson-400); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 700px){ .stats{ grid-template-columns: repeat(2,1fr);} }
.stats .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,5vw,3.2rem);
  color: #fff; line-height: 1; }
.stats .num .unit { color: var(--crimson-400); }
.stats .lbl { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .5rem; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 1.35rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q .ico { flex: none; width: 24px; height: 24px; position: relative; transition: transform .3s var(--ease); }
.faq__q .ico::before, .faq__q .ico::after {
  content:""; position:absolute; background: var(--crimson); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq__q .ico::before { width: 14px; height: 2px; }
.faq__q .ico::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.faq__item.is-open .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 1.35rem 1.25rem; color: var(--muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-600));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.5rem,5vw,4rem); text-align: center;
}
.cta h2 { color: #fff; margin-bottom: .8rem; }
.cta p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta .ring-deco { position: absolute; border-radius: 50%; border: 2px dashed rgba(255,255,255,.22); }
.cta .ring-deco--a { width: 260px; height: 260px; left: -80px; bottom: -110px; }
.cta .ring-deco--b { width: 180px; height: 180px; right: -50px; top: -70px; }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden;
  padding-block: clamp(3rem,6vw,4.5rem); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.8); margin-top: 1rem; max-width: 60ch; }
.page-hero .eyebrow { color: var(--crimson-400); }
.page-hero .eyebrow::before { background: var(--crimson-400); }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; font-family: var(--font-head); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.page-hero .ring-deco { position:absolute; right:-90px; top:-90px; width:300px; height:300px;
  border-radius:50%; border:2px dashed rgba(255,255,255,.14); }
.page-hero .ring-deco::after{ content:""; position:absolute; inset:55px; border-radius:50%;
  border:2px solid rgba(192,36,53,.4); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
@media (max-width: 820px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1.5rem; }
.contact-info .row { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.contact-info .row .ic { width:48px; height:48px; border-radius: 14px; display:grid; place-items:center;
  background: rgba(19,41,75,.06); color: var(--crimson); }
.contact-info .row b { font-family: var(--font-head); color: var(--navy); display:block; }
.contact-info .row a, .contact-info .row span { color: var(--muted); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem,3vw,2.25rem); box-shadow: var(--shadow-sm); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field.row2 { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px){ .field.row2{ grid-template-columns: 1fr; } }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: 10px; padding: .8rem .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--crimson-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(192,36,53,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select.just-set { border-color: var(--crimson); box-shadow: 0 0 0 4px rgba(192,36,53,.14); background: #fff; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__note { font-size: .82rem; color: var(--muted); }
.alert { border-radius: 10px; padding: .9rem 1.1rem; font-size: .95rem; }
.alert--ok { background: rgba(29,140,80,.1); color: #1D8C50; border: 1px solid rgba(29,140,80,.25); }
.alert--err { background: rgba(192,36,53,.08); color: var(--crimson-600); border: 1px solid rgba(192,36,53,.25); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: #fff; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand img { height: 112px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 34ch; }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: .7rem; color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-contact a { color: rgba(255,255,255,.9); }
.footer-contact a:hover { color: #fff; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s var(--ease), transform .2s var(--ease); }
.social a:hover { background: var(--crimson); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.75); }

/* Logo swap: footer uses white version via CSS filter if needed */
.footer-brand img { filter: brightness(0) invert(1); opacity: .95; }

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- Prose (rich text blocks) ---------- */
.prose p { margin-bottom: 1.1rem; color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 2rem 0 .8rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.skip-link { position:absolute; left:-9999px; top:0; background:#fff; color:var(--navy);
  padding:.6rem 1rem; z-index:200; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }

/* ============================================================
   Chips (tag lists) — used on landing pages
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .95rem; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--navy);
}
.chip svg { color: var(--crimson); flex: none; }
.band-navy .chip { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: #fff; }
.band-navy .chip svg { color: var(--crimson-400); }

/* Problem list (icon + text rows), works on light or navy */
.problem-list { list-style: none; display: grid; gap: 1rem; margin: 0; }
.problem-list li { display: grid; grid-template-columns: 30px 1fr; gap: .85rem; align-items: start; }
.problem-list li svg { margin-top: 2px; color: var(--crimson); flex: none; }
.band-navy .problem-list li svg { color: var(--crimson-400); }
.band-navy .problem-list li { color: rgba(255,255,255,.85); }

/* ============================================================
   Pricing / sprint cards
   ============================================================ */
.price-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.price-card {
  flex: 1 1 320px; max-width: 372px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--crimson); box-shadow: 0 22px 50px -22px rgba(192,36,53,.4); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--crimson); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card h3 { color: var(--navy); font-size: 1.55rem; font-weight: 800; margin-bottom: .85rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--crimson); line-height: 1; }
.price-card .price small { display: block; font-size: .82rem; font-weight: 500; color: var(--muted); margin-top: .4rem; letter-spacing: 0; }
.price-card .best-for { color: var(--crimson); font-weight: 600; font-family: var(--font-head); font-size: .92rem; margin: 1.1rem 0 .5rem; }
.price-card .desc { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.price-divider { border: none; border-top: 1px solid var(--line); margin: 0 0 1.15rem; }
.price-list { list-style: none; display: grid; gap: .55rem; margin: 0 0 1.6rem; }
.price-list li { display: grid; grid-template-columns: 19px 1fr; gap: .6rem; align-items: start; color: var(--ink); font-size: .92rem; }
.price-list li svg { margin-top: 3px; color: var(--crimson); flex: none; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   Announcement pill + Meet Avery (AI receptionist)
   ============================================================ */
.announce {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.2rem; padding: .5rem .95rem;
  border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--navy);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.announce:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--navy); }
.announce svg { color: var(--crimson); transition: transform .2s var(--ease); }
.announce:hover svg { transform: translateX(3px); }

.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--crimson); flex: none; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--crimson); animation: pulsering 1.9s ease-out infinite; }
@keyframes pulsering { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(3.2); opacity: 0; } }

.avery-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem; display: grid; gap: 1.5rem;
}
.avery-card .ring-deco { position: absolute; right: -70px; top: -70px; width: 220px; height: 220px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.14); }
.avery-head { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.avery-avatar { width: 62px; height: 62px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--crimson), var(--crimson-600)); color: #fff; }
.avery-avatar svg { width: 28px; height: 28px; }
.avery-head b { color: #fff; font-family: var(--font-head); font-size: 1.3rem; line-height: 1.1; display: block; }
.avery-role { color: rgba(255,255,255,.6); font-size: .85rem; }
.avery-live { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .3rem;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--crimson-400); }
.avery-live .pulse-dot, .avery-live .pulse-dot::after { background: var(--crimson-400); }

.waveform { display: flex; align-items: center; justify-content: center; gap: 5px; height: 54px; position: relative; z-index: 1; }
.waveform span { width: 5px; height: 12px; border-radius: 3px; background: var(--crimson-400); animation: averywave 1.1s ease-in-out infinite; }
.waveform span:nth-child(1){ animation-delay: -.90s }
.waveform span:nth-child(2){ animation-delay: -.50s }
.waveform span:nth-child(3){ animation-delay: -.70s }
.waveform span:nth-child(4){ animation-delay: -.20s }
.waveform span:nth-child(5){ animation-delay: -.60s }
.waveform span:nth-child(6){ animation-delay: -.05s }
.waveform span:nth-child(7){ animation-delay: -.80s }
.waveform span:nth-child(8){ animation-delay: -.30s }
.waveform span:nth-child(9){ animation-delay: -.55s }
.waveform span:nth-child(10){ animation-delay: -.40s }
.waveform span:nth-child(11){ animation-delay: -.75s }
@keyframes averywave { 0%,100% { height: 10px; opacity: .55; } 50% { height: 42px; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .pulse-dot::after, .waveform span { animation: none; }
  .waveform span { height: 26px; }
}
