:root {
  --ink: #181916;
  --ink-soft: #42443e;
  --cream: #f2eee5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d9d5cc;
  --accent: #b39062;
  --green: #1d5f3c;
  --brand-green: #22291f;
  --beige-nueva-vida: #dbd7c3;
  --whatsapp: #25d366;
  --hero-cta: #efb34f;
  --shadow: 0 24px 70px rgba(18, 19, 16, .18);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; background: #fff; padding: 12px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 168px; height: auto; }
.header-actions { display: flex; gap: 24px; align-items: center; }
.location { font-size: 13px; opacity: .82; }

.button { display: inline-flex; min-height: 52px; padding: 0 24px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 650; letter-spacing: .02em; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 18px; }
.button-primary { color: #fff; background: var(--ink); }
.button-primary:hover { background: #30322c; }
.button-hero { color: #1b1b17; border-color: #f5c878; background: var(--hero-cta); box-shadow: 0 12px 30px rgba(239,179,79,.3); }
.button-hero:hover { border-color: #ffd389; background: #f6c065; box-shadow: 0 15px 34px rgba(239,179,79,.42); }
.button-whatsapp { color: #fff; border-color: var(--whatsapp); background: var(--whatsapp); box-shadow: 0 8px 22px rgba(37,211,102,.25); }
.button-whatsapp:hover { border-color: #1fbd5b; background: #1fbd5b; box-shadow: 0 10px 26px rgba(37,211,102,.38); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.05); }
.button-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.button-cream { background: var(--cream); color: var(--ink); }
.button-full { width: 100%; }
.text-link { display: inline-flex; gap: 9px; align-items: center; padding-block: 8px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 650; text-decoration: none; }
.light-link { color: white; }

.hero { position: relative; min-height: 900px; overflow: hidden; color: white; background: #24251f; }
.hero-photo, .hero-overlay { position: absolute; inset: 0; }
.hero-photo { background: url("assets/hero-cover.png") center 52% / cover no-repeat; transform: scale(1.01); }
.hero-overlay { background: linear-gradient(90deg, rgba(12,13,11,.86) 0%, rgba(12,13,11,.62) 44%, rgba(12,13,11,.18) 72%), linear-gradient(0deg, rgba(10,10,8,.48), transparent 55%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(370px, .72fr); gap: 76px; align-items: center; padding-top: 150px; padding-bottom: 76px; }
.hero-copy { padding-block: 70px; }
.eyebrow { margin: 0 0 18px; color: #75664f; font-size: 11px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: #d8c7ad; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
h1 { max-width: 710px; font-size: clamp(50px, 5.4vw, 78px); }
h2 { font-size: clamp(38px, 4vw, 58px); }
.hero-lead { max-width: 610px; margin: 27px 0 0; color: rgba(255,255,255,.84); font-size: 19px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 25px; align-items: center; margin-top: 34px; }
.trust-row { display: flex; gap: 25px; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.76); font-size: 12px; }
.trust-row span { display: flex; gap: 9px; align-items: center; }
.trust-row b { color: #d8c7ad; font-size: 10px; }

.lead-card { color: var(--ink); background: rgba(251,250,247,.97); padding: 34px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.lead-card h2 { font-size: 34px; }
.form-intro { margin: 12px 0 24px; color: var(--ink-soft); font-size: 14px; }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; margin-bottom: 6px; color: #373832; font-size: 12px; font-weight: 650; }
.field input, .field select { width: 100%; height: 48px; padding: 0 13px; color: var(--ink); border: 1px solid var(--line); border-radius: 0; outline: 0; background: white; }
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(179,144,98,.13); }
.privacy { display: flex; gap: 9px; align-items: flex-start; margin: 4px 0 18px; color: #62645d; font-size: 11px; }
.privacy input { margin-top: 3px; accent-color: var(--ink); }
.privacy a { color: var(--ink); font-weight: 650; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-note, .form-status { margin: 10px 0 0; text-align: center; color: #75776e; font-size: 11px; }
.form-status { color: var(--green); font-weight: 700; }
.form-status.is-error { color: #a33125; }
.button[disabled] { cursor: wait; opacity: .65; transform: none; }

.proof-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; min-height: 112px; padding: 24px 28px; border-left: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: color .22s ease, background .22s ease; }
.proof-item:last-child { border-right: 1px solid var(--line); }
.proof-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #a9a496; border-radius: 50%; color: #6c695f; font-family: Georgia, serif; font-size: 21px; line-height: 1; transition: color .22s ease, border-color .22s ease, transform .22s ease; }
.proof-copy, .proof-copy span { display: block; }
.proof-copy strong { display: block; margin-bottom: 5px; font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.proof-copy span { color: #6b6d65; font-size: 12px; transition: color .22s ease; }
.proof-item:hover, .proof-item:focus-visible, .proof-item:active { color: var(--beige-nueva-vida); background: #282d22; outline: none; }
.proof-item:hover .proof-copy span, .proof-item:focus-visible .proof-copy span, .proof-item:active .proof-copy span { color: var(--beige-nueva-vida); }
.proof-item:hover .proof-icon, .proof-item:focus-visible .proof-icon, .proof-item:active .proof-icon { color: var(--beige-nueva-vida); border-color: var(--beige-nueva-vida); transform: scale(1.06); }
.proof-item.is-touched { color: var(--beige-nueva-vida); background: #282d22; }
.proof-item.is-touched .proof-copy span { color: var(--beige-nueva-vida); }
.proof-item.is-touched .proof-icon { color: var(--beige-nueva-vida); border-color: var(--beige-nueva-vida); transform: scale(1.06); }

.section { padding: 120px 0; }
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 100px; align-items: end; }
.split-heading p:last-child { margin: 0 0 4px; color: #686a63; font-size: 16px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.project-card { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.project-card-main { grid-column: span 2; grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.025); }
.project-card figcaption { position: absolute; inset: auto 0 0; display: flex; flex-direction: column; padding: 70px 25px 23px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.74)); }
.project-card figcaption span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; opacity: .75; }
.project-card figcaption strong { margin-top: 3px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }

.process { color: white; background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-copy p:not(.eyebrow) { max-width: 460px; margin: 24px 0 32px; color: rgba(255,255,255,.66); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.steps li > span { color: #bca27f; font-size: 11px; letter-spacing: .13em; }
.steps h3 { margin: -4px 0 6px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.steps p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

.material-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.material-photo { position: relative; aspect-ratio: 1 / 1; min-height: 0; overflow: hidden; background: #ddd; }
.material-slides { position: absolute; inset: 0; }
.material-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity .35s ease, transform 1.2s ease; }
.material-slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.photo-label { position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; color: white; background: rgba(18,19,16,.78); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.slide-dots { position: absolute; z-index: 3; bottom: 20px; left: 18px; display: flex; gap: 7px; }
.slide-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; background: rgba(18,19,16,.28); cursor: pointer; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.slide-dots button.is-active { width: 23px; border-radius: 8px; background: white; }
.slide-dots button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
.material-copy > p:not(.eyebrow) { margin: 24px 0; color: #66685f; font-size: 17px; }
.check-list { margin: 28px 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 5px 50%, var(--accent) 0 3px, transparent 4px); font-size: 14px; }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 110px; }
.faq-grid > div:first-child > p:last-child { color: #686a63; }
.accordion details { border-top: 1px solid #c8c3b8; }
.accordion details:last-child { border-bottom: 1px solid #c8c3b8; }
.accordion summary { padding: 23px 36px 23px 0; cursor: pointer; font-family: Georgia, serif; font-size: 21px; }
.accordion details p { margin: -8px 0 23px; color: #64665e; font-size: 14px; }
.location-answer { padding-bottom: 26px; }
.location-answer p { margin: 0 0 10px !important; }
.location-links { display: flex; flex-wrap: wrap; gap: 9px 22px; margin: 18px 0; }
.location-links a { color: var(--ink); border-bottom: 1px solid #95866d; font-size: 13px; font-weight: 650; text-decoration: none; }
.location-links a:hover { border-color: var(--ink); }
.map-embed { position: relative; aspect-ratio: 16 / 8; min-height: 280px; overflow: hidden; margin-top: 22px; background: #d8d4ca; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.closing { padding: 78px 0; color: white; background: var(--brand-green); }
.closing-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: end; }
.closing h2 { max-width: 760px; font-size: clamp(38px, 4.5vw, 64px); }
.closing-actions { display: flex; align-items: center; }
.site-footer { padding: 20px 0 24px; color: #c7c8c2; background: #11120f; font-size: 11px; }
.footer-inner { display: grid; grid-template-columns: 165px 1fr; gap: 42px; align-items: center; }
.footer-logo img { width: 150px; height: auto; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 3px 0; white-space: nowrap; }
.footer-link { text-underline-offset: 3px; }
.footer-link:hover { color: white; }
.mobile-whatsapp { display: none; }

.legal-page { background: var(--cream); }
.legal-page .site-header { position: relative; color: white; background: var(--brand-green); }
.legal-page .brand img { width: 168px; }
.legal-main { padding: 0 0 105px; }
.legal-hero { padding: 86px 0 78px; color: white; background: var(--brand-green); }
.legal-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr); gap: 70px; align-items: end; }
.legal-hero h1 { max-width: 820px; font-size: clamp(48px, 6vw, 78px); }
.legal-hero-note { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; }
.legal-content { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 80px; align-items: start; padding-top: 80px; }
.legal-index { position: sticky; top: 28px; padding: 26px; border: 1px solid #cec8bb; background: rgba(255,255,255,.42); }
.legal-index p { margin: 0 0 14px; color: #75664f; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.legal-index a { display: block; padding: 7px 0; color: #505249; font-size: 12px; text-decoration: none; }
.legal-index a:hover { color: var(--ink); }
.legal-article { padding: 52px 58px; background: var(--paper); box-shadow: 0 22px 65px rgba(18,19,16,.08); }
.legal-intro { margin: 0 0 44px; padding-bottom: 28px; border-bottom: 1px solid var(--line); color: #65675f; font-size: 15px; }
.legal-section { scroll-margin-top: 25px; padding: 0 0 36px; margin: 0 0 36px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-section h2 { margin-bottom: 20px; font-size: clamp(29px, 3vw, 38px); }
.legal-section p { margin: 0 0 15px; color: #55584f; }
.legal-section ul { margin: 14px 0 18px; padding-left: 20px; color: #55584f; }
.legal-section li { margin: 7px 0; }
.legal-section a { color: var(--brand-green); font-weight: 650; text-underline-offset: 3px; }
.legal-contact { padding: 20px 22px; border-left: 3px solid var(--accent); background: var(--cream); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button-dark { color: white; background: var(--brand-green); }
.button-dark:hover { background: #384033; }

.thanks-page { min-height: 100vh; color: white; background: var(--ink); }
.thanks-main { position: relative; display: grid; min-height: 100vh; place-items: center; overflow: hidden; padding: 40px 20px; }
.thanks-photo, .thanks-overlay { position: absolute; inset: 0; }
.thanks-photo { background: url("assets/hero-cover.png") center / cover no-repeat; }
.thanks-overlay { background: linear-gradient(90deg, rgba(14,15,12,.93), rgba(14,15,12,.72)), linear-gradient(0deg, rgba(14,15,12,.45), transparent); }
.thanks-card { position: relative; z-index: 1; width: min(700px, 100%); padding: 54px; border: 1px solid rgba(255,255,255,.24); background: rgba(19,20,17,.72); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.thanks-logo { width: 190px; margin-bottom: 58px; }
.thanks-card h1 { font-size: clamp(48px, 6vw, 74px); }
.thanks-card > p:not(.eyebrow) { max-width: 570px; margin: 25px 0 32px; color: rgba(255,255,255,.75); font-size: 17px; }
.thanks-actions { display: flex; gap: 24px; align-items: center; }
.thanks-card small { display: block; margin-top: 65px; color: rgba(255,255,255,.45); }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 120px; }
  .hero-copy { padding: 35px 0 10px; }
  .lead-card { max-width: 620px; }
  .split-heading, .process-grid, .material-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .split-heading { align-items: start; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px; grid-auto-rows: 320px; }
  .project-card-main { grid-column: 1 / 3; grid-row: auto; }
  .material-photo { width: min(620px, 100%); }
  .closing-inner { grid-template-columns: 1fr; gap: 35px; }
  .closing-actions { align-items: flex-start; }
  .footer-inner { grid-template-columns: 150px 1fr; gap: 28px; }
  .legal-hero-inner, .legal-content { grid-template-columns: 1fr; gap: 40px; }
  .legal-index { position: static; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 30px, 1180px); }
  body { padding-bottom: 0; }
  .header-inner { height: 72px; }
  .brand img { width: 145px; }
  .location, .header-actions .button { display: none; }
  .hero-grid { padding-top: 105px; padding-bottom: 36px; }
  .hero-copy { padding-top: 26px; }
  h1 { font-size: clamp(43px, 13vw, 61px); }
  h2 { font-size: 39px; }
  .hero-lead { font-size: 16px; }
  .hero-ctas { align-items: flex-start; flex-direction: column; }
  .trust-row { flex-direction: column; gap: 11px; margin-top: 42px; }
  .lead-card { padding: 27px 20px; }
  .lead-card h2 { font-size: 31px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 96px; padding: 20px 18px; border-left: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-right: 0; }
  .section { padding: 80px 0; }
  .split-heading { gap: 22px; }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 390px; }
  .project-card-main { grid-column: auto; grid-row: auto; }
  .process-grid { gap: 50px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 12px; }
  .material-photo { width: 100%; }
  .faq-grid { gap: 38px; }
  .closing { padding: 65px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 8px; }
  .footer-logo img { width: 145px; }
  .footer-meta { grid-column: auto; text-align: left; }
  .site-footer { padding-bottom: 82px; }
  .legal-main { padding-bottom: 70px; }
  .legal-hero { padding: 58px 0 55px; }
  .legal-page .header-actions .button { display: inline-flex; }
  .legal-page .location { display: none; }
  .legal-content { padding-top: 40px; }
  .legal-index { display: none; }
  .legal-article { padding: 34px 22px; }
  .legal-section { padding-bottom: 28px; margin-bottom: 30px; }
  .legal-section h2 { font-size: 29px; }
  .legal-page .site-footer { padding-bottom: 28px; }
  .map-embed { aspect-ratio: 1 / 1; min-height: 300px; }
  .o_livechat_button, .o_livechat_chatbot, .o-mail-ChatWindow, [class*="o_livechat"] { display: none !important; }
  .mobile-whatsapp { position: fixed; z-index: 30; right: 10px; bottom: 10px; left: 10px; display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; color: white; border-radius: 3px; background: var(--green); box-shadow: 0 8px 30px rgba(0,0,0,.28); font-size: 14px; font-weight: 700; text-decoration: none; }
  .mobile-whatsapp span { color: #71df9a; }
  .thanks-card { padding: 36px 24px; }
  .thanks-logo { width: 160px; margin-bottom: 45px; }
  .thanks-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
