:root {
  --green-700: #1f4f3a;
  --green-600: #2b6a4a;
  --green-500: #3f8a5f;
  --gray-900: #1f2321;
  --gray-700: #3b403d;
  --gray-500: #6a726d;
  --gray-200: #ece9e2;
  --gold-500: #c9a45c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-900);
  background: #f3efe6;
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  background: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.brand-name {
  font-size: 1.05rem;
  color: var(--white);
}

.brand-tag {
  font-size: 0.85rem;
  color: rgba(201, 164, 92, 0.9);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(58, 155, 100, 0.08);
  border-color: rgba(58, 155, 100, 0.2);
}

.site-nav a.active {
  background: rgba(201, 164, 92, 0.2);
  border-color: rgba(201, 164, 92, 0.5);
  color: var(--white);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
}

.socials-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-socials {
  margin-right: 0.25rem;
}


.nav-row {
  padding: 0.4rem 0 1rem;
  border-top: 1px solid rgba(31, 92, 60, 0.12);
}

.nav-row-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-row-inner .site-nav {
  justify-self: center;
}

.call-now {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.call-now a {
  font-size: 1rem;
  color: var(--gold-500);
  font-weight: 600;
}

.spanish-badge {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(201, 164, 92, 0.9);
  letter-spacing: 0.04em;
  text-transform: none;
}

.lang-toggle {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: rgba(201, 164, 92, 0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold-500);
  color: #1f1a12;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.3);
  padding: 0.4rem;
  border-radius: 999px;
}

.socials a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 92, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.socials svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-500);
}

.socials a::after {
  content: attr(data-label);
  position: absolute;
  bottom: -18px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--gold-500);
}

.socials a:hover svg {
  fill: #1f1a12;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 26px;
  height: 2px;
  background: var(--green-700);
}

.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(20, 32, 25, 0.72) 0%, rgba(18, 28, 22, 0.58) 50%, rgba(22, 34, 27, 0.62) 100%),
    radial-gradient(circle at top left, rgba(20, 40, 28, 0.45), transparent 60%),
    var(--hero-image, url("Pictures/79aeb9c9-7e94-4ad5-8c30-0822e97f1d8b.jpg"));
  background-size: cover;
  background-position: center right;
  padding: 5rem 0 4rem;
}

.hero-content {
  transition: opacity 0.4s ease;
}

.hero.is-animating-text .hero-content h1,
.hero.is-animating-text .hero-content .hero-subtitle {
  animation: heroTextRise 0.7s ease forwards;
}

.hero.is-animating-text .hero-content .hero-subtitle {
  animation-delay: 0.08s;
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 0.04em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

.hero-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 164, 92, 0.5);
  color: var(--gold-500);
}

.hero-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero.is-swapping .hero-content {
  opacity: 0;
}

.hero-progress {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  border-radius: 0;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-500);
}

.hero.is-home .hero-progress {
  display: block;
}

.hero-progress-bar.is-animating {
  animation: heroProgress var(--hero-progress, 8s) linear forwards;
}

@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 3.5rem;
  color: var(--white);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.4rem;
}

.hero-areas span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.45);
  font-weight: 600;
  font-size: 0.85rem;
}


.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
}

.hero .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.3);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card.hidden {
  display: none;
}

.hero-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-700);
}

.section {
  padding: 4rem 0;
}

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

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  margin: 0;
  color: var(--gray-500);
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.14);
}

.gallery-track {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 70vw);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0.5rem 1.5rem;
  scrollbar-width: thin;
}

.gallery-rail::-webkit-scrollbar {
  height: 8px;
}

.gallery-rail::-webkit-scrollbar-thumb {
  background: rgba(31, 92, 60, 0.35);
  border-radius: 999px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: center;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

body.gallery-animate .gallery-item {
  animation: galleryFade 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes galleryFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-item img {
  width: 100%;
  height: clamp(260px, 40vw, 420px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.gallery-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green-700);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease;
}

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


.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
}

.area-list span {
  background: var(--gray-200);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

#areas {
  position: relative;
  overflow: hidden;
}

#areas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 92, 0.35), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(201, 164, 92, 0.28), transparent 60%),
    repeating-linear-gradient(90deg, rgba(201, 164, 92, 0.18) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(201, 164, 92, 0.14) 0 1px, transparent 1px 70px);
  opacity: 0.8;
  pointer-events: none;
}

#areas .container,
#contact .container {
  position: relative;
  z-index: 1;
}

.contact-info-block {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.2;
  pointer-events: none;
}

.contact-watermark img {
  width: min(520px, 90%);
  height: min(520px, 90%);
  object-fit: contain;
}

.contact-info-block .section-heading,
.contact-info-block .btn {
  position: relative;
  z-index: 1;
}


