:root {
    --primary: #241713;
    --secondary: #8A5A34;
    --accent: #D88716;
    --cream: #FFF8EF;
    --sand: #F2E3CF;
    --latte: #E8D2B5;
    --ink: #19120F;
    --muted: #735F52;
    --white: #FFFFFF;
    --line: rgba(36, 23, 19, 0.14);
    --shadow: 0 24px 70px rgba(36, 23, 19, 0.16);
    --radius: 26px;
    --radius-lg: 38px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(216, 135, 22, 0.15), transparent 34rem),
        linear-gradient(180deg, #fffaf2 0%, #f7ead8 48%, #fff8ef 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 13px 0;
    background: rgba(255, 248, 239, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(36, 23, 19, 0.1);
}

.nav-shell {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--cream);
    font-weight: 900;
    font-size: 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(36, 23, 19, 0.22);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px dashed rgba(255, 248, 239, 0.5);
    border-radius: 11px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.98rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(25, 18, 15, 0.78);
    font-size: 0.94rem;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary);
    background: rgba(138, 90, 52, 0.1);
}

.main-nav .nav-cta {
    color: var(--cream);
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(36, 23, 19, 0.18);
}

.main-nav .nav-cta:hover {
    color: var(--cream);
    background: var(--secondary);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 15px;
    background: var(--primary);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cream);
    margin: 5px auto;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        linear-gradient(90deg, rgba(36, 23, 19, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(36, 23, 19, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #B15F00;
    font-size: 0.79rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #111827;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

h2 {
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

h3 {
    color: #111827;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-text {
    max-width: 650px;
    color: rgba(25, 18, 15, 0.76);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    color: var(--cream);
    background: linear-gradient(135deg, #111827, var(--secondary));
    box-shadow: 0 18px 40px rgba(36, 23, 19, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(36, 23, 19, 0.3);
}

.btn-light {
    color: #111827;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(36, 23, 19, 0.14);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 650px;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
}

.hero-stats strong {
    display: block;
    color: #111827;
    font-size: 1.65rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 7px;
    line-height: 1.35;
}

.hero-media {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--secondary);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(36, 23, 19, 0.48)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18rem);
}

.hero-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 3;
    padding: 20px;
    border-radius: 24px;
    color: var(--cream);
    background: rgba(22, 19, 18, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge strong,
.hero-badge span {
    display: block;
}

.hero-badge strong {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.hero-badge span {
    color: rgba(255, 248, 239, 0.8);
    font-size: 0.9rem;
}

.material-card {
    position: absolute;
    right: -18px;
    top: 44px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(290px, 82%);
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 248, 239, 0.94);
    border: 1px solid rgba(36, 23, 19, 0.12);
    box-shadow: 0 18px 50px rgba(36, 23, 19, 0.18);
}

.material-dot {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #fff, transparent 24%),
        linear-gradient(135deg, var(--accent), var(--secondary));
}

.material-card strong,
.material-card small {
    display: block;
}

.material-card small {
    color: var(--muted);
    line-height: 1.35;
    margin-top: 3px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.showcase-head p:not(.eyebrow),
.faq-intro p,
.feature-copy p,
.contact-copy p {
    color: rgba(25, 18, 15, 0.72);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card,
.contact-form,
.quote-checklist {
    border: 1px solid rgba(36, 23, 19, 0.11);
    background: rgba(255, 255, 255, 0.68);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(36, 23, 19, 0.08);
}

.service-card {
    padding: 24px;
    min-height: 100%;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(36, 23, 19, 0.14);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--cream);
    border-radius: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), #111827);
    box-shadow: 0 14px 28px rgba(36, 23, 19, 0.17);
}

.service-card p,
.process-card p,
.testimonial-card p {
    color: rgba(25, 18, 15, 0.7);
}

.service-card ul,
.quote-checklist ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.quote-checklist li {
    position: relative;
    padding-left: 20px;
    margin: 9px 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.service-card li::before,
.quote-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.feature {
    color: var(--cream);
    background:
        radial-gradient(circle at 22% 24%, rgba(216, 135, 22, 0.18), transparent 22rem),
        linear-gradient(135deg, #211613, #442C22);
}

.feature-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 440px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.feature h2,
.feature h3 {
    color: var(--cream);
}

.feature .feature-copy p,
.feature .trust-list span {
    color: rgba(255, 248, 239, 0.78);
}

.feature .eyebrow {
    color: #FFB254;
}

.trust-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.trust-list div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-list strong {
    color: #FFB254;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
}

.process-card::after {
    content: "";
    position: absolute;
    top: -42px;
    right: -32px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(216, 135, 22, 0.1);
}

.process-card span {
    display: block;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 22px;
}

.showcase {
    background: rgba(255, 255, 255, 0.26);
}

.showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 32px;
}

.showcase-head > div {
    max-width: 760px;
}

.text-link {
    display: inline-flex;
    color: #111827;
    font-weight: 900;
    border-bottom: 2px solid var(--accent);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 18px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--secondary);
    box-shadow: 0 18px 48px rgba(36, 23, 19, 0.11);
}

.showcase-item.tall {
    grid-row: span 2;
}

.showcase-item.wide {
    grid-column: span 2;
}

.showcase-item img,
.showcase-item .texture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.showcase-item:hover img,
.showcase-item:hover .texture {
    transform: scale(1.04);
}

.showcase-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(25, 18, 15, 0.74) 100%);
}

.showcase-item > div:last-child {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 18px;
    border-radius: 18px;
    background: rgba(25, 18, 15, 0.74);
    backdrop-filter: blur(12px);
}

.showcase-item span {
    display: block;
    color: rgba(255, 248, 239, 0.78);
    font-size: 0.82rem;
    margin-bottom: 5px;
}

.showcase-item h3 {
    color: var(--cream);
    margin: 0;
}

.texture-velvet {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 8rem),
        linear-gradient(135deg, #8A5A34, #3A2018);
}

.texture-canvas {
    background:
        linear-gradient(90deg, rgba(36, 23, 19, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(36, 23, 19, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #E7C998, #A56D37);
    background-size: 10px 10px, 10px 10px, auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
}

.stars {
    color: #C76C00;
    letter-spacing: 0.14em;
    font-size: 0.92rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: #111827;
    margin-top: 18px;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.faq {
    background:
        radial-gradient(circle at 85% 20%, rgba(216, 135, 22, 0.14), transparent 26rem),
        rgba(244, 230, 210, 0.62);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.faq-item button {
    width: 100%;
    border: 0;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    text-align: left;
    color: #111827;
    background: transparent;
    font-weight: 900;
}

.faq-item button strong {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--cream);
    background: #111827;
    transition: 0.25s ease;
}

.faq-item.active button strong {
    background: var(--accent);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: rgba(25, 18, 15, 0.72);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 0;
}

.contact {
    background: linear-gradient(135deg, #fffaf2, #f0dcc0);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: start;
    padding: 44px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(216, 135, 22, 0.18), transparent 24rem),
        linear-gradient(135deg, #111827, #3A241B);
    box-shadow: var(--shadow);
}

.contact h2,
.contact h3 {
    color: var(--cream);
}

.contact-copy p {
    color: rgba(255, 248, 239, 0.78);
}

.contact .eyebrow {
    color: #FFB254;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.contact-details a,
.contact-details span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
    font-size: 0.92rem;
}

.quote-checklist {
    padding: 24px;
    background: rgba(255, 248, 239, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

.quote-checklist li {
    color: rgba(255, 248, 239, 0.78);
}

.contact-form {
    padding: 28px;
    background: rgba(255, 248, 239, 0.96);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: block;
    color: #111827;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(36, 23, 19, 0.16);
    border-radius: 16px;
    background: var(--white);
    color: #111827;
    padding: 14px 15px;
    outline: none;
    transition: 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(216, 135, 22, 0.14);
}

.form-success {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    color: #0D4427;
    background: #DDF7E9;
    border: 1px solid #A8E8C2;
    border-radius: 14px;
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #FFFFFF;
    background: #168A43;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(22, 138, 67, 0.28);
    transition: 0.25s ease;
}

.whatsapp-float span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #B8F4CF;
    box-shadow: 0 0 0 5px rgba(184, 244, 207, 0.18);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    body {
        padding-top: 74px;
    }

    .section-pad {
        padding: 68px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 248, 239, 0.98);
        border: 1px solid rgba(36, 23, 19, 0.12);
        box-shadow: 0 24px 70px rgba(36, 23, 19, 0.18);
    }

    .nav-open .main-nav {
        display: grid;
    }

    .main-nav a {
        padding: 13px 14px;
    }

    .hero-grid,
    .feature-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-media {
        max-width: 620px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-head {
        align-items: start;
        flex-direction: column;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-item.tall,
    .showcase-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        padding: 28px;
    }
}

@media (max-width: 680px) {
    .brand-text small {
        display: none;
    }

    .brand strong {
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .showcase-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap,
    .hero-image-wrap img,
    .feature-image,
    .feature-image img {
        min-height: 360px;
        height: 360px;
    }

    .material-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 14px;
    }

    .trust-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .contact-grid {
        padding: 22px;
        border-radius: 28px;
    }

    .contact-form {
        padding: 20px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
}