:root {
  --bg-main: #faf7f2;
  --bg-alt: #f5f0e8;
  --bg-card: #ffffff;
  --bg-strong: #ede4d5;
  --text-main: #22313f;
  --text-muted: #6f7e8c;
  --text-bright: #1e2d3d;
  --accent: #8db8d8;
  --accent-strong: #5f8fb3;
  --accent-teal: #3f6686;
  --border-soft: rgba(30, 45, 61, 0.16);
  --border-strong: rgba(95, 143, 179, 0.58);
  --shadow-card: 0 12px 28px rgba(30, 45, 61, 0.1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1160px;
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: radial-gradient(circle at 8% 8%, rgba(141, 184, 216, 0.16), transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.45), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(95, 143, 179, 0.1), transparent 44%),
    var(--bg-main);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(30, 45, 61, 0.05) 0.55px, transparent 0.55px);
  background-size: 3px 3px;
  opacity: 0.35;
  z-index: -1;
}

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

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

figure {
  margin: 0;
}

.container {
  width: min(var(--container), 100% - 2rem);
  margin: 0 auto;
}

main {
  overflow: clip;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.48), transparent 58%), var(--bg-alt);
}

.section.warm {
  background: linear-gradient(180deg, rgba(141, 184, 216, 0.24), rgba(245, 240, 232, 0.9));
}

.section.section-intro {
  padding-bottom: 1.8rem;
}

.section.section-services-list {
  padding-top: 2rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  color: var(--text-bright);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.7rem);
}

h2 {
  font-size: clamp(1.65rem, 4.8vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-main);
}

.lead {
  font-size: clamp(1.02rem, 2.8vw, 1.2rem);
  color: #314355;
}

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

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: #3f6f93;
}

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1;
  padding: 0.88rem 1.4rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary,
input[type="submit"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fbff;
  box-shadow: 0 12px 28px rgba(95, 143, 179, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  box-shadow: 0 14px 34px rgba(95, 143, 179, 0.46);
}

.btn-outline {
  border-color: var(--border-soft);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.65);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent-strong);
  background: rgba(141, 184, 216, 0.16);
}

.btn-small {
  font-size: 0.84rem;
  padding: 0.65rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(30, 45, 61, 0.12);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  border-bottom-color: rgba(95, 143, 179, 0.42);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.05;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 0;
  object-fit: contain;
  box-shadow: none;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-display);
  letter-spacing: 0.09em;
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.nav-links,
.nav-actions {
  display: none;
}

.nav-phone {
  font-weight: 700;
  color: var(--text-bright);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
  transform: translateX(-50%);
}

.menu-toggle span {
  top: 50%;
  margin-top: -1px;
}

.menu-toggle::before {
  top: 13px;
}

.menu-toggle::after {
  bottom: 13px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  background: rgba(250, 247, 242, 0.98);
  border-left: 1px solid var(--border-soft);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 90;
  padding: 5.1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-panel a {
  padding: 0.84rem 0.88rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-bright);
  border: 1px solid transparent;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: rgba(141, 184, 216, 0.15);
  border-color: var(--border-soft);
}

.mobile-panel .mobile-cta {
  margin-top: 0.8rem;
}

.mobile-panel .nav-phone {
  margin-top: 0.4rem;
  display: inline-block;
  color: var(--accent-strong);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 61, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-panel {
  transform: translateX(0);
}

body.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 6.2rem 0 3.5rem;
  position: relative;
  background: var(--bg-main);
}

.hero::before {
  content: none;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--text-main);
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(95, 143, 179, 0.22);
  margin-top: 0.35rem;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media .image-frame {
  min-height: 340px;
}

.hero-media img {
  aspect-ratio: 4 / 3;
}

.hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid rgba(30, 45, 61, 0.2);
  background: rgba(250, 247, 242, 0.9);
  color: var(--text-bright);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.trust-strip {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: none;
}

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

.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.9));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4);
}

.card h3,
.card h4 {
  margin-bottom: 0.55rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  border: 1px solid rgba(95, 143, 179, 0.46);
  background: rgba(141, 184, 216, 0.2);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.problem-panel,
.banner-panel,
.fee-panel,
.contact-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-num {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(141, 184, 216, 0.2);
  color: var(--accent-strong);
  border: 1px solid rgba(95, 143, 179, 0.5);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  min-height: 220px;
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.12), rgba(245, 240, 232, 0.04));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.photo-placeholder.large {
  min-height: 340px;
}

