:root {
    --bg: #faf8f4;
    --panel: #ffffff;
    --ink: #211f1c;
    --muted: #716a61;
    --line: #e9e1d7;
    --sand: #d8c3aa;
    --olive: #53614c;
    --bronze: #9b7650;
    --soft: #f1e9df;
    --shadow: 0 20px 60px rgba(48, 38, 28, .12);
}

* { box-sizing: border-box; }
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.5;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(250, 248, 244, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}
.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 760;
    min-width: 330px;
}
.brand-wordmark {
    display: grid;
    gap: 7px;
    line-height: 1;
}
.brand-title {
    display: block;
    white-space: nowrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    letter-spacing: -1.2px;
}
.brand-wordmark strong {
    color: #071b46;
    font-weight: 700;
}
.brand-wordmark em {
    color: #c79441;
    font-style: normal;
    font-weight: 700;
}
.brand-wordmark small {
    color: #071b46;
    font-size: .68em;
    font-weight: 700;
}
.brand-tagline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}
.brand-tagline i {
    display: block;
    height: 1px;
    min-width: 34px;
    background: #c79441;
}
.brand-tagline b {
    color: #071b46;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}
.site-nav a:hover { color: var(--ink); }
.nav-phone {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    background: #c79441;
    color: #fff;
    font-weight: 760;
    white-space: nowrap;
}
.nav-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
}
.nav-cta.whatsapp {
    border-color: #25d366;
    background: #fff;
    color: #0f2f1d;
}
.nav-cta img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.nav-toggle { display: none; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px) 44px;
}
.hero h1, .page-hero h1, .detail-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 7vw, 92px);
    line-height: .94;
    letter-spacing: 0;
}
.hero p, .page-hero p, .detail-hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--bronze);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-weight: 720;
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.call-btn {
    background: #1f7a4d;
    border-color: #1f7a4d;
    color: #fff;
}
.btn.whatsapp-btn {
    background: #25d366;
    border-color: #25d366;
    color: #0f2f1d;
}
.btn.call-btn:hover,
.btn.whatsapp-btn:hover {
    filter: brightness(.96);
}

