*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #02050a;
  --ink-2: #07101d;
  --ink-3: #0c1726;
  --panel: #f7f9fc;
  --panel-2: #e9edf4;
  --text: #f6f8fb;
  --text-dark: #111827;
  --muted: #b9c3d2;
  --muted-dark: #526070;
  --blue: #1377ff;
  --blue-2: #005bd6;
  --amber: #f59e0b;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(2, 5, 10, 0.12);
  --radius: 8px;
  --max: 1220px;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
}

img, svg {
  display: block;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

input, textarea, select {
  width: 100%;
  min-width: 0;
  font-size: 16px;
}

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

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: -999px;
  z-index: 9999;
  padding: 0.8rem 1rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: none;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #ffffff, var(--amber));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #02050a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: #02050a;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  max-width: 1480px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  width: 180px;
  height: auto;
}

.primary-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 340px);
  padding: 5rem 1.25rem 2rem;
  background: #03070d;
  border-left: 1px solid var(--line);
  transform: translateX(104%);
  transition: transform 260ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 70;
}

.primary-nav.is-open {
  transform: translateX(0);
}

.primary-nav a {
  padding: 0.95rem 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-nav a:hover {
  color: var(--blue);
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.7rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
}

.nav-toggle-bars span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(0, 0, 0, 0.64);
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(19, 119, 255, 0.75);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
}

.header-call svg {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7.5rem 1rem 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.94) 0%, rgba(2, 5, 10, 0.76) 44%, rgba(2, 5, 10, 0.26) 72%, rgba(2, 5, 10, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 5, 10, 0.2), rgba(2, 5, 10, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), transparent 35%, var(--amber));
  z-index: 1;
}

.hero-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #eef2f8;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero h1 span,
.quote-card h2 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 620px;
  margin-top: 1rem;
  color: #f5f7fb;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.92rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(2, 5, 10, 0.35);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: #fff;
}

.trust-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.trust-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-point svg {
  color: var(--blue);
}

