/* ============================================================
   Soberbrotherdd — Main Stylesheet
   Brand palette: #3B2413 (espresso) | #6E5A46 (warm brown) | #A85F2C (rust)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --espresso: #3B2413;
    --warm-brown: #6E5A46;
    --rust: #A85F2C;
    --rust-dark: #8B4E22;
    --cream: #F5EFE6;
    --white: #FFFFFF;
    --text-dark: #2A1A0B;
    --text-muted: #7A6250;
    --border: #D9C9B6;
    --shadow-sm: 0 2px 12px rgba(59,36,19,.10);
    --shadow-md: 0 8px 32px rgba(59,36,19,.18);
    --shadow-lg: 0 20px 60px rgba(59,36,19,.25);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-body: 'Inter', system-ui, sans-serif;
    --font-script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Scroll Progress ---------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--rust), #D4884A);
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--espresso);
    color: rgba(245,239,230,.85);
    font-size: .78rem;
    letter-spacing: .03em;
    padding: .5rem 0;
    animation: fadeIn .6s ease both;
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.top-bar__location {
    display: flex;
    align-items: center;
    gap: .4rem;
}
.top-bar__contacts {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.top-bar__phone {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--cream);
    transition: color var(--transition);
}
.top-bar__phone:hover { color: #D4884A; }
.top-bar__badge {
    background: var(--rust);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: .15rem .55rem;
    border-radius: 50px;
}

/* ---------- Main Header ---------- */
.site-header {
    background: var(--espresso);
    border-bottom: 1px solid rgba(168,95,44,.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), padding var(--transition), background var(--transition);
    animation: slideDown .5s ease .1s both;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(20,8,2,.45);
    background: rgba(30,14,4,.97);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(168,95,44,.35);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

/* Logo */
.logo__script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: .01em;
    line-height: 1;
    transition: color var(--transition);
}
.logo:hover .logo__script { color: var(--white); }
.logo--light .logo__script { color: var(--cream); }

/* Logo with image + name */
.logo--with-name {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}
.logo-img-wrap {
    position: relative;
    flex-shrink: 0;
}
.logo-img-wrap::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rust), transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}
.logo--with-name:hover .logo-img-wrap::after { opacity: 1; }
.logo--with-name .logo-img {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(168,95,44,.4);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow var(--transition), border-color var(--transition);
    animation: logoSpin .7s cubic-bezier(.34,1.56,.64,1) both;
}
.logo--with-name:hover .logo-img {
    transform: rotate(8deg) scale(1.07);
    box-shadow: 0 4px 18px rgba(168,95,44,.45);
    border-color: rgba(168,95,44,.7);
}
.logo__name {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    overflow: hidden;
}
.logo__name-text {
    font-family: var(--font-script);
    font-size: 1.65rem;
    color: var(--cream);
    letter-spacing: .01em;
    white-space: nowrap;
    animation: logoNameSlide .6s cubic-bezier(.22,1,.36,1) .2s both;
    transition: color var(--transition);
}
.logo--with-name:hover .logo__name-text { color: var(--white); }
.logo__name-sub {
    font-family: var(--font-body);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #D4884A;
    white-space: nowrap;
    animation: logoNameSlide .6s cubic-bezier(.22,1,.36,1) .35s both;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.logo__name-sub-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rust);
    flex-shrink: 0;
}
@keyframes logoSpin {
    from { opacity: 0; transform: rotate(-20deg) scale(.8); }
    to   { opacity: 1; transform: rotate(0deg)  scale(1);   }
}
@keyframes logoNameSlide {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: translateX(0);     }
}

/* Nav */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.main-nav__link {
    color: rgba(245,239,230,.88);
    font-size: .9rem;
    font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}