.area-list::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 30% 40%, rgba(201, 164, 92, 0.55), transparent 60%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.area-list span {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 233, 226, 0.95));
  border: 1px solid rgba(201, 164, 92, 0.28);
  box-shadow: 0 8px 18px rgba(201, 164, 92, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(201, 164, 92, 0.3);
}

.map-card {
  margin-top: 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 164, 92, 0.28);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.highlight {
  background: #2a2418;
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.25);
}

.highlight .btn {
  margin-top: 1rem;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.estimate-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--gray-700);
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d7ded9;
  font-family: inherit;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form .full {
  grid-column: 1 / -1;
}

.estimate-form .form-submit {
  grid-column: 1 / -1;
  justify-self: center;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-socials {
  margin-top: 1.5rem;
  display: none;
}

.contact-socials .socials {
  justify-content: flex-start;
  background: rgba(201, 164, 92, 0.12);
  border-color: rgba(201, 164, 92, 0.28);
}

.contact-heading {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #000000;
}

.contact-copy {
  color: #000000;
  font-weight: 600;
  font-size: 1.05rem;
  text-shadow: none;
  opacity: 1;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-hours h4 {
  margin-bottom: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: #1f1a12;
  box-shadow: 0 12px 25px rgba(201, 164, 92, 0.35);
}

.btn-primary:hover {
  background: #b48c44;
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--gold-500);
  color: var(--gold-500);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(58, 155, 100, 0.12);
}

.btn.btn-ghost-white {
  border-color: var(--white);
  color: var(--white);
}

.btn.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background: #0a0908;
}

.footer-cta {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.footer-cta h3 {
  margin-top: 0;
}

.footer-main {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.footer-logo img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  background: var(--white);
  object-fit: cover;
}

.footer-tagline {
  margin: 0.25rem 0 0;
  color: rgba(201, 164, 92, 0.9);
}

.footer-info p {
  margin: 0.2rem 0;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.active,
.lightbox.active {
  display: flex;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 14, 0.65);
}

.modal-panel {
  position: relative;
  background: var(--white);
  width: min(720px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox {
  background: rgba(12, 17, 14, 0.72);
}

.lightbox-image {
  max-width: min(920px, 92vw);
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green-700);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav.prev {
  left: 6vw;
}

.lightbox-nav.next {
  right: 6vw;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
  }

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

  .brand-tag {
    font-size: 0.75rem;
  }

  .nav-toggle {
    display: flex;
    margin: 0 auto;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    padding: 0.4rem;
    margin-top: 0.4rem;
  }

  .nav-toggle-bar {
    background: #ffffff;
  }

  .nav-toggle::after {
    content: none;
  }

  .nav-row {
    padding: 0.6rem 0 0.8rem;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.55s ease, opacity 0.55s ease, transform 0.55s ease;
  }

  .nav-row-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
  }

  .lang-toggle {
    margin: 0 auto;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  .header-actions .call-now {
    order: 1;
  }

  .header-actions .btn {
    order: 2;
  }

  .header-actions .socials-lang {
    order: 3;
  }

  .header-socials {
    display: none;
  }

  .contact-socials {
    display: block;
  }

  .contact-socials .socials {
    justify-content: center;
    background: #151515;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 0.9rem;
  }

  .contact-socials .socials a {
    background: rgba(255, 255, 255, 0.1);
  }

  .contact-socials .socials svg {
    fill: var(--gold-500);
  }

  .call-now {
    align-items: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .header-socials {
    order: 2;
  }

  .site-nav.open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .gallery-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-icon {
    display: grid;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-row {
    padding: 0;
    border-top: 0;
  }

  .header-actions {
    display: none;
  }

  .hero-areas {
    display: none;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    flex-wrap: nowrap;
  }

  .brand {
    width: auto;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
  }

  .brand-text {
    align-items: flex-start;
    text-align: left;
  }

  .nav-toggle {
    margin: 0;
    justify-self: end;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card,
  .contact-card {
    text-align: left;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    padding: 0.6rem 0 0.4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .socials a {
    width: 50px;
    height: 50px;
  }

  .socials svg {
    width: 24px;
    height: 24px;
  }

  .socials a::after {
    content: none;
  }

  .lang-toggle {
    transform: scale(0.95);
    margin: 0 auto;
  }

  .site-nav a {
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    gap: 0.75rem;
  }

  .brand-text {
    align-items: flex-start;
  }

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

  .brand-tag {
    font-size: 0.75rem;
    line-height: 1.1;
  }

  .header-actions .call-now,
  .header-actions .btn,
  .header-actions .socials-lang .header-socials {
    display: none;
  }

  .gallery-rail {
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .gallery-item img {
    height: auto;
    aspect-ratio: 4 / 3;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .gallery-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .gallery-item.in-view {
    opacity: 1;
    transform: translateY(0);
  }


  .hero {
    padding: 3.5rem 0;
  }

  .estimate-form {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}
