:root {
    --bg: #f7f1e8;
    --text: #1f2940;
    --muted: #5f6470;
    --card: #ffffff;
    --line: #e8ded2;
    --primary: #c56b45;
    --primary-dark: #9d4f32;
    --accent: #c56b45;
    --whatsapp: #1fae5b;
    --shadow: 0 18px 45px rgba(31, 41, 64, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
    font-weight: 650;
    line-height: 1.08;
}

h1 {
    max-width: 880px;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(232, 222, 210, .86);
    background: rgba(247, 241, 232, .9);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-logo {
    width: clamp(150px, 17vw, 220px);
    height: auto;
    max-height: 68px;
    flex: 0 0 auto;
    object-fit: contain;
}

.footer-about .brand-logo {
    width: 230px;
    max-height: 130px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: .94rem;
}

.main-nav a {
    padding-block: 8px;
}

.main-nav a:hover,
.main-nav .active {
    color: var(--text);
    font-weight: 700;
}

.header-phone {
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    font-size: .94rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero {
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    align-items: center;
    gap: 70px;
    padding-block: 74px;
}

.eyebrow,
.section-kicker,
.section-head p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .92rem;
    font-weight: 800;
}

.eyebrow {
    margin-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--card);
    padding: 7px 12px;
    color: var(--muted);
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
}

.hero h1 em {
    color: var(--primary);
}

.hero p,
.lead {
    margin-top: 22px;
    max-width: 650px;
    color: var(--muted);
    font-size: 1.12rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 21px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease;
}

.btn:hover,
.header-phone:hover,
.whatsapp-float:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--primary);
    color: #fff;
}

.btn.whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn.secondary {
    border-color: var(--line);
    background: var(--card);
    color: var(--text);
}

.btn.light {
    background: #fff;
    color: var(--text);
}

.btn.outline-light {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    color: var(--muted);
    font-size: .94rem;
}

.hero-media {
    position: relative;
    margin: 0;
}

.hero-media::before,
.portrait::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: .24;
    filter: blur(22px);
}

.hero-media img,
.portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.hero-media figcaption {
    position: absolute;
    left: -18px;
    bottom: -18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    padding: 14px 18px;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.35rem;
    box-shadow: var(--shadow);
}

.band {
    border-block: 1px solid var(--line);
    background: rgba(247, 241, 232, .72);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-block: 40px;
    text-align: center;
}

.stats-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.stats-grid strong {
    display: block;
    color: var(--primary);
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-size: .94rem;
}

.section {
    padding-block: 78px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head span,
.split p,
.areas p,
.service-list p,
.process-panel p,
.copy-block p,
.commitment p {
    color: var(--muted);
}

.section-head a {
    color: var(--primary-dark);
    font-weight: 800;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.service-list article,
.process article,
.quote-card,
.feature-row div,
details,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    padding: 24px;
}

.service-card:hover,
.quote-card:hover,
.gallery-grid figure:hover {
    box-shadow: var(--shadow);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(197, 107, 69, .11);
    color: var(--primary-dark);
    font-weight: 900;
}

.service-card h3,
.service-list h2,
.process h3 {
    margin-top: 18px;
}

.service-card p,
.service-list p,
.process p {
    margin-top: 10px;
    color: var(--muted);
}

.process strong {
    color: var(--primary);
    font-family: Fraunces, Georgia, serif;
    font-size: 2.1rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 62px;
}

.split h2,
.areas h2,
.commitment h2 {
    margin-top: 10px;
}

.split > div > p:not(.section-kicker),
.areas p,
.commitment p {
    margin-top: 18px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list.compact {
    grid-template-columns: 1fr;
    margin-top: 18px;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    font-size: .96rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(197, 107, 69, .13);
}

.photo-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.photo-mosaic img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.photo-mosaic img:nth-child(even) {
    margin-top: 28px;
}

.quote-card {
    margin: 0;
}

.quote-card div {
    color: var(--primary);
}

.quote-card p {
    margin-top: 18px;
}

.quote-card footer {
    display: grid;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.quote-card span {
    color: var(--muted);
}

.areas {
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: 56px;
}

.areas ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.areas li {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    padding: 13px 16px;
    font-weight: 700;
}

.narrow {
    max-width: 860px;
}

details {
    margin-top: 12px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin-top: 12px;
    color: var(--muted);
}

.cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 52px;
}

.cta p {
    margin-top: 12px;
    max-width: 680px;
    color: rgba(255, 255, 255, .9);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-block: 34px;
}

.feature-row strong,
.feature-row span {
    display: block;
}

.feature-row span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .9rem;
}

.process-panel {
    margin-top: 54px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(247, 241, 232, .72);
    padding: 38px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.gallery-grid figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
}

.gallery-grid figure.wide {
    grid-column: 1 / -1;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    color: var(--muted);
}

.gallery-grid figcaption strong {
    color: var(--text);
}

.portrait {
    position: relative;
    margin: 0;
}

.copy-block {
    display: grid;
    gap: 18px;
    margin-top: 26px;
    font-size: 1.08rem;
}

.commitment {
    display: grid;
    grid-template-columns: minmax(320px, 430px) 1fr;
    gap: 48px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    padding: 38px;
}

.commitment img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
}

