:root {
  --ink: #141827;
  --ink-soft: #242a3b;
  --blue: #2937c8;
  --blue-dark: #202ca7;
  --orange: #f06c22;
  --orange-bright: #ff8a1f;
  --cream: #f7f3ec;
  --paper: #fffdfa;
  --muted: #666b79;
  --line: #dfe1e7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(20, 24, 39, .12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; background: var(--ink); color: white; z-index: 999; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 250, .93); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(20,24,39,.08); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 270px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 700; }
.site-nav a { text-decoration: none; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 9px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; border: 2px solid var(--orange); border-radius: 999px; background: var(--orange); color: white; padding: 12px 23px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 28px rgba(240,108,34,.23); transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--orange-bright); border-color: var(--orange-bright); box-shadow: 0 14px 36px rgba(240,108,34,.3); }
.button-small { min-height: 42px; padding: 8px 17px; }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--ink); color: white; border-color: var(--ink); }
.button-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }

.hero { padding: 72px 0 82px; overflow: hidden; background: radial-gradient(circle at 80% 15%, rgba(41,55,200,.11), transparent 32%), linear-gradient(180deg, #fffdfa, #f7f3ec); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--orange); text-transform: uppercase; font-size: .76rem; font-weight: 900; letter-spacing: .18em; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3.25rem, 6.6vw, 6.25rem); max-width: 760px; margin-bottom: 24px; }
h2 { font-size: clamp(2.15rem, 4.3vw, 4.15rem); margin-bottom: 22px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
.hero-lede { max-width: 680px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.32rem); margin: 0 0 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: .93rem; font-weight: 700; }
.trust-list li::before { content: "✓"; color: var(--orange); margin-right: 7px; font-weight: 900; }
.hero-media { position: relative; min-width: 0; }
.hero-media::before { content: ""; position: absolute; width: 92%; height: 92%; right: -24px; top: -24px; border-radius: 34px; background: var(--blue); transform: rotate(3deg); }
.hero-media img { position: relative; width: 100%; aspect-ratio: 1 / .86; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.hero-media-card { position: absolute; left: -26px; bottom: 30px; max-width: 280px; padding: 16px 18px; border-radius: 16px; background: rgba(20,24,39,.94); color: white; box-shadow: 0 18px 45px rgba(20,24,39,.25); }
.hero-media-card strong, .hero-media-card span { display: block; }
.hero-media-card span:last-child { color: #d5d8e3; font-size: .88rem; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); margin-bottom: 9px; box-shadow: 0 0 0 6px rgba(240,108,34,.18); }

.intro-band { background: var(--blue); color: white; padding: 28px 0; }
.intro-band-grid { display: grid; grid-template-columns: .45fr 1.55fr; gap: 38px; align-items: center; }
.intro-band .eyebrow { color: #ffd3b8; margin: 0; }
.intro-band p:last-child { margin: 0; font-size: 1.12rem; font-weight: 650; }

.section { padding: 105px 0; }
.section-heading { max-width: 770px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 15px 45px rgba(20,24,39,.06); }
.service-image { position: relative; height: 235px; overflow: hidden; background: var(--cream); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image-motion img { object-fit: cover; }
.service-number { position: absolute; right: 15px; top: 15px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(20,24,39,.91); color: white; font-size: .82rem; font-weight: 900; }
.service-body { padding: 28px 27px 30px; }
.service-body p { color: var(--muted); }
.service-body ul { margin: 20px 0 0; padding-left: 18px; color: var(--ink-soft); }
.service-body li + li { margin-top: 7px; }
.service-body li::marker { color: var(--orange); }

.section-dark { background: var(--ink); color: white; }
.section-heading-light > p:last-child { color: #b8bdcb; }
.section-dark .eyebrow { color: #ffb98f; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work-card { min-height: 265px; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); text-decoration: none; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); transition: transform .22s, border-color .22s, background .22s; }
.work-card:nth-child(2), .work-card:nth-child(3) { background: linear-gradient(145deg, rgba(41,55,200,.38), rgba(255,255,255,.025)); }
.work-card:hover, .work-card:focus-visible { transform: translateY(-4px); border-color: var(--orange); background: linear-gradient(145deg, rgba(240,108,34,.18), rgba(255,255,255,.04)); }
.work-top { display: flex; justify-content: space-between; gap: 20px; color: #bec3d0; font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; margin-bottom: auto; }
.work-top span:last-child { font-size: 1.3rem; color: var(--orange-bright); }
.work-card h3 { font-size: 2rem; margin-top: 54px; }
.work-card p { margin: 0; color: #c9cdd7; }

.video-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 20px; align-items: start; }
.video-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: 0 14px 42px rgba(20,24,39,.07); }
.video-frame { position: relative; aspect-ratio: 16/9; background: #0c0f18; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { padding: 20px 22px 24px; }
.video-meta span { color: var(--orange); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.video-meta h3 { margin: 8px 0 0; font-size: 1.2rem; }

.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.process-image { position: sticky; top: 120px; }
.process-image img { border-radius: 30px; aspect-ratio: .9 / 1; object-fit: cover; box-shadow: var(--shadow); }
.process-list { list-style: none; margin: 36px 0 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 23px 0; border-top: 1px solid #d7d4cf; }
.process-list li:last-child { border-bottom: 1px solid #d7d4cf; }
.process-list > li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: white; font-weight: 900; }
.process-list h3 { font-size: 1.17rem; margin: 0 0 5px; }
.process-list p { color: var(--muted); margin: 0; }

.blog-preview { background: white; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { min-height: 300px; padding: 29px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.48rem; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { color: var(--blue); }
.post-card > p:not(.post-kicker) { color: var(--muted); }
.post-kicker { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.text-link { margin-top: auto; color: var(--blue); font-weight: 850; text-decoration: none; }
.centered { text-align: center; margin-top: 35px; }

.intake-section { background: linear-gradient(135deg, var(--blue) 0 38%, #202ca7 38% 100%); color: white; }
.intake-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(38px, 6vw, 80px); align-items: start; }
.intake-copy { position: sticky; top: 125px; }
.intake-copy .eyebrow { color: #ffd0b5; }
.intake-copy > p:not(.eyebrow) { color: #d8dcf4; font-size: 1.08rem; }
.contact-card { margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-card p { display: grid; margin: 15px 0; }
.contact-card strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #b9c1ef; }
.contact-card a { text-decoration: none; }
.intake-form { padding: 34px; border-radius: 28px; background: white; color: var(--ink); box-shadow: 0 26px 80px rgba(8,10,25,.28); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; font-size: .84rem; font-weight: 800; }
.form-wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #cfd2da; border-radius: 11px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(41,55,200,.12); }
textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 22px; }
.form-note { margin: 0; color: var(--muted); font-size: .78rem; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; border-radius: 11px; font-weight: 700; }
.form-status.is-success { display: block; background: #e8f7ed; color: #176b35; }
.form-status.is-error { display: block; background: #fff0ed; color: #9a2d1c; }

.site-footer { background: #0c0f18; color: #d8dbe4; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 60px; }
.footer-logo { width: 250px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-grid p { max-width: 390px; color: #9da3b3; }
.footer-grid h2 { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: #83899a; margin-bottom: 17px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--orange-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.12); color: #8d93a3; font-size: .82rem; }
.footer-bottom a { text-decoration: none; }

.footer-social { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 22px; }
.footer-social a {
  display: grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #d8dbe4;
  background: rgba(255,255,255,.035);
  line-height: 0;
  text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
}
.footer-social a:hover,
.footer-social a:focus-visible { transform: translateY(-2px); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.1); }
.footer-social a:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 3px; }
.footer-social .social-mark { display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 22px; border: 0; border-radius: 0; overflow: visible; background: none; box-shadow: none; }
.footer-social .social-mark svg { display: block; width: 22px; height: 22px; }
.footer-social .social-instagram,
.footer-social .social-facebook { color: #f1f3f8; background: none; }
.footer-social .social-google { background: none; box-shadow: none; }
.footer-social .social-google svg { width: 21px; height: 21px; }
.footer-social a > span:not(.social-mark) { display: none !important; }
.footer-bottom .footer-social { margin-top: 0; }

/* Blog and article pages */
.page-hero { padding: 85px 0 65px; background: linear-gradient(180deg, var(--cream), var(--paper)); }
.page-hero .section-heading { margin-bottom: 0; }
.page-main { min-height: 60vh; }
.blog-list { padding: 80px 0 110px; }
.blog-list .post-grid { grid-template-columns: repeat(3, 1fr); }
.article-wrap { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }
.article-back { display: inline-block; color: var(--blue); font-weight: 800; text-decoration: none; margin-bottom: 28px; }
.article-wrap h1 { font-size: clamp(2.55rem, 6vw, 4.75rem); }
.article-meta { color: var(--muted); margin-bottom: 40px; }
.article-body { font-size: 1.08rem; }
.article-body h2 { font-size: 2rem; margin-top: 52px; }
.article-body h3 { margin-top: 34px; }
.article-body p, .article-body li { color: #3f4555; }
.article-body blockquote { margin: 36px 0; padding: 24px 28px; background: var(--cream); border-left: 5px solid var(--orange); font-size: 1.2rem; font-weight: 750; }
.article-cta { margin-top: 60px; padding: 30px; border-radius: 22px; background: var(--ink); color: white; }
.article-cta p { color: #c8ccd7; }
.privacy-copy { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 30px, 820px); }
  .header-inner { min-height: 76px; }
  .brand { width: 225px; }
  .nav-toggle { display: block; z-index: 3; }
  .site-nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; background: var(--paper); padding: 14px 20px 24px; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(20,24,39,.12); transform: translateY(-130%); visibility: hidden; transition: transform .25s, visibility .25s; }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav > a { padding: 13px 5px; }
  .site-nav .button { margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-grid, .process-grid, .intake-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-copy { max-width: 780px; }
  .hero-media { width: min(92%, 690px); margin-inline: auto; }
  .intro-band-grid { grid-template-columns: 1fr; gap: 7px; }
  .service-grid, .post-grid, .blog-list .post-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:first-child { grid-column: 1 / -1; }
  .process-image, .intake-copy { position: static; }
  .process-image img { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 24px); --radius: 19px; }
  .brand { width: 205px; }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.15rem); }
  .button-row { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .hero-media { width: calc(100% - 8px); }
  .hero-media::before { right: -8px; top: -12px; }
  .hero-media-card { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .intro-band { padding: 24px 0; }
  .service-grid, .work-grid, .video-grid, .post-grid, .blog-list .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card:last-child, .video-card:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .service-image { height: 220px; }
  .work-card { min-height: 245px; padding: 25px; }
  .work-card h3 { font-size: 1.65rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .intake-form { padding: 22px 18px; border-radius: 20px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom .footer-social { order: 2; }
  .article-wrap, .privacy-copy { width: calc(100% - 28px); padding-top: 55px; }
}

/* Dark cinematic theme */
:root {
  color-scheme: dark;
  --ink: #f4f5f8;
  --ink-soft: #d9dde7;
  --blue: #1E3A8A;
  --blue-dark: #142A63;
  --orange: #f47a2c;
  --orange-bright: #ff9a55;
  --cream: #171c27;
  --paper: #0f131c;
  --muted: #a7adbb;
  --line: #2b3241;
  --white: #ffffff;
  --panel: #171c27;
  --panel-strong: #1d2331;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

body { background: var(--paper); color: var(--ink); }
::selection { background: rgba(244,122,44,.38); color: #fff; }
.skip-link { background: var(--orange); color: #fff; }
.site-header { background: rgba(10, 13, 20, .9); border-bottom-color: rgba(255,255,255,.03); }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 34px rgba(0,0,0,.35); }
.site-nav { color: #eef0f6; }
.nav-toggle span:not(.sr-only) { background: #f2f3f7; }
.button-ghost,
.button-ghost-dark { background: transparent; color: #f2f3f7; border-color: #8992a6; box-shadow: none; }
.button-ghost:hover,
.button-ghost:focus-visible,
.button-ghost-dark:hover,
.button-ghost-dark:focus-visible { background: #f3f4f8; color: #10131b; border-color: #f3f4f8; }

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(30,58,138,.24), transparent 31%),
    radial-gradient(circle at 18% 92%, rgba(244,122,44,.09), transparent 26%),
    linear-gradient(180deg, #0c1018, #111722);
}
.hero-lede,
.trust-list { color: #b1b7c4; }
.hero-media::before { background: linear-gradient(145deg, var(--blue), #142A63); }
.hero-media img { filter: saturate(.9) contrast(1.04); }
.hero-media-card { background: rgba(7,10,16,.9); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); }

.intro-band { background: linear-gradient(105deg, #26499f, #1A3277 62%, #101E49); }
.intro-band .eyebrow { color: #ffd4b8; }

.section { background: #111722; }
.section-heading > p:last-child { color: var(--muted); }
.service-card,
.video-card,
.post-card { background: var(--panel); border-color: var(--line); box-shadow: 0 18px 48px rgba(0,0,0,.22); }
.service-image { background: #0b0f17; }
.service-body p,
.post-card > p:not(.post-kicker) { color: var(--muted); }
.service-body ul { color: #d4d8e2; }
.service-number { background: rgba(8,10,16,.9); border: 1px solid rgba(255,255,255,.12); }

.section-dark { background: #090d14; }
.work-card { background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.work-card:nth-child(2),
.work-card:nth-child(3) { background: linear-gradient(145deg, rgba(30,58,138,.34), rgba(255,255,255,.025)); }

.video-meta { background: var(--panel); }
.video-frame { background: #05070b; }
.process-section { background: #151b26; }
.process-image img { box-shadow: 0 24px 68px rgba(0,0,0,.36); }
.process-list li { border-color: #313849; }
.process-list p { color: var(--muted); }
.process-list > li > span { background: var(--blue-dark); }

.blog-preview { background: #0d121b; }
.post-card h3 a:hover { color: #6f8fe6; }
.text-link,
.article-back { color: #6f8fe6; }

.intake-section { background: linear-gradient(135deg, #1E3A8A 0 38%, #10162A 38% 100%); }
.intake-copy > p:not(.eyebrow) { color: #c7cbea; }
.contact-card strong { color: #8da7ef; }
.intake-form { background: #171c27; color: var(--ink); border: 1px solid #303749; box-shadow: 0 26px 80px rgba(0,0,0,.45); }
input,
select,
textarea { background: #0e131c; color: #eef0f5; border-color: #3a4253; }
input::placeholder,
textarea::placeholder { color: #7e8698; }
input:focus,
select:focus,
textarea:focus { border-color: #3f63bc; box-shadow: 0 0 0 4px rgba(30,58,138,.18); }
.form-note { color: #9ea5b5; }
.form-status.is-success { background: #163824; color: #b8f0c9; }
.form-status.is-error { background: #452019; color: #ffc0b1; }

.site-footer { background: #070a10; color: #d8dbe4; }
.footer-logo { width: 250px; filter: none; margin-bottom: 20px; }
.footer-grid p { color: #9da3b3; }
.footer-grid h2 { color: #8f96a8; }

.page-hero { background: linear-gradient(180deg, #0c1018, #141a25); }
.page-main,
.blog-list { background: #0f131c; }
.article-wrap,
.privacy-copy { color: var(--ink); }
.article-meta { color: var(--muted); }
.article-body p,
.article-body li,
.privacy-copy p { color: #c5cad5; }
.article-body blockquote { background: #171d29; color: #f0f1f5; }
.article-cta { background: #171d29; border: 1px solid #303747; }
.article-cta p { color: #c8ccd7; }

@media (max-width: 980px) {
  .site-nav { background: rgba(10, 13, 20, .98); border-bottom-color: var(--line); box-shadow: 0 22px 45px rgba(0,0,0,.4); }
}

/* Ready for a future muted hero timelapse */
.hero-loop { position: relative; display: block; width: 100%; aspect-ratio: 1 / .86; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); filter: saturate(.9) contrast(1.04); }
@media (prefers-reduced-motion: reduce) {
  .hero-loop { display: none; }
}
