/* ==========================================================================
   NÜREA — Real Estate & Relocation, Puerto Varas
   ========================================================================== */

:root {
  --green: #2d4a3e;
  --green-light: #3d6457;
  --cream: #f5f0e8;
  --stone: #b8a898;
  --warm: #e8dfd0;
  --ink: #0a0a0a;
  --white: #ffffff;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1280px;

  --size-hero-title: 72px;
  --size-section-title: 48px;
  --size-body: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.eyebrow--light { color: var(--warm); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--green);
  line-height: 1.15;
}

.section-title {
  font-size: clamp(32px, 4.5vw, var(--size-section-title));
  margin-bottom: 20px;
}

.section-rule {
  width: 60px;
  height: 1px;
  background: var(--stone);
  margin: 0 0 24px;
}

.section-rule--center { margin: 0 auto 24px; }

.section-lede {
  max-width: 620px;
  color: #555;
  font-size: 17px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

section { position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-light); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); }

.btn--outline-dark { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline-dark:hover { background: var(--green); color: var(--white); }

.btn--whatsapp { background: #25D366; color: var(--white); width: 100%; justify-content: center; }
.btn--whatsapp:hover { background: #1fbd5a; }

.btn--block { width: 100%; justify-content: center; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
  padding: 22px 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-name {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
  transition: color .3s ease;
}
.logo-icon { width: 34px; height: 34px; flex: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--stone);
  margin-top: 4px;
}
.site-header.scrolled .logo { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  transition: color .3s ease;
}
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--stone); }

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  transition: color .3s ease;
}
.site-header.scrolled .lang-switch { color: var(--ink); }
.lang-switch button {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; opacity: .5;
  letter-spacing: 1px;
}
.lang-switch button.active { opacity: 1; }
.lang-switch--mobile { display: none; }

.header-right .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.7);
  padding: 11px 22px;
}
.site-header.scrolled .header-right .btn--outline {
  color: var(--green);
  border-color: var(--green);
}
.site-header.scrolled .header-right .btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--green); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, var(--size-hero-title));
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 19px;
  max-width: 560px;
  margin-bottom: 40px;
  color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  opacity: .8;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- About ---------- */
