/* ===== 1. DESIGN TOKENS ===== */
:root {
    /* Deep Forest Green */
    --forest-950: #071510;
    --forest-900: #0A1F17;
    --forest-800: #0F2E22;
    --forest-700: #163D2F;
    --forest-600: #1E5240;
    --forest-500: #276B54;
    --forest-400: #34896D;
    --forest-300: #52A88A;
    --forest-200: #8DCBB2;
    --forest-50: #E6F4EE;

    /* Gold */
    --gold-700: #957014;
    --gold-600: #B8890B;
    --gold-500: #D4A843;
    --gold-400: #E4C36A;
    --gold-300: #F0D88E;
    --gold-200: #F7E8B8;
    --gold-100: #FBF3DA;
    --gold-50: #FDFAF0;
    --gold-glow: rgba(212, 168, 67, 0.25);

    /* Brand accents */
    --sz-blue: #4DA8DA;
    --sz-blue-bright: #6BBDE8;
    --sz-glow: rgba(77, 168, 218, 0.22);
    --sz-glow-strong: rgba(77, 168, 218, 0.35);
    --sz-glow-soft: rgba(77, 168, 218, 0.10);
    --sz-border: rgba(77, 168, 218, 0.25);
    --wolf-red: #C9453A;
    --wolf-red-bright: #E05A4F;
    --wolf-glow: rgba(201, 69, 58, 0.22);
    --wolf-glow-strong: rgba(201, 69, 58, 0.35);
    --wolf-glow-soft: rgba(201, 69, 58, 0.10);
    --wolf-border: rgba(201, 69, 58, 0.25);
    --viking-steel: #B0B8C4;
    --viking-steel-bright: #CDD4DE;
    --viking-glow: rgba(176, 184, 196, 0.18);
    --viking-glow-strong: rgba(176, 184, 196, 0.28);
    --viking-glow-soft: rgba(176, 184, 196, 0.08);
    --viking-border: rgba(176, 184, 196, 0.2);

    /* Cream / Ivory */
    --cream: #FAF7F0;
    --ivory: #F5F0E5;

    /* Neutrals */
    --dark: #0C1811;
    --gray-700: #2F3E35;
    --gray-600: #4A5D52;
    --gray-500: #6B7E73;
    --gray-400: #93A49A;
    --gray-300: #B8C5BD;
    --gray-200: #D6DED9;
    --gray-100: #EDF0EE;
    --gray-50: #F6F8F7;
    --white: #FFFFFF;

    /* Semantic */
    --bg-primary: var(--cream);
    --bg-section: var(--ivory);
    --bg-dark: var(--forest-900);
    --text-primary: var(--dark);
    --text-secondary: var(--gray-600);
    --text-on-dark: var(--cream);
    --accent: var(--gold-500);
    --accent-hover: var(--gold-600);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-gap: 100px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 31, 23, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 31, 23, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 31, 23, 0.12);
    --shadow-gold: 0 4px 24px rgba(212, 168, 67, 0.3);
}

/* ===== 2. RESET & TYPOGRAPHY ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: var(--dark); overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.18; }
h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

/* ===== 3. NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 10px 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
    background: rgba(10, 31, 23, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.25s;
}
.navbar-logo:hover { opacity: 1; }
.navbar-links a,
.navbar-phone {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.55);
}
.navbar-links { display: flex; gap: 32px; list-style: none; }
.navbar-links a { transition: color 0.25s; }
.navbar-links a:hover { color: var(--cream); }
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.navbar.scrolled .navbar-phone {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.navbar-phone:hover { color: var(--cream); }
.navbar-phone svg { width: 15px; height: 15px; opacity: 0.7; }

/* ===== 4. BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 50px 50px 80% 80%;
    pointer-events: none;
}
.btn-outline {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btn-outline::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-forest {
    background: linear-gradient(135deg, rgba(16, 78, 55, 0.85), rgba(10, 56, 38, 0.9));
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    color: var(--cream);
    font-weight: 700;
    border: 1px solid rgba(52, 137, 109, 0.35);
    box-shadow:
        0 4px 20px rgba(10, 56, 38, 0.4),
        0 1px 3px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-forest::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}
.btn-forest:hover {
    background: linear-gradient(135deg, rgba(20, 92, 65, 0.9), rgba(14, 66, 46, 0.95));
    border-color: rgba(52, 137, 109, 0.5);
    transform: translateY(-1px);
    box-shadow:
        0 6px 28px rgba(10, 56, 38, 0.5),
        0 2px 6px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-lg { padding: 18px 42px; font-size: 0.88rem; }

/* ===== 5. HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-950);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    display: block;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,18,14,0.88) 0%, rgba(4,14,10,0.58) 35%, rgba(2,8,6,0.15) 58%, transparent 78%),
        linear-gradient(270deg, rgba(4,14,10,0.45) 0%, transparent 20%),
        linear-gradient(180deg, rgba(4,14,10,0.25) 0%, transparent 30%, transparent 70%, rgba(4,14,10,0.3) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
    padding: 220px 0 60px;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.7;
}
.hero-badge svg { width: 12px; height: 12px; opacity: 0.6; }
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 .h1-sub { display: block; font-weight: 700; opacity: 0.55; }
.hero-desc {
    color: rgba(250, 247, 240, 0.6);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 140px;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; }
.hero-buttons-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(250, 247, 240, 0.45);
    font-size: 0.82rem;
    font-weight: 500;
    align-self: flex-start;
    padding-left: 24px;
}
.hero-availability-mobile { display: none; }
.availability-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(16, 78, 55, 0.9);
    box-shadow: 0 0 8px rgba(16, 78, 55, 0.5);
    animation: avail-pulse 2s ease-in-out infinite;
}
@keyframes avail-pulse {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 6px rgba(16, 78, 55, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 12px rgba(16, 78, 55, 0.6); }
}

/* Hero hotspot dots */
.hero-hotspot {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}
.hero-hotspot__dot {
    --dot-color: var(--gold-400);
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dot-color);
    opacity: 0.85;
    flex-shrink: 0;
}
.hero-hotspot__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dot-color);
    opacity: 0.2;
    filter: blur(6px);
    animation: dot-glow 3s ease-in-out infinite;
}
@keyframes dot-glow {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.4; }
}
.hero-hotspot__dot.dot--sz { --dot-color: var(--sz-blue); }
.hero-hotspot__dot.dot--wolf { --dot-color: var(--wolf-red); }
.hero-hotspot__dot.dot--viking { --dot-color: var(--viking-steel); }
.hero-hotspot__label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dot-color);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.hero-hotspot:hover .hero-hotspot__label {
    opacity: 0.85;
    transform: translateX(0);
}
.hero-hotspot { --dot-color: var(--gold-400); }
.hero-hotspot:has(.dot--sz) { --dot-color: var(--sz-blue); }
.hero-hotspot:has(.dot--wolf) { --dot-color: var(--wolf-red); }
.hero-hotspot:has(.dot--viking) { --dot-color: var(--viking-steel); }

