/* ============================================================
   OTTERLY CLEAN EXTERIORS — shared site styles
   Used by the homepage and all service pages.
   (Legal pages keep their own slim legal.css.)
   ============================================================ */
/* ============================================================
   DESIGN TOKENS  —  flat, crisp, neutral-led
   ============================================================ */
:root {
  /* Brand */
  --navy:        #0B2A43;   /* brand deep / headings */
  --navy-800:    #0E3553;
  --ink:         #0E1726;   /* primary text */
  --blue:        #0B66D6;   /* single accent / primary action */
  --blue-700:    #0A55B4;
  --blue-50:     #EAF2FD;

  /* Neutrals (deliberately NOT blue-tinted) */
  --paper:       #FFFFFF;
  --surface:     #F6F7F9;
  --surface-2:   #EEF1F4;
  --line:        #E3E7EC;
  --line-strong: #D3D9E0;
  --muted:       #54606E;
  --muted-soft:  #79838F;

  /* Crisp, restrained shadows */
  --shadow-xs:   0 1px 2px rgba(14,23,38,.05);
  --shadow-sm:   0 1px 2px rgba(14,23,38,.04), 0 2px 8px rgba(14,23,38,.05);
  --shadow-md:   0 4px 14px rgba(14,23,38,.08);

  /* Tight, intentional radii */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --pill: 999px;

  --maxw: 1160px;
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--navy); color: #fff; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 .4em;
  font-weight: 700;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.05rem, 7vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 6vw, 3.8rem); }