.about { padding: 120px 0; background: var(--white); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-media::after {
  content: "";
  position: absolute;
  width: 55%; height: 45%;
  background: var(--warm);
  right: -30px; bottom: -30px;
  z-index: -1;
}
.about-text p { color: #555; margin-bottom: 18px; font-size: 16px; }

/* ---------- Services ---------- */
.services { padding: 120px 0; background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5ddd0;
  border: 1px solid #e5ddd0;
}
.service-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: background .3s ease;
}
.service-card:hover { background: var(--white); }
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  color: var(--green);
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.service-card h3 { font-size: 24px; margin-bottom: 14px; }
.service-card p { color: #666; font-size: 15px; }

/* ---------- Why Puerto Varas ---------- */
.why {
  padding: 120px 0;
  background: var(--green);
  color: var(--white);
}
.why .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.why-media { position: relative; height: 460px; }
.why-media img {
  position: absolute;
  object-fit: cover;
  border: 6px solid var(--green);
}
.why-media img:first-child {
  width: 62%; height: 70%;
  top: 0; left: 0;
  z-index: 1;
}
.why-media img:last-child {
  width: 55%; height: 60%;
  bottom: 0; right: 0;
  z-index: 2;
}
.why h2 { color: var(--white); }
.why > .container > div:last-child > p.section-lede { color: rgba(255,255,255,.8); margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 30px; }
.why-item { display: flex; gap: 20px; }
.why-item-icon {
  flex: none;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 22px; height: 22px; stroke-width: 1.3; }
.why-item h4 { color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 700; letter-spacing: .3px; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,.75); font-size: 14.5px; }

.why-quote {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center;
}
.why-quote p {
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}
.why-quote span { font-size: 13px; letter-spacing: 1.5px; color: var(--stone); text-transform: uppercase; }

/* ---------- Properties ---------- */
.properties { padding: 120px 0; background: var(--white); }
.property-marquee {
  --card-w: 360px;
  --card-gap: 32px;
  overflow: hidden;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.property-track {
  display: flex;
  gap: var(--card-gap);
  width: max-content;
}
.property-track.is-scrolling {
  animation: property-marquee-scroll 40s linear infinite;
}
.property-marquee:hover .property-track.is-scrolling,
.property-track.is-scrolling:has(.property-card:hover) {
  animation-play-state: paused;
}
@keyframes property-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .property-track.is-scrolling { animation: none; }
}
.property-card {
  border: 1px solid #ece6da;
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--card-w);
  width: var(--card-w);
}
.property-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-card:hover .property-media img { transform: scale(1.06); }
.property-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
}
.property-tag--sold { background: #b3392c; }
.property-tag--rented { background: #b3742c; }
.property-body { padding: 26px 26px 22px; display: flex; flex-direction: column; flex: 1; }
.property-body h3 { font-size: 22px; margin-bottom: 8px; }
.property-loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--stone); margin-bottom: 14px; }
.property-loc svg { width: 14px; height: 14px; }
.property-body p.desc { color: #666; font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.property-facts { display: flex; justify-content: center; gap: 14px; font-size: 13px; color: #666; padding: 4px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 12px; }
.property-facts span { display: flex; align-items: center; gap: 6px; }
.property-facts svg { width: 16px; height: 16px; }
.property-plot {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 4px 14px;
  margin-bottom: 12px;
  color: var(--green);
}
.property-plot svg { width: 22px; height: 22px; flex-shrink: 0; }
.property-plot-label { font-size: 13px; color: #666; }
.property-plot-value { font-family: var(--font-heading); font-size: 19px; margin-left: auto; }
.property-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.property-price { font-family: var(--font-body); font-weight: 700; font-size: 19px; color: var(--green); flex-shrink: 0; }
.property-footer .btn {
  padding: 8px 14px;
  font-size: 9.5px;
  letter-spacing: 1px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.properties-cta { text-align: center; }

.property-media-count {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(10,10,10,.65);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}
.property-media-count svg { width: 14px; height: 14px; }
.property-video-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(10,10,10,.65);
  color: var(--white);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.property-video-badge svg { width: 15px; height: 15px; }

/* ---------- Property gallery modal ---------- */
.gallery-modal {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.92);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.gallery-modal[hidden] { display: none; }
.gallery-modal-card { width: 100%; max-width: 960px; display: flex; flex-direction: column; gap: 16px; }
.gallery-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: var(--white);
  font-size: 36px; line-height: 1; cursor: pointer; z-index: 1;
}
.gallery-stage {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.gallery-stage-content { width: 100%; height: 100%; }
.gallery-stage-content img { width: 100%; height: 100%; object-fit: contain; }
.gallery-stage-content iframe { width: 100%; height: 100%; border: none; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
  transition: background .2s ease;
}
.gallery-nav:hover { background: rgba(255,255,255,.25); }
.gallery-nav--prev { left: 16px; }
.gallery-nav--next { right: 16px; }
.gallery-footer { display: flex; align-items: center; justify-content: space-between; color: var(--white); }
.gallery-counter { font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.7); }
.gallery-video-btn { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); padding: 10px 20px; }
.gallery-video-btn:hover { background: rgba(255,255,255,.12); }
.gallery-video-btn[hidden], .gallery-nav[hidden] { display: none; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 0; background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 40px 34px; border: 1px solid #ece6da; }
.testimonial-quote-mark { font-family: var(--font-heading); font-size: 48px; color: var(--stone); line-height: 1; margin-bottom: 10px; }
.testimonial-card p.quote { font-style: italic; color: #444; margin-bottom: 28px; font-size: 15.5px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid #eee; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex: none;
}
.testimonial-person strong { display: block; font-size: 14.5px; }
.testimonial-person span { font-size: 12.5px; color: #888; }

/* ---------- Contact ---------- */
.contact { padding: 120px 0; background: var(--white); }
.contact .container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-info-block { display: flex; gap: 16px; margin-bottom: 30px; }
.contact-info-icon {
  flex: none; width: 46px; height: 46px;
  background: var(--cream); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-block p { color: #444; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #555; }
.field input, .field select, .field textarea {
  border: 1px solid #ddd;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea { resize: vertical; min-height: 130px; }

/* Honeypot: hidden from real visitors, left for bots that auto-fill every field */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: #1f332b; color: rgba(255,255,255,.8); padding: 90px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 600; font-size: 26px; letter-spacing: 0.3em; color: var(--white); margin-bottom: 20px; }
.footer-logo-icon { width: 32px; height: 32px; flex: none; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-tagline { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; color: var(--stone); margin-top: 6px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 13px; letter-spacing: 2px; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; flex-wrap: wrap; gap: 14px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ---------- Guide page specific ---------- */
.page-hero {
  height: 70vh; min-height: 420px;
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); overflow: hidden;
}
.page-hero .hero-bg::after { background: rgba(0,0,0,.45); }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; padding: 0 24px; }
.page-hero-content h1 { color: var(--white); font-size: clamp(36px, 5.5vw, 60px); margin-bottom: 20px; }
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,.9); }

.page-hero--compact {
  height: auto; min-height: 0;
  padding: 170px 0 70px;
  background: var(--green);
}

.legal-content { padding: 100px 0; background: var(--white); }
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 26px; color: var(--green); margin: 40px 0 14px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { color: #555; font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-body a { color: var(--green); text-decoration: underline; }
.legal-updated { margin-top: 40px; font-size: 13px; color: var(--stone); }

.neighborhoods { padding: 120px 0; background: var(--white); }
.neighborhood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.neighborhood-card { background: var(--cream); padding: 34px 30px; border-left: 3px solid var(--green); }
.neighborhood-card h3 { font-size: 22px; margin-bottom: 10px; }
.neighborhood-card p { color: #666; font-size: 14.5px; }

.timeline { padding: 120px 0; background: var(--cream); }
.timeline-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 190px 1fr; gap: 36px; padding: 32px 0; border-bottom: 1px solid #e2dac9; }
.timeline-item:last-child { border-bottom: none; }
.timeline-when { font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; color: var(--green); }
.timeline-body h3 { font-size: 21px; margin-bottom: 12px; }
.timeline-body ul { display: flex; flex-direction: column; gap: 8px; }
.timeline-body li { font-size: 14.5px; color: #555; padding-left: 18px; position: relative; }
.timeline-body li::before { content: "—"; position: absolute; left: 0; color: var(--stone); }

.practical { padding: 120px 0; background: var(--white); }
.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.practical-card { padding: 32px; border: 1px solid #ece6da; }
.practical-card h3 { font-size: 20px; margin-bottom: 12px; }
.practical-card p { font-size: 14.5px; color: #666; }

.tips { padding: 120px 0; background: var(--green); color: var(--white); }
.tips h2 { color: var(--white); }
.tip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.tip-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); padding: 26px 28px; font-size: 15px; color: rgba(255,255,255,.9); }

.guide-cta { padding: 110px 0; background: var(--cream); text-align: center; }
.guide-cta h2 { margin-bottom: 16px; }
.guide-cta p { max-width: 520px; margin: 0 auto 34px; color: #555; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about .container,
  .why .container,
  .contact .container { grid-template-columns: 1fr; }
  .service-grid,
  .testimonial-grid,
  .neighborhood-grid,
  .practical-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-media { height: 360px; margin-bottom: 20px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 760px) {
  .container { padding: 0 24px; }
  .nav-toggle { display: block; z-index: 1100; }
  .nav-links, .header-right .lang-switch, .header-right .btn--outline {
    display: none;
  }
  .nav-links {
    position: fixed; inset: 0 0 0 30%;
    background: var(--green);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); display: flex; }
  .nav-links a { color: var(--white); font-size: 16px; }
  .lang-switch--mobile {
    display: flex;
    margin-top: 10px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: 15px;
  }
  .service-grid, .testimonial-grid, .neighborhood-grid, .practical-grid, .footer-grid, .tip-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 { font-size: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