/* Section commons */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-600);
    margin-bottom: 14px;
}
.section-label svg { width: 14px; height: 14px; }
.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 540px;
    margin: 14px auto 0;
}

/* ===== 6. STATS BAR ===== */
.stats-bar {
    background:
        radial-gradient(ellipse 600px 100px at 25% 0%, rgba(22, 61, 47, 0.3), transparent),
        radial-gradient(ellipse 400px 80px at 75% 100%, rgba(212, 168, 67, 0.05), transparent),
        linear-gradient(180deg, rgba(4, 14, 10, 0.95) 0%, var(--forest-950) 40%, var(--forest-950) 100%);
    border-bottom: 1px solid rgba(212, 168, 67, 0.06);
    padding: 22px 0;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(250, 247, 240, 0.06) 50%, transparent 90%);
}
.stats-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item {
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(250, 247, 240, 0.08);
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(250, 247, 240, 0.7);
    white-space: nowrap;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.35);
    white-space: nowrap;
}

/* ===== 7. BRAND TRIPTYCH ===== */
.brands {
    padding: 0;
    background: var(--forest-950);
}
.brands .section-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 4;
    padding: 64px 24px 0;
    pointer-events: none;
    text-align: center;
}
.brands .section-header h2,
.brands .section-header .section-label,
.brands .section-header .section-desc { color: var(--cream); }
.brands .section-header .section-label { border-color: rgba(212,168,67,0.25); }
.brands .section-header .section-label svg { color: var(--gold-400); }
.brands .section-header .section-desc { color: rgba(250,247,240,0.55); }

/* Triptych panels */
.brands-triptych {
    display: flex;
    width: 100%;
    min-height: max(85vh, 700px);
    position: relative;
}
.brand-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 36px;
    cursor: default;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-panel + .brand-panel {
    border-left: 1px solid rgba(250,247,240,0.06);
}

/* Background layer */
.brand-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-panel:hover .brand-panel-bg {
    transform: scale(1.05);
}

/* Dark overlay for text readability */
.brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(7,21,16,0.7) 0%,
        rgba(7,21,16,0.25) 35%,
        rgba(7,21,16,0.25) 55%,
        rgba(7,21,16,0.85) 100%
    );
    transition: background 0.5s ease;
}
.brand-panel:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(7,21,16,0.6) 0%,
        rgba(7,21,16,0.15) 35%,
        rgba(7,21,16,0.15) 55%,
        rgba(7,21,16,0.8) 100%
    );
}

/* Decorative SVG watermark */
.brand-panel-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
    opacity: 0.08;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.brand-panel:hover .brand-panel-icon {
    opacity: 0.14;
    transform: translate(-50%, -55%) scale(1.1);
}

/* Brand-colored accent line at top */
.brand-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 3px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.brand-panel:hover::after { opacity: 1; }

