:root {
  color-scheme: dark;
  --ink: #f7f0df;
  --muted: rgba(247, 240, 223, 0.72);
  --soft: rgba(247, 240, 223, 0.1);
  --line: rgba(247, 240, 223, 0.16);
  --deep: #070a0b;
  --panel: rgba(9, 13, 15, 0.76);
  --panel-solid: #111719;
  --gold: #d3ad68;
  --teal: #0c5f67;
  --blue: #4da6c8;
  --paper: #f3ede1;
  --paper-ink: #161412;
  --paper-muted: #6c6258;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: Aptos, "Trebuchet MS", "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--gold);
  color: #17130d;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-140%);
  transition: transform 200ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--blue), #fff2c6);
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 18px;
  right: clamp(16px, 4vw, 56px);
  left: clamp(16px, 4vw, 56px);
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(247, 240, 223, 0.13);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(7, 10, 11, 0.48);
  color: var(--ink);
  backdrop-filter: blur(20px);
  transition: background 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(7, 10, 11, 0.9);
}

.brand,
.header-actions {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 22px rgba(77, 166, 200, 0.24);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(247, 240, 223, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.phone-cta {
  position: relative;
}

.nav-links a::after,
.header-cta::after,
.phone-cta::after,
.contact-email::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.header-cta:hover::after,
.phone-cta:hover::after,
.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-actions {
  justify-self: end;
  gap: 14px;
}

.header-cta,
.phone-cta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-cta {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 55;
  inset: 0 0 auto;
  display: grid;
  gap: 18px;
  padding: 112px 24px 28px;
  background: rgba(7, 10, 11, 0.96);
  color: var(--ink);
  transform: translateY(-100%);
  transition: transform 360ms var(--ease);
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.menu-open .mobile-menu {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/hero image.png");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 0.12px), 0) scale(1.04);
  filter: saturate(1.02) contrast(1.03);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 54%, rgba(77, 166, 200, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(7, 10, 11, 0.78), rgba(7, 10, 11, 0.2) 46%, rgba(7, 10, 11, 0.54)),
    linear-gradient(0deg, rgba(7, 10, 11, 0.78), rgba(7, 10, 11, 0.04) 52%, rgba(7, 10, 11, 0.46));
}

.hero-shell {
  width: min(1320px, calc(100% - clamp(32px, 8vw, 112px)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  padding: 136px 0 clamp(150px, 17vh, 190px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 9vw, 8.9rem);
  line-height: 0.9;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.54);
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(247, 240, 223, 0.86);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.24;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.64);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #17130d;
}

.button-ghost {
  border-color: rgba(247, 240, 223, 0.4);
  background: rgba(247, 240, 223, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  border-color: rgba(247, 240, 223, 0.76);
}

.button-call {
  border-color: rgba(211, 173, 104, 0.68);
  background: rgba(7, 10, 11, 0.54);
  color: var(--gold);
  backdrop-filter: blur(14px);
}

.button-call:hover {
  border-color: rgba(211, 173, 104, 0.95);
  background: rgba(211, 173, 104, 0.14);
}

.planner-card {
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(247, 240, 223, 0.12), rgba(247, 240, 223, 0.04)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
}

.planner-card-header {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.planner-card-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.package-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.package-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 240, 223, 0.06);
  color: rgba(247, 240, 223, 0.72);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-tab.is-active {
  border-color: rgba(211, 173, 104, 0.78);
  background: rgba(211, 173, 104, 0.18);
  color: var(--ink);
}

.package-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.package-panel p,
.package-panel li,
.estimator-output span {
  color: var(--muted);
  line-height: 1.55;
}

.package-panel ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.package-panel li {
  position: relative;
  padding-left: 20px;
}

.package-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.estimator {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  color-scheme: light;
  width: 100%;
  border: 1px solid rgba(22, 20, 18, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
  padding: 13px 12px;
}

input[type="date"] {
  min-height: 48px;
  appearance: auto;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--gold);
}

textarea {
  resize: vertical;
}

.estimator-output {
  display: grid;
  gap: 10px;
}

.estimator-output div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.estimator-output span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(247, 240, 223, 0.06);
  font-size: 0.82rem;
}

.estimator-output strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.estimate-cta {
  width: 100%;
}

.planner-actions {
  display: grid;
  gap: 12px;
}

.quick-call {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-rail {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 24px;
  left: clamp(16px, 4vw, 56px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 10, 11, 0.66);
  backdrop-filter: blur(20px);
}

.capability-rail a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding: 18px clamp(18px, 3vw, 36px);
  transition: background 200ms ease;
}

.capability-rail a:last-child {
  border-right: 0;
}

.capability-rail a:hover {
  background: rgba(247, 240, 223, 0.08);
}

.capability-rail span,
.services-grid span,
.process-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.capability-rail strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 400;
}

.proof-strip,
.section,
.work-section,
.image-strip,
.contact-section {
  padding: clamp(72px, 9vw, 130px) clamp(16px, 4vw, 56px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--panel-solid);
}

.proof-strip div {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(247, 240, 223, 0.04);
}

.proof-strip strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.proof-strip span {
  max-width: 250px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.section .section-kicker,
.contact-section .section-kicker {
  color: #9b7132;
}

.intro-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 96px);
}

.intro-section > p,
.split-heading > p,
.services-grid p,
.process-grid p,
.contact-copy p {
  color: var(--paper-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 10px;
}

.services-grid article,
.process-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(22, 20, 18, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.48);
}

.services-grid article:first-child {
  grid-row: span 2;
  min-height: 530px;
  background:
    linear-gradient(180deg, rgba(7, 10, 11, 0.32), rgba(7, 10, 11, 0.8)),
    url("assets/strip-stage.jpg") center / cover;
  color: var(--ink);
}

.services-grid article:first-child p {
  color: rgba(247, 240, 223, 0.72);
}

.work-section {
  background: var(--deep);
  color: var(--ink);
}

.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 10px;
}

