/* ── Base & Utilities ── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

::selection {
    background-color: #f9c4b2;
    color: #6e2b1f;
}

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e0603e;
    background: linear-gradient(135deg, #fdf0eb 0%, #fce4d9 100%);
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-label-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f4dbac;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e0603e 0%, #c94e30 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 96, 62, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 96, 62, 0.4);
    background: linear-gradient(135deg, #c94e30 0%, #a83e26 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #57534e;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #e7e5e4;
    cursor: pointer;
    font-family: inherit;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #f9c4b2;
    color: #c94e30;
}

/* ── Inputs ── */
.input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e7e5e4;
    border-radius: 0.875rem;
    background: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    color: #44403c;
    transition: all 0.3s ease;
    outline: none;
}

.input-field::placeholder {
    color: #a8a29e;
}

.input-field:focus {
    border-color: #e0603e;
    box-shadow: 0 0 0 3px rgba(224, 96, 62, 0.1);
}

.input-field:hover {
    border-color: #f4a084;
}

/* ── Service Cards ── */
.service-card {
    border: 1.5px solid transparent;
}

.service-card:hover {
    border-color: #fce4d9;
    box-shadow: 0 12px 40px rgba(224, 96, 62, 0.08);
    background: #fff;
}

/* ── Gallery ── */
.gallery-item {
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ── Testimonial Cards ── */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

/* ── Animations ── */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatDelayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatDelayed 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* ── Scroll Dot ── */
.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Header Scroll State ── */
.header-scrolled {
    background: rgba(253, 248, 240, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* ── Mobile Menu ── */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ── Nav Links ── */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e0603e;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ── Hero Badge ── */
.hero-badge {
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Link ── */
.mobile-link {
    transition: all 0.3s ease;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .font-serif {
        line-height: 1.15;
    }
}

/* ── Focus Visible ── */
*:focus-visible {
    outline: 2px solid #e0603e;
    outline-offset: 2px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
