/* ============================================================
   EvoVero — Design System
   Premium navy/blue, flowing ribbon motif, fully rounded.
   ============================================================ */

:root {
  /* Brand palette — Omaha Masonry: charcoal + brick + warm stone */
  --char:        #23252B;
  --char-deep:   #17181D;
  --char-abyss:  #101115;
  --brick:       #B5452C;
  --brick-bright:#D96A45;
  --brick-light: #E8A88F;
  --white:       #FAFAFA;

  /* Functional surfaces */
  --canvas:      #F8F6F1;   /* warm off-white page bg */
  --surface:     #FFFFFF;   /* cards */
  --surface-2:   #F1EDE4;   /* recessed */
  --ink:         #26231E;   /* near-black warm text on light */
  --ink-soft:    #57514A;   /* muted body on light */
  --line:        #E7E1D5;   /* hairline */

  /* On-dark text */
  --on-dark:        #F6F4F0;
  --on-dark-soft:   #C9C2B8;
  --on-dark-faint:  rgba(255,255,255,.10);

  /* Gradients */
  --grad-hero: radial-gradient(120% 120% at 80% -10%, #3A2C25 0%, rgba(58,44,37,0) 55%),
               radial-gradient(90% 90% at 0% 110%, #4A2E22 0%, rgba(74,46,34,0) 50%),
               linear-gradient(160deg, #26221F 0%, #17181D 55%, #101115 100%);
  --grad-blue: linear-gradient(135deg, var(--brick-bright) 0%, var(--brick) 60%, #8E3320 120%);
  --grad-text: linear-gradient(100deg, #FFFFFF 0%, #F3CDB2 55%, #E8A88F 100%);

  /* Radius */
  --r-xs:  8px;
  --r-sm:  12px;
  --r:     16px;
  --r-lg:  22px;
  --r-xl:  30px;
  --r-pill: 999px;

  /* Shadows — soft, warm-tinted */
  --sh-sm: 0 2px 8px rgba(46,36,28,.07);
  --sh:    0 14px 36px rgba(46,36,28,.11), 0 2px 6px rgba(46,36,28,.05);
  --sh-lg: 0 30px 70px rgba(38,28,22,.17), 0 6px 16px rgba(38,28,22,.07);
  --sh-glow: 0 18px 50px rgba(181,69,44,.32);

  /* Type */
  --font-head: 'Archivo', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --maxw-wide: 1320px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 132px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { border-radius: var(--r); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.12rem; }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--maxw-wide); }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brick); padding: 7px 14px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.eyebrow--on-dark { color: var(--brick-light); background: rgba(232,168,143,.10); border-color: rgba(232,168,143,.20); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brick-bright); box-shadow: 0 0 0 4px rgba(217,106,69,.20); }
.section-head { max-width: 740px; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 70px rgba(181,69,44,.42); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brick-light); background: var(--surface); }
.btn--on-dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.btn--on-dark:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--brick); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease, padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  padding-block: 13px; border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Blur/solid bar treatment (applied when stuck, and always on inner pages) */
.nav.is-stuck, .nav--solid {
  background: rgba(248,246,241,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line); box-shadow: var(--sh-sm);
}
.nav.is-stuck { padding-block: 11px; }