/* Text content */
.brand-panel-content {
    position: relative;
    z-index: 2;
}
.brand-panel-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(250,247,240,0.12);
    color: rgba(250,247,240,0.6);
    background: rgba(250,247,240,0.04);
    transition: all 0.4s ease;
}
.brand-panel-logo {
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(1);
    transition: transform 0.4s ease, filter 0.4s ease;
}
.brand-panel:hover .brand-panel-logo {
    transform: translateY(-2px);
    filter: brightness(1.15);
}
.brand-panel[data-brand="subzero"] .brand-panel-logo { height: 18px; }
.brand-panel[data-brand="wolf"] .brand-panel-logo { height: 18px; }
.brand-panel[data-brand="viking"] .brand-panel-logo { height: 30px; }
.brand-panel-content p {
    color: rgba(250,247,240,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 340px;
    transition: color 0.4s ease;
}
.brand-panel:hover .brand-panel-content p {
    color: rgba(250,247,240,0.75);
}

/* Hover expand */
.brands-triptych:hover .brand-panel { flex: 0.85; }
.brands-triptych:hover .brand-panel:hover { flex: 1.3; }

/* Sub-Zero panel */
.brand-panel[data-brand="subzero"] .brand-panel-bg {
    background: url('../images/brand-subzero.png') center/cover no-repeat;
}
.brand-panel[data-brand="subzero"]::after {
    background: linear-gradient(90deg, transparent, var(--sz-blue), transparent);
}
.brand-panel[data-brand="subzero"] .brand-panel-icon svg { color: var(--sz-blue-bright); }
.brand-panel[data-brand="subzero"]:hover .brand-panel-tag {
    background: rgba(77,168,218,0.12);
    border-color: rgba(77,168,218,0.3);
    color: var(--sz-blue-bright);
}

/* Viking panel — fixed: radial-gradient layered with image */
.brand-panel[data-brand="viking"] .brand-panel-bg {
    background:
        radial-gradient(ellipse 50% 40% at 70% 25%, rgba(176,184,196,0.08), transparent),
        url('../images/brand-viking.png') center/cover no-repeat;
}
.brand-panel[data-brand="viking"]::after {
    background: linear-gradient(90deg, transparent, var(--viking-steel), transparent);
}
.brand-panel[data-brand="viking"] .brand-panel-icon svg { color: var(--viking-steel-bright); }
.brand-panel[data-brand="viking"]:hover .brand-panel-tag {
    background: rgba(176,184,196,0.12);
    border-color: rgba(176,184,196,0.3);
    color: var(--viking-steel-bright);
}

/* Wolf panel — fixed: radial-gradient layered with image */
.brand-panel[data-brand="wolf"] .brand-panel-bg {
    background:
        radial-gradient(ellipse 50% 40% at 60% 30%, rgba(201,69,58,0.08), transparent),
        url('../images/brand-wolf.png') center/cover no-repeat;
}
.brand-panel[data-brand="wolf"]::after {
    background: linear-gradient(90deg, transparent, var(--wolf-red), transparent);
}
.brand-panel[data-brand="wolf"] .brand-panel-icon svg { color: var(--wolf-red-bright); }
.brand-panel[data-brand="wolf"]:hover .brand-panel-tag {
    background: rgba(201,69,58,0.12);
    border-color: rgba(201,69,58,0.3);
    color: var(--wolf-red-bright);
}

/* Also servicing strip */
.brands-also {
    background:
        radial-gradient(ellipse 600px 100px at 25% 0%, rgba(22,61,47,0.3), transparent),
        radial-gradient(ellipse 400px 80px at 75% 100%, rgba(212,168,67,0.05), transparent),
        linear-gradient(180deg, var(--forest-950) 0%, var(--forest-950) 100%);
    padding: 24px 0;
    position: relative;
}
.brands-also::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(250,247,240,0.06) 50%, transparent 90%);
}
.brands-also .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.brands-also-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.3);
    margin-right: 20px;
    white-space: nowrap;
}
.brands-also-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.brands-also-item {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(250,247,240,0.55);
    padding: 0 16px;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.brands-also-item:hover {
    color: rgba(250,247,240,0.85);
}
.brands-also-item + .brands-also-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(250,247,240,0.08);
}

