:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --surface-soft: #f2eee8;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e7e0d7;
  --dark: #16202a;
  --accent: #5f7a63;
  --accent-soft: #e7f0e8;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background-color: rgba(247, 245, 242, 0.85);
  border-bottom: 1px solid #e5e1dc;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand h1 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}

.brand p {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.96rem;
  color: #334155;
}

nav a:hover {
  color: #000;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-toggle button.active {
  background: var(--dark);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--dark);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: #fafafa;
}

.btn-light {
  background: white;
  color: var(--dark);
}

.desktop-call {
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #f2eee8 0%, #fff 50%, #edf4ee 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 4.5rem 0 5rem;
  align-items: center;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #35543a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card,
.card,
.testimonial,
.gallery-card,
.contact-card,
.about-box,
.feature-box,
.why-box,
.info-card,
.before-after-card,
.photo-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.fact-card {
  padding: 1rem;
}

.fact-card strong {
  display: block;
  font-size: 0.98rem;
}

.fact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.project-panel {
  min-height: 470px;
  border-radius: 32px;
  padding: 1.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-note {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1rem 1.05rem;
}

.project-note p {
  color: var(--muted);
}

.project-note small,
.section-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.light-label {
  color: #cbd5e1;
}

.side-stack {
  display: grid;
  gap: 1rem;
}

.feature-box,
.contact-card,
.info-card {
  padding: 1.4rem;
}

.dark-card {
  background: var(--dark);
  color: white;
}

.dark-card p {
  color: #cbd5e1;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.section {
  padding: 5rem 0;
}

.alt-section {
  background: #fff;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-title {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p,
.about-box p,
.why-list p,
.testimonial p,
.gallery-copy p,
.contact-band p,
.info-card p {
  color: var(--muted);
}

.no-margin {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card,
.service-detail-card {
  padding: 1.5rem;
}

.card h3,
.service-detail-card h3 {
  margin: 1rem 0 0;
}

.card p,
.service-detail-card p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.section-cta {
  margin-top: 2rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}

.about-box,
.why-box {
  padding: 1.8rem;
}

.about-box {
  background: var(--surface-soft);
  border-radius: var(--radius-xl);
}

.story-box {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.why-box {
  border-radius: var(--radius-xl);
}

.why-list,
.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.why-item,
.faq-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fcfbf9;
}

.check {
  color: var(--accent);
  font-weight: 800;
  min-width: 1.3rem;
  text-align: center;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.testimonial {
  padding: 1.6rem;
}

.stars {
  color: #d29b16;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
}

.gallery-copy {
  padding: 1.8rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-card {
  min-height: 210px;
  overflow: hidden;
}

.image-fill img,
.gallery-card img,
.before-after-card img,
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-band {
  background: var(--dark);
  color: #fff;
  text-align: center;
  border-radius: 36px;
  padding: 4rem 1.5rem;
}

.contact-band p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: #d1d5db;
}

.contact-actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.before-after-card {
  overflow: hidden;
  position: relative;
}

.ba-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(22, 32, 42, 0.9);
  color: white;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.before-after-card img {
  height: 420px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-tile {
  overflow: hidden;
  min-height: 260px;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  background: var(--dark);
  color: white;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  display: none;
}

[data-lang] {
  display: none;
}

html[lang="en"] [data-lang="en"] {
  display: block;
}

html[lang="es"] [data-lang="es"] {
  display: block;
}

html[lang="en"] .lang-inline[data-lang="en"],
html[lang="es"] .lang-inline[data-lang="es"] {
  display: inline;
}

.lang-inline {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .gallery-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .services-grid,
  .quick-facts,
  .testimonial-grid,
  .before-after-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  nav.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .desktop-call {
    display: none;
  }

  .header-inner {
    align-items: flex-start;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: end;
  }

  .hero-grid {
    padding: 3.4rem 0 4rem;
  }

  .hero-visual,
  .quick-facts,
  .services-grid,
  .services-detail-grid,
  .testimonial-grid,
  .mini-gallery,
  .photo-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-panel {
    min-height: 320px;
  }

  .before-after-card img,
  .photo-tile {
    min-height: 220px;
  }

  .floating-call {
    display: inline-flex;
  }
}
.nav-logo {
  height: 130px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo {
    height: 90px;
  }
}
.service-detail-card {
  padding: 0;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-card h3,
.service-detail-card p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-detail-card h3 {
  margin-top: 1.25rem;
}

.service-detail-card p:last-child,
.service-detail-card [data-lang="en"] p,
.service-detail-card [data-lang="es"] p {
  padding-bottom: 1.5rem;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-content: start;
}

.project-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-panel.video-panel {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f1ec;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-note {
  background: rgba(247, 244, 236, 0.98);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-bottom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.feature-box,
.contact-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 760px) {
  .hero-bottom-cards {
    grid-template-columns: 1fr;
  }

  .project-panel.video-panel {
    min-height: 320px;
  }

  .project-note {
    max-width: 100%;
  }
}
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.about-box,
.why-box {
  height: 100%;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}