/* =========================
   VARIABLES EDITABLES
   ========================= */
:root {
  --bg: #f6f0e7;
  --surface: #fffaf2;
  --surface-2: #ece0d1;
  --ink: #201915;
  --ink-soft: #66594f;
  --dark: #1d1713;
  --dark-2: #2b211b;
  --wood: #9a6a43;
  --wood-dark: #70492f;
  --line: rgba(32, 25, 21, 0.12);
  --white: #ffffff;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 18px 45px rgba(39, 27, 19, 0.12);
  --container: 1180px;
}

/* =========================
   BASE
   ========================= */
* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--surface-2);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: var(--white);
  color: var(--dark);
  padding: 12px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #c9976e;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  letter-spacing: -0.06em;
}

h1 span {
  color: #c9976e;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--ink-soft);
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.large-copy {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.32;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--wood);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--wood-dark);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--dark);
}

.btn-dark:hover {
  background: #3b2d25;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--wood-dark);
  font-weight: 800;
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(29, 23, 19, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--wood);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.11em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: 0.2s ease;
}

/* =========================
   HERO
   ========================= */
.hero {
  padding-top: 150px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  min-height: 680px;
}

.hero-copy {
  padding-bottom: 74px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-points span::before {
  content: "•";
  margin-right: 8px;
  color: #c9976e;
}

.hero-visual {
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: #34261e;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,11,0.72), rgba(20,14,11,0.02) 55%);
  pointer-events: none;
}

.hero-image-wrap > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.wood-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(
      8deg,
      transparent 0 36px,
      rgba(255,255,255,0.13) 37px,
      transparent 39px 70px
    );
  transform: scale(1.2);
}

.placeholder-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(22, 17, 14, 0.45);
  color: rgba(255,255,255,0.8);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(22, 17, 14, 0.66);
  backdrop-filter: blur(14px);
}

.hero-card small {
  margin-bottom: 8px;
  color: #c9976e;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.hero-card span {
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.hero-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #17120f;
}

.hero-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* =========================
   INTRO
   ========================= */
.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.intro-content > p:not(.large-copy) {
  max-width: 720px;
  color: var(--ink-soft);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.feature-row article {
  padding: 26px 24px 0 0;
}

.feature-row article + article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.feature-row span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wood);
  font-weight: 800;
}

.feature-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* =========================
   SERVICES
   ========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 2;
  display: flex;
  min-height: 310px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(32,25,21,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.42);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(32,25,21,0.12);
  border-radius: 50%;
  color: var(--wood-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card a {
  display: inline-flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

/* =========================
   PROJECTS
   ========================= */
.project-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: end;
  max-width: none;
  margin-bottom: 36px;
}

.project-heading > p {
  max-width: 520px;
  justify-self: end;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-btn {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #6f513d;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(0.88);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 50px 22px 20px;
  background: linear-gradient(to top, rgba(16,12,10,0.86), transparent);
  color: var(--white);
  text-align: left;
  pointer-events: none;
}

.gallery-caption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.gallery-caption small {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================
   PROCESS
   ========================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.process-step {
  min-height: 265px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}

.process-step span {
  display: inline-block;
  margin-bottom: 54px;
  color: #c9976e;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.14rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
}

/* =========================
   REVIEWS
   ========================= */
.review-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.review-card {
  margin: 0;
  padding: 44px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 26px;
  color: #b57a3c;
  letter-spacing: 0.12em;
}

.review-card > p {
  margin-bottom: 44px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.review-card footer {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-card footer span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* =========================
   LOCATION
   ========================= */
.location-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}

.location-copy {
  padding: 20px 0;
}

.location-copy address {
  display: grid;
  margin: 32px 0;
  color: var(--ink-soft);
  font-style: normal;
}

.location-copy address strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.map-wrap {
  min-height: 480px;
  overflow: hidden;
  border-radius: 28px;
  background: #d9c8b6;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  border: 0;
}

/* =========================
   CONTACT
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.contact-info > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
}

.contact-card {
  display: grid;
  margin: 36px 0 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card small {
  color: var(--ink-soft);
}

.contact-card a {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.contact-form {
  padding: 34px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-form label span {
  color: var(--ink-soft);
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32,25,21,0.14);
  border-radius: 13px;
  background: rgba(255,255,255,0.64);
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--wood);
  outline: 2px solid rgba(154,106,67,0.15);
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-result {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}

.form-result pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* =========================
   FINAL CTA + FOOTER
   ========================= */
.final-cta {
  padding: 86px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,0.65);
}

.site-footer {
  padding: 54px 0 22px;
  background: #120e0c;
  color: rgba(255,255,255,0.68);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid p {
  margin-bottom: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 26px;
}

.footer-links a:hover,
.site-footer > .container a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}

.mobile-call {
  display: none;
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  padding: 30px;
  place-items: center;
  background: rgba(12, 9, 7, 0.91);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(900px, 100%);
  color: var(--white);
}

.lightbox-content img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 24px;
  background: #15100d;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.lightbox-content h3 {
  margin: 18px 0 0;
  font-size: 1.6rem;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* =========================
   SCROLL ANIMATIONS
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

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

  .service-card,
  .service-card:nth-child(4) {
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    background: rgba(29, 23, 19, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-image-wrap,
  .hero-image-wrap > img {
    min-height: 520px;
    height: 520px;
  }

  .intro-grid,
  .review-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .feature-row article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-row article {
    padding: 24px 0;
  }

  .project-heading {
    grid-template-columns: 1fr;
  }

  .project-heading > p {
    justify-self: start;
  }

  .gallery {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

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

  .main-nav {
    top: 72px;
  }

  .brand-text strong {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-image-wrap,
  .hero-image-wrap > img {
    min-height: 430px;
    height: 430px;
  }

  .hero-image-wrap {
    border-radius: 24px 24px 0 0;
  }

  .hero-strip-inner {
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }

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

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 260px;
  }

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

  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 24px;
  }

  .review-card {
    padding: 28px;
  }

  .map-wrap {
    min-height: 380px;
  }

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

  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--wood);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    font-weight: 800;
  }
}