/* Homepage only: hide at the very top, reveal once the user scrolls */
.nav--hero { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.nav--hero.is-stuck { transform: none; opacity: 1; pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand img { height: 34px; width: auto; border-radius: 9px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--surface-2); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after { content:''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease; }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 12px; min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease; z-index: 110;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); align-items: flex-start; }
.drop a:hover { background: var(--surface-2); }
.drop .ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; }
.drop .ic svg { width: 19px; height: 19px; }
.drop .t { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); }
.drop .d { display: block; margin-top: 3px; font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   Hero (sticky stacked-reveal base)
   ============================================================ */
.hero {
  position: sticky; top: 0; z-index: 0;
  min-height: 100svh; display: flex; align-items: center;
  background: var(--grad-hero); color: var(--on-dark);
  overflow: hidden; isolation: isolate;
}
/* Everything after the hero rides above it so the pinned hero never bleeds through */
.after-hero { position: relative; z-index: 1; }
.hero__ribbon { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .9; }
.hero__ribbon svg { position: absolute; width: 140%; height: auto; left: -20%; }
.hero__grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; width: 100%; }
.hero h1 { color: #fff; }
.hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--on-dark-soft); max-width: 540px; line-height: 1.55; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; color: var(--on-dark-soft); font-size: .9rem; }
.hero__trust .star { color: #FFC861; }
.hero__trust b { color: #fff; font-family: var(--font-head); }

/* Hero visual — built "results" card, no photo */
.hero__visual { position: relative; }
.glass-card {
  background: linear-gradient(165deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--sh-lg); backdrop-filter: blur(10px);
}
.glass-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.glass-head .t { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff; }
.glass-head .t .pulse { width: 9px; height: 9px; border-radius: 50%; background: #6BE0A0; box-shadow: 0 0 0 4px rgba(107,224,160,.18); }
.glass-head .live { font-size: .72rem; font-weight: 600; color: #6BE0A0; background: rgba(107,224,160,.12); padding: 5px 11px; border-radius: var(--r-pill); }
.glass-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.glass-chips span { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--on-dark); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 7px 13px; border-radius: var(--r-pill); }
.glass-chips span svg { width: 14px; height: 14px; color: var(--brick-light); }
.glass-bars { display: flex; align-items: flex-end; gap: 10px; height: 116px; margin-top: 18px; }
.glass-bars i { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--brick-bright), rgba(217,106,69,.25)); display: block; }
.lead-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 13px 16px; margin-top: 14px; }
.lead-pill .av { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-blue); flex: none; display:grid; place-items:center; color:#fff; font-family:var(--font-head); font-weight:600; font-size:.85rem;}
.lead-pill .tx { font-size: .85rem; color: var(--on-dark); line-height: 1.3; }
.lead-pill .tx b { color: #fff; font-family: var(--font-head); }
.lead-pill .badge { margin-left: auto; font-size: .72rem; font-weight: 600; color: #7BFFB0; background: rgba(46,204,113,.14); padding: 5px 10px; border-radius: var(--r-pill); white-space: nowrap; }

/* ============================================================
   Panel that rises OVER the sticky hero (stacked reveal)
   ============================================================ */
.over-hero { position: relative; z-index: 3; margin-top: -42px; border-radius: var(--r-xl) var(--r-xl) 0 0; background: var(--canvas); box-shadow: 0 -30px 60px rgba(8,14,32,.28); }
.panel { position: relative; background: var(--canvas); }
.panel--dark { background: var(--char-deep); color: var(--on-dark); }
.panel--dark h2, .panel--dark h3 { color: #fff; }
.panel--dark p { color: var(--on-dark-soft); }
.panel--rise { border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: -36px; z-index: 3; box-shadow: 0 -24px 50px rgba(8,14,32,.16); }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(232,168,143,.5); }
.card .ic, .feat-ic {
  width: 54px; height: 54px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); margin-bottom: 20px;
}
.card .ic svg, .feat-ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; color: var(--ink); }
.card p { font-size: .98rem; color: var(--ink-soft); }
.card__link { margin-top: 18px; }

.card--dark { background: linear-gradient(165deg, #2B2723, #1D1B18); border-color: rgba(232,168,143,.14); color: var(--on-dark); }
.card--dark h3 { color: #fff; } .card--dark p { color: var(--on-dark-soft); }
.card--feature { display: flex; flex-direction: column; }

/* number-led step cards (white, dark text — always readable on dark panels) */
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh); position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.step__n { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; letter-spacing: -.04em;
  background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .95; }
.step h3 { margin: 14px 0 10px; color: var(--ink); }
.step p { color: var(--ink-soft); }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); letter-spacing: -.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--on-dark-soft); font-size: .95rem; }

/* ============================================================
   Pricing / stages (no fixed numbers)
   ============================================================ */