/* ===== 8. FROST ASSEMBLY ===== */
.frost-assembly {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f6fafe 40%, #f0f7fc 60%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.frost-assembly .section-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.frost-assembly .section-label { color: var(--gold-600); }
.frost-assembly h2 { color: var(--dark); }
.frost-assembly .section-desc { color: var(--gray-600); max-width: 540px; margin: 0 auto; font-size: 1rem; }
.ice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    perspective: 1000px;
    perspective-origin: 50% 45%;
    max-width: 1300px;
    margin: 0 auto;
}
.ice-cell {
    position: relative;
    overflow: visible;
    background: url('../images/ice-v12-transparent.webp') center/calc(100% + 20px) calc(100% + 16px) no-repeat;
    border: none;
    border-radius: 0;
    padding: 40px 44px 36px;
    margin: -8px -10px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-style: preserve-3d;
    opacity: 0;
    filter: drop-shadow(0 4px 8px rgba(0,50,80,0.08)) drop-shadow(0 12px 24px rgba(0,40,70,0.06));
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, filter 0.4s ease;
}
.ice-cell h4, .ice-cell p { position: relative; z-index: 1; }
/* Scattered state — ice shards drift in with organic motion */
.ice-cell:nth-child(1) { transform: translate(-60px, -40px) rotate(-5deg) scale(0.92); transition-delay: 0s; }
.ice-cell:nth-child(2) { transform: translate(8px, -65px) rotate(3deg) scale(0.94); transition-delay: 0.06s; }
.ice-cell:nth-child(3) { transform: translate(55px, -35px) rotate(6deg) scale(0.91); transition-delay: 0.12s; }
.ice-cell:nth-child(4) { transform: translate(-50px, 45px) rotate(-4deg) scale(0.93); transition-delay: 0.2s; }
.ice-cell:nth-child(5) { transform: translate(8px, 60px) rotate(-3deg) scale(0.95); transition-delay: 0.28s; }
.ice-cell:nth-child(6) { transform: translate(55px, 50px) rotate(5deg) scale(0.91); transition-delay: 0.36s; }
.ice-grid.assembled .ice-cell {
    opacity: 1;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, filter 0.4s ease;
}
.ice-grid.assembled .ice-cell:nth-child(1) { transform: none; transition-delay: 0s; }
.ice-grid.assembled .ice-cell:nth-child(2) { transform: none; transition-delay: 0.07s; }
.ice-grid.assembled .ice-cell:nth-child(3) { transform: none; transition-delay: 0.14s; }
.ice-grid.assembled .ice-cell:nth-child(4) { transform: none; transition-delay: 0.2s; }
.ice-grid.assembled .ice-cell:nth-child(5) { transform: none; transition-delay: 0.27s; }
.ice-grid.assembled .ice-cell:nth-child(6) { transform: none; transition-delay: 0.34s; }
.ice-cell:hover {
    filter: drop-shadow(0 6px 16px rgba(0,50,80,0.12)) drop-shadow(0 20px 40px rgba(0,40,70,0.08));
    transform: translateY(-6px) scale(1.03) !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease !important;
}
.ice-cell-icon { width: 32px; height: 32px; color: #1a5c6b; margin-bottom: 8px; filter: drop-shadow(0 1px 3px rgba(0,60,80,0.2)); position: relative; z-index: 1; }
.ice-cell h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; color: #0c3a4a; margin-bottom: 5px; text-shadow: 0 1px 2px rgba(200,230,245,0.7); }
.ice-cell p { font-size: 0.78rem; line-height: 1.5; color: #2a5565; text-shadow: 0 1px 1px rgba(200,230,245,0.5); }
.ice-crack-svg { position: absolute; inset: 10% 8%; width: 84%; height: 80%; z-index: 2; pointer-events: none; overflow: visible; }
.ice-crack-line { stroke: rgba(30,90,120,0.2); stroke-width: 1; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ice-crack-branch { stroke: rgba(30,90,120,0.12); stroke-width: 0.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ice-heal-line { stroke: #d4a843; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 4px rgba(212,168,67,0.5)) drop-shadow(0 0 10px rgba(212,168,67,0.2)); }
.ice-heal-branch { stroke: #c9a050; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 3px rgba(212,168,67,0.4)); }

/* ===== 9. SERVICES ===== */
.services {
    padding: var(--section-gap) 0;
    background:
        radial-gradient(ellipse 500px 350px at 85% 15%, rgba(22,61,47,0.04), transparent 70%),
        radial-gradient(ellipse 600px 400px at 15% 75%, rgba(212,168,67,0.03), transparent 70%),
        var(--ivory);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: row;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 67, 0.12);
}
.service-card-thumb {
    width: 110px;
    min-height: 100%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}
.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card-thumb svg {
    color: rgba(212, 168, 67, 0.2);
    position: relative;
    z-index: 2;
}
.service-card[data-brand-hint="sz"] .service-card-thumb {
    background:
        radial-gradient(ellipse 160px 100px at 50% 55%, var(--sz-glow-strong), transparent),
        linear-gradient(135deg, var(--forest-800), var(--forest-700));
}
.service-card[data-brand-hint="sz"] .service-card-thumb svg { color: var(--sz-blue); opacity: 0.3; }
.service-card[data-brand-hint="sz"] { border-left: 3px solid var(--sz-border); }
.service-card[data-brand-hint="sz"]:hover { box-shadow: 0 8px 32px rgba(77, 168, 218, 0.18), 0 0 0 1px rgba(77, 168, 218, 0.12); border-color: rgba(77, 168, 218, 0.25); }
.service-card[data-brand-hint="sz"] .service-brands-list { color: var(--sz-blue); opacity: 0.7; }
.service-card[data-brand-hint="wolf"] .service-card-thumb {
    background:
        linear-gradient(135deg, var(--forest-800), var(--forest-700));
}
.service-card[data-brand-hint="wolf"] .service-card-thumb svg { color: var(--wolf-red); opacity: 0.28; }
.service-card[data-brand-hint="wolf"] { border-left: 3px solid var(--wolf-border); }
.service-card[data-brand-hint="wolf"]:hover { box-shadow: 0 8px 32px rgba(201, 69, 58, 0.16), 0 0 0 1px rgba(201, 69, 58, 0.1); border-color: rgba(201, 69, 58, 0.25); }
.service-card[data-brand-hint="wolf"] .service-brands-list { color: var(--wolf-red); opacity: 0.6; }
.service-card[data-brand-hint="viking"] .service-card-thumb {
    background:
        linear-gradient(135deg, var(--forest-800), var(--forest-700));
}
.service-card[data-brand-hint="viking"] .service-card-thumb svg { color: var(--viking-steel); opacity: 0.25; }
.service-card[data-brand-hint="viking"] { border-left: 3px solid var(--viking-border); }
.service-card[data-brand-hint="viking"]:hover { box-shadow: 0 8px 32px rgba(176, 184, 196, 0.14), 0 0 0 1px rgba(176, 184, 196, 0.1); border-color: rgba(176, 184, 196, 0.25); }
.service-card[data-brand-hint="viking"] .service-brands-list { color: var(--viking-steel); opacity: 0.7; }
.service-card-body {
    padding: 18px 20px;
    flex: 1;
    min-width: 0;
}
.service-card-body h3 {
    margin-bottom: 8px;
    color: var(--forest-800);
    font-size: 1.05rem;
}
.service-card-body p {
    color: var(--gray-400);
    font-size: 0.82rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-meta {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-brands-list {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 500;
}
.service-link {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(107, 126, 115, 0.3);
    transition: all 0.2s;
}
.service-link:hover { color: var(--forest-700); text-decoration-color: rgba(107, 126, 115, 0.5); }
/* Expandable issues list */
.service-issues {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    z-index: 10;
    margin: 0;
    padding: 14px 20px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 8px 24px rgba(10, 31, 23, 0.1);
}
.service-card--expanded .service-issues { display: block; }
.service-card--expanded {
    z-index: 11;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--white);
    box-shadow: none;
}
.service-card--expanded .service-card-thumb {
    border-radius: var(--radius-lg) 0 0 0;
}
.service-issues li {
    font-size: 0.82rem;
    color: var(--gray-400);
    padding: 4px 0;
    position: relative;
    padding-left: 14px;
}
.service-issues li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--forest-500);
    opacity: 0.2;
    transform: translateY(-50%);
}
.service-issues-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}
.service-issues-actions a {
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
}
.service-issues-actions .svc-fix {
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--forest-700), var(--forest-800));
    color: var(--cream);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(10, 31, 23, 0.15);
    transition: all 0.25s;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.service-issues-actions .svc-fix:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10, 31, 23, 0.2); }