.hero-media {
    display: grid;
    grid-template-columns: 1fr 168px;
    gap: 14px;
    align-items: stretch;
}
.hero-media > img {
    width: 100%;
    height: min(68vh, 680px);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.hero-stack {
    display: grid;
    gap: 14px;
}
.hero-stack img {
    width: 100%;
    height: calc((min(68vh, 680px) - 14px) / 2);
    object-fit: cover;
    border-radius: 8px;
}

.section, .page-hero, .detail-hero, .cta-band {
    padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.page-hero {
    background: var(--soft);
}
.page-hero.compact {
    padding-block: clamp(34px, 4vw, 58px);
}
.service-hero h1 {
    max-width: 1040px;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1;
}
.blog-hero h1 {
    max-width: 980px;
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 1;
}
.page-hero p { font-size: 19px; }
.intro-grid, .split, .detail-hero, .form-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}
.intro-grid h2, .section h2, .cta-band h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}
.section-head a { color: var(--bronze); font-weight: 760; }
.muted { background: #f4efe8; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.image-card, .text-card, .spec-card, .form-card, .panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.image-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.image-card div, .text-card, .spec-card, .form-card, .panel { padding: 20px; }
.text-card {
    display: grid;
    align-content: start;
    gap: 10px;
}
.image-card h3, .text-card h3, .spec-card h2, .panel h2 { margin: 0 0 8px; }
.image-card p, .text-card p, .spec-card p, .panel p { margin: 0; color: var(--muted); }
.image-card span, .text-card span { color: var(--bronze); font-size: 13px; font-weight: 760; }
.text-card strong {
    margin-top: 6px;
    color: var(--bronze);
    font-weight: 800;
}

.guide-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.guide-card {
    min-height: 230px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.guide-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.18;
}
.guide-card p {
    margin: 0;
    color: var(--muted);
}
.guide-card a {
    align-self: end;
    color: var(--bronze);
    font-weight: 800;
}

.category-strip, .instagram-grid, .text-card-grid, .metric-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.category-strip a {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 8px;
}
.category-strip img, .instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-strip span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    font-weight: 760;
}
.instagram-grid img {
    aspect-ratio: 1;
    border-radius: 8px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.video-grid video {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 640px;
    object-fit: cover;
    background: #171512;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.mobile-scroll-hint {
    display: none;
}
.rounded-image {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 8px;
}
.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}
.feature-list p {
    margin: 0;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
}
.prose {
    max-width: 850px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 18px;
}
.article-content {
    color: var(--ink);
}
.article-hero {
    display: block;
}
.article-hero > div {
    max-width: 850px;
    margin-inline: auto;
}
.article-hero h1,
.article-hero p {
    max-width: none;
}
.article-content h2 {
    margin: 34px 0 12px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.12;
}
.article-content h2:first-child {
    margin-top: 0;
}
.article-content p {
    margin: 0 0 18px;
    color: var(--muted);
}
.article-content ul {
    margin: 0 0 22px;
    padding-left: 22px;
    color: var(--muted);
}
.article-content li {
    margin: 8px 0;
}
.detail-hero img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 8px;
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.filter-row a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
}
.filter-row a.active {
    background: var(--ink);
    color: #fff;
}
.price {
    font-size: 24px;
    color: var(--ink) !important;
    font-weight: 800;
}
.cta-band {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: var(--olive);
    color: #fff;
}
.cta-band .eyebrow, .cta-band p { color: #f1dfc7; }
.cta-band .btn { border-color: #fff; }
.cta-band .btn.primary { background: #fff; color: var(--ink); }
.cta-band .btn.ghost { color: #fff; }

.form-layout { align-items: start; }
.form-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-card.wide { grid-column: 1 / -1; }
.form-card label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 720;
}
.form-card .full { grid-column: 1 / -1; }
input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
.status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 12px;
    border-radius: 8px;
    background: #e9f4e7;
    color: #2f5b35;
}
.error-list {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #e8b5b5;
    border-radius: 8px;
    background: #fff1f1;
    color: #8c2727;
}
.error-list p { margin: 4px 0; }
.table-card {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}
th, td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
th {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.row-actions a, .row-actions button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--bronze);
    font: inherit;
    font-weight: 760;
    cursor: pointer;
}
.gallery-panel { margin-top: 20px; }
.admin-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.admin-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}
.message-panel {
    display: grid;
    gap: 10px;
    max-width: 860px;
}
.message-panel hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}
.map-frame {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 8px;
}
.map-frame iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
}
nav[role="navigation"] {
    margin-top: 20px;
}
nav[role="navigation"] > div:first-child {
    display: none;
}
nav[role="navigation"] > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
nav[role="navigation"] a,
nav[role="navigation"] span {
    display: inline-flex;
    min-width: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
}

