:root {
  --forest-950: #102820;
  --forest-900: #17392e;
  --forest-800: #245143;
  --forest-700: #346b59;
  --cream-50: #fbf8f1;
  --cream-100: #f3ecdf;
  --cream-200: #e8dcc8;
  --wood-300: #c9a879;
  --wood-500: #8f6742;
  --ink: #1d2b25;
  --muted: #5c665f;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 40, 32, 0.13);
  --radius: 22px;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #d7a658;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-900);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(23, 57, 46, 0.1);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--content);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--forest-900);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
  background: var(--forest-800);
}

.nav-link.nav-contact {
  margin-left: 8px;
  color: var(--white);
  background: var(--forest-900);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--forest-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

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

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: linear-gradient(90deg, rgba(9, 29, 22, 0.9) 0%, rgba(9, 29, 22, 0.58) 48%, rgba(9, 29, 22, 0.18) 100%), url("../images/holz-hero.jpg") center / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(transparent, rgba(8, 22, 17, 0.48));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f1cf94;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title,
.feature-card h3,
.service-card h3,
.content-card h2,
.contact-card h2,
.legal-card h1,
.legal-card h2,
.gallery-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero h2 {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
}

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

.button {
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: var(--forest-950);
  background: var(--cream-50);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-dark {
  color: var(--white);
  background: var(--forest-900);
}

.button-outline {
  border-color: rgba(23, 57, 46, 0.25);
  color: var(--forest-900);
  background: transparent;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--cream-100);
}

.section-dark {
  color: var(--white);
  background: var(--forest-950);
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--wood-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.section-dark .section-title {
  color: var(--white);
}

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

.feature-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid rgba(23, 57, 46, 0.09);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 126px;
  height: 126px;
  margin-inline: auto;
  margin-bottom: auto;
  object-fit: contain;
}

.feature-card h3 {
  margin: 32px 0 10px;
  color: var(--forest-900);
  font-size: 2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.service-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.service-card:hover > img {
  transform: scale(1.04);
}

.service-overlay {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent 28%, rgba(10, 31, 24, 0.92) 100%);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.service-card p {
  max-width: 470px;
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.service-card:focus-visible {
  outline-color: #f1cf94;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 160px;
  min-height: 160px;
  padding: 22px;
  border: 8px solid var(--cream-50);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: var(--forest-800);
}

.about-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card h2 {
  margin: 0 0 24px;
  color: var(--forest-900);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.content-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.image-cta {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(rgba(10, 31, 24, 0.68), rgba(10, 31, 24, 0.82)), url("../images/haustuer-detail.jpg") center / cover;
}

.image-cta-inner {
  width: var(--content);
  max-width: 830px;
  padding: 80px 0;
  text-align: center;
}

.image-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

.image-cta p {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 24, 0.9), rgba(10, 31, 24, 0.28));
  content: "";
}

.page-hero-inner {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: 85px 0 62px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
}

.hero-innenausbau {
  background-image: url("../images/innenraum.png");
}

.hero-moebel {
  background-image: url("../images/schrank.png");
}

.hero-tueren {
  background-image: url("../images/tuer.png");
}

.hero-treppen {
  background-image: url("../images/treppe.png");
}

.hero-kontakt,
.hero-legal {
  background-image: url("../images/holz-hintergrund.jpg");
}

.gallery-section {
  padding: 80px 0 110px;
  background: var(--cream-50);
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.gallery-heading h2 {
  margin: 0;
  color: var(--forest-900);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.gallery-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d1c4;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(16, 40, 32, 0.09);
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(5n + 4) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-item:nth-child(5n + 2),
.gallery-item:nth-child(5n + 5) {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(16, 40, 32, 0.18);
  opacity: 0;
  content: "+";
  font-size: 2.5rem;
  transition: opacity 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after {
  opacity: 1;
}

.category-nav {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 57, 46, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.category-nav a {
  color: var(--forest-800);
  font-weight: 800;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  padding: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(6, 17, 13, 0.95);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card,
.legal-card {
  border: 1px solid rgba(23, 57, 46, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card,
.form-card {
  padding: 36px;
}

.contact-card h2 {
  margin: 0;
  color: var(--forest-900);
  font-size: 2.2rem;
}

.contact-card h3 {
  margin: 4px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

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

.contact-list a,
.contact-list span {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--cream-100);
}

.contact-list a:hover {
  background: var(--cream-200);
}

.contact-symbol {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--forest-800);
  font-style: normal;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-full,
.form-consent,
.form-status,
.form-submit {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--forest-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 57, 46, 0.19);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream-50);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest-700);
  outline: 3px solid rgba(52, 107, 89, 0.15);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-consent input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--forest-800);
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--forest-800);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.map-section {
  padding: 0 0 110px;
}

.map-shell {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-950), var(--forest-700));
  box-shadow: var(--shadow);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(16, 40, 32, 0.72), rgba(16, 40, 32, 0.82)), url("../images/holz-hintergrund.jpg") center / cover;
}

.map-placeholder h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

.map-placeholder p {
  max-width: 620px;
  margin: 14px auto 22px;
  color: rgba(255, 255, 255, 0.8);
}

.map-frame {
  width: 100%;
  height: 470px;
  border: 0;
  display: none;
}

.map-shell.map-loaded .map-placeholder {
  display: none;
}

.map-shell.map-loaded .map-frame {
  display: block;
}

.legal-section {
  padding: 72px 0 110px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
}

.legal-card h1 {
  margin: 0 0 32px;
  color: var(--forest-900);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--forest-900);
  font-size: 1.5rem;
}

.legal-card p,
.legal-card li {
  color: #46524b;
}

.legal-card hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(23, 57, 46, 0.12);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--forest-950);
}

.footer-main {
  width: var(--content);
  margin: 0 auto;
  padding: 62px 0 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 42px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-copy {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  width: var(--content);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--cream-50);
    transition: max-height 240ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 82px);
    opacity: 1;
    box-shadow: 0 20px 30px rgba(16, 40, 32, 0.12);
  }

  .nav-list {
    width: var(--content);
    margin: 0 auto;
    padding: 18px 0 28px;
    display: grid;
  }

  .nav-link {
    padding: 11px 14px;
    border-radius: 10px;
  }

  .nav-link.nav-contact {
    margin: 4px 0 0;
  }

  .hero {
    min-height: 640px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 270px;
  }

  .feature-icon {
    margin-bottom: 0;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100% - 28px, 1180px);
    --radius: 17px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }

  .site-nav {
    inset: 72px 0 auto;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    padding: 80px 0 54px;
  }

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

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 440px;
  }

  .feature-card,
  .service-overlay,
  .contact-card,
  .form-card {
    padding: 26px;
  }

  .about-badge {
    right: 12px;
    bottom: 18px;
    width: 135px;
    min-height: 135px;
    border-width: 6px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-inner {
    padding: 70px 0 45px;
  }

  .gallery-section {
    padding: 56px 0 78px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 46px;
  }

  .lightbox-count {
    bottom: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field-full,
  .form-consent,
  .form-status,
  .form-submit {
    grid-column: 1;
  }

  .map-shell,
  .map-frame {
    min-height: 430px;
    height: 430px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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