.service-issues-actions .svc-other {
    color: var(--gray-400);
    padding-left: 14px;
    transition: color 0.2s;
}
.service-issues-actions .svc-other:hover { color: var(--forest-600); }
.service-card--expanded .service-link { color: var(--forest-700); }
.service-card--expanded:hover { transform: none; }
/* Hidden cards + expand */
.service-card--hidden { display: none !important; }
.services-grid.services-grid--expanded .service-card--hidden { display: flex !important; }
.services-grid.services-grid--expanded .service-card--hidden.service-card--cta { display: flex !important; }
/* CTA card */
.service-card--cta {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 4px 24px rgba(7,21,16,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 24px 28px;
    min-height: 120px;
}
.service-card--cta:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 8px 32px rgba(7,21,16,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.6);
}
.service-cta-text { flex-shrink: 0; max-width: 200px; }
.service-cta-text h3 {
    color: var(--forest-900);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.service-cta-text p {
    color: var(--gray-500);
    font-size: 0.8rem;
    line-height: 1.5;
    display: block;
    -webkit-line-clamp: unset;
}
.svc-cta-form {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.svc-cta-form__row { display: contents; }
.svc-cta-form__input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: all 0.2s;
}
.svc-cta-form__input::placeholder { color: var(--gray-400); }
.svc-cta-form__input:focus { border-color: var(--forest-500); background: var(--white); outline: none; }
.svc-cta-form__submit {
    padding: 10px 16px;
    background: var(--forest-800);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.svc-cta-form__submit:hover {
    background: var(--forest-700);
    transform: translateY(-1px);
}
/* More Services button */
.services-more {
    grid-column: 1 / -1;
    display: block;
    margin: 8px auto 0;
    padding: 10px 20px;
    background: transparent;
    border: none;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.services-more:hover { color: var(--gold-600); }

/* ===== 10. REVIEWS ===== */
.reviews {
    padding: var(--section-gap) 0;
    background: linear-gradient(155deg, var(--forest-950), var(--forest-900) 60%, var(--forest-800));
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 300px at 50% 100%, rgba(212, 168, 67, 0.04), transparent);
    pointer-events: none;
}
.reviews .section-label { color: var(--gold-400); }
.reviews h2 { color: var(--cream); }
.reviews .section-desc { color: rgba(250, 247, 240, 0.5); }
.reviews-track-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 -24px;
    padding: 8px 0 16px;
    cursor: grab;
}
.reviews-track-wrapper:active { cursor: grabbing; }
.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsMarquee 100s linear infinite;
    will-change: transform;
}
.reviews-track:hover,
.reviews-track.dragging {
    animation-play-state: paused;
}
@keyframes reviewsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-card {
    flex: 0 0 380px;
    background:
        linear-gradient(165deg, rgba(255,252,245,0.08) 0%, rgba(250,247,240,0.03) 40%, rgba(212,168,67,0.02) 100%);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    border-top: 1.5px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(212,168,67,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow:
        inset 0 1px 4px rgba(255,255,255,0.08),
        inset 0 -2px 6px rgba(0,0,0,0.04),
        0 1px 0 rgba(255,255,255,0.06),
        0 4px 16px rgba(0,0,0,0.12),
        0 12px 32px rgba(0,0,0,0.06);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    border-top-color: rgba(255,255,255,0.18);
    box-shadow:
        inset 0 1px 6px rgba(255,255,255,0.1),
        inset 0 -2px 8px rgba(0,0,0,0.05),
        0 1px 0 rgba(255,255,255,0.08),
        0 8px 24px rgba(0,0,0,0.16),
        0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.review-stars {
    display: flex; gap: 2px;
    color: var(--gold-400);
}
.review-stars svg { width: 14px; height: 14px; }
.review-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(250, 247, 240, 0.3);
    letter-spacing: 0.02em;
}
.review-source svg { width: 14px; height: 14px; color: rgba(250, 247, 240, 0.4); }
.review-text {
    color: rgba(250, 247, 240, 0.72);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(212, 168, 67, 0.15);
    flex-shrink: 0;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-name { color: var(--cream); font-weight: 600; font-size: 0.85rem; }
.review-date { color: rgba(250, 247, 240, 0.28); font-size: 0.72rem; }
.reviews-summary {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    position: relative;
    z-index: 1;
}
.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    background: rgba(250, 247, 240, 0.04);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.reviews-google-btn:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.35);
    color: var(--cream);
}
.reviews-google-btn svg { flex-shrink: 0; }
.reviews-google-btn .btn-rating { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.reviews-google-btn .btn-sep { color: rgba(250,247,240,0.25); }
.reviews-google-btn .btn-count { color: rgba(250,247,240,0.55); font-size: 0.82rem; }
.reviews-google-btn .btn-chevron { color: rgba(250,247,240,0.35); transition: transform 0.2s; }
.reviews-google-btn:hover .btn-chevron { transform: translateX(3px); }

/* ===== 11. ABOUT ===== */
.about {
    padding: var(--section-gap) 0;
    background: linear-gradient(170deg, var(--forest-900) 0%, var(--forest-950) 50%, #080e0a 100%);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77,168,218,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.about .section-label { color: var(--gold-400); }
.about h2 { color: var(--cream); }
.about .section-desc { color: rgba(250, 247, 240, 0.5); }
.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.about-photo-wrap {
    grid-row: 1 / 3;
    perspective: 800px;
}
.about-photo-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 40px 80px -20px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.8s ease, border-color 0.8s ease;
}
.about-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(77,168,218,0.4) 20%, rgba(255,255,255,0.3) 40%, rgba(212,168,67,0.4) 60%, rgba(255,255,255,0.3) 80%, transparent);
}
.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-photo-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.06), transparent 60%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.about-photo-card:hover .about-photo-shine { opacity: 1; }
.about-text {
    padding: 32px 36px;
    border-radius: 20px;
    background: rgba(250,247,240,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.about-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 12px;
}
.about-text .accent-gold {
    background: linear-gradient(135deg, var(--gold-400), #f0dfc8 60%, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text .about-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-400);
    opacity: 0.8;
    margin-bottom: 14px;
}
.about-text .about-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(250,247,240,0.55);
}
.about-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-promise {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(250,247,240,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: transform 0.3s ease, border-color 0.8s ease, background 0.8s ease;
}
.about-promise:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.1);
}
.about-promise-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,168,67,0.06);
    border: 1px solid rgba(212,168,67,0.1);
}
.about-promise-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-400);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-promise h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 3px;
    line-height: 1.3;
}
.about-promise p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(250,247,240,0.4);
}