.case-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
}

.case-card:first-child {
  min-height: 660px;
}

.case-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 900ms var(--ease), filter 900ms ease;
}

.case-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 11, 0.86), rgba(7, 10, 11, 0.08) 66%);
  content: "";
}

.case-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
}

.case-card p {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  max-width: 440px;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 8px;
  padding-top: 8px;
  background: var(--deep);
}

.image-strip figure {
  position: relative;
  min-height: clamp(300px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.image-strip img {
  height: 100%;
  object-fit: cover;
}

.image-strip figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-section {
  background: #fff9ee;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(7, 10, 11, 0.86), rgba(7, 10, 11, 0.58)),
    url("assets/strip-reception.jpg") center / cover fixed;
  color: var(--ink);
}

.contact-panel {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  margin: 0 auto;
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy p {
  color: rgba(247, 240, 223, 0.76);
}

.selected-setup {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(247, 240, 223, 0.08);
  transition: border-color 220ms ease, background 220ms ease;
}

.selected-setup.is-highlighted {
  border-color: rgba(211, 173, 104, 0.85);
  background: rgba(211, 173, 104, 0.14);
}

.selected-setup span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-setup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.selected-setup p {
  margin: 0;
}

.contact-form .selected-setup {
  border-color: rgba(22, 20, 18, 0.14);
  background: rgba(211, 173, 104, 0.12);
  color: var(--paper-ink);
}

.contact-form .selected-setup p {
  color: var(--paper-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

.contact-email,
.contact-call {
  position: relative;
  color: var(--gold);
  font-weight: 900;
}

.contact-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(211, 173, 104, 0.52);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(211, 173, 104, 0.12);
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(247, 240, 223, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 249, 238, 0.95);
  color: var(--paper-ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  color: var(--paper-ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(211, 173, 104, 0.9);
  box-shadow: 0 0 0 4px rgba(211, 173, 104, 0.16);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a94534;
  background: #fff8f6;
}

.field-error {
  min-height: 16px;
  color: #a94534;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #5a6f53;
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 4vw, 56px);
  background: var(--deep);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.reveal-group .section-kicker,
.reveal-group h2,
.reveal-group > p,
.reveal-group .services-grid article,
.reveal-group .case-card,
.reveal-group .process-grid article,
.reveal-group .proof-strip div,
.reveal-group .contact-panel > *,
.image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.reveal-group.is-visible .section-kicker,
.reveal-group.is-visible h2,
.reveal-group.is-visible > p,
.reveal-group.is-visible .services-grid article,
.reveal-group.is-visible .case-card,
.reveal-group.is-visible .process-grid article,
.reveal-group.is-visible .proof-strip div,
.reveal-group.is-visible .contact-panel > *,
.image-reveal.is-visible,
.reveal-group.is-visible .image-reveal {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal.is-visible img,
.reveal-group.is-visible .image-reveal img {
  transform: scale(1);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-shell,
  .intro-section,
  .split-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 130px;
    padding-bottom: 28px;
  }

  .planner-card {
    max-width: 620px;
  }

  .capability-rail {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(1000px, calc(100% - 32px));
    margin: 0 auto 28px;
  }

  .services-grid,
  .case-grid,
  .process-grid,
  .proof-strip,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .services-grid article:first-child,
  .case-card:first-child {
    min-height: 440px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .header-cta,
  .phone-cta {
    display: none;
  }

  .hero-shell {
    width: calc(100% - 32px);
    gap: 24px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .form-grid,
  .estimator-output div {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button,
  .hero-actions a {
    width: 100%;
  }

  .package-tabs,
  .capability-rail {
    grid-template-columns: 1fr;
  }

  .capability-rail a {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-rail a:last-child {
    border-bottom: 0;
  }

  .planner-card {
    padding: 18px;
  }

  .case-card {
    min-height: 410px;
  }

  .contact-section {
    background-attachment: scroll;
  }
}

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

  .reveal-group .section-kicker,
  .reveal-group h2,
  .reveal-group > p,
  .reveal-group .services-grid article,
  .reveal-group .case-card,
  .reveal-group .process-grid article,
  .reveal-group .contact-panel > *,
  .image-reveal {
    opacity: 1;
    transform: none;
  }
}
