:root {
  --ink: #060a14;
  --ink-soft: #101b33;
  --paper: #0b1326;
  --white: #ffffff;
  --text: #eaf0ff;
  --muted: #a9b8d8;
  --muted-light: #a9b8d8;
  --line: rgba(72, 93, 128, 0.42);
  --brand: #3b82f6;
  --brand-dark: #2563eb;
  --brand-soft: #60a5fa;
  --brand-light: rgba(59, 130, 246, 0.1);
  --accent: #60a5fa;
  --danger: #a52626;
  --focus: #60a5fa;
  --content: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 8% 4%, rgba(59, 130, 246, 0.18), transparent 58%),
    linear-gradient(180deg, #060a14 0%, #0b1326 46%, #101b33 100%);
  background-attachment: fixed;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-dark);
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.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;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: 0.25rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #f6f8ff;
  background: rgba(6, 10, 20, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  width: min(100% - 2rem, var(--content));
  min-height: 4.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand,
.footer-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.site-brand:hover,
.footer-brand:hover {
  color: #ffffff;
}

.site-brand img {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
}

.site-brand-name {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
  color: #b9c5d9;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.mobile-nav a {
  color: inherit;
  text-decoration: none;
}

.site-nav a:hover,
.mobile-nav a:hover {
  color: #ffffff;
}

.header-cta {
  display: none;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.header-cta:hover {
  color: var(--accent);
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.25rem;
  cursor: pointer;
}

.menu-icon {
  width: 1.1rem;
  display: grid;
  gap: 0.22rem;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 140ms ease, opacity 140ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
  padding: 0.4rem 0 1rem;
  flex-direction: column;
  color: #c8d1e2;
  font-size: 0.95rem;
}

.mobile-nav[data-open="true"] {
  display: flex;
}

.mobile-nav a {
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.band-inner {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.home-hero {
  min-height: 36rem;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
}

.home-hero-inner {
  width: min(100% - 2rem, 68rem);
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.hero-mark {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
}

.hero-kicker {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 48rem;
  margin: 0 auto 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-copy {
  max-width: 44rem;
  margin: 0 auto;
  color: #c9d3e6;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.btn-primary {
  color: var(--text);
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  border: 1px solid rgba(96, 165, 250, 0.85);
}

.btn-primary:hover {
  color: var(--text);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  color: #ffffff;
  background: var(--ink);
}

.home-hero .btn-primary {
  color: var(--text);
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  border-color: rgba(96, 165, 250, 0.85);
}

.home-hero .btn-primary:hover {
  color: var(--text);
  background: var(--brand-dark);
  border-color: var(--brand-soft);
}

.home-hero .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.home-hero .btn-secondary:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

.home-intro {
  color: #ffffff;
  background: var(--brand);
}

.home-intro .band-inner {
  padding: 2.8rem 0;
}

.home-intro p {
  max-width: 58rem;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}

.editorial-section,
.contact-band {
  padding: 4.5rem 0;
  background: var(--paper);
}

.split-layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.section-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-copy h2,
.band-heading h2,
.contact-copy h2 {
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  line-height: 1.08;
}

.section-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--muted-light);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--brand-soft);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: #ffffff;
}

.service-photo {
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  border-radius: 0.25rem;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-band {
  padding: 4.5rem 0;
  color: #ffffff;
  background: var(--ink-soft);
  border-top: 4px solid var(--brand);
}

.services-band .eyebrow,
.process-band .eyebrow,
.faq-band .eyebrow {
  color: var(--brand-soft);
}

.band-heading {
  max-width: 43rem;
  margin-bottom: 2.4rem;
}

.band-heading h2 {
  margin-bottom: 0;
}

.service-list {
  display: grid;
}

.service-list > a {
  min-width: 0;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.service-list > a:hover {
  color: #ffffff;
}

.service-list > a > span {
  color: var(--brand-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.service-images {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.service-images figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 0.25rem;
}

.service-images img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-images figcaption {
  padding: 0.8rem 1rem;
  color: #ffffff;
  border-top: 2px solid var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark-text {
  color: var(--text);
}

.signal-grid {
  display: grid;
  gap: 2rem;
}

.signal-grid article {
  padding-top: 1.25rem;
  border-top: 3px solid var(--brand);
}

.signal-grid span,
.guide-list > a > span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-grid h3 {
  margin: 0.8rem 0 0.55rem;
  font-size: 1.25rem;
}

.signal-grid p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.process-band {
  padding: 4.5rem 0;
  color: #ffffff;
  background: #0b1326;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  list-style: none;
}

.process-list li {
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.process-list li > span {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.guides-section {
  background: var(--ink-soft);
}

.guide-heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.guide-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.guide-list > a {
  padding: 1.5rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.guide-list > a:hover h3 {
  color: var(--brand-soft);
}

.guide-list h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1.2rem;
}

.guide-list p {
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.faq-band {
  padding: 4.5rem 0;
  color: #ffffff;
  background: var(--ink-soft);
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-list summary {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-list summary span {
  color: var(--brand-soft);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 140ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 2.5rem 1.25rem 0;
  color: #bdc9dc;
}

.contact-band {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-copy h2 {
  max-width: 31rem;
}

.contact-methods {
  margin-top: 2rem;
  display: grid;
  gap: 0.65rem;
}

.contact-methods a {
  min-height: 3rem;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-methods span {
  color: var(--brand-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 1.5rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
}

.field {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.72rem 0.8rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
}

textarea.field {
  min-height: 7.5rem;
  resize: vertical;
}

.field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(49, 95, 202, 0.16);
}

.sms-consent {
  margin-top: 1rem;
  padding: 1rem 0;
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.55;
}

.notice {
  margin: 0.25rem 0 1.25rem;
  padding: 0.85rem;
  color: var(--muted);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--brand-soft);
  font-size: 0.75rem;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status[role="alert"] {
  color: var(--danger);
}

.site-footer {
  color: #ffffff;
  background: var(--ink);
}

.site-footer-inner {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
  padding: 2.5rem 0 1.5rem;
}

.footer-brand-row {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-brand {
  font-weight: 750;
}

.footer-brand img {
  width: 2.4rem;
  height: 2.4rem;
}

.footer-brand-row p {
  margin: 0;
  color: #9facbf;
  font-size: 0.85rem;
}

.site-footer-grid {
  padding: 2rem 0;
  display: grid;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: #9facbf;
  font-size: 0.82rem;
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.site-footer-links a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer-bottom {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

/* Interior service, guide, and legal pages */
.glass {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.chip {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
}

.chip[href] {
  color: var(--text);
  text-decoration: none;
}

.chip[href]:hover {
  color: var(--brand-dark);
  border-color: var(--brand);
}

.muted {
  color: var(--muted);
}

main.mx-auto > section:first-child {
  border-top: 4px solid var(--brand);
}

.service-grid,
.guide-grid,
.proof-grid {
  display: grid;
  gap: 0.75rem;
}

.service-link,
.guide-link,
.proof-item {
  padding: 1.2rem;
  display: block;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  text-decoration: none;
}

.service-link:hover,
.guide-link:hover {
  color: #ffffff;
  border-color: var(--brand);
}

.service-link p,
.guide-link span,
.proof-item {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.25rem;
}

/* Utility classes used by static page templates */
.relative { position: relative; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-10 { height: 2.5rem; }
.mx-auto { margin-inline: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: var(--content); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.py-1 { padding-block: 0.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-10 { padding-block: 2.5rem; }
.py-14 { padding-block: 3.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.rounded-xl,
.rounded-2xl,
.rounded-3xl { border-radius: 0.375rem; }
.rounded-full { border-radius: 9999px; }
.border-t { border-top: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 650; }
.leading-relaxed { line-height: 1.65; }
.leading-tight { line-height: 1.2; }
.tracking-tight,
.tracking-wide { letter-spacing: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-white,
.hover\:text-white:hover { color: #ffffff; }
.opacity-50 { opacity: 0.5; }

@media (min-width: 40rem) {
  .sm\:flex-row { flex-direction: row; }
  .hero-actions { flex-direction: row; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 48rem) {
  .home-hero h1 { font-size: 2.75rem; }
  .hero-mark { width: 6.5rem; height: 6.5rem; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
  .service-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .guide-list > a { padding-right: 1.5rem; }
  .guide-list > a + a { padding-left: 1.5rem; border-left: 1px solid var(--line); }
  .guide-heading-row { flex-direction: row; align-items: end; justify-content: space-between; }
  .guide-heading-row .text-link { margin: 0 0 2.4rem; }
  .site-footer-grid { grid-template-columns: 1.35fr repeat(3, 1fr); }
  .footer-brand-row,
  .site-footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pb-10 { padding-bottom: 2.5rem; }
  .md\:py-14 { padding-block: 3.5rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.5rem; }
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 64rem) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle,
  .mobile-nav { display: none !important; }
  .home-hero { min-height: 34rem; }
  .home-hero h1 { font-size: 3rem; }
  .hero-copy { font-size: 1.1rem; }
  .editorial-section,
  .services-band,
  .process-band,
  .faq-band,
  .contact-band { padding: 5.5rem 0; }
  .split-layout { grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr); gap: 5rem; }
  .section-copy h2,
  .band-heading h2,
  .contact-copy h2 { font-size: 3rem; }
  .signal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; }
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; }
  .faq-layout { grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr); gap: 5rem; }
  .contact-layout { grid-template-columns: minmax(0, 0.85fr) minmax(30rem, 1.15fr); gap: 5rem; }
  .contact-form { padding: 2rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 80rem) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 30rem) {
  .site-header-inner,
  .mobile-nav,
  .band-inner,
  .home-hero-inner { width: min(100% - 1.25rem, var(--content)); }
  .site-brand-name { max-width: 12rem; font-size: 0.82rem; }
  .home-hero h1 { font-size: 1.95rem; }
  .service-photo { min-height: 17rem; }
  .contact-form { padding: 1.15rem; }
}

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