/* About — Fridge light effect */
.about-light-source {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: var(--light, 0);
    background: radial-gradient(ellipse 140% 160% at 22% 45%,
        rgba(195, 225, 255, 0.92) 0%,
        rgba(220, 240, 255, 0.75) 20%,
        rgba(245, 243, 238, 0.8) 45%,
        rgba(250, 248, 244, 0.65) 65%,
        rgba(248, 246, 242, 0.4) 80%,
        transparent 100%
    );
}
.about .container {
    position: relative;
    z-index: 1;
}
.about h2,
.about .section-label,
.about .section-desc { transition: color 0.8s ease; }
.about-text { transition: background 0.8s ease, border-color 0.8s ease; }
.about-text h3 { transition: color 0.8s ease; }
.about-promise-icon { transition: background 0.8s ease, border-color 0.8s ease; }

.about--lit .about-photo-card {
    box-shadow:
        0 0 70px 20px rgba(180, 220, 255, 0.3),
        0 0 140px 50px rgba(180, 220, 255, 0.12),
        0 20px 60px -10px rgba(0,0,0,0.2);
    border-color: rgba(180, 220, 255, 0.25);
}
.about--lit h2 { color: var(--forest-900); }
.about--lit .section-label { color: var(--forest-600); }
.about--lit .section-desc { color: rgba(15, 40, 25, 0.6); }
.about--lit .about-text {
    background: rgba(15, 40, 25, 0.04);
    border-color: rgba(15, 40, 25, 0.1);
}
.about--lit .about-text h3 { color: var(--forest-900); }
.about--lit .about-text .accent-gold {
    background: linear-gradient(135deg, #9a7209, #c89b30, #8b6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about--lit .about-role { color: #8b6914; }
.about--lit .about-desc { color: rgba(15, 40, 25, 0.65); }
.about--lit .about-promise {
    background: rgba(15, 40, 25, 0.04);
    border-color: rgba(15, 40, 25, 0.1);
}
.about--lit .about-promise h4 { color: var(--forest-900); }
.about--lit .about-promise p { color: rgba(15, 40, 25, 0.5); }
.about--lit .about-promise-icon {
    background: rgba(180, 140, 40, 0.12);
    border-color: rgba(180, 140, 40, 0.22);
}

/* Focused beam from fridge photo edge */
.about-light-beam {
    position: absolute;
    top: 15%;
    left: 18%;
    width: 70%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    opacity: var(--light, 0);
    background: radial-gradient(ellipse 80% 70% at 5% 40%,
        rgba(200, 230, 255, 0.5) 0%,
        rgba(210, 235, 255, 0.25) 30%,
        transparent 70%
    );
    filter: blur(30px);
}
/* Photo card right-edge glow — light spilling from the fridge */
.about--lit .about-photo-card::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -20px;
    width: 80px;
    height: 70%;
    background: radial-gradient(ellipse at 0% 50%,
        rgba(190, 225, 255, 0.5) 0%,
        rgba(190, 225, 255, 0.2) 40%,
        transparent 100%
    );
    filter: blur(15px);
    z-index: 4;
    pointer-events: none;
    animation: fridgePulse 3s ease-in-out infinite alternate;
}
@keyframes fridgePulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ===== 12. AREAS & FAQ ===== */
.areas-faq {
    padding: var(--section-gap) 0;
    background: linear-gradient(175deg, #080e0a 0%, var(--forest-950) 40%, var(--forest-900) 100%);
    position: relative;
}
.areas-faq::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77,168,218,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.areas-faq .section-label { color: var(--gold-400); }
.areas-faq h2 { color: var(--cream); }
.areas-faq .section-desc { color: rgba(250, 247, 240, 0.5); }
.areas-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.areas-faq-grid > div:last-child {
    display: flex;
    flex-direction: column;
}
.areas-faq-grid > div:last-child .faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.areas-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}
.areas-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.areas-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}
.seo-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(250,247,240,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.seo-links__row {
    font-size: 0.72rem;
    line-height: 1.8;
    color: rgba(250,247,240,0.3);
}
.seo-links__label {
    font-weight: 700;
    color: rgba(250,247,240,0.5);
    margin-right: 4px;
}
.seo-links__row a {
    color: rgba(250,247,240,0.35);
    text-decoration: none;
    transition: color 0.15s;
}
.seo-links__row a:hover { color: var(--gold-400); }
.seo-links__sep { margin: 0 2px; opacity: 0.4; }
/* FAQ */
.faq-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.faq-item {
    border-radius: 8px;
    background: rgba(250,247,240,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open {
    border-color: rgba(212,168,67,0.15);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(250,247,240,0.8);
    transition: color 0.2s;
    user-select: none;
}
.faq-q:hover { color: var(--cream); }
.faq-q svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold-400);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a-inner {
    padding: 0 16px 12px;
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(250,247,240,0.45);
}
.faq-item.open .faq-a {
    max-height: 300px;
}

/* ===== 13. CTA SECTION ===== */
.cta-section {
    padding: 56px 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(22,61,47,0.04), transparent),
        radial-gradient(ellipse 500px 350px at 85% 15%, rgba(212,168,67,0.03), transparent),
        var(--ivory);
    position: relative;
    overflow: hidden;
}
.cta-inner {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-500);
    margin-bottom: 20px;
}
.cta-badge svg { stroke: var(--forest-500); }
.cta-content h2 {
    color: var(--forest-900);
    margin-bottom: 16px;
}
.cta-content h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-desc {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--forest-900);
    letter-spacing: -0.02em;
    transition: color 0.2s;
}
.cta-phone:hover { color: var(--forest-500); }
.cta-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
}
.cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest-400);
    box-shadow: 0 0 8px rgba(52,137,109,0.6);
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(52,137,109,0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 16px rgba(52,137,109,0.8); }
}

