/* ============================================================
   CRIMSON ECHO LLC - Pet Grooming Studio
   Shared stylesheet for boutique pet care
   Editorial serif display + grotesque body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
  --paper: #f6f1ea;       /* warm page background */
  --bg: #fffdfa;          /* warm card white */
  --surface: #efe7db;     /* sand panel */
  --surface-2: #e5d9c9;   /* deeper sand */
  --ink: #261d1f;         /* warm near-black */
  --ink-2: #574b48;
  --muted: #897b74;
  --line: #e6dccf;
  --line-2: #d6c8b6;

  --brand: #a5123c;        /* deep crimson */
  --brand-ink: #800c2d;    /* darker crimson */
  --brand-tint: #f7e3e6;   /* blush wash */
  --brand-soft: #f0d4d8;
  --brand-glow: rgba(165, 18, 60, 0.18);

  --gold: #b07a2c;         /* warm secondary accent */
  --ok: #4f7a3f;

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-head: 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;

  --r-xl: 34px;
  --r-lg: 26px;
  --r: 18px;
  --r-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(38, 29, 31, 0.05), 0 2px 6px rgba(38, 29, 31, 0.04);
  --shadow: 0 6px 20px rgba(38, 29, 31, 0.08), 0 2px 8px rgba(38, 29, 31, 0.05);
  --shadow-lg: 0 30px 70px rgba(38, 29, 31, 0.16), 0 10px 24px rgba(38, 29, 31, 0.08);

  --maxw: 1200px;
  --gutter: 26px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--brand); font-weight: 500; }

p { margin: 0; text-wrap: pretty; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(66px, 9vw, 130px); }
.section--tight { padding-block: clamp(44px, 6vw, 78px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-tint);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 14px;
  --pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px var(--brand-glow);
}
.btn--primary:hover { background: var(--brand-ink); box-shadow: 0 12px 30px var(--brand-glow); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--bg); }

.btn--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.34);
}
.btn--light:hover { background: rgba(255,255,255,0.24); }

.btn--lg { --pad-y: 17px; --pad-x: 34px; font-size: 16px; }
.btn--block { width: 100%; }

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

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,241,234,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark { width: 42px; height: 42px; flex: none; display: grid; place-items: center; }
.brand__mark svg { display: none; }
.brand__mark::before {
  content: "";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 18% 15% at 50% 66%, #fff 0 97%, transparent 100%),
    radial-gradient(ellipse 8% 11% at 29% 50%, #fff 0 97%, transparent 100%),
    radial-gradient(ellipse 9% 12% at 43% 37%, #fff 0 97%, transparent 100%),
    radial-gradient(ellipse 9% 12% at 57% 37%, #fff 0 97%, transparent 100%),
    radial-gradient(ellipse 8% 11% at 71% 50%, #fff 0 97%, transparent 100%),
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 58%),
    var(--brand);
  box-shadow: inset 0 0 0 1.2px rgba(255,255,255,0.22);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 5px;
}
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block;
  padding: 9px 17px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--surface); }
.nav__links a.is-active { color: var(--brand); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.nav__phone span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__phone strong { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  border-radius: 999px;
  cursor: pointer;
  place-items: center;
  color: var(--ink);
  flex: none;
}
.nav__toggle svg { display: none; }
.nav__toggle::before {
  content: "";
  width: 18px;
  height: 14px;
  background:
    linear-gradient(currentColor 0 0) top / 100% 2px no-repeat,
    linear-gradient(currentColor 0 0) center / 100% 2px no-repeat,
    linear-gradient(currentColor 0 0) bottom / 100% 2px no-repeat;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 80px 0 0 0;
  z-index: 49;
  background: var(--paper);
  padding: 26px var(--gutter);
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.is-active { color: var(--brand); }
.mobile-menu .btn { margin-top: 20px; }

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: grid; }
}

@media (max-width: 560px) {
  .nav { height: 72px; gap: 12px; }
  .brand { gap: 10px; }
  .brand__mark,
  .brand__mark::before {
    width: 34px;
    height: 34px;
  }
  .brand__mark::before { font-size: 11px; }
  .brand__name { font-size: 19px; }
  .brand__name small { font-size: 8.5px; letter-spacing: 0.18em; }
  .nav__right { gap: 10px; }
  .nav__right > .btn { display: none; }
  .nav__toggle { width: 44px; height: 44px; }
  .mobile-menu { inset: 72px 0 0 0; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 560px at 88% -12%, var(--brand-tint), transparent 58%),
    radial-gradient(900px 500px at -5% 110%, var(--surface), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(42px, 6vw, 78px);
}
.hero__copy { max-width: 660px; min-width: 0; }
.hero h1 {
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  max-width: 43ch;
}
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px 34px; }
.hero__meta div { line-height: 1.15; }
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  display: block;
}
.hero__meta span { font-size: 13px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.02em; }