h3 { font-size: 1.22rem; letter-spacing: -.02em; }
p  { margin: 0 0 1rem; color: var(--muted); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
section[id] { scroll-margin-top: 116px; }

/* Eyebrow — small section label above the heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
/* numbered index pills hidden — headings carry the page */
.eyebrow::before { content: none; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 56ch; }

.section-head { max-width: 60ch; margin: 0 0 48px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-bottom: 0; }

/* ============================================================
   BUTTONS — crisp, minimal radius
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 50px; padding: 13px 24px; border-radius: var(--r-sm);
  font: inherit; font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; transition: transform .2s var(--ease); }
/* lift on hover, press back down for tactile feedback */
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); transition-duration: .06s; }
/* nudge a trailing arrow icon on hover */
.btn:hover svg:last-child { transform: translateX(2px); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-xs); }
.btn--primary:hover { background: var(--blue-700); box-shadow: 0 10px 22px -6px rgba(11,102,214,.5); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-800); box-shadow: 0 10px 22px -6px rgba(11,42,67,.45); }
.btn--ghost { background: var(--paper); color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: var(--surface); box-shadow: var(--shadow-md); }
.btn--onnavy { background: #fff; color: var(--navy); }
.btn--onnavy:hover { background: #fff; box-shadow: 0 10px 24px -6px rgba(0,0,0,.4); }
.btn--onnavy-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--onnavy-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 86px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__full { height: 64px; width: auto; display: block; flex: none; }
.brand__logo { width: 38px; height: 38px; flex: none; border-radius: 9px; object-fit: cover; } /* footer */
.nav { display: none; gap: 30px; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--muted); transition: color .15s var(--ease); }
.nav a:hover { color: var(--navy); }
.header-actions { display: none; gap: 14px; align-items: center; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy); font-size: .96rem; white-space: nowrap; flex: none; }
.header-phone svg { width: 17px; height: 17px; flex: none; }
.header-phone:hover { color: var(--blue); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
  .site-header__inner { min-height: 104px; }
  .brand__full { height: 80px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { border-bottom: 1px solid var(--line); background:
  radial-gradient(120% 120% at 100% 0%, var(--surface) 0%, #fff 55%); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding: 56px 0 64px; }
.hero__grid > * { min-width: 0; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--blue); }
.hero .lead { margin-bottom: 28px; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 26px; }
.rating { display: inline-flex; align-items: center; gap: 9px; font-size: .94rem; font-weight: 500; color: var(--navy); }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 16px; height: 16px; color: #F5A524; }
.meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.hero__metaitem { display: inline-flex; align-items: center; gap: 7px; font-size: .94rem; font-weight: 500; color: var(--muted); }
.hero__metaitem svg { width: 17px; height: 17px; color: var(--blue); }

/* image panel — neutral, looks intentional even if photo fails */
.hero__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-md);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* floating credibility card */
.hero__badge {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 15px; box-shadow: var(--shadow-md);
}
.hero__badge-ic { width: 38px; height: 38px; border-radius: 9px; background: var(--navy); display: grid; place-items: center; flex: none; }
.hero__badge-ic svg { width: 20px; height: 20px; color: #fff; }
.hero__badge b { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; line-height: 1.1; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 80px 0 88px; }
  .hero__cta { flex-direction: row; }
}

/* Mobile: drop the hero image in right below the headline.
   display:contents promotes .hero__body's children to flex items
   so the image (a sibling) can be ordered between them. */
@media (max-width: 899px) {
  .hero__grid { display: flex; flex-direction: column; gap: 0; }
  .hero__body { display: contents; }
  .hero__body .eyebrow    { order: 1; }
  .hero__body h1          { order: 2; }
  .hero__media            { order: 3; margin: 8px 0 28px; }
  .hero__body .lead       { order: 4; }
  .hero__body .hero__cta  { order: 5; }
  .hero__body .hero__meta { order: 6; }
}

/* ============================================================
   FEATURE STRIP  (replaces generic icon grid)
   ============================================================ */
.strip { border-bottom: 1px solid var(--line); background: var(--surface); }
/* Each item is its own boxed tile with a gap between — clear outlines on all sides */
.strip__inner { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 26px 0; }
.strip__item {
  background: var(--paper); padding: 18px 18px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: var(--r); box-shadow: var(--shadow-xs);
}
.strip__item svg { width: 22px; height: 22px; color: var(--blue); flex: none; }
.strip__item b { display: block; font-size: .98rem; color: var(--navy); font-weight: 600; line-height: 1.2; }
.strip__item span { font-size: .85rem; color: var(--muted-soft); }
@media (min-width: 560px) { .strip__inner { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 920px) { .strip__inner { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 820px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__media { aspect-ratio: 1/1; background: var(--surface-2); border-bottom: 1px solid var(--line); position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: .45em; }
.card > .card__body > p { font-size: 1rem; margin-bottom: 18px; }
.card__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.card__list li { display: flex; align-items: flex-start; gap: 9px; font-size: .94rem; color: var(--ink); }
.card__list svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 3px; }
.card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .96rem; color: var(--blue);
}
.card__link svg { width: 17px; height: 17px; transition: transform .16s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* ============================================================
   PROCESS  (new — adds substance)
   ============================================================ */
.process { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 18px; border-top: 2px solid var(--navy); }
.step__n {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .92rem;
  color: var(--blue); letter-spacing: .06em;
}
.step h3 { margin: 8px 0 .3em; }
.step p { font-size: .98rem; margin: 0; }

/* ============================================================
   WHY  (flat icon tiles, neutral)
   ============================================================ */
/* Each tile fully boxed with a gap between — consistent outlines at every breakpoint */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.why-item {
  background: var(--paper); padding: 28px 24px;
  border: 1px solid var(--line-strong); border-radius: var(--r-lg); box-shadow: var(--shadow-xs);
}
@media (min-width: 620px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.why-item__icon svg { width: 22px; height: 22px; color: #fff; }
.why-item h3 { font-size: 1.06rem; margin-bottom: .3em; }
.why-item p { font-size: .94rem; margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); aspect-ratio: 1/1; box-shadow: var(--shadow-md); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px) { .about__grid { grid-template-columns: .9fr 1.1fr; gap: 60px; } .about__media { order: -1; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 52px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(11,102,214,.32), transparent 60%); pointer-events: none; }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #c7d6e4; max-width: 50ch; margin: 0 auto 26px; }
.cta-banner .btn-row { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 600px) { .cta-banner .btn-row { flex-direction: row; justify-content: center; } }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { text-align: center; }
.area__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px auto 30px; max-width: 740px; }
.chip { background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink); font-weight: 500; font-size: .92rem; padding: 8px 16px; border-radius: var(--pill); }
.chip--muted { color: var(--muted-soft); border-style: dashed; }

/* ============================================================
   ESTIMATE  (real form, swappable for embed)
   ============================================================ */
.estimate { background: var(--surface); border-top: 1px solid var(--line); }
.estimate__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) { .estimate__grid { grid-template-columns: .85fr 1.15fr; gap: 56px; } }
.estimate__aside .lead { margin-bottom: 26px; }
.estimate__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.estimate__points li { display: flex; gap: 13px; }
.estimate__points .pt-ic { width: 38px; height: 38px; border-radius: 9px; background: var(--blue-50); display: grid; place-items: center; flex: none; }
.estimate__points .pt-ic svg { width: 19px; height: 19px; color: var(--blue); }
.estimate__points b { display: block; color: var(--navy); font-size: .98rem; }
.estimate__points span { font-size: .9rem; color: var(--muted); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 12px 14px; min-height: 48px; width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-50);
}
.form-note { font-size: .82rem; color: var(--muted-soft); margin: 14px 0 0; text-align: center; }

/* KrewDash booking embed — framed to match the old form card */
.form-embed {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.form-embed iframe { width: 100%; height: 900px; border: 0; display: block; }

/* ============================================================
   REVIEWS  (intentional, not a dashed placeholder)
   ============================================================ */
.reviews__card { border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-lg); padding: 40px 28px; text-align: center; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.reviews__stars { display: inline-flex; gap: 3px; margin-bottom: 14px; }
.reviews__stars svg { width: 26px; height: 26px; color: #F5A524; }
.reviews__card h3 { font-size: 1.5rem; }
.reviews__card p { margin: 0 auto 4px; max-width: 46ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--r); box-shadow: var(--shadow-xs); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); line-height: 1; flex: none; transition: transform .2s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 20px 18px; margin: 0; font-size: .97rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #b9c9d8; padding: 64px 0 110px; }
.site-footer h2 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand__logo { width: 42px; height: 42px; }
.footer-brand strong { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 1.18rem; font-weight: 700; letter-spacing: -.02em; }
.footer-tag { color: #9fc2dd; margin-bottom: 8px; }
.footer-about { color: #93aac0; max-width: 34ch; font-size: .95rem; }
.footer-col h3 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; font-size: .96rem; }
.footer-col li svg { width: 17px; height: 17px; color: #5b86ab; flex: none; margin-top: 4px; }
.footer-col a:hover { color: #fff; }
.footer-cta { margin-top: 22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; font-size: .86rem; color: #7e98ae; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }
.footer-legal { display: inline-flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: #7e98ae; }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { min-height: 48px; font-size: .96rem; }
@media (min-width: 1024px) { .mobile-bar { display: none; } .site-footer { padding-bottom: 64px; } }

/* ============================================================
   SCROLL REVEAL  (progressive enhancement — only active when
   JS adds .reveal-on; content stays visible otherwise)
   ============================================================ */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .btn:active, .btn:hover svg:last-child { transform: none !important; }
}

/* ============================================================
   SERVICE PAGES  (gutter / window / pressure)
   ============================================================ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 18px 0 0; font-size: .88rem; color: var(--muted-soft); }
.crumbs a { color: var(--muted); font-weight: 500; transition: color .15s var(--ease); }
.crumbs a:hover { color: var(--blue); }
.crumbs svg { width: 14px; height: 14px; color: var(--line-strong); flex: none; }
.crumbs span[aria-current] { color: var(--navy); font-weight: 600; }
.svc-hero .hero__grid { padding: 30px 0 60px; }
@media (min-width: 900px) { .svc-hero .hero__grid { padding: 44px 0 80px; } }
.points-2col { display: grid; gap: 16px; }
@media (min-width: 720px) { .points-2col { grid-template-columns: 1fr 1fr; gap: 18px 28px; } }
.svc-prose { max-width: 70ch; }
.svc-prose h3 { margin-top: 1.5em; }
.signs-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.signs-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: .98rem; }
.signs-list svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 4px; }
@media (min-width: 720px) { .signs-list { grid-template-columns: 1fr 1fr; gap: 12px 28px; } }

/* ============================================================
   NAV SERVICES DROPDOWN  (desktop header, all pages)
   ============================================================ */
.nav { align-items: center; }
.nav-drop { position: relative; }
.nav-drop__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: .96rem; font-weight: 500; color: var(--muted);
  background: none; border: 0; padding: 0; cursor: pointer;
  transition: color .15s var(--ease);
}
.nav-drop__btn:hover, .nav-drop:focus-within .nav-drop__btn, .nav-drop.open .nav-drop__btn { color: var(--navy); }
.nav-drop__btn svg { width: 15px; height: 15px; flex: none; transition: transform .18s var(--ease); }
.nav-drop:hover .nav-drop__btn svg, .nav-drop.open .nav-drop__btn svg { transform: rotate(180deg); }
.nav-drop__menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px; margin: 0; padding: 8px; list-style: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-md); z-index: 60;
  opacity: 0; visibility: hidden;
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
/* invisible hover bridge across the gap between button and menu */
.nav-drop__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu, .nav-drop.open .nav-drop__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop__menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: background .14s var(--ease), color .14s var(--ease);
}
.nav-drop__menu a:hover { background: var(--surface); color: var(--navy); }
.nav-drop__menu a svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
/* ============================================================
   MOBILE HAMBURGER MENU  (header, < 1024px)
   ============================================================ */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--navy); cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.menu-toggle:hover { border-color: var(--navy); background: var(--surface); }
.menu-toggle:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .ic-close { display: none; }
.site-header.menu-open .menu-toggle .ic-burger { display: none; }
.site-header.menu-open .menu-toggle .ic-close { display: block; }

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-height: 0; overflow: hidden; visibility: hidden;
  transition: max-height .28s var(--ease), visibility .28s;
}
.site-header.menu-open .mobile-menu {
  max-height: min(560px, calc(100vh - 96px));
  visibility: visible; overflow-y: auto;
}
.mobile-menu nav { padding: 12px 22px 20px; display: grid; gap: 2px; }
.mobile-menu__label {
  font-family: 'Space Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted-soft);
  padding: 10px 0 6px;
}
.mobile-menu__link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 10px; margin: 0 -10px; border-radius: var(--r-sm);
  font-size: 1.02rem; font-weight: 500; color: var(--ink);
  transition: background .14s var(--ease), color .14s var(--ease);
}
.mobile-menu__link:hover, .mobile-menu__link:active { background: var(--surface); color: var(--navy); }
.mobile-menu__link svg { width: 17px; height: 17px; color: var(--blue); flex: none; }
.mobile-menu__sep { height: 1px; background: var(--line); margin: 10px 0; }
.mobile-menu__cta { margin-top: 14px; }

@media (min-width: 1024px) { .menu-toggle, .mobile-menu { display: none; } }
