:root {
    --brand: #ec7021;
    --brand-dark: #9b4b18;
    --cream: #fff7f0;
}

body {
    background-color: #fff;
}

.menu-open {
    overflow: hidden;
}

.site-header {
    background: #fff;
    box-shadow: 0 10px 25px rgba(155, 75, 24, 0.08);
}

.site-header__top {
    border-bottom: 1px solid rgba(236, 112, 33, 0.15);
    background: #fff;
}

.site-header__nav {
    background: #9b4b18;
    padding: 0.65rem 0;
}

.logo-sash {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem 0 0 0.5rem;
    overflow: hidden;
}

.logo-sash::after {
    content: '';
    position: absolute;
    top: 0;
    right: -36px;
    width: 36px;
    height: 100%;
    background: linear-gradient(135deg, #ec7021 0 50%, transparent 50%);
}

.header-contact {
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(236, 112, 33, 0.4);
    color: #ec7021;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    background: #fff7f0;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
}

.drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(85vw, 320px);
    background: #fff;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-backdrop {
    background: radial-gradient(circle at top left, rgba(236, 112, 33, 0.18), transparent 55%),
        radial-gradient(circle at top right, rgba(155, 75, 24, 0.16), transparent 50%),
        linear-gradient(120deg, #fff7f0 0%, #ffffff 60%);
}

.warm-cta {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 240 / var(--tw-bg-opacity, 1));
}

.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-menu.is-open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.page-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(155, 75, 24, 0.85), rgba(236, 112, 33, 0.65));
}

.accent-line-light {
    position: relative;
}

.accent-line-light::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 64px;
    height: 4px;
    background: #fff;
    border-radius: 999px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero-slider__frames {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider__frames::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(155, 75, 24, 0.82), rgba(236, 112, 33, 0.55));
    z-index: 1;
}

.hero-slider__content {
    position: relative;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
    background: #fff;
    transform: scale(1.1);
}

.hero-text {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-text.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .logo-sash__text {
        display: none;
    }
    .site-header__nav {
        padding: 0.55rem 0;
    }
    .page-hero {
        min-height: 240px;
    }
    .accent-line-light::after {
        width: 48px;
    }
}

@media (min-width: 640px) {
    .logo-sash__text {
        display: inline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

.section-tag {
    letter-spacing: 0.25em;
}

.glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236, 112, 33, 0.12);
}

.accent-line {
    position: relative;
}

.accent-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 64px;
    height: 4px;
    background: var(--brand);
    border-radius: 999px;
}

.card-gradient {
    background: linear-gradient(145deg, rgba(236, 112, 33, 0.08), rgba(155, 75, 24, 0.08));
}

.link-chip {
    border: 1px solid rgba(236, 112, 33, 0.4);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--brand-dark);
}

.link-chip:hover {
    background: var(--brand);
    color: #fff;
}

.form-input {
    border: 1px solid rgba(155, 75, 24, 0.25);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
}

.form-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(236, 112, 33, 0.2);
}