.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 28px;
    padding: 52px clamp(20px, 5vw, 72px);
    background: #171512;
    color: #fff;
}
.site-footer a, .site-footer p { display: block; color: #cfc7ba; margin: 8px 0; }
.site-footer h3 { margin: 0 0 12px; }
.footer-brand {
    min-width: 0;
}
.footer-wordmark {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}
.footer-wordmark strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.8px;
}
.footer-wordmark small {
    color: #d7c6ac;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    text-transform: uppercase;
}
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 25;
    display: flex;
    gap: 10px;
}
.floating-action {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(23, 21, 18, .22);
}
.floating-action.call {
    background: #c79441;
}
.floating-action.whatsapp {
    background: #fff;
}
.floating-action.whatsapp img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}
.login-card {
    display: grid;
    gap: 16px;
    width: min(420px, 100%);
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.login-card h1 { margin: 10px 0 0; }
.check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
}
.check input { width: auto; }
.error { color: #9f2d2d; margin: 0; }

.admin-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}
.admin-sidebar {
    padding: 22px;
    background: #171512;
    color: #fff;
}
.admin-sidebar nav {
    display: grid;
    gap: 8px;
    margin-top: 28px;
}
.admin-sidebar a, .admin-sidebar span {
    padding: 10px 12px;
    border-radius: 8px;
    color: #d6cec3;
}
.admin-main { min-width: 0; }
.admin-topbar {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 18px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.admin-topbar button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}
.admin-section { padding: 32px; }
.metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 22px;
}
.metric-grid a {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.metric-grid span { display: block; color: var(--muted); }
.metric-grid strong { font-size: 34px; }
.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 980px) {
    .hero, .intro-grid, .split, .detail-hero, .form-layout {
        grid-template-columns: 1fr;
    }
    .card-grid, .category-strip, .instagram-grid, .text-card-grid, .metric-grid, .video-grid, .guide-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .admin-body { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
}

@media (max-width: 720px) {
    .site-header {
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
    }
    .brand {
        min-width: 0;
        max-width: calc(100% - 60px);
    }
    .brand-title {
        font-size: clamp(30px, 9vw, 42px);
        letter-spacing: -.8px;
    }
    .brand-tagline b {
        font-size: 8px;
        letter-spacing: 1.7px;
    }
    .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        place-items: center;
        gap: 4px;
        padding: 11px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 10px 28px rgba(23, 21, 18, .08);
    }
    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
    }
    .site-nav {
        display: none;
        position: absolute;
        right: 18px;
        top: calc(100% + 10px);
        width: min(280px, calc(100vw - 36px));
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav .nav-phone,
    .site-nav .nav-cta {
        width: 100%;
        justify-content: center;
    }
    .hero-media { grid-template-columns: 1fr; }
    .hero-stack { grid-template-columns: 1fr 1fr; }
    .hero-stack img { height: 220px; }
    .hero-media > img { height: 420px; }
    .section-head {
        align-items: flex-start;
        gap: 14px;
    }
    .section-head a {
        max-width: 44%;
        line-height: 1.25;
        text-align: right;
    }
    .card-grid, .category-strip, .instagram-grid, .text-card-grid, .metric-grid, .video-grid, .guide-card-grid, .admin-grid, .form-card, .site-footer {
        grid-template-columns: 1fr;
    }
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
        padding: 42px 22px 104px;
        overflow: hidden;
    }
    .site-footer > div:first-child {
        grid-column: 1 / -1;
    }
    .site-footer > div:nth-child(3) {
        grid-column: 1 / -1;
        order: 4;
    }
    .site-footer > div:nth-child(4) {
        order: 3;
    }
    .footer-wordmark strong {
        font-size: 30px;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }
    .footer-wordmark small {
        max-width: 280px;
        letter-spacing: 1.4px;
    }
    .site-footer a,
    .site-footer p {
        overflow-wrap: anywhere;
    }
    .floating-actions {
        left: 50%;
        right: auto;
        bottom: max(18px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        padding: 8px;
        gap: 12px;
        border-radius: 999px;
        background: rgba(250, 248, 244, .82);
        box-shadow: 0 14px 38px rgba(23, 21, 18, .18);
        backdrop-filter: blur(14px);
    }
    .floating-action {
        width: 52px;
        height: 52px;
        box-shadow: none;
    }
    .category-strip,
    .instagram-grid,
    .video-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(240px, 76vw);
        grid-template-columns: none;
        gap: 14px;
        width: calc(100% + 40px);
        margin-inline: -20px;
        padding-inline: 20px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }
    .category-strip::-webkit-scrollbar,
    .instagram-grid::-webkit-scrollbar,
    .video-grid::-webkit-scrollbar {
        display: none;
    }
    .category-strip > *,
    .instagram-grid > *,
    .video-grid > * {
        scroll-snap-align: start;
    }
    .category-strip a {
        min-height: 320px;
        background: #eee8df;
    }
    .category-strip img,
    .instagram-grid img {
        object-fit: contain;
        background: #eee8df;
    }
    .instagram-grid img {
        width: 100%;
        height: 300px;
        aspect-ratio: auto;
    }
    .video-grid {
        grid-auto-columns: minmax(220px, 70vw);
    }
    .video-grid video {
        max-height: 430px;
    }
    .mobile-scroll-hint {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 14px;
    }
    .mobile-scroll-hint span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--sand);
        opacity: .62;
    }
    .mobile-scroll-hint span:first-child {
        width: 22px;
        background: var(--bronze);
        opacity: 1;
    }
    .guide-card-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        justify-items: stretch;
    }
    .guide-card {
        min-height: 190px;
        min-width: 0;
        padding: 14px;
        gap: 10px;
    }
    .guide-card h3 {
        font-size: 16px;
        line-height: 1.2;
    }
    .guide-card p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.45;
    }
    .guide-card a {
        font-size: 14px;
    }
    .cta-band { display: grid; }
    .hero h1, .page-hero h1, .detail-hero h1 { font-size: 44px; }
}
