:root {
    --cream: #F7F2E9;
    --white: #FDFAF5;
    --brown-dark: #382214;
    --brown-mid: #5E321A;
    --brown-light: #7A4822;
    --amber: #C8832A;
    --amber-light: #E8A84A;
    --section-bg: #EDE5D4;
    --border: #D6C4A8;
    --text-dark: #1A0D05;
    --text-mid: #4A2E14;
    --shadow: rgba(30, 15, 5, .18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    content-visibility: auto;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    opacity: .4;
}

/* SECTION HELPERS */
section {
    padding: 100px 5vw;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.eyebrow {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem
}

.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.08;
    color: var(--brown-dark);
    margin-bottom: 1.1rem;
    text-align: center
}

.section-title em {
    font-style: italic;
    color: var(--amber)
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.78;
    color: var(--text-mid);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}
/* FLOATING ACTIONS */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.3s;
}

.float-btn:hover { transform: scale(1.1); }

.float-phone { background: var(--amber); color: var(--brown-dark); }
.float-wa { background: #25D366; font-size: 1.8rem; }

/* SVC BUTTON */
.svc-btn-wa {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 1.5rem;
    background: var(--amber);
    color: var(--brown-dark);
    border: none;
    border-radius: 2px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 4px 15px rgba(200, 131, 42, 0.2);
}

.svc-btn-wa:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 131, 42, 0.3);
}

@media(max-width: 600px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .float-wa { font-size: 1.5rem; }
}