.ph {
  position: relative;
  border-radius: var(--r-lg);
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--surface) 0, var(--surface) 13px,
    var(--surface-2) 13px, var(--surface-2) 26px
  );
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
}
.ph__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 580px);
  min-width: 0;
}
.hero__media {
  width: 100%;
  height: clamp(380px, 56vh, 620px);
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  left: -22px; bottom: 40px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__badge .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  flex: none;
}
.hero__badge b { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; display: block; }
.hero__badge span { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 42px 56px; }
  .hero__visual { justify-self: stretch; width: 100%; }
  .hero__media { height: clamp(300px, 48vh, 460px); object-position: 50% 34%; }
  .hero__badge { left: 16px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero__cta .btn { width: 100%; }
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .hero__meta strong { font-size: clamp(26px, 8vw, 32px); }
  .hero__meta span { display: block; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 24px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.trust__item svg { color: var(--brand); flex: none; }

/* ============================================================
   Section heading
   ============================================================ */
.head { max-width: 60ch; margin-bottom: 52px; }
.head--center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(32px, 4.4vw, 56px); }
.head p { margin-top: 20px; }

/* ============================================================
   Services grid
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc__ic {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc__ic:empty::before,
.svc-row__ic:empty::before,
.vcard .ic:empty::before,
.feat-list .ic:empty::before,
.info-row .ic:empty::before,
.notice .ic:empty::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.svc h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin-bottom: 10px; }
.svc p { color: var(--ink-2); font-size: 15.5px; }
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
}
.svc__link .ar { transition: transform .2s ease; }
.svc:hover .svc__link .ar { transform: translateX(3px); }

@media (max-width: 940px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Feature split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { aspect-ratio: 4 / 3.4; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.feat-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 8px; }
.feat-list li {
  display: flex; gap: 16px; padding: 18px;
  border-radius: var(--r);
  transition: background .2s ease;
}
.feat-list li:hover { background: var(--bg); }
.feat-list .ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.feat-list b { font-family: var(--font-head); font-weight: 700; font-size: 17px; display: block; margin-bottom: 3px; }
.feat-list p { color: var(--ink-2); font-size: 15px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 42px; }
  .split--rev .split__media { order: 0; }
}

/* ============================================================
   Steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
}
.step__n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--brand);
  border: 1.5px solid var(--brand-soft);
  background: var(--brand-tint);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 9px; }
.step p { color: var(--ink-2); font-size: 15px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Stats band (dark)
   ============================================================ */
.band {
  background: #221619;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(740px 380px at 84% 0%, rgba(165,18,60,0.5), transparent 60%);
}
.band__inner { position: relative; }
.band h2 { color: #fff; font-size: clamp(30px, 3.8vw, 48px); }
.band p { color: rgba(255,255,255,0.74); margin-top: 16px; max-width: 52ch; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 46px;
}
.stat {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.stat strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.2vw, 58px);
  display: block;
  letter-spacing: -0.02em;
  line-height: .9;
}
.stat span {
  display: block;
  max-width: 18ch;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; row-gap: 34px; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  background:
    radial-gradient(820px 440px at 12% 120%, var(--brand-tint), transparent 58%),
    var(--surface);
}
.cta__box {
  background: var(--brand);
  border-radius: var(--r-xl);
  padding: clamp(42px, 6vw, 76px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 42px;
  align-items: center;
  box-shadow: 0 34px 80px var(--brand-glow);
  position: relative;
  overflow: hidden;
}
.cta__box::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
}
.cta__box::before {
  content: "";
  position: absolute;
  right: 70px; bottom: -110px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta__box h2 { color: #fff; font-size: clamp(30px, 3.8vw, 48px); position: relative; }
.cta__box p { color: rgba(255,255,255,0.88); margin-top: 14px; position: relative; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
@media (max-width: 820px) { .cta__box { grid-template-columns: 1fr; } }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(960px 440px at 86% -22%, var(--brand-tint), transparent 58%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { padding-block: clamp(54px, 7vw, 100px); max-width: 64ch; }
.page-hero h1 { font-size: clamp(42px, 5.8vw, 80px); font-weight: 500; letter-spacing: -0.02em; }
.page-hero p { margin-top: 22px; font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); }
.crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--line-2); margin-inline: 8px; }

/* ============================================================
   Detailed service rows
   ============================================================ */
.service-filter {
  position: sticky;
  top: 86px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,250,0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.service-filter__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--ink-2);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.service-filter__btn:hover,
.service-filter__btn:focus-visible {
  color: var(--ink);
  border-color: var(--line-2);
  outline: none;
}
.service-filter__btn.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.svc-row {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.svc-row.is-hidden { display: none; }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__ic {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.svc-row h3 { font-family: var(--font-display); font-weight: 600; font-size: 27px; margin-bottom: 11px; }
.svc-row p { color: var(--ink-2); max-width: 60ch; }
.svc-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 5px 13px;
}
.svc-row__aside { text-align: right; }
.svc-row__aside .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.svc-row__aside .v { font-family: var(--font-display); font-weight: 600; font-size: 24px; }
@media (max-width: 760px) {
  .service-filter {
    top: 78px;
    border-radius: var(--r);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .service-filter__btn { flex: none; }
  .svc-row { grid-template-columns: 54px 1fr; }
  .svc-row__ic { width: 54px; height: 54px; }
  .svc-row__aside { grid-column: 1 / -1; text-align: left; }
}

/* ============================================================
   Values / about cards
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
}
.vcard .ic {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 22px;
}
.vcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin-bottom: 10px; }
.vcard p { color: var(--ink-2); font-size: 15.5px; }
@media (max-width: 820px) { .cards-3 { grid-template-columns: 1fr; } }

/* ============================================================
   Client notes
   ============================================================ */
.testimonials {
  background:
    linear-gradient(180deg, var(--paper), var(--bg));
  border-top: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: space-between;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--brand-tint);
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}
.testimonial p {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 16px;
}
.testimonial__by {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
}
.testimonial__by b {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1.15;
}
.testimonial__by span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: start; }
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 8px;
}
.field .req { color: var(--brand); }
.input, .select, .textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.input::placeholder, .textarea::placeholder { color: #a8988f; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--brand-glow);
}
.textarea { resize: vertical; min-height: 130px; }
.select { padding-right: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-ok {
  display: none;
  align-items: center;
  gap: 12px;
  background: #edf4e9;
  border: 1px solid #cbe0bf;
  color: var(--ok);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.form-ok.show { display: flex; }
.form-ok--error {
  background: #fbf0ee;
  border-color: #e5b5ac;
  color: #a73526;
}
.notice-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: none;
  display: inline-grid;
  place-items: center;
  background: currentColor;
}
.notice-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.info-card {
  background: #221619;
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
}
.info-card h3 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 25px; margin-bottom: 22px; }
.info-row { display: flex; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.info-row:first-of-type { border-top: none; }
.info-row .ic {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: grid; place-items: center;
}
.info-row .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.info-row .v { font-size: 15.5px; margin-top: 3px; }
.info-row .v a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Hours table
   ============================================================ */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15.5px;
}
.hours li:first-child { border-top: none; }
.hours li.is-today { color: #fff; font-weight: 700; }
.hours .day { color: rgba(255,255,255,0.6); }
.hours .is-today .day { color: var(--brand-soft); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.qa { border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.qa details[open] summary .pm { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.qa .qa__body { padding: 0 0 26px; color: var(--ink-2); max-width: 70ch; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #221619;
  color: rgba(255,255,255,0.7);
  padding-block: 68px 32px;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 42px; }
.footer__brand .brand__name { color: #fff; }
.footer p { font-size: 15px; margin-top: 18px; max-width: 34ch; }
.footer h4 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a, .footer__line { font-size: 15px; color: rgba(255,255,255,0.7); }
.footer ul a:hover { color: #fff; }
.footer__bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__legal a { color: rgba(255,255,255,0.6); }
.footer__legal a:hover { color: #fff; }
.footer__legal-button {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: rgba(255,255,255,0.6);
  font: inherit;
  cursor: pointer;
}
.footer__legal-button:hover,
.footer__legal-button:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   Consent management
   ============================================================ */
.consent-status {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.consent-banner {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
  padding: 22px;
  background: rgba(255,253,250,0.98);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(38,29,31,0.18);
}
.consent-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.consent-banner h2,
.consent-modal h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0;
}
.consent-banner p,
.consent-modal p {
  margin: 0;
  color: var(--ink-2);
}
.consent-banner__actions,
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(34,22,25,0.56);
}
.consent-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  box-shadow: 0 24px 90px rgba(0,0,0,0.28);
}
.consent-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.consent-callout {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--brand-soft);
  border-radius: 14px;
  background: var(--brand-tint);
}
.consent-callout h3,
.consent-option h3 {
  margin: 0 0 7px;
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.25;
}
.consent-callout .btn { margin-top: 16px; }
.consent-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.consent-option p { font-size: 14.5px; }
.consent-option span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}
.consent-switch {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 86px;
  cursor: pointer;
}
.consent-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consent-switch > span {
  width: 54px;
  height: 30px;
  margin: 0;
  border-radius: 999px;
  background: var(--line-2);
  position: relative;
  transition: background .18s ease;
}
.consent-switch > span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease;
}
.consent-switch input:checked + span { background: var(--brand); }
.consent-switch input:checked + span::before { transform: translateX(24px); }
.consent-switch input:focus-visible + span {
  outline: 3px solid var(--brand-glow);
  outline-offset: 3px;
}
.consent-switch input:disabled + span {
  opacity: .64;
  cursor: default;
}
.consent-switch em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.consent-modal__actions {
  margin-top: 24px;
}
@media (max-width: 760px) {
  .consent-banner {
    grid-template-columns: 1fr;
  }
  .consent-banner__actions,
  .consent-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .consent-banner .btn,
  .consent-modal .btn {
    width: 100%;
  }
  .consent-option {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .consent-switch {
    justify-items: start;
    min-width: 0;
  }
}

/* ============================================================
   Legal pages
   ============================================================ */
.notice {
  display: flex;
  gap: 16px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-soft);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 46px;
}
.notice .ic {
  flex: none; width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
}
.notice b { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; display: block; margin-bottom: 4px; color: var(--ink); }
.notice p { font-size: 14.5px; color: var(--ink-2); }

.legal-grid { display: grid; grid-template-columns: 248px 1fr; gap: 58px; align-items: start; }
.legal-toc { position: sticky; top: 104px; border-left: 2px solid var(--line); padding-left: 20px; }
.legal-toc h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; display: grid; gap: 2px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color .15s ease;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) " - ";
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
}
.legal-toc a:hover { color: var(--ink); }

.legal-body { max-width: 70ch; }
.legal-body__meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding-bottom: 22px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.legal-body section { scroll-margin-top: 104px; margin-bottom: 46px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 16px;
  display: flex; gap: 12px; align-items: baseline;
}
.legal-body h2 .num { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--brand); }
.legal-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 24px 0 10px; }
.legal-body p { color: var(--ink-2); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.legal-body ul li { position: relative; padding-left: 26px; color: var(--ink-2); }
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.legal-body a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.legal-inline-button {
  appearance: none;
  border: 1.5px solid var(--brand-soft);
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand);
  padding: 10px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.legal-inline-button:hover,
.legal-inline-button:focus-visible {
  border-color: var(--brand);
  background: #fff;
}
.legal-note {
  background: var(--brand-tint);
  border: 1px solid var(--brand-soft);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin: 0 0 18px;
}
.legal-note b {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--brand);
  margin-bottom: 4px;
}
.legal-note p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: var(--r-sm);
  box-shadow: 0 0 0 1px var(--line);
  font-size: 15px;
}
.legal-table th,
.legal-table td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table td { color: var(--ink-2); background: var(--bg); }
.legal-fill {
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  padding: 1px 8px;
  font-family: var(--font-mono);
  font-size: 0.86em;
  color: var(--ink);
}
.legal-cta {
  margin-top: 50px;
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.legal-cta b { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.legal-cta p { color: var(--ink-2); margin: 6px 0 0; font-size: 15px; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; border-left: none; padding-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .legal-toc ol { grid-template-columns: 1fr 1fr; }
  .legal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================================
   Motion system
   ============================================================ */
html { scroll-padding-top: 96px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js .reveal[data-anim="left"]  { transform: translateX(-30px); }
.js .reveal[data-anim="right"] { transform: translateX(30px); }
.js .reveal[data-anim="scale"] { transform: scale(.95); }
.js .reveal.in { opacity: 1; transform: none; }

@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.media-frame { overflow: hidden; border-radius: var(--r-xl); position: relative; display: block; }
.media-frame img.media {
  width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 0;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.media-frame:hover img.media { transform: scale(1.06); }

.site-header { transition: box-shadow .35s ease, background .35s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(38,29,31,.09); background: rgba(246,241,234,.92); }
.nav { transition: height .35s cubic-bezier(.22,.61,.36,1); }
.site-header.scrolled .nav { height: 66px; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand), #d84d72);
  z-index: 60; transition: width .12s linear;
}

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px var(--brand-glow);
  opacity: 0; transform: translateY(14px) scale(.85); pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), background .2s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brand-ink); transform: translateY(-2px); }

.nav__links a { position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 17px; right: 17px; bottom: 4px; height: 2px;
  background: var(--brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.btn--primary, .btn--light { position: relative; overflow: hidden; }
.btn--primary::after, .btn--light::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover::after, .btn--light:hover::after { animation: shine .7s ease; }
@keyframes shine { to { left: 140%; } }

.svc__ic, .vcard .ic, .feat-list .ic, .step__n, .svc-row__ic { transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease, color .3s ease; }
.svc:hover .svc__ic { transform: translateY(-3px) rotate(-5deg); }
.vcard:hover .ic { transform: translateY(-3px) scale(1.06); }
.feat-list li:hover .ic { transform: rotate(-5deg) scale(1.06); }
.svc-row:hover .svc-row__ic { transform: scale(1.06); background: var(--brand); color: #fff; }

.stat strong, .hero__meta strong { font-variant-numeric: tabular-nums; }

.legal-toc a { border-left: 2px solid transparent; margin-left: -22px; padding-left: 20px; transition: color .2s ease, border-color .2s ease; }
.legal-toc a.active { color: var(--brand); border-color: var(--brand); font-weight: 600; }

.mobile-menu a { opacity: 0; transform: translateY(10px); }
.mobile-menu.open a { animation: riseIn .4s ease forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.04s}
.mobile-menu.open a:nth-child(2){animation-delay:.09s}
.mobile-menu.open a:nth-child(3){animation-delay:.14s}
.mobile-menu.open a:nth-child(4){animation-delay:.19s}
.mobile-menu.open a:nth-child(5){animation-delay:.24s}

.field.invalid .input, .field.invalid .select, .field.invalid .textarea {
  border-color: #c0392b; background: #fbf0ee;
}
.field-error { display: none; color: #b23320; font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.field.invalid .field-error { display: block; }

.btn.is-loading { cursor: default; opacity: .92; }
.btn-spin {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 4px;
  animation: btnspin .7s linear infinite;
}
@keyframes btnspin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .hero__copy > *, .js .hero__visual { opacity: 1 !important; animation: none !important; }
  .hero__badge { animation: none !important; }
  .media-frame img.media { transition: none; }
  .media-frame:hover img.media { transform: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}