.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--rust);
    border-radius: 2px;
    transition: width var(--transition);
}
.main-nav__link:hover, .main-nav__link.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.main-nav__link:hover::after, .main-nav__link.active::after { width: 60%; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn--rust {
    background: var(--rust);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(168,95,44,.35);
}
.btn--rust:hover {
    background: var(--rust-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168,95,44,.45);
}
.btn--dark {
    background: var(--espresso);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(59,36,19,.3);
}
.btn--dark:hover {
    background: #2e1a0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59,36,19,.4);
}
.btn--outline {
    background: transparent;
    color: var(--espresso);
    border: 2px solid var(--espresso);
}
.btn--outline:hover {
    background: var(--espresso);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(245,239,230,.5);
}
.btn--outline-light:hover {
    background: rgba(245,239,230,.1);
    border-color: var(--cream);
    transform: translateY(-2px);
}
.btn--lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--cta { padding: .6rem 1.4rem; font-size: .88rem; }

/* ---------- Hamburger ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
    border-radius: 6px;
    transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
}
.mobile-menu.open { display: block; }
.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,14,4,.7);
    animation: fadeIn .25s ease both;
    backdrop-filter: blur(2px);
}
.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--espresso);
    padding: 2rem 1.75rem;
    animation: slideInRight .3s ease both;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-menu__close {
    align-self: flex-end;
    color: var(--cream);
    font-size: 2rem;
    line-height: 1;
    padding: .25rem .5rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.mobile-menu__close:hover { color: var(--white); background: rgba(255,255,255,.1); }
.mobile-menu__list { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu__list a {
    display: block;
    padding: .8rem 1rem;
    color: rgba(245,239,230,.85);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}
.mobile-menu__list a:hover, .mobile-menu__list a.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
    border-color: var(--rust);
    padding-left: 1.25rem;
}
.mobile-menu__cta { margin-top: auto; }

/* ---------- Section Titles ---------- */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title--left { text-align: left; }
.section-title__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(168,95,44,.1);
    border: 1px solid rgba(168,95,44,.22);
    border-radius: 50px;
    padding: .35rem .95rem;
    margin-bottom: .9rem;
}
.section-title__eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rust);
    flex-shrink: 0;
}
.section-title__heading {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title__heading--light { color: var(--white); }
.section-title__underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--rust), #D4884A);
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.section-title--left .section-title__underline { margin: 0; }
.section-title__underline::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,.6);
    animation: shimmer 2.5s infinite;
}
.section-title__sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.75;
}
.section-title__sub--light { color: rgba(245,239,230,.75); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--espresso);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom right, rgba(59,36,19,.88) 0%, rgba(59,36,19,.65) 50%, rgba(168,95,44,.45) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g1" cx="50%25" cy="40%25" r="60%25"><stop offset="0%25" stop-color="%23A85F2C" stop-opacity=".25"/><stop offset="100%25" stop-color="%233B2413" stop-opacity="0"/></radialGradient></defs><rect width="1200" height="800" fill="%233B2413"/><rect width="1200" height="800" fill="url(%23g1)"/><g opacity=".12"><path d="M580 0 L620 800" stroke="%23A85F2C" stroke-width="2"/><path d="M560 0 L600 800" stroke="%23A85F2C" stroke-width="1"/><path d="M600 0 L640 800" stroke="%23A85F2C" stroke-width="1"/></g></svg>');
    background-size: cover;
    background-position: center;
    transform-origin: center;
    animation: heroPan 20s ease-in-out infinite alternate;
}
.hero__light-streaks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero__streak {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(168,95,44,.5), transparent);
    border-radius: 2px;
    animation: streakFall linear infinite;
    opacity: 0;
}
.hero__inner {
    position: relative;
    z-index: 2;
    container-type: inline-size;
    width: 100%;
}
.hero__content {
    max-width: 680px;
}
/* When in 2-col layout, content takes natural width */
.hero__layout .hero__content { max-width: none; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(212,136,74,.9);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp .7s ease .3s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after {
    content: '';
    display: block;
    height: 1px;
    width: 28px;
    background: rgba(212,136,74,.5);
}
.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.hero__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: wordReveal .6s ease forwards;
}
.hero__sub {
    font-size: 1.1rem;
    color: rgba(245,239,230,.8);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp .7s ease 1s forwards;
}
.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s ease 1.2s forwards;
}
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(245,239,230,.5);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s ease infinite;
}
.hero__scroll-hint svg { opacity: .5; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 380px;
}
.page-hero__bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    animation: heroPan 18s ease-in-out infinite alternate;
}
/* Fallback gradients when no bg-img is set */
.page-hero--about { background: linear-gradient(135deg, var(--espresso) 0%, #5A3A20 100%); }
.page-hero--services { background: linear-gradient(135deg, #2A1A0B 0%, var(--warm-brown) 100%); }
.page-hero--contact {
    background: linear-gradient(135deg, var(--espresso) 0%, #4A2A10 50%, var(--warm-brown) 100%);
}
.page-hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: repeating-linear-gradient(45deg, #A85F2C 0, #A85F2C 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
    z-index: 1;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.page-hero .section-title { margin-bottom: 0; }

/* ---------- About CTA with bg --------- */
.about-cta-banner {
    position: relative;
    overflow: hidden;
}
.about-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* ---------- About visual with real photo ---------- */
.about-visual--photo {
    position: relative;
}

/* ---------- Hero Stats ---------- */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245,239,230,.12);
    opacity: 0;
    animation: fadeUp .7s ease 1.4s forwards;
}
.hero__stat { text-align: center; }
.hero__stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero__stat-label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,239,230,.55);
    margin-top: .35rem;
}
.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(245,239,230,.15);
    flex-shrink: 0;
}

/* ---------- How It Works ---------- */
.how-it-works { background: var(--cream); }
.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}
.how-step {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}
.how-step__number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(168,95,44,.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    font-family: var(--font-body);
}
.how-step__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--rust), var(--rust-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(168,95,44,.3);
    position: relative;
    z-index: 1;
    transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover .how-step__icon {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(168,95,44,.4);
}
.how-step__icon svg { color: var(--white); }
.how-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: .6rem;
}
.how-step p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.how-step__connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rust), rgba(168,95,44,.3));
    align-self: center;
    margin-top: -2rem;
    position: relative;
}
.how-step__connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid rgba(168,95,44,.5);
}