.service-block {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.services-text-only .service-block {
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.services-page .service-block .image-frame,
.services-page .service-block figure {
  display: none !important;
}

.service-details ul,
.fee-panel ul,
.plan-card ul,
.check-list,
.pm-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.service-details li,
.fee-panel li,
.plan-card li,
.check-list li,
.pm-list li {
  margin-bottom: 0.42rem;
  color: var(--text-main);
}

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

.brand-pill {
  border: 1px solid var(--border-soft);
  background: rgba(245, 240, 232, 0.08);
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  text-align: center;
  font-weight: 600;
}

.plan-grid {
  display: grid;
  gap: 1.1rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.1), rgba(245, 240, 232, 0.04));
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-strong);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.plan-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.plan-unit {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-action {
  margin-top: auto;
  padding-top: 1rem;
}

.review-shell {
  display: grid;
  gap: 1rem;
}

.review-placeholder {
  min-height: 170px;
  text-align: center;
  display: grid;
  place-content: center;
  gap: 0.75rem;
}

.map-placeholder {
  min-height: 260px;
}

.city-list {
  columns: 2;
  column-gap: 1.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  margin-bottom: 0.48rem;
  color: var(--text-main);
  break-inside: avoid;
}

.banner-cta {
  background: linear-gradient(145deg, #6f9ec2, #8db8d8);
  border-radius: var(--radius-lg);
  color: #1e2d3d;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.banner-cta h2,
.banner-cta p,
.banner-cta .nav-phone {
  color: #1e2d3d;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-dark {
  background: #3f6686;
  color: #f7fbff;
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #335775;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--accent-strong);
}

.two-col,
.contact-layout,
.about-grid {
  display: grid;
  gap: 1.1rem;
}

.callout {
  border-left: 3px solid var(--accent-teal);
  padding-left: 0.8rem;
  margin: 0.8rem 0;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: rgba(245, 240, 232, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text-bright);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 1rem 2.9rem 1rem 1rem;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-strong);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer-inner {
  padding: 0 1rem 1.1rem;
}

.faq-item.open {
  border-color: var(--border-strong);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.field-row {
  display: grid;
  gap: 0.95rem;
}

label,
.legend {
  font-weight: 600;
  color: var(--text-bright);
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-bright);
  padding: 0.68rem 0.74rem;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(95, 143, 179, 0.25);
}

textarea {
  resize: vertical;
  min-height: 125px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  background: rgba(245, 240, 232, 0.05);
}

.radio-option input {
  width: auto;
  margin: 0;
}

.field-error {
  color: #ffad9f;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.success-message {
  border: 1px solid rgba(95, 143, 179, 0.45);
  background: rgba(141, 184, 216, 0.22);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--text-bright);
}

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

.contact-list strong {
  color: var(--text-bright);
}

.site-footer {
  background: #ede4d5;
  border-top: 1px solid rgba(30, 45, 61, 0.2);
  padding: 2.6rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent-strong);
}

.variant-switcher {
  position: fixed;
  right: 14px;
  top: 92px;
  z-index: 10000;
  display: grid;
  gap: 0.82rem;
  padding: 0.82rem;
  border-radius: 20px;
  background: rgba(245, 240, 232, 0.8);
  backdrop-filter: blur(6px);
}

.variant-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  min-height: 56px;
  min-width: 170px;
  padding: 1rem 1.35rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(2, 10, 18, 0.45);
  text-align: center;
}

.variant-link:hover,
.variant-link:focus-visible {
  background: rgba(141, 184, 216, 0.24);
  border-color: var(--accent-strong);
  outline: none;
}

.variant-link.active {
  background: rgba(141, 184, 216, 0.34);
  border-color: var(--accent-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 640px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .card-grid.services,
  .plan-grid,
  .review-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 460px) {
  .variant-link {
    min-width: 156px;
    min-height: 52px;
    font-size: 0.95rem;
    padding: 0.9rem 1.18rem;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
  }

  .nav-links a {
    color: var(--text-bright);
    font-size: 0.88rem;
    font-weight: 500;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    color: var(--accent-strong);
  }

  .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.8rem;
  }

  .hero-media .image-frame {
    min-height: 420px;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
  }

  .menu-toggle,
  .mobile-panel,
  .mobile-overlay {
    display: none;
  }

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

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

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

  .two-col {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .service-block {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .services-text-only .service-block {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .banner-cta {
    grid-template-columns: 1fr auto;
    padding: 2.2rem 2.3rem;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: start;
  }

  .city-list {
    columns: 3;
  }
}


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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