/* CTA Form */
.cta-form-wrap {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 32px;
    box-shadow:
        0 8px 32px rgba(22,61,47,0.08),
        0 2px 6px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
    overflow: hidden;
}
.cta-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}
.cta-form-title {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.cta-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-form input,
.cta-form select {
    width: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.6), rgba(255,255,255,0.35));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    color: var(--forest-900);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 14px 16px;
    transition: all 0.25s ease;
    outline: none;
    box-shadow:
        0 2px 8px rgba(22,61,47,0.04),
        inset 0 1px 0 rgba(255,255,255,0.8);
}
.cta-form input::placeholder { color: var(--gray-400); }
.cta-form input:focus,
.cta-form select:focus {
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.55));
    border-color: rgba(52,137,109,0.35);
    box-shadow: 0 0 0 3px rgba(52,137,109,0.1), 0 2px 8px rgba(22,61,47,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.cta-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.763L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--gray-400);
    cursor: pointer;
}
.cta-form select:has(option:checked:not([value=""])) {
    color: var(--forest-900);
}
.cta-form button {
    width: 100%;
    background: linear-gradient(135deg, rgba(16,78,55,0.85), rgba(10,56,38,0.9));
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(52,137,109,0.35);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow:
        0 4px 20px rgba(10,56,38,0.4),
        0 1px 3px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.06);
    margin-top: 4px;
}
.cta-form button:hover {
    background: linear-gradient(135deg, rgba(20,92,65,0.9), rgba(14,66,46,0.95));
    border-color: rgba(52,137,109,0.5);
    transform: translateY(-1px);
    box-shadow:
        0 6px 28px rgba(10,56,38,0.5),
        0 2px 6px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.cta-form button:active {
    transform: translateY(0) scale(0.98);
}

/* ===== 14. FOOTER ===== */
.footer {
    background: var(--forest-950);
    padding: 0;
    color: rgba(250,247,240,0.55);
    font-size: 0.82rem;
}

/* Tier 1: Dense link grid */
.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px 0 8px;
}
.footer-link-group {
    padding: 0;
}
.footer-link-group:first-child {
    padding-right: 24px;
    border-right: 1px solid rgba(212,168,67,0.06);
}
.footer-link-group:last-child {
    padding-left: 24px;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212,168,67,0.35);
    margin: 0 0 5px;
}
.footer-dense {
    list-style: none;
    display: grid;
    gap: 0 10px;
    margin: 0;
    padding: 0;
}
.footer-dense--services {
    grid-template-columns: repeat(3, 1fr);
}
.footer-dense--areas {
    grid-template-columns: repeat(4, 1fr);
}
.footer-dense a {
    display: block;
    padding: 2.5px 0;
    color: rgba(250,247,240,0.45);
    font-size: 0.6875rem;
    line-height: 1.3;
    transition: color 0.15s;
    white-space: nowrap;
}
.footer-dense a:hover { color: var(--gold-400); }

/* Tier 2: Brand bar */
.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(212,168,67,0.08);
}
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    white-space: nowrap;
}
.footer-logo-link img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
.footer-brand-name {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}
.footer-brand-name span {
    color: var(--gold-500);
    margin: 0 2px;
}
.footer-copyright {
    font-size: 0.625rem;
    color: rgba(250,247,240,0.2);
    padding-left: 36px;
    letter-spacing: 0.02em;
}
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav a {
    font-size: 0.75rem;
    color: rgba(250,247,240,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-400); }
.footer-contact {
    text-align: right;
}
.footer-phone {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-400);
    transition: color 0.2s;
    white-space: nowrap;
}
.footer-phone:hover { color: var(--cream); }
.footer-hours {
    display: block;
    margin-top: 2px;
    font-size: 0.625rem;
    color: rgba(250,247,240,0.3);
}

/* ===== 15. MOBILE CTA BAR ===== */
/* Hidden on desktop */
.mobile-cta-bar { display: none; }

