:root {
  /* Palette lock: deep red + bronze + brown + light cream (Erik ref) */
  --cream: #f7eedd;
  --cream-2: #fbf6ec;
  --paper: #fffaf2;
  --ink: #1c1410; /* warm brown-black */
  --ink-2: #3a2a22;
  --mute: #6b5648;
  --line: #e6d9c4;
  --amber: #8b1e22; /* deep red — primary CTA */
  --amber-2: #a3834e; /* bronze — secondary accent */
  --red: #8b1e22;
  --red-2: #a8282d;
  --bronze: #a3834e;
  --bronze-2: #b8975c;
  --brown: #5c3d2e; /* true brown */
  --brown-2: #7a5340;
  --brown-3: #3f2a20;
  --char: #1c1410; /* brown-charcoal dark bands */
  --char-2: #2a1e18;
  --ok: #2f6b3a;
  --danger: #8b2e2e;
  --shadow: 0 24px 60px rgba(28,20,16,.12);
  --max: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream-2); line-height: 1.55; font-size: 17px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(250,246,238,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .14em; font-size: 12px; font-weight: 650; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); background: #fff; }
nav { display: flex; align-items: center; gap: 20px; }
nav a { text-decoration: none; font-size: 14.5px; color: var(--ink-2); }
nav a:hover, nav a.active { color: var(--ink); }
.menu-btn { display: none; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; font: inherit; cursor: pointer; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border: 0; cursor: pointer; border-radius: 999px; padding: 13px 22px; font-weight: 600; font-family: inherit; font-size: 14.5px; line-height: 1; }
.btn-amber { background: var(--amber); color: #f7eedd; }
.btn-amber:hover { background: var(--red-2); color: #f7eedd; }
.btn-ink { background: var(--brown); color: #f7eedd; }
.btn-ink:hover { background: var(--brown-2); color: #f7eedd; }
.btn-ghost { background: transparent; border: 1px solid var(--brown); color: var(--brown); }
.btn-ghost:hover { background: var(--brown); color: var(--cream); }
.hero { position: relative; overflow: hidden; padding: 84px 0 56px; background: var(--cream-2); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.kicker { letter-spacing: .18em; text-transform: uppercase; font-size: 11.5px; color: var(--mute); font-weight: 650; margin: 0 0 14px; }
h1,h2,h3 { font-family: var(--serif); line-height: 1.08; margin: 0; font-weight: 560; }
h1 { font-size: clamp(42px, 6.4vw, 76px); letter-spacing: -.03em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.02em; }
h3 { font-size: 26px; }
.lead { font-size: 19px; color: var(--ink-2); max-width: 560px; margin: 16px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-mark { background: var(--paper); border: 1px solid var(--line); border-radius: 40px; padding: 36px; box-shadow: var(--shadow); display: grid; place-items: center; position: relative; }
.hero-mark::after { display: none; content: none; }
.hero-mark img { width: min(360px, 100%); border-radius: 50%; position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 34px; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 14px; }
.stat b { display: block; font-family: var(--serif); font-size: 22px; }
.stat span { color: var(--mute); font-size: 13px; }
section { padding: 78px 0; }
.band-dark { background: var(--char); color: #f6f0e4; }
.band-dark .kicker { color: #c4b79a; }
.band-dark .lead, .band-dark p { color: #d7cdb8; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head p { color: var(--ink-2); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); transition: transform .28s ease, box-shadow .28s ease, border-color .15s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(20,19,17,.14); border-color: #e0c48a; }
.card .shot { display: block; height: 248px; overflow: hidden; background: #111; }
.card .shot-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.card:hover .shot-img { transform: scale(1.03); }
.card-body { padding: 22px 22px 24px; }
.tag { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #5c1818; background: #f3e0c8; border-radius: 999px; padding: 4px 10px; font-weight: 700; }
.tag.soon { background: #ece7dc; color: #5a554c; }
.card h3 { margin: 10px 0 8px; }
.card p { margin: 0 0 16px; color: var(--ink-2); font-size: 15.5px; }
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc, .price { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.num { color: var(--amber); font-weight: 700; letter-spacing: .14em; font-size: 12px; }
.svc ul, .price ul { margin: 12px 0 0; padding-left: 18px; color: var(--ink-2); }
.svc li, .price li { margin: 7px 0; }
.price .amt { font-family: var(--serif); font-size: 40px; margin: 10px 0 4px; }
.price .amt span { font-size: 16px; color: var(--mute); font-family: var(--sans); }
.price.featured { border-color: rgba(163,131,78,.28); box-shadow: var(--shadow); }
.inds {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100%;
}
.ind {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 10px;
  min-height: 44px;
  box-shadow: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.ind:hover { border-color: var(--amber); background: #fbf1e4; box-shadow: 0 0 0 1px var(--amber); }
.ind h3 {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 650;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}
.ind p { display: none; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step { background: var(--char-2); color: #f6f0e4; border-radius: 20px; padding: 22px; }
.step b { color: var(--amber-2); display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .12em; }
.step p { color: #d7cdb8; margin: 8px 0 0; font-size: 15px; }
.faq { display: grid; gap: 10px; }
details { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
details summary { cursor: pointer; font-weight: 650; }
details p { margin: 10px 0 0; color: var(--ink-2); }
.quote { background: var(--char); color: #f6f0e4; border-radius: 28px; padding: 44px; }
.quote p { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); line-height: 1.28; margin: 0 0 12px; }
.quote span { color: #cbbfa8; }
form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 13px; font-weight: 650; display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); font: inherit; background: #fff; color: var(--ink); }
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.check input { width: auto; margin-top: 4px; }
.form-note { color: var(--mute); font-size: 13px; }
.alert { padding: 12px 14px; border-radius: 12px; display: none; }
.alert.show { display: block; }
.alert.ok { background: #e7f4ea; color: var(--ok); }
.alert.bad { background: #f8e8e8; color: var(--danger); }
footer { border-top: 1px solid var(--line); padding: 40px 0 52px; color: var(--mute); font-size: 14.5px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.foot b { display: block; color: var(--ink); margin-bottom: 8px; }
.foot a { color: var(--ink-2); text-decoration: none; display: block; margin: 4px 0; }
.case article.card .shot { height: 340px; }

/* button spacing */
.btn { margin: 0; }
.hero-actions { gap: 14px; }
.btn + .btn { margin-left: 0; }
.card-body .btn,
.svc .btn,
.price .btn,
.section-head .btn,
.band-dark .btn {
  margin-top: 12px;
  margin-right: 12px;
  margin-bottom: 4px;
}
.card-body .btn:last-child,
.svc .btn:last-child,
.price .btn:last-child { margin-right: 0; }
a.btn + a.btn, button.btn + a.btn, a.btn + button.btn { margin-left: 12px; }
.btn-row, .cta-row, .price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.price { display: flex; flex-direction: column; }
.price ul { flex: 1; }
.price .price-actions { margin-top: auto; padding-top: 18px; }

@media (max-width: 900px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; position: absolute; top: 76px; left: 0; right: 0; background: var(--cream-2); border-bottom: 1px solid var(--line); padding: 16px 20px 22px; }
  nav.open .btn { margin: 0; width: auto; }
  .menu-btn { display: inline-flex; }
  .hero-grid, .work-grid, .services, .steps, .stats, .form-grid, .foot { grid-template-columns: 1fr; }
  .inds { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 6px !important; }
  .ind { padding: 10px 8px; min-height: 40px; border-radius: 999px; }
  .ind h3 { font-size: 12px; }
  .ind p { display: none; }
  .hero { padding-top: 42px; }
}

.tool-q { display:grid; gap:10px; }
.tool-q label.opt { display:flex; gap:10px; align-items:flex-start; background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px 14px; cursor:pointer; }
.tool-q label.opt:has(input:checked) { border-color:var(--amber); box-shadow:0 0 0 1px var(--amber); }
.score-hero { display:grid; grid-template-columns:180px 1fr; gap:24px; align-items:center; background:var(--char); color:#f6f0e4; border-radius:28px; padding:28px; }
.score-ring { width:160px; height:160px; border-radius:50%; display:grid; place-items:center; background:conic-gradient(var(--amber) calc(var(--p)*1%), #333029 0); }
.score-ring span { width:118px; height:118px; border-radius:50%; background:var(--char); display:grid; place-items:center; font-family:var(--serif); font-size:42px; }
.fix-list { display:grid; gap:8px; }
.fix-list div { background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px 14px; }
.fix-list .bad { border-left:4px solid #c45c12; }
.fix-list .ok { border-left:4px solid var(--ok); }
.preview-phone { max-width:380px; background:#111; color:#f6f0e4; border-radius:28px; padding:22px; min-height:420px; box-shadow:var(--shadow); }
.preview-phone .ph { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:#c4b79a; }
.preview-phone h3 { font-size:28px; margin:10px 0; }
.preview-phone .cta-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.preview-phone .cta-row span { background:var(--amber); color:#f7eedd; border-radius:999px; padding:8px 12px; font-size:13px; font-weight:700; }

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.menu-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
a:focus-visible {
  outline-color: var(--ink);
}
button:focus-visible,
.btn:focus-visible,
.menu-btn:focus-visible {
  outline-color: var(--amber);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-color: var(--amber);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover .shot-img { transform: none; }
  .card:hover, .teaser-card:hover { transform: none; }
  .skip-link { transition: none; }
}

@media (max-width: 520px) {
  .inds { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .ind h3 { font-size: 11px; }
}


/* === 9/10 polish 2026-09-20 === */
.hero-grid { align-items: center; }
.hero-mark img { box-shadow: 0 18px 40px rgba(20,19,17,.10); }
.section-head h2 { margin-top: 6px; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), rgba(163,131,78,.25));
}
.hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), rgba(163,131,78,.20));
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,149,16,.12);
  color: #5c1818;
  border: 1px solid rgba(139,30,34,.28);
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: .16em;
}
.band-dark .kicker {
  background: rgba(163,131,78,.20);
  color: #f2d9a0;
  border-color: rgba(242,180,48,.28);
}
.faq details { transition: border-color .15s ease, box-shadow .15s ease; }
.faq details[open] { border-color: #e0c48a; box-shadow: 0 0 0 1px rgba(224,149,16,.18); }
.faq summary { font-size: 16px; line-height: 1.35; padding: 2px 0; }
.faq details p { font-size: 16px; line-height: 1.6; max-width: 62ch; }
.foot { row-gap: 28px; }
.foot > div:first-child { line-height: 1.55; }
.quote { margin-top: 8px; }
.stat b { letter-spacing: -.02em; }
@media (min-width: 901px) {
  .hero { padding: 92px 0 64px; }
  .topbar-inner { min-height: 80px; }
}

/* === Blog 2026-09-20 === */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.blog-meta { color: var(--mute); font-size: 14px; margin: 8px 0 0; }
.blog-meta time { font-weight: 650; color: var(--ink-2); }
.prose { max-width: 720px; }
.prose p { color: var(--ink-2); font-size: 17.5px; line-height: 1.7; margin: 0 0 1.15em; }
.prose h2 { font-size: clamp(26px, 3.2vw, 34px); margin: 1.6em 0 .55em; }
.prose h3 { font-size: 22px; margin: 1.35em 0 .45em; }
.prose ul, .prose ol { color: var(--ink-2); margin: 0 0 1.2em; padding-left: 1.25em; }
.prose li { margin: .45em 0; line-height: 1.6; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #5c1818; }
.prose .lead { font-size: 20px; max-width: none; margin-bottom: 1.4em; }
.blog-hero-img { border-radius: 24px; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); margin: 28px 0 8px; background: #111; position: relative; }
.blog-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,19,17,.28));
  pointer-events: none;
}
.blog-hero-img img { width: 100%; height: auto; max-height: 480px; min-height: 240px; object-fit: cover; object-position: center; }
.blog-inline { border-radius: 18px; border: 1px solid var(--line); overflow: hidden; margin: 1.6em 0; background: #111; }
.blog-inline img { width: 100%; height: auto; max-height: 340px; object-fit: cover; object-position: top; }
.blog-caption { color: var(--mute); font-size: 13.5px; margin: .55em 0 0; }
.blog-byline { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-top: 14px; color: var(--mute); font-size: 14.5px; }
.blog-cta { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 28px; margin-top: 36px; }
.blog-cta h3 { margin-bottom: 8px; }
.blog-cta p { color: var(--ink-2); margin: 0 0 16px; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.teaser-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: border-color .15s ease, transform .28s ease, box-shadow .28s ease; }
.teaser-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 22px 48px rgba(20,19,17,.12); }
.teaser-card .shot { height: 168px; overflow: hidden; background: #111; }
.teaser-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.teaser-card .body { padding: 16px 18px 18px; }
.teaser-card h3 { font-size: 20px; margin: 0 0 6px; }
.teaser-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
@media (max-width: 900px) {
  .blog-grid, .teaser-grid { grid-template-columns: 1fr; }
}


/* === Visual pop 2026-09-20 === */
.hero-visual { display: grid; gap: 18px; align-content: start; }
.hero-devices { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; align-items: end; }
.device-frame {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20,19,17,.14);
  aspect-ratio: 4 / 3;
}
.device-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.device-frame.secondary { aspect-ratio: 3 / 4; transform: translateY(8px); }
.hero-visual .hero-mark {
  width: min(160px, 42%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 28px;
}
.hero-visual .hero-mark img { width: 100%; }
.hero-mark { margin-inline: 0; }

.visual-band { padding: 10px 0 28px; }
.visual-band .visual-strip { margin: 0; }
.visual-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.visual-strip figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.visual-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.btn-amber { box-shadow: 0 8px 16px rgba(28,20,16,.14); }
.btn-amber:hover { box-shadow: 0 12px 22px rgba(28,20,16,.18); }

@media (max-width: 900px) {
  .section-head { text-align: center; margin-inline: auto; max-width: 640px; }
  .section-head h2::after { margin-inline: auto; }
  .hero .wrap > div:first-child,
  .hero-grid > div:first-child { text-align: center; }
  .hero h1::after { margin-inline: auto; }
  .hero .lead, .lead { margin-inline: auto; }
  .hero-actions, .btn-row, .cta-row, .price-actions {
    justify-content: center;
  }
  .hero-visual, .hero-mark {
    margin-inline: auto;
    width: min(420px, 100%);
  }
  .hero-mark img { margin-inline: auto; }
  .hero-devices { grid-template-columns: 1fr; }
  .device-frame.secondary { display: none; }
  .device-frame { aspect-ratio: 16 / 10; transform: none; }

  .hero-visual { width: min(440px, 100%); }
  .hero-visual .hero-mark { width: min(120px, 36%); margin-top: 4px; }

  .stats {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .card-body { text-align: center; }
  .card-body .btn { margin-right: 0; }
  .teaser-card .body { text-align: center; }
  .svc { text-align: center; }
  .svc ul { text-align: left; display: inline-block; }
  .svc .btn { margin-right: 0; }
  .quote { text-align: center; }
  .blog-cta { text-align: center; }
  .blog-cta .btn-row, .blog-cta .cta-row { justify-content: center; }
  .blog-byline { justify-content: center; }
  section .wrap > p:has(> .btn) {
    text-align: center;
  }
  /* fallback for browsers without :has — also center common lone CTA paras */
  section .wrap > p { text-align: center; }
  .prose p, .faq details p, .foot p { text-align: left; }
  .faq details { text-align: left; }
  .visual-strip { grid-template-columns: 1fr 1fr; }
  .price { text-align: center; }
  .price ul { text-align: left; display: inline-block; margin-inline: auto; }
  .price-actions { justify-content: center; }
  .inds { justify-items: center; }
  .step { text-align: center; }
  .score-hero { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .preview-phone { margin-inline: auto; }
  .form-grid { text-align: left; }
  nav.open { align-items: center; text-align: center; }
  nav.open .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 520px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding: 36px 0 40px; }
  .hero-actions .btn, .btn-row .btn { width: 100%; max-width: 320px; }
  .hero-actions, .btn-row { width: 100%; }
  .stats { gap: 10px; }
  .card .shot { height: 200px; }
  .teaser-card .shot { height: 180px; }
  .visual-strip { grid-template-columns: 1fr; }
  .quote { padding: 28px 22px; }
  section { padding: 56px 0; }
}

/* === Mobile centering polish 2026-09-20b === */
@media (max-width: 900px) {
  .section-head { text-align: center; margin-inline: auto; }
  .section-head h2::after { margin-inline: auto; }
  .hero-grid > div:first-child { text-align: center; }
  .hero-grid .lead { margin-inline: auto; }
  .hero-actions, .btn-row, .cta-row, .price-actions { justify-content: center; }
  .hero-visual, .hero-mark { margin-inline: auto; }
  .hero-mark img { margin-inline: auto; }
  .stats { margin-inline: auto; max-width: 420px; }
  .card-body, .teaser-card .body, .svc { text-align: center; }
  .svc ul { display: inline-block; text-align: left; }
  .quote { text-align: center; }
  .blog-cta { text-align: center; }
  .blog-cta .btn-row { justify-content: center; }
  section .wrap > p { text-align: center; }
  .prose p, .faq details p, .foot p, .svc p { text-align: left; }
  .card-body, .card-body p { text-align: center; }
  .teaser-card,
  .teaser-card .body,
  .teaser-card .body h3,
  .teaser-card .body p { text-align: center; }
  .faq details { text-align: left; }
  .band-dark .section-head { text-align: center; margin-inline: auto; }
}
@media (max-width: 520px) {
  .hero-actions .btn, .btn-row .btn { width: min(100%, 320px); }
  .stats { grid-template-columns: 1fr 1fr; }
  .card .shot, .card .shot-img { height: 200px; }
  .teaser-card .shot { height: 180px; }
  .device-frame { border-radius: 16px; }
}

/* === CTA + mobile center harden 2026-09-20c === */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .cta-row,
  .btn-row,
  .hero-actions,
  .price-actions {
    justify-content: center;
  }
  .cta-row .btn,
  section .wrap > .cta-row .btn {
    margin-inline: 0;
  }
  .teaser-card { text-align: center; }
  .teaser-card .body,
  .teaser-card .body h3,
  .teaser-card .body p { text-align: center; }
  /* Lone paragraph CTAs */
  section .wrap > p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  /* Don't flex prose/faq paragraphs into weird layouts */
  .prose p,
  .faq details p,
  .foot p,
  .card-body p,
  .teaser-card p,
  .svc p,
  .section-head p,
  .band-dark .section-head p {
    display: block;
  }
  .band-dark .section-head > p:has(> .btn) {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}


/* Custom hero photo */
.hero-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
  aspect-ratio: 16 / 10;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual .hero-mark {
  margin-top: 14px;
  width: min(140px, 42%);
  justify-self: end;
}
@media (max-width: 900px) {
  .hero-photo { aspect-ratio: 16 / 11; border-radius: 22px; }
  .hero-visual .hero-mark {
    justify-self: center;
    margin-inline: auto;
    width: min(120px, 36%);
  }
}


/* Palette lock 2026-09-21 — deep red + bronze + light cream (Erik ref) */

/* 2026-09-21b — added true brown for ink/ghost/dark bands */

/* === Hero copy texture 2026-09-21 === */
.hero-copy {
  position: relative;
  isolation: isolate;
  background:
    /* fine linen weave */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(92,61,46,.035) 3px,
      rgba(92,61,46,.035) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(92,61,46,.028) 3px,
      rgba(92,61,46,.028) 4px
    ),
    /* warm paper */
    linear-gradient(165deg, #fffaf2 0%, #f7eedd 55%, #f3e6d0 100%);
  border: 1px solid rgba(163,131,78,.38);
  border-radius: 28px;
  padding: 36px 40px 32px;
  box-shadow:
    0 1px 0 rgba(255,250,242,.9) inset,
    0 22px 50px rgba(28,20,16,.10);
  overflow: hidden;
}
.hero-copy::before {
  /* porch-board diagonal hatch */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 14px,
      rgba(163,131,78,.045) 14px,
      rgba(163,131,78,.045) 15px
    );
  mix-blend-mode: multiply;
}
.hero-copy::after { display: none; content: none; }
.hero-copy > * { position: relative; z-index: 1; }
.hero-copy .lead { max-width: 34em; }
.hero-copy .stats { margin-top: 28px; }
.hero-copy .stat {
  background: rgba(255,250,242,.72);
  backdrop-filter: blur(4px);
  border-color: rgba(163,131,78,.28);
}
.hero {
  background: var(--cream-2);
}
@media (max-width: 900px) {
  .hero-copy {
    padding: 28px 22px 24px;
    border-radius: 22px;
    text-align: center;
  }
  .hero-copy .lead { margin-inline: auto; }
}
@media (max-width: 520px) {
  .hero-copy { padding: 22px 16px 20px; border-radius: 18px; }
}

/* === Flare pop 2026-09-21 === */
:root {
  --glow-red: 0 10px 22px rgba(28, 20, 16, .14);
  --glow-bronze: 0 12px 28px rgba(28, 20, 16, .12);
  --lift: 0 28px 64px rgba(28, 20, 16, .16);
}

/* Topbar polish */
.topbar {
  box-shadow: 0 1px 0 rgba(163,131,78,.18), 0 10px 28px rgba(28,20,16,.04);
}
.brand img {
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover img {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 16px rgba(28,20,16,.08);
}
nav a {
  position: relative;
  transition: color .15s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--bronze));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

/* Buttons — stronger presence */
.btn {
  transition: transform .2s ease, box-shadow .2s ease, background .15s ease, color .15s ease, border-color .15s ease;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-amber {
  background: linear-gradient(180deg, var(--red-2) 0%, var(--red) 100%);
  box-shadow: 0 8px 16px rgba(28,20,16,.14), inset 0 1px 0 rgba(255,250,242,.22);
  border: 1px solid rgba(92,24,24,.25);
}
.btn-amber:hover {
  background: linear-gradient(180deg, #b92f35 0%, var(--red-2) 100%);
  box-shadow: 0 12px 22px rgba(28,20,16,.18), inset 0 1px 0 rgba(255,250,242,.28);
  color: #f7eedd;
}
.btn-ink {
  box-shadow: 0 8px 16px rgba(28,20,16,.12), inset 0 1px 0 rgba(255,250,242,.12);
}
.btn-ink:hover {
  box-shadow: 0 12px 22px rgba(28,20,16,.16);
}
.btn-ghost {
  background: rgba(255,250,242,.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(28,20,16,.06);
}
.btn-ghost:hover {
  box-shadow: 0 8px 16px rgba(28,20,16,.10);
}

/* Cards + work shots */
.card {
  border-color: rgba(163,131,78,.28);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,250,242,.6) inset;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,30,34,.45);
  box-shadow: var(--lift), 0 0 0 1px rgba(139,30,34,.18);
}
.card .shot {
  position: relative;
}
.card .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28,20,16,.28) 100%);
  pointer-events: none;
  opacity: .85;
}
.card:hover .shot-img { transform: scale(1.06); }
.tag {
  background: linear-gradient(180deg, #f8e8d4, #f0d4b4);
  border: 1px solid rgba(139,30,34,.22);
  color: #5c1818;
  box-shadow: 0 2px 0 rgba(255,250,242,.8) inset;
}

/* Services / pricing */
.svc, .price {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .15s ease;
  border-color: rgba(163,131,78,.28);
}
.svc::before, .price::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--bronze), transparent);
  opacity: .85;
}
.svc:hover, .price:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-bronze);
  border-color: rgba(139,30,34,.35);
}
.price.featured {
  border-color: rgba(163,131,78,.28);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.price .amt {
  background: linear-gradient(120deg, var(--ink) 0%, var(--brown) 55%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Industry pills */
.ind {
  border-color: rgba(163,131,78,.3);
  transition: transform .2s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.ind:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: linear-gradient(180deg, #fffaf2, #f3e0c8);
  box-shadow: 0 0 0 1px rgba(139,30,34,.25), 0 8px 16px rgba(28,20,16,.10);
}

/* Steps band */
.step {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(163,131,78,.22);
  transition: transform .25s ease, border-color .15s ease, box-shadow .25s ease;
}
.step::after { display: none; content: none; }
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(163,131,78,.5);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

/* Dark bands — richer */
.band-dark {
  background: linear-gradient(165deg, #1c1410 0%, #2a1e18 55%, #1c1410 100%);
  position: relative;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(163,131,78,.04) 18px,
      rgba(163,131,78,.04) 19px
    );
}
.band-dark > .wrap { position: relative; z-index: 1; }

/* Quote flare */
.quote {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(163,131,78,.28);
  box-shadow: var(--lift);
  background: var(--char);
}
.quote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 18px;
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  color: rgba(163,131,78,.28);
  pointer-events: none;
}

/* FAQ open state */
.faq details {
  transition: border-color .15s ease, box-shadow .15s ease, transform .2s ease;
}
.faq details[open] {
  border-color: rgba(139,30,34,.4);
  box-shadow: 0 0 0 1px rgba(139,30,34,.15), 0 12px 28px rgba(28,20,16,.08);
  transform: translateY(-1px);
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }

/* Blog teasers */
.teaser-card {
  border-color: rgba(163,131,78,.28);
}
.teaser-card:hover {
  border-color: rgba(139,30,34,.45);
  box-shadow: var(--lift);
  transform: translateY(-5px);
}
.teaser-card .shot {
  position: relative;
}
.teaser-card .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,20,16,.25));
  pointer-events: none;
}

/* Hero photo frame */
.hero-photo {
  box-shadow: var(--lift), 0 0 0 1px rgba(163,131,78,.35);
  border: 1px solid rgba(163,131,78,.4);
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,250,242,.25);
  border-radius: inherit;
}
.hero-visual .hero-mark {
  box-shadow: var(--glow-bronze), 0 0 0 1px rgba(163,131,78,.4);
  border-color: rgba(163,131,78,.45);
}

/* Section rhythm accents */
section + section {
  position: relative;
}
.section-head h2::after {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--bronze), transparent);
  box-shadow: none;
}
.hero h1::after {
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--bronze), transparent);
  box-shadow: none;
}

/* Stats inside hero — slight lift */
.hero-copy .stat {
  transition: transform .2s ease, box-shadow .2s ease, border-color .15s ease;
}
.hero-copy .stat:hover {
  transform: translateY(-2px);
  border-color: rgba(139,30,34,.35);
  box-shadow: 0 10px 22px rgba(28,20,16,.1);
}
.hero-copy .stat b {
  background: linear-gradient(120deg, var(--ink), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Footer — flat */
footer {
  background: var(--cream-2);
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn, .card, .svc, .price, .ind, .step, .teaser-card, .brand img, .hero-copy .stat {
    transition: none !important;
  }
  .btn:hover, .card:hover, .svc:hover, .price:hover, .ind:hover, .step:hover, .teaser-card:hover {
    transform: none !important;
  }
}

/* === Promo video 2026-09-21 === */
.promo-band {
  padding: 64px 0 72px;
  background: var(--cream);
}
.promo-head { max-width: 720px; margin-inline: auto; text-align: center; }
.promo-head .kicker { margin-inline: auto; }
.promo-head h2::after { margin-inline: auto; }
.promo-frame {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(163,131,78,.4);
  box-shadow: 0 28px 64px rgba(28,20,16,.16), 0 0 0 1px rgba(255,250,242,.35) inset;
  background: #1c1410;
  aspect-ratio: 16 / 9;
}
.promo-frame video, .promo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1c1410;
}
.promo-cta { justify-content: center; margin-top: 28px; }
@media (max-width: 900px) {
  .promo-band { padding: 48px 0 56px; }
  .promo-frame { border-radius: 20px; }
}
@media (max-width: 520px) {
  .promo-frame { border-radius: 16px; }
}

/* dual promo videos */
.promo-band .promo-frame + .section-head.promo-head { margin-top: 40px; }
.promo-band .promo-frame { margin-bottom: 8px; }





/* === Thin red box edges 2026-09-21 === */
/* Outer boxes only — never logos, never inner tags/pills */
.card,
.teaser-card,
.hero-copy,
.promo-frame,
.faq details,
.tool-card,
.pack-card,
.pricing-card,
.contact-panel,
.section-panel {
  border: 1px solid #8b1e22 !important;
  box-shadow: var(--shadow) !important;
}
.card:hover,
.teaser-card:hover,
.tool-card:hover,
.pack-card:hover,
.pricing-card:hover {
  border-color: #8b1e22 !important;
  box-shadow: var(--lift) !important;
}

/* Logos: no red ring ever */
.brand img,
.topbar .brand img,
footer .brand img,
.logo,
img[src*="logo"] {
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}
.brand:hover img,
.topbar .brand:hover img {
  border-color: var(--line) !important;
  box-shadow: 0 8px 16px rgba(28,20,16,.08) !important;
}

/* Inner chips stay clean */
.kicker,
.tag,
.card .tag,
.teaser-card .tag,
.work-grid .tag {
  border: 0 !important;
  box-shadow: none !important;
}

/* === Featured price unring 2026-09-21 === */
/* Middle Rebuild card: same edge as siblings — no red ring on any breakpoint */
.price.featured,
.prices .price.featured,
.grid .price.featured {
  border: 1px solid rgba(163,131,78,.28) !important;
  box-shadow: var(--shadow) !important;
  background: var(--paper) !important;
}
.price.featured:hover,
.prices .price.featured:hover {
  border-color: rgba(139,30,34,.35) !important;
  box-shadow: var(--glow-bronze) !important;
  background: var(--paper) !important;
}
@media (max-width: 900px) {
  .price.featured {
    border: 1px solid rgba(163,131,78,.28) !important;
    box-shadow: var(--shadow) !important;
  }
}

/* === Mobile stack no-crowd 2026-09-21 === */
/* Tool form + preview: side-by-side on desktop, stacked on phone/tablet */
.tool-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.tool-split .preview-phone {
  width: 100%;
  max-width: none;
}

@media (max-width: 900px) {
  /* Kill crowded 2+/3-col content panels — always stack */
  .tool-split,
  .hero-grid,
  .work-grid,
  .services,
  .steps,
  .form-grid,
  .foot,
  .blog-grid,
  .teaser-grid,
  .score-hero,
  .city-prices,
  .prices {
    grid-template-columns: 1fr !important;
  }
  /* Override leftover inline grid styles that beat media queries */
  .wrap[style*="grid-template-columns"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Photo strips: one column on phone so images aren't tiny */
  .visual-strip {
    grid-template-columns: 1fr !important;
  }
  /* Stats: 2x2 is fine; full stack only on very narrow */
  .stats {
    grid-template-columns: 1fr 1fr !important;
    max-width: 420px;
    margin-inline: auto;
  }
  .preview-phone {
    margin-inline: auto;
    max-width: 420px;
    width: 100%;
  }
  .tool-split > div:first-child {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }
  .tool-split select,
  .tool-split input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Industry pills: 2 across instead of cramped 3 */
  .inds {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* === Dark red header 2026-09-21 === */
.topbar {
  background: linear-gradient(180deg, #9a2428 0%, var(--red) 55%, #76181b 100%) !important;
  border-bottom: 1px solid rgba(28,20,16,.35) !important;
  box-shadow: 0 10px 28px rgba(28,20,16,.22), inset 0 1px 0 rgba(255,250,242,.12) !important;
  backdrop-filter: none !important;
}
.topbar .brand {
  color: #fffaf2 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .16em !important;
  text-shadow: 0 1px 0 rgba(28,20,16,.25);
}
.topbar .brand img {
  border: 2px solid rgba(255,250,242,.85) !important;
  box-shadow: 0 4px 12px rgba(28,20,16,.28) !important;
  background: #fffaf2 !important;
}
.topbar .brand:hover img {
  border-color: #fffaf2 !important;
  box-shadow: 0 6px 16px rgba(28,20,16,.32) !important;
}
.topbar nav a {
  color: #fffaf2 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: .02em;
  text-shadow: 0 1px 0 rgba(28,20,16,.2);
}
.topbar nav a:hover,
.topbar nav a.active {
  color: #ffe8c8 !important;
}
.topbar nav a::after {
  background: linear-gradient(90deg, #ffe8c8, var(--bronze-2)) !important;
}
/* Header CTA: cream pill so it reads on red */
.topbar nav .btn-amber {
  background: #fffaf2 !important;
  color: var(--red) !important;
  border: 1px solid rgba(255,250,242,.95) !important;
  box-shadow: 0 8px 20px rgba(28,20,16,.22) !important;
  font-weight: 700 !important;
}
.topbar nav .btn-amber:hover {
  background: #ffe8c8 !important;
  color: #76181b !important;
  box-shadow: 0 10px 24px rgba(28,20,16,.28) !important;
}
.topbar .menu-btn {
  display: none;
  background: rgba(255,250,242,.14) !important;
  color: #fffaf2 !important;
  border: 1px solid rgba(255,250,242,.55) !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
}
@media (max-width: 900px) {
  .topbar .menu-btn {
    display: inline-flex !important;
  }
  .topbar nav.open {
    background: linear-gradient(180deg, var(--red) 0%, #76181b 100%) !important;
    border-bottom: 1px solid rgba(28,20,16,.35) !important;
    box-shadow: 0 16px 32px rgba(28,20,16,.28);
  }
  .topbar nav.open a {
    color: #fffaf2 !important;
    font-weight: 650 !important;
    font-size: 16px !important;
  }
  .topbar nav.open .btn-amber {
    background: #fffaf2 !important;
    color: var(--red) !important;
  }
}



/* === Brand Website Design line 2026-09-21 === */
.topbar .brand {
  flex-wrap: nowrap !important;
  align-items: center !important;
  min-width: 0;
}
.brand-text {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: center;
  gap: 3px;
  line-height: 1.05;
  min-width: 0;
}
.brand-name,
.brand-line {
  display: block !important;
  width: max-content;
  max-width: 100%;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
}
.brand-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
}
.brand-line {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .16em;
}
.topbar .brand-text { color: #fffaf2; }
.topbar .brand-name {
  font-size: 13px;
  letter-spacing: .14em;
  text-shadow: 0 1px 0 rgba(28,20,16,.25);
}
.topbar .brand-line {
  font-size: 11px;
  letter-spacing: .18em;
  color: #ffe8c8;
  text-shadow: 0 1px 0 rgba(28,20,16,.25);
}
@media (max-width: 700px) {
  .brand-name { font-size: 11px; letter-spacing: .08em; }
  .brand-line { font-size: 10px; letter-spacing: .1em; }
}
@media (max-width: 420px) {
  .brand-name { font-size: 10px; letter-spacing: .06em; }
  .brand-line { font-size: 9px; letter-spacing: .08em; }
}


/* === No glow 2026-09-21 — kill remaining soft colored blooms === */
.hero,
.promo-band,
.band-dark,
.quote,
footer {
  /* backgrounds already flattened above; keep override empty for specificity */
}
.hero-mark::after,
.hero-copy::after,
.step::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}
.btn-amber,
.btn-amber:hover,
.btn-ink,
.btn-ink:hover,
.section-head h2::after,
.hero h1::after {
  /* neutralize any leftover colored soft shadows */
}
.section-head h2::after,
.hero h1::after {
  box-shadow: none !important;
}
.svc:hover,
.price:hover,
.price.featured:hover,
.prices .price.featured:hover,
.hero-visual .hero-mark {
  box-shadow: var(--lift) !important;
}
.btn-amber {
  box-shadow: 0 8px 16px rgba(28,20,16,.14), inset 0 1px 0 rgba(255,250,242,.22) !important;
}
.btn-amber:hover {
  box-shadow: 0 12px 22px rgba(28,20,16,.18), inset 0 1px 0 rgba(255,250,242,.28) !important;
}
