:root {
    --bg: #f5f4f1;
    --surface: #ffffff;
    --ink: #171717;
    --muted: #66635e;
    --line: #dedbd5;
    --dark: #151515;
    --dark-soft: #222222;
    --red: #c9232b;
    --red-dark: #a3171e;
    --green: #20834b;
    --orange: #c66a13;
    --whatsapp: #187b4b;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .10);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: #fff; padding: .8rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.demo-banner { background: #2a1113; color: #fff; font-size: .86rem; }
.demo-banner__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: .75rem; text-align: center; }
.demo-banner strong { color: #ffb4b8; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.08); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand img { width: 66px; height: 66px; object-fit: contain; border-radius: 50%; background: #fff; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-size: 1.22rem; letter-spacing: -.02em; }
.brand small { color: var(--muted); margin-top: .22rem; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.main-nav > a:not(.btn):hover { color: var(--red); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: .65rem .85rem; font-weight: 800; }

.hero { min-height: 670px; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media { background-size: cover; background-position: center; transform: scale(1.02); }
.hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.70) 48%, rgba(0,0,0,.20) 100%); }
.hero__content { position: relative; z-index: 2; padding-block: 95px; }
.eyebrow { margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--red); font-size: .77rem; font-weight: 900; }
.hero .eyebrow { color: #ff8d93; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; letter-spacing: -.035em; }
h1 { max-width: 780px; margin-bottom: 1.4rem; font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
.hero__lead { max-width: 670px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 2rem 0 1.2rem; }
.hero__services { color: rgba(255,255,255,.72); font-weight: 700; }

.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: .85rem 1.3rem; border-radius: 12px; border: 1px solid transparent; text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--small { min-height: 42px; padding: .65rem 1rem; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--outline { border-color: var(--line); background: #fff; }

.status-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.status-grid { display: grid; grid-template-columns: 1.1fr 1fr .7fr; }
.status-grid > * { min-height: 112px; padding: 1.35rem; display: flex; align-items: center; border-right: 1px solid var(--line); text-decoration: none; }
.status-grid > *:last-child { border-right: 0; }
.business-status { gap: .9rem; }
.business-status > div, .quick-info { display: grid; }
.business-status small, .quick-info span { color: var(--muted); font-size: .86rem; }
.status-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(198,106,19,.12); flex: 0 0 auto; }
.business-status.is-open .status-dot { background: var(--green); box-shadow: 0 0 0 6px rgba(32,131,75,.12); }
.business-status.is-closed .status-dot { background: var(--red); box-shadow: 0 0 0 6px rgba(201,35,43,.12); }

.section { padding: 110px 0; }
.section--dark { background: var(--dark); color: #fff; }
.section--soft { background: #ebe8e2; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading > p:last-child, .lead { color: var(--muted); font-size: 1.1rem; }
.section-heading--light > p:last-child { color: rgba(255,255,255,.66); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card { min-height: 245px; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__number { display: inline-block; margin-bottom: 2.8rem; color: var(--red); font-weight: 900; }
.service-card p { color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-card { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--dark-soft); aspect-ratio: 4/3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-card:hover img { transform: scale(1.045); }

.split-layout, .proposal-layout, .form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.social-links { display: flex; gap: .8rem; margin-top: 1.5rem; }
.social-links a, .mr0-link { font-weight: 900; color: var(--red); }
.review-stack { display: grid; gap: 1rem; }
.review-stack blockquote { margin: 0; padding: 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.review-stack blockquote p { margin: 0 0 .7rem; font-size: 1.18rem; font-weight: 750; }
.review-stack cite, .reviews-note { color: var(--muted); font-style: normal; font-size: .9rem; }
.demo-notice { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 4px solid var(--red); background: rgba(255,255,255,.6); }

.form-card { background: var(--surface); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form-card form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.optional { color: var(--muted); font-weight: 500; font-size: .9em; }
.form-card .form-field { margin: 0; }
.form-card label { display: block; margin-bottom: .35rem; font-weight: 800; }
.form-card input[type="text"], .form-card input[type="email"], .form-card input[type="tel"], .form-card input[type="date"], .form-card select, .form-card textarea { width: 100%; border: 1px solid #cfcac2; border-radius: 10px; background: #fff; padding: .78rem .85rem; color: var(--ink); }
.form-card textarea { min-height: 125px; resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 3px solid rgba(201,35,43,.14); border-color: var(--red); }
.form-card button[type="submit"], .form-card input[type="submit"] { min-height: 50px; border: 0; border-radius: 11px; background: var(--red); color: #fff; padding: .8rem 1.2rem; font-weight: 900; cursor: pointer; }
.form-message { margin-bottom: 1rem; padding: 1rem; border-radius: 10px; background: #e9f7ef; color: #165d35; font-weight: 800; }
.privacy-check { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; margin: 0; font-size: .92rem; font-weight: 600 !important; }
.privacy-check input { margin-top: .28rem; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.contact-phone { font-size: 2rem; font-weight: 900; margin: .5rem 0; }
.contact-actions { display: grid; gap: .75rem; min-width: 240px; }

.proposal-section { padding: 110px 0; background: #231113; color: #fff; }
.proposal-section .eyebrow { color: #ff8d93; }
.proposal-section p { color: rgba(255,255,255,.74); }
.check-list { padding: 0; list-style: none; display: grid; gap: .55rem; }
.check-list li::before { content: '✓'; color: #ff8d93; font-weight: 900; margin-right: .6rem; }
.form-card--proposal { color: var(--ink); }
.proposal-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.proposal-fieldset legend { margin-bottom: .55rem; font-weight: 900; }
.proposal-choices { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .3rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1rem; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 900; text-align: center; }
.choice--yes span { background: var(--red); border-color: var(--red); color: #fff; }
.choice input:focus-visible + span, .choice input:checked + span { outline: 4px solid rgba(201,35,43,.24); outline-offset: 2px; }
.choice:not(.choice--yes) input:checked + span { border-color: var(--red); color: var(--red-dark); }

.site-footer { background: #0d0d0d; color: #fff; padding: 2.2rem 0 6rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; }
.footer-grid > div { display: grid; }
.footer-grid span { color: rgba(255,255,255,.60); font-size: .9rem; }
.footer-grid a { color: #ff8d93; font-weight: 900; }
.mobile-action-bar { display: none; }
.simple-page { padding: 80px 0; max-width: 800px; }
.prose { font-size: 1.05rem; }

@media (max-width: 980px) {
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .status-grid { grid-template-columns: 1fr; }
    .status-grid > * { border-right: 0; border-bottom: 1px solid var(--line); }
    .status-grid > *:last-child { border-bottom: 0; }
    .main-nav { position: absolute; display: none; top: 88px; left: 0; right: 0; padding: 1rem 20px 1.4rem; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
    .main-nav.is-open { display: flex; }
    .menu-toggle { display: inline-flex; }
    .main-nav a { padding: .5rem 0; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, var(--container)); }
    .demo-banner__inner { flex-direction: column; gap: 0; padding: .5rem 0; }
    .header-inner { min-height: 76px; }
    .brand img { width: 52px; height: 52px; }
    .brand small { display: none; }
    .main-nav { top: 76px; }
    .hero { min-height: 650px; }
    .hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.56)); }
    .hero__content { padding-block: 70px; }
    h1 { font-size: clamp(2.7rem, 14vw, 4.5rem); }
    .hero__actions .btn { width: 100%; }
    .section { padding: 75px 0; }
    .services-grid, .gallery-grid, .split-layout, .proposal-layout, .form-layout, .contact-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 210px; }
    .gallery-grid { gap: .75rem; }
    .contact-actions { min-width: 0; }
    .proposal-choices, .form-row { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; }
    .mobile-action-bar { position: fixed; display: grid; grid-template-columns: repeat(3, 1fr); z-index: 1000; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(0,0,0,.10); }
    .mobile-action-bar a { min-height: 58px; display: grid; place-items: center; text-decoration: none; font-size: .83rem; font-weight: 900; border-right: 1px solid var(--line); }
    .mobile-action-bar a:last-child { border-right: 0; }
}
