/* PMV Digital — pmvdigitalmarketing.com
   Design modeled on sami.marketing (Awwwards Site of the Day, May 30 2025):
   soft ice-gradient canvas, huge edge-to-edge display type, segmented toolbar
   chrome, boxed panels, playful status ticker, ONE loud accent.
   PMV-ized: accent = the electric blue of the real PMV Digital Marketing logo. */

:root {
  --sky-top: #D7E6F4;
  --sky-bottom: #F4F9FE;
  --ink: #0C1520;            /* near-black text */
  --ink-soft: #3D4C5C;
  --paper: #FFFFFF;
  --blue: #0B67A6;           /* accessible PMV blue — 5.9:1 with white text */
  --blue-vivid: #19A9E8;     /* logo cyan for big display fills */
  --blue-deep: #084C7C;
  --line: rgba(12, 21, 32, 0.16);
  --dark: #05080C;           /* footer / logo chip */
  --hl: #FFE94A;             /* ticker highlight */
  --radius: 6px;
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --wrap: 1360px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, var(--sky-top), var(--sky-bottom) 55%, #EDF5FC);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
a:hover { text-decoration: underline; }
a, button, summary { cursor: pointer; }

h1, h2, h3 { font-family: "Sora", "DM Sans", sans-serif; color: var(--ink); line-height: 1.05; letter-spacing: -0.02em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--ink-soft); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 8px 16px; z-index: 1000; }
.skip:focus { left: 0; }

/* ================= segmented toolbar header (sami-style chrome) ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; gap: 20px; align-items: center; justify-content: space-between;
  max-width: var(--wrap); margin: 0 auto; padding: 12px 20px;
}
.brand {
  display: flex; align-items: center; padding: 8px 14px;
  background: var(--dark); border-radius: var(--radius);
}
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
.site-nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
.site-nav a {
  position: relative; color: var(--ink); text-decoration: none;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 6px 0;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--blue); transition: right 0.25s var(--ease);
}
.site-nav a:not(.btn):hover::after, .site-nav a:not(.btn).active::after { right: 0; }
.site-nav a:not(.btn):hover { text-decoration: none; color: var(--blue-deep); }
.site-nav a.active { color: var(--blue-deep); }
.site-nav a.nav-cta { padding: 12px 22px; }
.site-nav a.nav-cta::after { display: none; }
.nav-toggle {
  display: none; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 10px 16px; font: inherit; font-weight: 700;
}

/* ================= giant display hero ===================================== */
.hero { padding: 48px 20px 24px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(11, 103, 166, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 70%);
}
.hero-word {
  display: block; width: 100%; text-align: center;
  font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(3.4rem, 12.4vw, 12rem); line-height: 0.95;
  background: linear-gradient(110deg, #0B67A6 20%, #19A9E8 40%, #7FDBFF 50%, #19A9E8 60%, #0B67A6 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
  user-select: none;
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: 0% 0; } }
.hero-strip {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: "Sora", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue-deep); font-size: clamp(0.8rem, 1.6vw, 1.05rem);
  margin: 10px 0 40px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; max-width: var(--wrap); margin: 0 auto; }
.hero h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 18px; max-width: 560px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { color: var(--ink-soft); font-size: 0.9rem; margin-top: 18px; }

/* fanned screenshot stack — the "awesome pictures" centerpiece */
.shot-stack { position: relative; height: clamp(320px, 36vw, 480px); }
.shot-stack .browser { position: absolute; width: 78%; transition: transform 0.35s var(--ease); }
.shot-stack .browser:nth-child(1) { top: 4%; left: 0; transform: rotate(-5deg); z-index: 1; }
.shot-stack .browser:nth-child(2) { top: 14%; right: 0; transform: rotate(3deg); z-index: 2; }
.shot-stack .browser:nth-child(3) { bottom: 0; left: 10%; transform: rotate(-1deg); z-index: 3; }
.shot-stack:hover .browser:nth-child(1) { transform: rotate(-7deg) translateY(-8px); }
.shot-stack:hover .browser:nth-child(2) { transform: rotate(5deg) translateY(-8px); }
.shot-stack:hover .browser:nth-child(3) { transform: rotate(0deg) translateY(-8px); }

/* browser frame around every screenshot */
.browser {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 24px 48px -20px rgba(11, 42, 74, 0.35);
  overflow: hidden;
}
.browser .chrome {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  background: #EDF1F6; border-bottom: 1px solid var(--line);
}
.browser .chrome i { width: 9px; height: 9px; border-radius: 50%; background: #C9D4DF; }
.browser .chrome i:first-child { background: var(--blue-vivid); }
.browser .chrome .url {
  margin-left: 8px; font-size: 0.72rem; color: var(--ink-soft);
  background: #fff; border-radius: 999px; padding: 2px 12px; border: 1px solid var(--line);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser img { width: 100%; }

/* ================= buttons ================================================ */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--radius);
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background-color 0.2s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: var(--blue-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: var(--paper); border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ================= numbered section headers =============================== */
.section { padding: 72px 20px; }
.page-head { padding: 56px 20px 0; }
.sec-tag {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue);
  margin-bottom: 18px;
}
.h-xl { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); max-width: 680px; font-size: 1.08rem; }