.stage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease; }
.stage:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.stage__tag { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); }
.stage h3 { margin: 12px 0; color: var(--ink); }
.stage p { color: var(--ink-soft); }
.stage ul { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.stage li { display: flex; gap: 11px; font-size: .96rem; color: var(--ink-soft); }
.stage li svg { flex: none; width: 19px; height: 19px; color: var(--brick); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 6px 24px; margin-bottom: 14px; box-shadow: var(--sh-sm); transition: box-shadow .25s; }
.faq details[open] { box-shadow: var(--sh); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s, background .25s, color .25s; color: var(--brick); }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--grad-blue); color: #fff; border-color: transparent; }
.faq p { padding: 0 0 20px; font-size: .98rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--grad-hero); color: var(--on-dark); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
.cta-band h2 { color: #fff; position: relative; z-index: 2; }
.cta-band p { color: var(--on-dark-soft); position: relative; z-index: 2; max-width: 560px; margin: 16px auto 0; }
.cta-band .hero__cta { justify-content: center; position: relative; z-index: 2; }
.cta-band .hero__ribbon { opacity: .55; }

/* ============================================================
   Footer
   ============================================================ */
.footer { position: relative; z-index: 1; background: var(--char-abyss); color: var(--on-dark-soft); padding-block: 70px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; }
.footer p { color: var(--on-dark-soft); font-size: .95rem; margin-top: 16px; max-width: 300px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: var(--on-dark-soft); font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .86rem; }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   Scroll reveal + progress
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-blue); transition: width .1s linear; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero { position: relative; min-height: auto; padding-block: 130px 70px; }
  .over-hero, .panel--rise { margin-top: 0; border-radius: 0; box-shadow: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .grid-3, .grid-4, .stats, .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 12px; box-shadow: var(--sh-lg); gap: 2px; }
  .nav.is-open .nav__links a { padding: 13px 16px; }
  .drop { position: static; transform: none; min-width: 0; grid-template-columns: 1fr; box-shadow: none; border: none; padding: 4px 0 4px 12px; opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stats, .footer__top { grid-template-columns: 1fr; }
  .card, .step, .stage { padding: 24px; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .footer__top { gap: 30px; }
}

/* ============================================================
   Inner pages — page hero + body
   ============================================================ */
.page-hero { position: relative; background: var(--grad-hero); color: var(--on-dark); overflow: hidden; isolation: isolate; padding: 142px 0 clamp(64px, 8vw, 104px); }
.page-hero .hero__ribbon { opacity: .85; }
.page-hero__inner { position: relative; z-index: 2; max-width: 840px; }
.page-hero h1 { color: #fff; margin-top: 18px; }
.page-hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--on-dark-soft); margin-top: 18px; max-width: 640px; font-size: clamp(1.05rem,1.5vw,1.25rem); line-height: 1.55; }
.page-hero .hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.page-body { position: relative; z-index: 2; background: var(--canvas); border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: -30px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: var(--on-dark-soft); position: relative; z-index: 2; }
.breadcrumb svg { width: 13px; height: 13px; flex: none; opacity: .6; }
.breadcrumb a:hover { color: #fff; }

/* Included / checklist grid */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.incl-item { display: flex; gap: 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease; }
.incl-item:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.incl-item .c { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; box-shadow: var(--sh-glow); }
.incl-item .c svg { width: 19px; height: 19px; }
.incl-item h4 { margin-bottom: 5px; color: var(--ink); }
.incl-item p { font-size: .92rem; color: var(--ink-soft); }

/* Two-column split (text + panel) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.split--narrow { grid-template-columns: 1fr 1fr; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-method { display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); margin-bottom: 14px; }
.contact-method .c { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; }
.contact-method .c svg { width: 20px; height: 20px; }
.contact-method .t { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.contact-method .d { font-size: .9rem; color: var(--ink-soft); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,4vw,36px); box-shadow: var(--sh); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--canvas); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brick-bright); box-shadow: 0 0 0 4px rgba(217,106,69,.14); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkrow { display: flex; gap: 18px; flex-wrap: wrap; }
.checkrow label { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; font-size: .95rem; color: var(--ink-soft); margin: 0; }
.checkrow input { width: auto; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--grad-hero); position: relative; overflow: hidden; display: grid; place-items: center; }
.post-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.post-card .thumb .pl { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; color: rgba(255,255,255,.92); font-size: 1.1rem; padding: 0 24px; text-align: center; letter-spacing: -.01em; }
.post-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--brick); font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 1.2rem; }
.post-card p { font-size: .94rem; color: var(--ink-soft); }
.post-card .link-arrow { margin-top: auto; }
.empty-note { text-align: center; color: var(--ink-soft); background: var(--surface); border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 48px 24px; }

/* Article (blog post body) */
.article { max-width: 760px; margin-inline: auto; }
.article > * { margin-bottom: 18px; }
.article h2 { margin: 40px 0 10px; }
.article h3 { margin: 28px 0 8px; }
.article p, .article li { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.article ul { padding-left: 0; }
.article li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.article li::before { content: ''; position: absolute; left: 7px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--brick); }
.article a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }

/* Legal prose */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { margin: 38px 0 12px; }
.prose h3 { margin: 26px 0 8px; font-size: 1.2rem; }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 0; margin-bottom: 14px; }
.prose li { position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--ink-soft); }
.prose li::before { content: ''; position: absolute; left: 6px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--brick); }
.prose a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 940px) {
  .incl, .contact-grid, .split, .split--narrow, .post-grid { grid-template-columns: 1fr 1fr; }
  .split__visual { display: none; }
}
@media (max-width: 620px) {
  .incl, .contact-grid, .split, .split--narrow, .post-grid, .field-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 116px; }
  .page-body { border-radius: 0; margin-top: 0; }
}