.contact-grid {
    display: grid;
    grid-template-columns: .88fr 1fr;
    gap: 64px;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 2px;
}

.contact-list span {
    color: var(--muted);
    font-size: .92rem;
}

.contact-list a,
.contact-list strong {
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 12px 13px;
    color: var(--text);
    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(197, 107, 69, .2);
    border-color: var(--primary);
}

.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--line);
    background: rgba(247, 241, 232, .82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 48px;
    padding-block: 54px;
}

.footer-grid h2 {
    margin-bottom: 14px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin-top: 9px;
    color: var(--muted);
}

.footer-about p {
    max-width: 430px;
    margin-top: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 22px;
    color: var(--muted);
    font-size: .86rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 18;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #fff;
    padding: 13px 18px;
    font-weight: 900;
    box-shadow: var(--shadow);
    transition: transform .2s ease;
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) 1.1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
}

.news-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.news-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 54px);
}

.news-feature-copy h3 {
    margin-top: 16px;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.news-feature-copy > p,
.news-card-copy > p {
    margin-top: 16px;
    color: var(--muted);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 700;
}

.article-meta span:first-child {
    color: var(--primary-dark);
}

.article-meta-detailed {
    align-items: center;
    gap: 8px 12px;
}

.article-meta .meta-separator {
    color: var(--primary);
    font-size: .8rem;
}

.text-link,
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--primary-dark);
    font-weight: 800;
}

.news-landing > .lead {
    max-width: 760px;
}

.news-grid {
    display: grid;
    gap: 28px;
    margin-top: 42px;
}

.news-card:nth-child(even) .news-card-media {
    order: 2;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) 1.2fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
}

.news-card-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.news-card-copy {
    padding: clamp(28px, 5vw, 52px);
}

.news-card-copy h2 {
    margin-top: 16px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article-page {
    padding-bottom: 34px;
    background: linear-gradient(180deg, rgba(197, 107, 69, .08) 0, rgba(197, 107, 69, 0) 470px);
}

.article-hero {
    padding-top: 88px;
    text-align: center;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: .9rem;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.article-hero .article-meta {
    justify-content: center;
}

.article-hero h1 {
    margin: 22px auto 0;
    max-width: 800px;
    font-size: clamp(2.4rem, 5.3vw, 4.35rem);
}

.article-hero .lead {
    margin-top: 26px;
    margin-inline: auto;
    max-width: 760px;
}

.article-cover {
    width: min(900px, calc(100% - 40px));
    margin-top: 54px;
}

.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 500px;
    border: 1px solid rgba(232, 222, 210, .9);
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(31, 41, 64, .13);
}

.article-body {
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    padding: clamp(28px, 5vw, 54px);
    color: #333b4d;
    font-size: 1.08rem;
    box-shadow: 0 16px 40px rgba(31, 41, 64, .07);
}

.article-body > p,
.article-body > ul {
    margin: 18px 0 0;
}

.article-body > h2 {
    margin-top: 44px;
    color: var(--text);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.article-body ul {
    display: grid;
    gap: 12px;
    padding-left: 24px;
}

.article-tip,
.article-summary {
    margin-top: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: rgba(197, 107, 69, .1);
    padding: 24px 26px;
}

.article-tip strong {
    color: var(--primary-dark);
}

.article-tip p,
.article-summary p {
    margin-top: 6px;
}

.article-summary h2 {
    font-size: 1.65rem;
}

.article-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    margin-top: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    padding: 30px;
}

.article-cta h2 {
    font-size: 1.75rem;
}

.article-cta p {
    margin-top: 8px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .header-phone {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: var(--bg);
        padding: 10px 20px 18px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        border-radius: var(--radius);
        padding: 12px;
    }

    .main-nav a:hover,
    .main-nav .active {
        background: rgba(197, 107, 69, .1);
    }

    .hero-grid,
    .split,
    .areas,
    .contact-grid,
    .commitment,
    .cta,
    .news-feature,
    .news-card,
    .article-cta {
        grid-template-columns: 1fr;
    }

    .news-feature-media img,
    .news-card-media img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .news-card:nth-child(even) .news-card-media {
        order: initial;
    }

    .card-grid.two,
    .card-grid.three,
    .card-grid.four,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .stats-grid.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 34px 24px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .brand-logo {
        width: clamp(128px, 45vw, 172px);
        max-height: 58px;
    }

    .footer-about .brand-logo {
        width: 200px;
        max-height: 112px;
    }

    .hero-grid,
    .section {
        padding-block: 52px;
    }

    .article-hero {
        padding-top: 58px;
    }

    .article-cover {
        margin-top: 38px;
    }

    .article-body {
        margin-top: 20px;
        padding: 24px 20px;
    }

    .article-meta-detailed {
        justify-content: center;
    }

    .hero-media figcaption {
        display: none;
    }

    .section-head,
    .footer-bottom .container,
    .gallery-grid figcaption {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid,
    .areas ul,
    .check-list,
    .stats-grid,
    .stats-grid.three-cols {
        grid-template-columns: 1fr;
    }

    .photo-mosaic {
        gap: 10px;
    }

    .process-panel,
    .commitment {
        padding: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}