/* ---------- Leaflet Map Overrides ---------- */
.leaflet-popup-content-wrapper {
    background: #3B2413 !important;
    color: #F5EFE6 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.4) !important;
}
.leaflet-popup-tip { background: #3B2413 !important; }
.leaflet-popup-content a { color: #D4884A !important; }
.leaflet-popup-content strong { color: #F5EFE6; }
.custom-pin {
    background: #A85F2C;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid #F5EFE6;
    box-shadow: 0 0 0 4px rgba(168,95,44,.35);
}
.leaflet-container { font-family: var(--font-body) !important; }

/* ---------- Quick Inquiry Split Section ---------- */
.quick-inquiry-section {
    background: var(--white);
}
.quick-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Phone Mockup */
.phone-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-frame {
    width: 220px;
    height: 440px;
    background: #1A1A2E;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 2px #2A2A4A,
        0 24px 80px rgba(0,0,0,.45),
        0 0 0 8px rgba(168,95,44,.1);
    position: relative;
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #2A2A4A;
    border-radius: 10px;
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0D1117 0%, #1A0B05 100%);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 8px;
    font-size: .65rem;
    font-weight: 600;
    color: rgba(245,239,230,.7);
}
.phone-call-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 1.5rem;
    gap: .5rem;
}
.phone-call-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}
.phone-call-ripple__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(168,95,44,.5);
    animation: phoneRipple 2.4s ease-out infinite;
}
.phone-call-ripple__ring--2 { animation-delay: .8s; }
.phone-call-ripple__ring--3 { animation-delay: 1.6s; }
.phone-call-avatar {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rust), var(--rust-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(168,95,44,.5);
}
.phone-call-avatar img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}
.phone-call-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245,239,230,.55);
}
.phone-call-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    text-align: center;
}
.phone-call-sub {
    font-size: .68rem;
    color: rgba(245,239,230,.5);
    text-align: center;
}
.phone-call-actions {
    display: flex;
    gap: 2rem;
    margin-top: .75rem;
}
.phone-call-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.phone-call-btn--decline {
    background: #c0392b;
    color: var(--white);
}
.phone-call-btn--accept {
    background: #27ae60;
    color: var(--white);
    animation: phonePulse 1.8s ease-in-out infinite;
}
.phone-call-btn:hover { transform: scale(1.12); }
.phone-side__text {
    text-align: center;
}
.phone-side__text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: .6rem;
}
.phone-side__text p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
@keyframes phoneRipple {
    0%   { transform: scale(1);   opacity: .6; }
    100% { transform: scale(2.8); opacity: 0;  }
}
@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39,174,96,.5); }
    50%       { box-shadow: 0 0 0 10px rgba(39,174,96,0); }
}

