/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-50:  #fdf6f0;
  --brown-100: #f5e6d3;
  --brown-200: #e8c9a0;
  --brown-400: #c8913a;
  --brown-600: #8b5e2a;
  --brown-800: #4a3118;
  --brown-900: #2c1c0a;
  --wood-50:   #faf7f2;
  --wood-100:  #f0e8d8;
  --dark-bg:   #1a1208;
  --dark-card: #231a0e;
  --text-dark: #1e1209;
  --text-mid:  #5a4030;
  --text-light: #8a7060;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.13);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown-400);
  background: var(--brown-50);
  border: 1px solid var(--brown-200);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--brown-400);
  color: var(--white);
  border-color: var(--brown-400);
}
.btn--primary:hover { background: var(--brown-600); border-color: var(--brown-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,145,58,.35); }

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--brown-600);
  border-color: var(--brown-400);
}
.btn--outline:hover { background: var(--brown-50); transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--brown-800);
  border-color: var(--white);
}
.btn--white:hover { background: var(--brown-50); }

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

.btn--sm { font-size: 13px; padding: 9px 20px; }
.btn--lg { font-size: 16px; padding: 15px 34px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.09);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  align-items: center;
  gap: 8px;
}

.logo-icon { font-size: 22px; }

.logo-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .logo-text { color: var(--text-dark); }

.logo-text strong { font-weight: 800; color: var(--brown-400); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--brown-400);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.navbar__links a:not(.btn):hover { color: var(--white); }
.navbar__links a:not(.btn):hover::after { transform: scaleX(1); }

.navbar.scrolled .navbar__links a:not(.btn) { color: var(--text-mid); }
.navbar.scrolled .navbar__links a:not(.btn):hover { color: var(--text-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ===== HERO TRÍPTICO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #080503;
}

/* Tres paneles */
.hero__panels {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 3px;
}

.hero__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  animation: panelReveal .95s cubic-bezier(.16,1,.3,1) forwards;
  background: linear-gradient(180deg, #3d2008, #0d0805);
}
.hero__panel--main { flex: 1.6; animation-delay: .2s; }
.hero__panel:nth-child(1) { animation-delay: .05s; }
.hero__panel:nth-child(3) { animation-delay: .35s; }

@keyframes panelReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

.hero__panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform .12s linear, filter .3s;
  filter: brightness(.58) saturate(.8);
}
.hero__panel:hover img {
  filter: brightness(.72) saturate(1);
}

.hero__panel-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,5,3,.95) 0%,
    rgba(8,5,3,.4) 45%,
    rgba(8,5,3,.12) 100%
  );
}

.hero__panel-label {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  opacity: 0;
  animation: fadeUp .6s forwards;
  transition: color .28s;
}
.hero__panel:hover .hero__panel-label { color: rgba(255,255,255,.7); }
.hero__panels > .hero__panel:nth-child(1) .hero__panel-label { animation-delay: 1.1s; }
.hero__panels > .hero__panel:nth-child(3) .hero__panel-label { animation-delay: 1.25s; }
.hero__panel--main .hero__panel-label { animation-delay: 1.4s; }

/* Divisores con luz */
.hero__divider {
  width: 2px;
  background: rgba(200,145,58,.18);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hero__divider-scan {
  position: absolute;
  top: -80px; left: 0;
  width: 100%; height: 80px;
  background: linear-gradient(to bottom, transparent, #c8913a, transparent);
  animation: scanLine 3s 1.6s ease-in-out infinite;
  opacity: .8;
}
@keyframes scanLine {
  0%   { top: -80px; opacity: .8; }
  100% { top: 100%;  opacity: 0;  }
}

/* Contenido central flotante */
.hero__overlay-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}

/* Línea dorada que se dibuja */
.hero__gold-line {
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c8913a, transparent);
  margin-bottom: 28px;
  animation: goldLineExpand .8s .8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes goldLineExpand { to { width: clamp(120px, 18vw, 280px); } }

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8913a;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp .7s 1.2s forwards;
}

/* Título con líneas que suben */
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 0;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__word {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
}