/* Motion off */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { position: relative; }
  .over-hero, .panel--rise, .page-body { margin-top: 0; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Omaha Masonry additions — photo hero, gallery, award, reviews
   ============================================================ */

/* Photo hero: image layer under a left-biased dark gradient */
.hero--photo { background: var(--char-deep); }
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hero__shade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(16,17,21,.86) 0%, rgba(16,17,21,.62) 42%, rgba(16,17,21,.34) 68%, rgba(16,17,21,.18) 100%); }
.hero--photo .hero__inner { grid-template-columns: 1fr; max-width: var(--maxw); }
.hero--photo .hero__content { max-width: 640px; }

/* Page hero photo variant (inner pages) */
.page-hero--photo { background: var(--char-deep); }
.page-hero--photo .hero__photo { opacity: .38; }
.page-hero--photo .hero__shade { background: linear-gradient(90deg, rgba(16,17,21,.9), rgba(16,17,21,.55) 60%, rgba(16,17,21,.35)); }

/* Award band */
.award { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.award__medal { flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(150deg, #F5C97B, #D99A3D); color: #4A3208; box-shadow: var(--sh); }
.award__medal svg { width: 28px; height: 28px; }
.award__text { font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--ink); }
.award__text span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .88rem; color: var(--ink-soft); margin-top: 3px; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; border-radius: 0; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px; font-size: .82rem; color: #fff;
  background: linear-gradient(180deg, rgba(16,17,21,0), rgba(16,17,21,.72)); font-family: var(--font-head); font-weight: 500; }

/* Photo + text split with image */
.split__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.split__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* Checklist (in-copy) */
.checks { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.checks li { display: flex; gap: 11px; color: var(--ink-soft); }
.checks li svg { flex: none; width: 19px; height: 19px; color: var(--brick); margin-top: 4px; }
.panel--dark .checks li { color: var(--on-dark-soft); }
.panel--dark .checks li svg { color: var(--brick-light); }

/* Review widget shells */
.widget-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(14px, 2.5vw, 26px); box-shadow: var(--sh-sm); }

/* Prose content blocks on service/location pages */
.copy { max-width: 820px; margin-inline: auto; }
.copy h2 { margin: 44px 0 14px; }
.copy h3 { margin: 26px 0 10px; }
.copy p { margin-bottom: 15px; font-size: 1.03rem; line-height: 1.7; }
.copy ul { padding-left: 0; margin: 0 0 15px; }
.copy li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.6; }
.copy li::before { content: ''; position: absolute; left: 7px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--brick); }
.copy a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.copy strong { color: var(--ink); }

/* Responsive additions — keep mobile declarations inside media queries */
@media (max-width: 940px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero--photo .hero__content { max-width: 100%; }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: 1fr; }
  .award { flex-direction: column; }
}

/* Nav refinements (mobile state re-declared inside media query per cascade rule) */
.brand span { white-space: nowrap; }
.drop--areas { grid-template-columns: 1fr 1fr; }
@media (max-width: 940px) {
  .drop--areas { grid-template-columns: 1fr; }
}

/* ============================================================
   2026-07-17 round 2 — nav nowrap, contact-card stacking, hero form
   (appended: base rules here beat earlier media queries; mobile
   states re-declared inside media queries below per cascade rule)
   ============================================================ */

/* Nav links never wrap to two lines */
.nav__links a { white-space: nowrap; }

/* Contact method cards: label stacks above detail */
.contact-method .t, .contact-method .d { display: block; }

/* Homepage hero split: content left, estimate form right */
.hero--photo .hero__inner--split { grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.hero--photo .hero__inner--split .hero__content { max-width: 620px; }
.hero__form { width: 100%; max-width: 470px; justify-self: end; }
.form-card--hero { padding: clamp(20px, 2.4vw, 30px); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.form-card--hero .field { margin-bottom: 12px; }
.form-card--hero .field textarea { min-height: 84px; }
.hero-form__title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.hero-form__sub { font-size: .9rem; color: var(--ink-soft); margin: 4px 0 16px; }
.form-card--hero .form-note { margin-top: 10px; }

/* Hero split responsive: stack form under content, full width */
@media (max-width: 1020px) {
  .hero--photo .hero__inner--split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-block: 150px 80px; }
  .hero__form { max-width: 640px; justify-self: stretch; }
}