/* ---------- FAQ Accordion ---------- */
.faq-section { background: var(--cream); }
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(168,95,44,.3); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: .97rem;
    font-weight: 600;
    color: var(--espresso);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
}
.faq-question:hover { color: var(--rust); background: rgba(168,95,44,.03); }
.faq-item.open .faq-question { color: var(--rust); }
.faq-icon {
    flex-shrink: 0;
    color: var(--rust);
    transition: transform var(--transition);
    display: flex;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ---------- Services Modern Alternating Layout ---------- */
.services-modern { padding-top: 2rem; }
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 360px;
    transition: box-shadow var(--transition);
}
.svc-row:hover { box-shadow: var(--shadow-lg); }
.svc-row--flip { direction: rtl; }
.svc-row--flip > * { direction: ltr; }
.svc-row__img {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}
.svc-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .6s ease;
}
.svc-row:hover .svc-row__img img { transform: scale(1.05); }
.svc-row__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,12,3,.55) 0%, rgba(59,36,19,.3) 100%);
    z-index: 1;
}
.svc-row__badge-float {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: rgba(59,36,19,.85);
    color: #D4884A;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(168,95,44,.35);
}
.svc-row--flip .svc-row__badge-float { left: auto; right: 1.25rem; }
.svc-row__body {
    background: var(--white);
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
}
.svc-row__icon {
    width: 52px;
    height: 52px;
    background: rgba(168,95,44,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
    margin-bottom: .25rem;
    transition: background var(--transition), transform var(--transition);
}
.svc-row:hover .svc-row__icon {
    background: rgba(168,95,44,.18);
    transform: rotate(-4deg) scale(1.08);
}
.svc-row__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--espresso);
    line-height: 1.2;
}
.svc-row__desc {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.svc-row__perks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: .5rem 0;
}
.svc-row__perks li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.svc-row__perks li svg { color: var(--rust); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section--alt { background: var(--cream); }
.section--dark {
    background: var(--espresso);
    color: var(--white);
}
.section--rust {
    background: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%);
    color: var(--white);
}