/* Burger menu button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(250, 247, 240, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Burger -> X animation */
.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown (Prime-style slide-down panel) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    pointer-events: none;
}
.mobile-nav.open {
    pointer-events: auto;
}
.mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.mobile-nav.open .mobile-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav__panel {
    position: relative;
    width: 100%;
    background: rgba(10, 31, 23, 0.95);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 56px 24px 20px;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 20px 20px;
}
.mobile-nav.open .mobile-nav__panel {
    transform: translateY(0);
}
.mobile-nav__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(212,168,67,0.1);
}
.mobile-nav__logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
}
.mobile-nav__title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
    opacity: 0.7;
}
.mobile-nav__links {
    display: flex;
    flex-direction: column;
}
.mobile-nav__links a {
    display: block;
    text-align: center;
    padding: 13px 4px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(250, 247, 240, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
    transition: color 0.2s;
}
.mobile-nav__links a:last-child {
    border-bottom: none;
}
.mobile-nav__links a:active {
    color: var(--gold-400);
}
.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}
.mobile-nav__callback {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(250, 247, 240, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.mobile-nav__callback:active {
    background: rgba(255, 255, 255, 0.14);
}
a.mobile-nav__call,
a.mobile-nav__call[href^="tel:"] {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, rgba(16, 78, 55, 0.9), rgba(10, 56, 38, 0.95));
    border: 1px solid rgba(52, 137, 109, 0.35);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
a.mobile-nav__call:active {
    background: linear-gradient(135deg, rgba(20, 92, 65, 0.95), rgba(14, 66, 46, 1));
}

/* ===== 16. RESPONSIVE (max-width: 900px) ===== */
@media (max-width: 900px) {
    .hero-bg img { object-position: 94% center; }
    .hero-bg::after {
        background:
            linear-gradient(90deg, rgba(6,18,14,0.4) 0%, rgba(6,18,14,0.08) 50%, transparent 100%),
            linear-gradient(180deg, rgba(6,18,14,0.08) 0%, transparent 30%, transparent 70%, rgba(6,18,14,0.1) 100%);
    }
    .hero { min-height: 100svh; align-items: flex-start; }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 50px 20px 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100svh;
    }
    .hero-left {
        align-items: flex-start;
        text-align: left;
    }
    .hero-hotspot { display: none; }
    .navbar-links { display: none !important; }
    .navbar-phone { display: none !important; }
    .burger {
        display: flex !important;
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
    }
    .burger.active {
        transform: translateY(-50%) !important;
    }
    .navbar .container {
        padding-right: 64px !important;
        position: relative !important;
    }
    .hero-badge {
        margin-bottom: 20px;
        font-size: 0.6rem;
    }
    .hero h1 {
        font-size: clamp(2.8rem, 11vw, 4rem);
        margin-bottom: 16px;
        line-height: 1.0;
        letter-spacing: -0.03em;
        opacity: 0.85;
    }
    .hero h1 .h1-sub {
        font-size: 0.5em;
        opacity: 0.5;
        margin-top: 8px;
        letter-spacing: 0;
    }
    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 0;
        max-width: 280px;
    }
    .hero-desc br { display: none; }
    .hero-buttons-wrap { display: none; }
    .stats-bar { padding: 10px 0; }
    .stats-bar .container { flex-wrap: nowrap; gap: 0; }
    .stat-item { flex: 1; padding: 0 4px; gap: 2px; flex-direction: column; align-items: center; text-align: center; }
    .stat-value { font-size: 0.72rem; color: var(--gold-400); }
    .stat-label { font-size: 0.5rem; letter-spacing: 0.04em; color: rgba(250,247,240,0.5); }
    .stat-item + .stat-item::before { display: block; height: 16px; background: rgba(212,168,67,0.15); }
    .brands { position: relative; }
    .brands-triptych {
        flex-direction: column;
        min-height: auto;
        gap: 3px;
    }
    .brand-panel {
        min-height: 44svh;
        padding: 24px 20px;
    }
    .brand-panel + .brand-panel { border-left: none; border-top: none; }
    .brands-triptych:hover .brand-panel { flex: 1; }
    .brands-triptych:hover .brand-panel:hover { flex: 1; }
    .brands .section-header { padding: 40px 16px 0; }
    .brand-panel-content {
        padding-top: 0;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        position: absolute;
        bottom: 24px;
        left: 20px;
        right: 20px;
    }
    .brand-panel-content p { display: none; }
    .brand-panel-tag { margin-bottom: 0; margin-top: 0; }
    .brand-panel-logo { margin-bottom: 12px; }
    .brand-panel[data-brand="wolf"] { min-height: 75svh; }
    .brand-panel[data-brand="subzero"],
    .brand-panel[data-brand="viking"] { min-height: 44svh; }
    .ice-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 300px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 300px; margin: 0 auto; }
    .about-photo-card { min-height: 360px; }
    .about-promises { grid-template-columns: 1fr; }

    .reviews-google-btn { padding: 12px 20px; font-size: 0.82rem; gap: 8px; }

    .frost-assembly { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card--cta { grid-column: span 1; flex-direction: column; text-align: center; }
    .service-cta-text { max-width: none; }
    .svc-cta-form { grid-template-columns: 1fr; }

    /* Mobile fixed CTA bar */
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 16px 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        z-index: 97;
        background: transparent;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .mobile-cta-bar.cta-hidden {
        transform: translateY(100%);
        opacity: 0;
    }
    .mobile-cta-avail {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(250,247,240,0.6);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        margin: 0;
        pointer-events: none;
    }
    .mobile-cta-buttons {
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .mobile-cta-buttons a {
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-cta-quote {
        flex: 1;
        padding: 14px 16px;
        font-size: 0.875rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(16, 78, 55, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 0.5px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        text-decoration: none;
        box-shadow:
            0 2px 12px rgba(16, 78, 55, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.2s ease;
    }
    .mobile-cta-quote:active {
        transform: scale(0.95);
        background: rgba(16, 78, 55, 0.95);
    }
    .mobile-cta-call {
        flex: 1;
        padding: 14px 16px;
        font-size: 0.875rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 0.5px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        transition: all 0.2s ease;
    }
    .mobile-cta-call:active {
        transform: scale(0.95);
        color: #fff;
        background: rgba(255, 255, 255, 0.18);
    }
    .mobile-cta-call svg { stroke: rgba(255, 255, 255, 0.8); }

    /* Areas & FAQ mobile */
    .areas-faq { overflow: hidden; }
    .areas-faq-grid { grid-template-columns: 1fr; gap: 24px; }
    .areas-map iframe { height: 240px; }
    .seo-links { padding: 14px; word-break: break-word; overflow-wrap: break-word; }
    .seo-links__row { font-size: 0.68rem; line-height: 1.9; }
    .faq-q { padding: 12px 14px; font-size: 0.85rem; }
    .faq-a-inner { font-size: 0.82rem; }

    /* CTA section mobile */
    .cta-section { padding: 40px 0; }
    .cta-inner {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .cta-content { display: contents; }
    .cta-badge { order: 1; }
    .cta-content h2 { order: 2; }
    .cta-desc { order: 3; font-size: 0.88rem; max-width: 280px; margin: 0 auto 8px; }
    .cta-form-wrap { order: 4; }
    .cta-availability { order: 5; justify-content: center; margin-top: 0; }
    .cta-phone { order: 6; font-size: 1.3rem; margin: 0 auto; }

    /* Footer mobile */
    .footer .container {
        display: flex;
        flex-direction: column;
    }
    .footer-links-row {
        order: -1;
        grid-template-columns: 1fr;
        padding: 10px 0 8px;
        gap: 10px;
    }
    .footer-link-group:first-child {
        padding-right: 0;
        border-right: none;
    }
    .footer-link-group:last-child {
        padding-left: 0;
    }
    .footer-heading {
        font-size: 0.5625rem;
        margin-bottom: 3px;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: rgba(212,168,67,0.3);
    }
    .footer-dense--services {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-dense--areas {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-dense a {
        font-size: 0.6rem;
        padding: 1.5px 0;
    }
    .footer-top {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 0 12px;
        gap: 8px;
        border-top: 1px solid rgba(212,168,67,0.08);
    }
    .footer-brand-col {
        align-items: center;
    }
    .footer-copyright {
        padding-left: 0;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    .footer-nav a {
        font-size: 0.6875rem;
    }
    .footer-contact {
        text-align: center;
    }
}