.hero__w1 { animation-delay: 1.0s; }
.hero__w2 { animation-delay: 1.18s; color: #c8913a; font-style: italic; }
.hero__w3 {
  animation-delay: 1.36s;
  color: rgba(255,255,255,.5);
  font-size: .62em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp .8s 1.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp .8s 1.95s forwards;
  pointer-events: all;
}

/* Labels laterales verticales */
.hero__side-label {
  position: absolute;
  z-index: 10;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  top: 50%;
  opacity: 0;
  animation: fadeUp .7s 2.1s forwards;
}
.hero__side-label--left  { left: 24px;  transform: translateY(-50%); }
.hero__side-label--right { right: 24px; transform: translateY(-50%) rotate(180deg); }

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp .7s 2.4s forwards;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.hero__scroll-track {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.hero__scroll-bar {
  position: absolute;
  top: -44px; left: 0;
  width: 100%; height: 44px;
  background: linear-gradient(to bottom, transparent, #c8913a);
  animation: scrollPulse 2s 2.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { top: -44px; }
  100% { top: 44px;  }
}

@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SERVICES ===== */
.services { background: var(--wood-50); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img-wrap img {
  transition: transform .5s ease;
}

.service-card:hover .service-card__img-wrap img { transform: scale(1.07); }

/* Placeholder gradient when image missing */
.service-card__img-wrap {
  background: linear-gradient(135deg, var(--brown-200) 0%, var(--brown-400) 100%);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__body {
  padding: 24px 26px 28px;
}

.service-card__icon {
  width: 44px; height: 44px;
  background: var(--brown-50);
  border: 1.5px solid var(--brown-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.service-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--brown-600);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features { background: var(--white); }

.features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.features__text .section-title { text-align: left; }

.features__text > p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 16px;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.features__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.features__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--brown-400);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.features__list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.features__list p {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
}

.features__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  background: linear-gradient(135deg, var(--brown-100) 0%, var(--brown-400) 100%);
  box-shadow: var(--shadow-lg);
}

.features__img { height: 100%; }

.features__badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--brown-400);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.features__badge-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.features__badge-label {
  font-size: 12px;
  opacity: .85;
}

/* ===== PROCESS ===== */
.process { background: var(--dark-bg); }

.process .section-tag { color: var(--brown-200); background: rgba(200,145,58,.15); border-color: rgba(200,145,58,.3); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,.6); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }

.process__step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brown-400);
  margin-bottom: 16px;
}

.process__step-icon {
  width: 60px; height: 60px;
  background: rgba(200,145,58,.12);
  border: 1.5px solid rgba(200,145,58,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

.process__step-icon svg {
  width: 26px; height: 26px;
  stroke: var(--brown-400);
}

.process__step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: rgba(200,145,58,.3);
  margin-top: 80px;
  position: relative;
}

.process__connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(200,145,58,.4);
}

/* ===== GALLERY ===== */
.gallery { background: var(--wood-50); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--brown-100);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.gallery__item img {
  transition: transform .5s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,18,8,.8) 0%, transparent 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 28px 16px 14px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover .gallery__caption { transform: translateY(0); }

.gallery__cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--wood-50);
  border: 1px solid var(--brown-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  color: var(--brown-400);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--brown-100);
  padding-top: 16px;
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--brown-400);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== ABOUT ===== */
.about { background: var(--wood-50); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  background: linear-gradient(135deg, var(--brown-200) 0%, var(--brown-600) 100%);
  box-shadow: var(--shadow-lg);
}

.about__img { height: 100%; }

.about__text .section-title { text-align: left; }

.about__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.about__text strong { color: var(--text-dark); }

.about__text .btn { margin-top: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-600) 100%);
}

.cta-banner__bg img {
  position: absolute;
  inset: 0;
  opacity: .25;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,28,10,.9) 0%, rgba(139,94,42,.7) 100%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.cta-banner__content p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 44px; height: 44px;
  background: var(--brown-50);
  border: 1.5px solid var(--brown-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--brown-600);
}

.contact__info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.contact__info-item span {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact__social {
  margin-top: 4px;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-600);
  transition: color var(--transition);
}

.contact__social-link svg { stroke: var(--brown-600); width: 18px; height: 18px; }
.contact__social-link:hover { color: var(--brown-800); }

/* Form */
.contact__form {
  background: var(--wood-50);
  border: 1px solid var(--brown-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--brown-100);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-400);
  box-shadow: 0 0 0 3px rgba(200,145,58,.15);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
}

.form-success svg { width: 20px; height: 20px; stroke: #15803d; flex-shrink: 0; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brown-100);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer__brand .navbar__logo { margin-bottom: 16px; }
.footer__brand .logo-text { color: var(--white); }

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.55);
}

.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-200);
  transition: color var(--transition);
}

.footer__ig:hover { color: var(--brown-400); }
.footer__ig svg { flex-shrink: 0; }

.footer__links h4,
.footer__contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--brown-200); }

.footer__contact p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer__contact .btn { margin-top: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 24px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.55); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__inner,
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .features__img-wrap,
  .about__img-wrap { height: 360px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .process__steps { flex-direction: column; }
  .process__connector { width: 2px; height: 30px; margin: 0 auto; }
  .process__connector::after {
    right: -4px; top: auto; bottom: -6px;
    border: 5px solid transparent;
    border-top-color: rgba(200,145,58,.4);
    border-left-color: transparent;
  }
  .process__step { text-align: left; display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
  .process__step-icon { flex-shrink: 0; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__links { display: none; flex-direction: column; gap: 20px; position: absolute; top: 72px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); padding: 24px; box-shadow: var(--shadow-md); border-top: 1px solid var(--brown-100); }
  .navbar__links.open { display: flex; }
  .navbar__links a:not(.btn) { color: var(--text-dark); font-size: 16px; }
  .hamburger { display: flex; }
  .hero__side-label { display: none; }
  .hero__panel--main { flex: 1.2; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 2; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