/* ---------- Why Choose Section ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--rust), var(--warm-brown));
    transition: height var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { height: 100%; }
.why-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(168,95,44,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}
.why-card:hover .why-card__icon { background: rgba(168,95,44,.18); }
.why-card__icon svg { color: var(--rust); }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: .6rem;
}
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Service Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card__visual {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.service-card__visual svg {
    width: 72px;
    height: 72px;
    color: rgba(245,239,230,.7);
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}
.service-card:hover .service-card__visual svg { transform: scale(1.1) rotate(-3deg); }
.service-card__visual--dinner { background: linear-gradient(135deg, #5A3A20, var(--warm-brown)); }
.service-card__visual--airport { background: linear-gradient(135deg, #2A1A0B, #4A3020); }
.service-card__visual--wedding { background: linear-gradient(135deg, var(--warm-brown), #8A6A50); }
.service-card__visual--dropoff { background: linear-gradient(135deg, #3B2413, #6E5A46); }
.service-card__visual--golf { background: linear-gradient(135deg, #4A3020, var(--rust-dark)); }
.service-card__visual--nightout { background: linear-gradient(135deg, #1A0A00, #3B2413); }
.service-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--espresso);
}
.service-card__desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}
.service-card__badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(168,95,44,.1);
    padding: .25rem .7rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-top: .5rem;
}

/* ---------- Featured Service Cards (Home) ---------- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.featured-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rust), var(--rust-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(168,95,44,.3);
    transition: transform var(--transition);
}
.featured-card:hover .featured-card__icon { transform: scale(1.1); }
.featured-card__icon svg { color: var(--white); }
.featured-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: .6rem;
}
.featured-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Where We Serve ---------- */
.serve-section {
    background: linear-gradient(135deg, var(--espresso) 0%, #5A3A20 60%, var(--warm-brown) 100%);
    position: relative;
    overflow: hidden;
}
.serve-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(168,95,44,.2) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(110,90,70,.15) 0%, transparent 50%);
    pointer-events: none;
}
.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.serve-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.serve-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.1);
    transition: background var(--transition), border-color var(--transition);
}
.serve-list__item:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(168,95,44,.4);
}
.serve-list__dot {
    width: 10px;
    height: 10px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(168,95,44,.5);
}
.serve-list__text {
    font-weight: 600;
    color: var(--cream);
    font-size: .95rem;
}
.serve-map {
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.serve-map svg { width: 100%; height: 100%; }

/* ---------- Pricing Section ---------- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}
.pricing-card__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.pricing-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: .5rem;
}
.pricing-card__sub { font-size: .9rem; color: var(--text-muted); }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.pricing-table td {
    padding: .9rem .5rem;
    font-size: .95rem;
}
.pricing-table td:first-child { color: var(--text-muted); }
.pricing-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--espresso);
}
.pricing-note {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    line-height: 1.65;
}

/* ---------- About Content ---------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: .97rem;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}
.about-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(168,95,44,.08);
    border: 1px solid rgba(168,95,44,.2);
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--rust);
}
.about-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--espresso), var(--warm-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-visual__icon {
    width: 100px;
    height: 100px;
    color: rgba(245,239,230,.35);
}

/* ---------- Gallery ---------- */
.gallery-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--espresso);
}
.gallery-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.gallery-slide__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--warm-brown) 100%);
}
.gallery-slide:nth-child(2) .gallery-slide__bg { background: linear-gradient(135deg, #2A1A0B, #5A3A20); }
.gallery-slide:nth-child(3) .gallery-slide__bg { background: linear-gradient(135deg, #4A2A10, var(--rust-dark)); }
.gallery-slide:nth-child(4) .gallery-slide__bg { background: linear-gradient(135deg, var(--warm-brown), #8A6A50); }
.gallery-slide:nth-child(5) .gallery-slide__bg { background: linear-gradient(135deg, #1A0A00, var(--espresso)); }
.gallery-slide__icon {
    position: relative;
    z-index: 1;
    color: rgba(245,239,230,.3);
}
.gallery-slide__label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59,36,19,.7);
    color: var(--cream);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background var(--transition);
    z-index: 3;
}
.gallery-nav:hover { background: rgba(168,95,44,.8); }
.gallery-nav--prev { left: 1rem; }
.gallery-nav--next { right: 1rem; }
.gallery-dots {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: .5rem;
    z-index: 3;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245,239,230,.4);
    transition: background var(--transition), transform var(--transition);
}
.gallery-dot.active {
    background: var(--rust);
    transform: scale(1.3);
}

/* ---------- Contact Layout ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.contact-info__list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-info__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(168,95,44,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
}
.contact-info__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: .25rem;
}
.contact-info__value { color: var(--text-dark); font-size: .95rem; line-height: 1.5; }
.contact-info__value a { color: var(--rust); transition: color var(--transition); }
.contact-info__value a:hover { color: var(--rust-dark); }
.map-placeholder {
    margin-top: 2rem;
    height: 220px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--espresso) 0%, var(--warm-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,239,230,.5);
    font-size: .9rem;
    text-align: center;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(60%) saturate(80%) hue-rotate(-10deg);
}

/* ---------- Forms ---------- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: .45rem;
    letter-spacing: .02em;
}
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: .92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}
.form-control:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(168,95,44,.12);
}
.form-control::placeholder { color: #B0A090; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success, .form-error {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}
.form-success { background: rgba(45,120,45,.1); border: 1px solid rgba(45,120,45,.3); color: #1a5e1a; }
.form-error { background: rgba(180,40,40,.1); border: 1px solid rgba(180,40,40,.3); color: #8B1A1A; }
.form-success.show, .form-error.show { display: block; }

/* Mini form (home) */
.mini-form-section {
    background: var(--cream);
}
.mini-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ---------- Site Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, #2A1A0E 0%, #1C1008 100%);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rust), #D4884A, var(--rust), transparent);
}
.site-footer::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,95,44,.07) 0%, transparent 70%);
    pointer-events: none;
}
.site-footer__main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding: 4.5rem 0 3.5rem;
    position: relative;
    z-index: 1;
}
.site-footer__col {}
.site-footer__brand {}
.site-footer__tagline {
    font-size: .88rem;
    color: rgba(245,239,230,.55);
    line-height: 1.75;
    margin-top: .9rem;
    max-width: 270px;
}
.site-footer__social {
    display: flex;
    gap: .65rem;
    margin-top: 1.5rem;
}
.site-footer__social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(245,239,230,.07);
    border: 1px solid rgba(245,239,230,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,239,230,.55);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.site-footer__social a:hover {
    background: rgba(168,95,44,.25);
    border-color: rgba(168,95,44,.4);
    color: #D4884A;
}
.site-footer__heading {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #D4884A;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.site-footer__heading::before {
    content: '';
    width: 18px; height: 2px;
    background: linear-gradient(90deg, var(--rust), #D4884A);
    border-radius: 2px;
    flex-shrink: 0;
}
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.site-footer__links a {
    font-size: .875rem;
    color: rgba(245,239,230,.6);
    transition: color var(--transition), padding-left var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.site-footer__links a::before {
    content: '';
    width: 5px; height: 1px;
    background: var(--rust);
    display: inline-block;
    flex-shrink: 0;
    transition: width var(--transition);
}
.site-footer__links a:hover { color: var(--cream); padding-left: .4rem; }
.site-footer__links a:hover::before { width: 9px; }
.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .875rem;
    color: rgba(245,239,230,.6);
    line-height: 1.5;
}
.site-footer__contact-list svg {
    color: var(--rust);
    flex-shrink: 0;
    margin-top: 2px;
}
.site-footer__contact-list a { color: rgba(245,239,230,.8); transition: color var(--transition); }
.site-footer__contact-list a:hover { color: #D4884A; }
.site-footer__cta-col p {
    font-size: .875rem;
    color: rgba(245,239,230,.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
/* Footer divider */
.site-footer__divider {
    border: none;
    border-top: 1px solid rgba(245,239,230,.07);
    margin: 0;
    position: relative;
    z-index: 1;
}
.site-footer__bottom {
    padding: 1.35rem 0;
    position: relative;
    z-index: 1;
}
.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}
.site-footer__copyright {
    font-size: .78rem;
    color: rgba(245,239,230,.35);
    letter-spacing: .02em;
}
.site-footer__credit {
    font-size: .78rem;
    color: rgba(245,239,230,.35);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.site-footer__credit a {
    color: #D4884A;
    font-weight: 600;
    transition: color var(--transition);
}
.site-footer__credit a:hover { color: var(--cream); }

/* Footer logo image */
.logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.logo-img--sm { height: 44px; }

/* ---------- Hero 2-column with form ---------- */
.hero__layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    width: 100%;
}
.hero__form-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(245,239,230,.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    align-self: center;
}
.hero__form-panel .form-control {
    background: rgba(255,255,255,.1);
    border-color: rgba(245,239,230,.2);
    color: var(--cream);
    font-size: .88rem;
    padding: .65rem .9rem;
}
.hero__form-panel .form-control::placeholder { color: rgba(245,239,230,.45); }
.hero__form-panel .form-control:focus {
    border-color: var(--rust);
    background: rgba(255,255,255,.15);
    box-shadow: 0 0 0 3px rgba(168,95,44,.25);
}
.hero__form-panel .form-label {
    color: rgba(245,239,230,.8);
    font-size: .78rem;
}
.hero__form-panel select option { background: var(--espresso); color: var(--cream); }
.hero__form-panel .form-group { margin-bottom: 1rem; }
.hero__form-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.hero__form-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 1em;
    background: var(--rust);
    border-radius: 3px;
}
.hero__form-panel .form-success { background: rgba(45,120,45,.2); border-color: rgba(45,180,45,.3); color: #90ffaa; }
.hero__form-panel .form-error { background: rgba(180,40,40,.2); border-color: rgba(220,60,60,.3); color: #ffaaaa; }

/* Service card real images */
.service-card__visual--img {
    background: none;
    position: relative;
    overflow: hidden;
}
.service-card__visual--img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.service-card:hover .service-card__visual--img img { transform: scale(1.06); }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1C1008; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #A85F2C 0%, #D4884A 50%, #A85F2C 100%);
    border-radius: 8px;
    border: 2px solid #1C1008;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #D4884A 0%, #E8A060 50%, #D4884A 100%); }
* { scrollbar-width: thin; scrollbar-color: #A85F2C #1C1008; }

/* ---------- CTA Banner ---------- */
.cta-banner {
    text-align: center;
    padding: 5rem 0;
}
.cta-banner--img {
    position: relative;
    overflow: hidden;
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(.35) saturate(.7);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.cta-banner--img:hover .cta-banner__bg { transform: scale(1.08); }
.cta-banner--img > .container { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.05rem;
    color: rgba(245,239,230,.8);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-banner__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Admin Panel ---------- */
.admin-layout {
    min-height: 100vh;
    background: #F5F5F0;
    font-family: var(--font-body);
}
.admin-top-bar {
    background: var(--espresso);
    padding: .85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-top-bar .logo__script { font-size: 1.5rem; }
.admin-top-bar__actions { display: flex; gap: 1rem; align-items: center; }
.admin-top-bar__user { color: var(--cream); font-size: .85rem; }
.admin-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.admin-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.admin-title { font-size: 1.6rem; font-weight: 800; color: var(--espresso); }
.admin-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex: 1;
    min-width: 140px;
}
.stat-card__value { font-size: 2rem; font-weight: 800; color: var(--espresso); }
.stat-card__label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.admin-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.admin-table th {
    text-align: left;
    padding: .85rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: #F9F7F4;
    border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: .85rem 1rem;
    border-bottom: 1px solid #F0EBE4;
    color: var(--text-dark);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAF7F4; }
.status-badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.status-badge--new { background: rgba(168,95,44,.12); color: var(--rust); }
.status-badge--contacted { background: rgba(45,100,180,.1); color: #1a4a9e; }
.status-badge--closed { background: rgba(45,120,45,.1); color: #1a5e1a; }
.admin-action-btn {
    padding: .3rem .7rem;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    transition: all var(--transition);
    margin-right: .25rem;
}
.admin-action-btn--view { background: rgba(168,95,44,.1); color: var(--rust); }
.admin-action-btn--view:hover { background: rgba(168,95,44,.2); }
.admin-action-btn--delete { background: rgba(180,40,40,.1); color: #8B1A1A; }
.admin-action-btn--delete:hover { background: rgba(180,40,40,.2); }
.admin-form {
    max-width: 480px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin: 4rem auto;
    border: 1px solid var(--border);
}
.admin-form .logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.admin-form h1 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 1.75rem;
}
.detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.detail-field label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: .35rem;
}
.detail-field p { font-size: .95rem; color: var(--text-dark); }

/* ---------- Modern Pricing Grid ---------- */
.pricing-modern { background: var(--espresso); }
.pricing-modern__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}
.prc-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(245,239,230,.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.prc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rust), #D4884A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.prc-card:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(168,95,44,.35);
    transform: translateY(-4px);
}
.prc-card:hover::before { transform: scaleX(1); }
.prc-card--featured {
    background: linear-gradient(135deg, rgba(168,95,44,.22), rgba(139,78,34,.15));
    border-color: rgba(168,95,44,.4);
}
.prc-card--featured::before { transform: scaleX(1); }
.prc-card__icon {
    width: 48px; height: 48px;
    background: rgba(168,95,44,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #D4884A;
    margin-bottom: .25rem;
    transition: background var(--transition);
}
.prc-card:hover .prc-card__icon { background: rgba(168,95,44,.25); }
.prc-card--featured .prc-card__icon { background: rgba(168,95,44,.25); }
.prc-card__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245,239,230,.55);
}
.prc-card__value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: .3rem;
}
.prc-card__value span {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(245,239,230,.5);
}
.prc-card__note {
    font-size: .8rem;
    color: rgba(245,239,230,.5);
    line-height: 1.5;
}
.pricing-modern__note {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    max-width: 960px;
    margin: 1.75rem auto 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(245,239,230,.1);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.pricing-modern__note svg { color: #D4884A; flex-shrink: 0; margin-top: 1px; }
.pricing-modern__note p { font-size: .88rem; color: rgba(245,239,230,.65); line-height: 1.65; }
.pricing-modern__note a { color: #D4884A; font-weight: 600; }
.pricing-modern__note a:hover { color: var(--cream); }
@media (max-width: 768px) {
    .pricing-modern__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .pricing-modern__grid { grid-template-columns: 1fr; }
}

/* ---------- Keyframes ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes wordReveal { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroPan { from { transform: scale(1.08) translate(-1%, -1%); } to { transform: scale(1.08) translate(1%, 1%); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes shimmer { from { left: -100%; } to { left: 200%; } }
@keyframes streakFall { 0% { opacity: 0; top: -60px; } 10% { opacity: 1; } 90% { opacity: .5; } 100% { opacity: 0; top: 100%; } }
@keyframes underlineDraw { from { width: 0; } to { width: 60px; } }

/* AOS overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .site-footer__main { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem 2.5rem; }
    .hero__layout { grid-template-columns: 1fr 360px; gap: 2rem; }
}
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .serve-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero__layout { grid-template-columns: 1fr; }
    .hero__form-panel { max-width: 540px; }
    .hero { min-height: auto; padding: 5rem 0 4rem; }
    .svc-row { grid-template-columns: 1fr; }
    .svc-row--flip { direction: ltr; }
    .svc-row__img { min-height: 260px; }
    .how-steps { flex-direction: column; gap: 1rem; }
    .how-step__connector { width: 2px; height: 40px; align-self: center; }
    .how-step__connector::after {
        right: auto; top: auto; bottom: 0; left: 50%;
        transform: translateX(-50%);
        border-top: 7px solid rgba(168,95,44,.5);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: none;
    }
    .quick-inquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
    .phone-side { flex-direction: row; align-items: center; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .btn--cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 4rem 0 3rem; }
    .hero__ctas { flex-direction: column; align-items: flex-start; }
    .hero__stats { gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .top-bar__location { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .site-footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .phone-side { flex-direction: column; }
    .svc-row__body { padding: 2rem 1.5rem; }
}
@media (max-width: 520px) {
    .site-footer__main { grid-template-columns: 1fr; gap: 1.75rem; }
    .how-steps { gap: .5rem; }
    .how-step { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .mini-form-card { padding: 1.5rem; }
    .form-card { padding: 1.5rem; }
    .pricing-card { padding: 1.5rem; }
    .phone-frame { width: 190px; height: 380px; }
}