.trust-point strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-card,
.mini-quote {
  background: rgba(247, 249, 252, 0.97);
  color: var(--text-dark);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.quote-card {
  width: min(100%, 450px);
  margin: 0 auto;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.quote-card-head {
  padding: 1.35rem 1.25rem;
  background: #02050a;
  color: #fff;
  border-bottom: 4px solid var(--blue);
}

.quote-card-head .eyebrow {
  color: var(--muted);
  font-size: 0.8rem;
}

.quote-card h2,
.mini-quote h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 0.74rem;
  padding: 1rem;
}

.honey-field {
  position: absolute;
  left: -9999px;
}

.field {
  display: grid;
  gap: 0.34rem;
}

.field span {
  color: #2d3848;
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea {
  border: 1px solid #d7dce5;
  border-radius: 5px;
  background: #fff;
  color: #0e1726;
  padding: 0.78rem 0.82rem;
  transition: border-color 160ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #dc2626;
}

.field textarea {
  resize: vertical;
}

.form-error {
  color: #b91c1c;
  font-weight: 800;
  font-size: 0.9rem;
}

.field-error {
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-submit {
  width: 100%;
  min-height: 54px;
}

.form-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-success {
  padding: 1.25rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.form-success a {
  color: var(--blue);
  font-weight: 900;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.25rem 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.planner h2,
.areas h2,
.about h2,
.contact h2 {
  margin-top: 0.45rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.planner-copy,
.areas-copy p,
.about-copy p,
.contact-copy p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.service-strip {
  background: #03070d;
}

.field-gallery {
  background: #050a12;
}

.field-gallery .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.solution-card,
.process-step,
.planner-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.service-card,
.solution-card,
.gallery-tile,
.process-step {
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover,
.solution-card:hover,
.process-step:hover {
  border-color: rgba(19, 119, 255, 0.5);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.service-card:nth-child(2) img {
  object-position: center 48%;
}

.service-card-body,
.solution-card {
  padding: 1.1rem;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-number {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.service-card h3,
.solution-card h3,
.process-step h3,
.planner-output h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card p,
.solution-card p,
.process-step p,
.planner-output p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.solution-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.solution-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(19, 119, 255, 0.12);
  color: var(--blue);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #02050a;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 650ms var(--ease);
}

.gallery-tile:hover {
  border-color: rgba(19, 119, 255, 0.5);
}

.gallery-tile:hover img {
  transform: scale(1.055);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 5, 10, 0.78));
  pointer-events: none;
}

.gallery-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.planner,
.areas,
.contact {
  background:
    linear-gradient(135deg, rgba(19, 119, 255, 0.12), transparent 32%),
    #07101d;
}

.planner-grid,
.areas-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.planner-panel {
  padding: 1rem;
}

.planner-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.planner-tab {
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
}

.planner-tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
}

#planner-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process {
  background: #02050a;
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-step {
  padding: 1.15rem;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.areas-copy .btn {
  margin-top: 1.35rem;
}

.areas-proof {
  display: grid;
  gap: 1rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.area-list span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.gbp-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.gbp-summary,
.gbp-panel > p,
.gbp-actions {
  padding-left: 1rem;
  padding-right: 1rem;
}

.gbp-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.gbp-summary .eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
}

.gbp-summary strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  text-align: right;
}

.gbp-summary span,
.gbp-panel p {
  color: var(--muted);
}

.gbp-panel > p {
  margin-top: 0.65rem;
}

.gbp-address {
  color: #fff !important;
  font-weight: 800;
}

.gbp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.gbp-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
}

.gbp-actions a:first-child {
  background: var(--blue);
  border-color: var(--blue);
}

.gbp-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  border-top: 1px solid var(--line);
  background: #02050a;
}

.gbp-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.about h2,
.about .eyebrow {
  color: var(--text-dark);
}

.about .eyebrow {
  color: var(--blue);
}

.about-copy p {
  color: var(--muted-dark);
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #1d2938;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--blue);
}

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

.large-phone {
  display: inline-flex;
  margin-top: 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.mini-quote {
  padding: 1.35rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.mini-quote h3 {
  margin: 0.45rem 0 0.75rem;
}

.mini-quote p {
  color: var(--muted-dark);
}

.mini-quote .btn {
  margin-top: 1rem;
}

.mini-quote-kicker {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer {
  background: #02050a;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 4.75rem;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.footer-inner img {
  width: 180px;
  height: auto;
}

.footer-inner a {
  color: #fff;
  font-weight: 900;
}

.footer-note {
  margin-top: 0.45rem;
  color: #8793a4;
  font-size: 0.9rem;
}

.fixed-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 58;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  transition: opacity 160ms ease, transform 160ms ease;
}

.fixed-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.fixed-cta-actions {
  display: grid;
  gap: 0.45rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: max-height 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.fixed-cta.is-open .fixed-cta-actions {
  max-height: 112px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fixed-cta-actions a,
.fixed-cta-toggle {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(2, 5, 10, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 900;
}

.fixed-cta-actions a {
  min-width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
}

.fixed-cta-actions a:first-child {
  background: var(--blue);
  border-color: var(--blue);
}

.fixed-cta-toggle {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: var(--blue);
  border-color: var(--blue);
}

.fixed-cta-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.fixed-cta-plus {
  position: relative;
  width: 16px;
  height: 16px;
}

.fixed-cta-plus::before,
.fixed-cta-plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease;
}

.fixed-cta-plus::after {
  transform: rotate(90deg);
}

.fixed-cta.is-open .fixed-cta-plus::after {
  transform: rotate(0deg);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
  }

  .trust-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .scroll-progress {
    display: block;
  }

  .header-inner {
    min-height: 92px;
    padding: 0.7rem 2rem;
  }

  .site-logo {
    width: 230px;
  }

  .nav-toggle,
  .nav-close {
    display: none;
  }

  .primary-nav {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background: transparent;
    border: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
  }

  .primary-nav a {
    border: 0;
    padding: 0;
    font-size: 0.95rem;
  }

  .header-call {
    display: inline-flex;
  }

  .hero {
    min-height: 90svh;
    padding: 7rem 2rem 1.2rem;
  }

  .hero-grid {
    min-height: calc(90svh - 8.2rem);
    grid-template-columns: minmax(0, 1fr) 450px;
  }

  .hero h1 {
    font-size: 5.5rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .section-inner {
    padding: 6rem 2rem;
  }

  .section-heading h2,
  .planner h2,
  .areas h2,
  .about h2,
  .contact h2 {
    font-size: 4rem;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .service-card,
  .solution-card {
    min-height: 390px;
  }

  .planner-grid,
  .areas-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-tile {
    min-height: 350px;
  }

  .footer-inner {
    padding-bottom: 2.5rem;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
  }

  .fixed-cta {
    display: none;
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}