/* ================= stats ================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: var(--wrap); margin: 0 auto; padding: 24px 20px 0; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.stat-num { display: block; font-family: "Sora", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--blue); }
.stat-label { color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; }

/* ================= services =============================================== */
.svc-list { margin-top: 40px; display: grid; gap: 12px; }
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 44px; gap: 20px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; color: inherit; text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.2s;
}
.svc-row:hover { transform: translateX(8px); border-color: var(--blue); text-decoration: none; }
.svc-num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--blue); }
.svc-body h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: 6px; }
.svc-body p { color: var(--ink-soft); max-width: 820px; }
.svc-arrow { font-size: 1.4rem; color: var(--blue); }

/* ================= work / portfolio ======================================= */
.port-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.port-card { display: block; color: inherit; text-decoration: none; }
.port-card:hover { text-decoration: none; }
.port-card .browser { transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.port-card:hover .browser { transform: translateY(-8px); box-shadow: 0 32px 56px -20px rgba(11, 42, 74, 0.45); }
.port-card .shot { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.port-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 6px 0; }
.port-meta h3 { font-size: 1.15rem; }
.port-meta .cat { color: var(--ink-soft); font-size: 0.9rem; }
.port-visit { font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--blue); white-space: nowrap; }

/* ================= plans ================================================== */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; align-items: stretch; }
.plan-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s var(--ease), border-color 0.2s;
}
.plan-card:hover { transform: translateY(-6px); border-color: var(--blue); }
.plan-card.featured { border: 2px solid var(--blue); position: relative; }
.plan-card h3, .plan-card h2 { font-size: 1.35rem; }
.plan-badge {
  align-self: flex-start; font-family: "Sora", sans-serif; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink);
  background: var(--hl); border-radius: 999px; padding: 5px 12px;
}
.plan-price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--ink); }
.plan-price span { font-size: 1.1rem; color: var(--ink-soft); font-weight: 600; }
.plan-strike { color: var(--ink-soft); text-decoration: line-through; font-size: 0.95rem; }
.plan-list { list-style: none; margin: 6px 0; }
.plan-list li { padding: 6px 0 6px 28px; position: relative; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.plan-addon { color: var(--ink-soft); font-size: 0.9rem; border-top: 1px solid var(--line); padding-top: 12px; }
.plan-addon strong { color: var(--ink); }
.plan-card .btn { margin-top: auto; text-align: center; }
.ada-card { max-width: 780px; }

/* ================= bold bands ============================================= */
.band-dark { background: #071523; }
.band-dark .h-xl { color: #fff; }
.band-dark .sec-tag { color: var(--blue-vivid); }
.band-dark .section-sub, .band-dark .muted { color: #A8BCCC; }
.band-dark .plan-card { background: #0D2234; border-color: rgba(255, 255, 255, 0.14); }
.band-dark .plan-card h3, .band-dark .plan-price { color: #fff; }
.band-dark .plan-price span { color: #A8BCCC; }
.band-dark .plan-card.featured { border-color: var(--blue-vivid); }
.band-dark .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.band-dark .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.band-blue { background: linear-gradient(150deg, #0B67A6, #084C7C); }
.band-blue .sec-tag { color: #AEE4FF; }
.band-blue .h-xl { color: #fff; }
.band-blue .section-sub, .band-blue .hero-note { color: #CBE7F8; }

.feature-first .port-card:first-child { grid-column: 1 / -1; }
.feature-first .port-card:first-child .shot { aspect-ratio: 21 / 9; }

/* ================= steps ================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ================= why / value cards ====================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: border-color 0.2s; }
.why-card:hover { border-color: var(--blue); }
.why-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ================= testimonials =========================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.testi-card blockquote { font-size: 1rem; }
.testi-card figcaption { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; background: var(--blue); color: #fff;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.85rem;
}

/* ================= contact ================================================ */
.contact-panel {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(28px, 5vw, 56px); max-width: var(--wrap); margin: 0 auto;
  box-shadow: 0 24px 48px -24px rgba(11, 42, 74, 0.25);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  background: #F4F8FC; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px; color: var(--ink); font: inherit; font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); outline: none; background: #fff; }
.contact-form button { margin-top: 8px; }

/* ================= cta band =============================================== */
.cta-band {
  text-align: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: clamp(36px, 6vw, 64px);
}
.cta-band .section-sub { margin: 0 auto 26px; }

/* ================= prose / legal ========================================== */
.prose-panel { max-width: 820px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: clamp(28px, 5vw, 48px); }
.prose-panel h2 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose-panel h2:first-child { margin-top: 0; }
.prose-panel p, .prose-panel li { color: var(--ink-soft); }
.prose-panel strong { color: var(--ink); }
.prose-panel ul { padding-left: 24px; margin: 10px 0; }
.prose-panel li { padding: 3px 0; }

/* ================= FAQ ==================================================== */
.faq { margin-top: 36px; max-width: 880px; display: grid; gap: 10px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 22px 20px; }

/* ================= footer ================================================= */
.site-footer { background: var(--dark); color: #C7D3DE; margin-top: 72px; padding: 56px 0 32px; overflow: hidden; }
.site-footer .muted { color: #A9BBC9; }
.footer-word {
  font-family: "Sora", sans-serif; font-weight: 800; text-align: center;
  font-size: clamp(3rem, 11.5vw, 10.5rem); line-height: 1; white-space: nowrap;
  background: linear-gradient(120deg, #0B67A6, #19A9E8 55%, #64D2FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 56px; user-select: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-vivid); margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: #C7D3DE; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footnote { font-size: 0.9rem; margin-top: 40px; color: #8FA1B3; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 20px; padding-top: 20px;
  color: #8FA1B3; font-size: 0.88rem;
}
.footer-legal a { color: #C7D3DE; text-decoration: underline; text-underline-offset: 2px; }

/* ================= bottom status ticker (sami-style) ====================== */
.ticker {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 6px; padding: 6px 10px;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ticker span, .ticker a {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 5px 12px; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.ticker a:hover { background: var(--ink); color: #fff; text-decoration: none; }
.ticker .hl { background: var(--hl); border-color: var(--ink); }
.ticker .grow { flex: 1; text-align: center; overflow: hidden; text-overflow: ellipsis; }

/* accessibility: in-content links never rely on color alone */
main p a:not(.btn), main li a:not(.btn), .prose-panel a { text-decoration: underline; text-underline-offset: 2px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ================= responsive ============================================= */
@media (max-width: 1080px) {
  .site-nav a { padding: 10px 10px; font-size: 0.74rem; }
  .port-grid, .plan-grid, .why-grid, .testi-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .contact-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .header-bar { flex-wrap: wrap; }
  .ticker { display: none; }
  body { padding-bottom: 0; }
  .svc-row { grid-template-columns: 1fr; gap: 8px; }
  .svc-arrow { display: none; }
}
@media (max-width: 560px) {
  .port-grid, .plan-grid, .why-grid, .testi-grid, .steps, .stats, .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ================= polish pass ============================================ */
/* scroll reveals — motion-only so content is ALWAYS visible (full contrast) to
   users, screen readers, crawlers and accessibility scanners. The reveal slides
   up; it never fades text in from invisible (which hid content from scanners and
   caused false WCAG contrast failures). */
html.js .rv { transform: translateY(22px); will-change: transform; }
html.js .rv.in {
  transform: translateY(0);
  transition: transform 0.7s var(--ease) var(--d, 0s);
}

/* hero load-in choreography (CSS-only, safe without JS) */
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-word { animation: heroRise 0.8s var(--ease) both; }
.hero-strip { animation: heroRise 0.8s var(--ease) 0.12s both; }
.hero-grid > div:first-child > * { animation: heroRise 0.7s var(--ease) both; }
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: 0.2s; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: 0.3s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: 0.4s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: 0.5s; }
.shot-stack .browser:nth-child(1) { animation: heroRise 0.8s var(--ease) 0.35s both; }
.shot-stack .browser:nth-child(2) { animation: heroRise 0.8s var(--ease) 0.5s both; }
.shot-stack .browser:nth-child(3) { animation: heroRise 0.8s var(--ease) 0.65s both; }

/* button press feedback */
.btn:active, .site-nav a:active { transform: translateY(1px) scale(0.99); }

/* portfolio hover: slight image zoom inside the frame */
.port-card .shot { transition: transform 0.5s var(--ease); }
.port-card:hover .shot { transform: scale(1.025); }

/* form validation + focus polish */
.contact-form input:user-invalid, .contact-form textarea:user-invalid {
  border-color: #C6402E; background: #FFF6F4;
}
.contact-form input:user-invalid:focus, .contact-form textarea:user-invalid:focus { border-color: #C6402E; }

/* faq open state */
.faq details[open] { border-color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .hero-word, .hero-strip, .hero-grid > div:first-child > *, .shot-stack .browser { animation: none !important; }
  html.js .rv { opacity: 1; transform: none; }
}

/* contact panel sits on the blue band — restore dark text inside the white panel */
.band-blue .contact-panel .h-xl { color: var(--ink); }
.band-blue .contact-panel .sec-tag { color: var(--blue); }
.band-blue .contact-panel .section-sub, .band-blue .contact-panel .hero-note { color: var(--ink-soft); }

/* WCAG: nav/footer link colors must not override solid-button white text */
.site-nav a.btn-solid, .footer-grid a.btn-solid { color: #fff; }
