/* =========================================================
   Kelsterbacher Schlüsseldienst – Stylesheet
   ========================================================= */

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

:root {
    color-scheme: dark;
    --ink:   #0D0D0D;
    --cream: #F3F0EA;
    --gold:  #B8902A;
    --gold2: #D4AA44;
    --text:  #1A1A1A;
    --mute:  #7A7A7A;
    --rule:  #D5D1CA;
    --h:     'Barlow Condensed', sans-serif;
    --b:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--ink);
    color: #fff;
    font-family: var(--b);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 16px; z-index: 9999;
    background: var(--gold); color: #000;
    font-family: var(--h); font-size: .85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 10px 20px; text-decoration: none; border-radius: 2px;
    transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── FOCUS VISIBLE ───────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
a:focus-visible, button:focus-visible { border-radius: 2px; }

/* ── TOUCH TARGETS ───────────────────────────────────────── */
a, button { touch-action: manipulation; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 40px;
    border-bottom: 1px solid transparent;
    transition: background .3s, padding .3s, border-color .3s;
}
.nav.solid {
    background: var(--ink);
    border-color: rgba(255,255,255,.06);
    padding: 11px 40px;
}

.nav-logo img { height: 42px; width: auto; display: block; }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-tel {
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; color: #fff;
    font-family: var(--h); font-size: 1.05rem; font-weight: 600;
    letter-spacing: .5px; transition: color .2s;
}
.nav-tel:hover { color: var(--gold); }

.tel-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: dot-ring 2.2s ease-in-out infinite;
}
@keyframes dot-ring {
    0%,100% { box-shadow: 0 0 0 0 rgba(184,144,42,.55); }
    55%      { box-shadow: 0 0 0 7px rgba(184,144,42,0); }
}

.nav-btn {
    background: var(--gold); color: #000; text-decoration: none;
    font-family: var(--h); font-size: .85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 9px 20px; border-radius: 2px;
    transition: background .2s, color .2s;
    display: block;
}
.nav-btn:hover { background: #fff; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    display: flex; flex-direction: column;
    min-height: 100svh; background: var(--ink);
}

.hero-split {
    display: grid; grid-template-columns: 56% 44%;
    flex: 1; min-height: 0;
}

.hero-left {
    background: var(--ink);
    padding: clamp(96px,11vh,130px) clamp(32px,7vw,88px) clamp(52px,6vh,72px);
    display: flex; flex-direction: column;
    justify-content: center;
    gap: clamp(22px,3vh,34px);
    position: relative; z-index: 1;
}

/* diagonal cut toward the photo */
.hero-left::after {
    content: ''; position: absolute;
    top: 0; right: -38px; bottom: 0; width: 76px;
    background: var(--ink);
    clip-path: polygon(0 0, 44% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero-right {
    position: relative; overflow: hidden;
}
.hero-right img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    display: block;
}
.hero-right::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(to right, var(--ink) 0%, rgba(13,13,13,.35) 35%, transparent 65%);
}

.hero-brand-logo { height: 46px; width: auto; align-self: flex-start; display: block; }

.hero-nd-label {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero-nd-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #e84040; flex-shrink: 0;
    animation: nd-pulse 2s ease-in-out infinite;
}
@keyframes nd-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(232,64,64,.6); }
    55%      { box-shadow: 0 0 0 8px rgba(232,64,64,0); }
}
.hero-nd-word {
    font-family: var(--h); font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: #fff;
}
.hero-nd-sep { color: var(--gold); font-size: 1rem; }
.hero-nd-live {
    font-family: var(--b); font-size: .68rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}

.hero-247-row {
    display: flex; align-items: center; gap: 14px;
}
.hero-rule-gold {
    flex: 1; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 80%);
}
.hero-rule-gold:last-child {
    background: linear-gradient(to left, transparent, var(--gold) 80%);
}
.hero-247 {
    font-family: var(--h);
    font-size: clamp(3.8rem, 9vw, 7.5rem);
    font-weight: 700; color: var(--gold);
    line-height: 1; letter-spacing: -2px;
    white-space: nowrap; margin: 0;
}

.hero-taglines p {
    font-family: var(--h);
    font-size: clamp(.82rem, 1.3vw, 1.05rem);
    font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: #888;
    line-height: 1.7;
}
.hero-urgency {
    font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
    color: #fff !important; letter-spacing: 1px !important;
}
.hero-urgency strong { color: var(--gold); font-weight: 700; }

.hero-badges {
    display: flex; gap: clamp(18px,3vw,36px);
    padding-top: 6px;
}
.hero-badge {
    display: flex; flex-direction: column;
    align-items: center; gap: 9px;
    text-align: center;
}
.badge-icon {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
}
.hero-badge span {
    font-family: var(--h); font-size: .6rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #888; line-height: 1.45;
}

/* GOLD PHONE BAR */
.hero-phonebar {
    background: var(--gold);
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
    padding: 18px clamp(32px,7vw,88px);
}
.hero-phone-link {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: #000;
    transition: opacity .2s;
}
.hero-phone-link:hover { opacity: .8; }
.hero-phone-link span {
    font-family: var(--h);
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 700; letter-spacing: -1px; line-height: 1;
}
.hero-phonebar-tag {
    font-family: var(--h);
    font-size: clamp(.7rem, 1.2vw, .95rem);
    font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(0,0,0,.6);
    text-align: right;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
    background: var(--gold); padding: 11px 0;
    overflow: hidden; white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    animation: tick 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
    font-family: var(--h); font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px; color: #000;
    padding: 0 28px;
}
.t-sep { color: rgba(0,0,0,.25); padding: 0 2px; font-size: .7rem; }
@keyframes tick {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── STATS ───────────────────────────────────────────────── */
.stats { background: var(--cream); }
.stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr);
    background: var(--rule); gap: 1px;
}
.stat-cell { background: var(--cream); padding: 52px 40px; }
.stat-bar-el {
    display: block; width: 28px; height: 2px; background: var(--gold);
    margin-bottom: 20px;
    transform: scaleX(0); transform-origin: left;
    transition: transform .9s cubic-bezier(.25,1,.5,1);
}
.stat-cell.on .stat-bar-el { transform: scaleX(1); }
.stat-val {
    font-family: var(--h); font-size: clamp(2.8rem,5vw,4rem);
    font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 10px;
}
.stat-val sup { font-size: .5em; color: var(--gold); vertical-align: super; }
.stat-lbl {
    font-size: .78rem; color: var(--mute); line-height: 1.55;
    text-transform: uppercase; letter-spacing: .5px;
}

/* ── SERVICES ────────────────────────────────────────────── */

/* Showcase: image + text panel */
.svc-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}

.svc-showcase-img {
    position: relative;
    overflow: hidden;
}
.svc-showcase-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform .7s cubic-bezier(.25,1,.5,1);
}
.svc-showcase:hover .svc-showcase-img img { transform: scale(1.045); }

/* subtle vignette on image */
.svc-showcase-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(13,13,13,.15) 100%);
    pointer-events: none;
}

.svc-showcase-panel {
    background: var(--ink);
    color: #fff;
    padding: clamp(40px,6vw,64px);
    display: flex; flex-direction: column;
    justify-content: center; gap: 22px;
}

.svc-showcase-label {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--b); font-size: .68rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.svc-showcase-label::before {
    content: ''; display: block;
    width: 28px; height: 1px; background: var(--gold);
}

.svc-showcase-title {
    font-family: var(--h);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700; text-transform: uppercase;
    line-height: 1.05; letter-spacing: -.3px;
}

.svc-showcase-desc {
    font-size: .88rem; color: #888; line-height: 1.85;
    max-width: 380px;
}

.svc-showcase-rule {
    width: 100%; height: 1px;
    background: rgba(255,255,255,.07);
}

.svc-showcase-meta {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.svc-showcase-tag {
    font-family: var(--h); font-size: .72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; color: #444;
}
.svc-showcase-tag strong { color: var(--gold); }

.svc-showcase-cta {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 4px; align-self: flex-start;
    color: var(--gold); text-decoration: none;
    font-family: var(--h); font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    border-bottom: 1px solid rgba(184,144,42,.35);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s, gap .25s;
}
.svc-showcase-cta:hover { color: #fff; border-color: rgba(255,255,255,.3); gap: 13px; }

@media (max-width: 768px) {
    .svc-showcase { grid-template-columns: 1fr; min-height: auto; }
    .svc-showcase-img { min-height: 260px; }
    .svc-showcase-img::after { background: linear-gradient(to bottom, transparent 60%, rgba(13,13,13,.2) 100%); }
    .svc-showcase-panel { padding: 36px 24px; }
}


.services-section { background: var(--cream); border-top: 1px solid var(--rule); }
.svc-wrap { max-width: 1100px; margin: 0 auto; }

.svc-header {
    padding: 64px 40px 48px;
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: flex-end;
    justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.svc-eyebrow {
    font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.svc-h {
    font-family: var(--h); font-size: clamp(2rem,4vw,3rem);
    font-weight: 700; text-transform: uppercase;
    color: var(--text); line-height: 1.05;
}
.svc-count {
    font-family: var(--h); font-size: .72rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--mute); padding-bottom: 3px;
}

.svc-row {
    display: grid; grid-template-columns: 72px 1fr;
    align-items: start; gap: 0 28px;
    padding: 40px 40px;
    border-bottom: 1px solid var(--rule);
    background: var(--cream);
    transition: background .2s;
}
.svc-row:hover { background: #EAE6DF; }

.svc-n {
    font-family: var(--h); font-size: .7rem; font-weight: 700;
    letter-spacing: 2px; color: var(--gold); padding-top: 5px;
    opacity: 0; transform: translateX(-16px);
    transition: opacity .5s ease, transform .6s cubic-bezier(.25,1,.5,1);
}
.svc-row.on .svc-n { opacity: 1; transform: none; }
.svc-row:nth-child(3) .svc-n { transition-delay: 0s; }
.svc-row:nth-child(4) .svc-n { transition-delay: .09s; }
.svc-row:nth-child(5) .svc-n { transition-delay: .18s; }
.svc-row:nth-child(6) .svc-n { transition-delay: .27s; }
.svc-title {
    font-family: var(--h); font-size: clamp(1.6rem,3vw,2.3rem);
    font-weight: 700; text-transform: uppercase; color: var(--text);
    letter-spacing: -.2px; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.svc-arrow {
    color: var(--gold); opacity: 0;
    transition: opacity .2s, transform .25s; flex-shrink: 0;
}
.svc-row:hover .svc-arrow { opacity: 1; transform: translateX(5px); }
.svc-desc {
    font-size: .88rem; color: var(--mute);
    line-height: 1.75; max-width: 560px;
}

/* ── WEITERE LEISTUNGEN ──────────────────────────────────── */
.svc-extra {
    background: var(--ink);
    padding: clamp(80px,11vw,130px) clamp(24px,7vw,88px);
    border-top: 1px solid var(--rule);
}
.svc-extra-inner { max-width: 1200px; margin: 0 auto; }
.svc-extra-header {
    margin-bottom: clamp(48px,6vw,72px);
}
.svc-extra-header .svc-eyebrow {
    font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.svc-extra-h {
    font-family: var(--h);
    font-size: clamp(2.6rem,5.5vw,4.2rem);
    font-weight: 700; text-transform: uppercase;
    color: var(--cream); letter-spacing: -1px;
    line-height: 1.05;
}
.svc-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px,2vw,24px);
}
.svc-card {
    background: #161616;
    border: 1px solid rgba(213,209,202,.08);
    border-radius: 4px;
    padding: clamp(28px,3vw,40px) clamp(24px,2.5vw,36px);
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color .25s ease, background .25s ease;
    position: relative; overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s cubic-bezier(.25,1,.5,1);
}
.svc-card:hover { background: #1a1a1a; border-color: rgba(184,144,42,.3); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(184,144,42,.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.svc-card-title {
    font-family: var(--h);
    font-size: clamp(1.05rem,1.8vw,1.3rem);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .3px; color: var(--cream);
    line-height: 1.2;
}
.svc-card-desc {
    font-size: .84rem; color: var(--mute);
    line-height: 1.8; flex: 1;
}

@media (max-width: 900px) {
    .svc-extra-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .svc-extra { padding: 64px 20px; }
    .svc-extra-grid { grid-template-columns: 1fr; gap: 12px; }
    .svc-card { padding: 22px 20px; gap: 12px; }
}

/* ── STATEMENT ───────────────────────────────────────────── */
.statement {
    background: var(--ink);
    padding: clamp(80px,11vw,140px) 40px;
    text-align: center; position: relative;
}
.statement::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,144,42,.055) 0%, transparent 70%);
}
.statement-in { position: relative; max-width: 760px; margin: 0 auto; }
.statement-lbl {
    font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.statement-lbl::before,
.statement-lbl::after {
    content: ''; display: block; height: 1px;
    width: 32px; background: var(--gold); opacity: .5;
}
.statement-q {
    font-family: var(--h); font-size: clamp(2.4rem,5.5vw,4.5rem);
    font-weight: 700; text-transform: uppercase; line-height: 1.05;
    margin-bottom: 20px; letter-spacing: -.5px;
}
.statement-q em { font-style: normal; color: var(--gold); }
.statement-sub { font-size: .85rem; color: #555; }

/* ── WHY US ──────────────────────────────────────────────── */
.why { background: var(--cream); padding: clamp(70px,9vw,120px) 40px; }
.why-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: start;
}
.why-eyebrow {
    font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.why-h {
    font-family: var(--h); font-size: clamp(2rem,3.8vw,3rem);
    font-weight: 700; text-transform: uppercase;
    color: var(--text); line-height: 1.05; margin-bottom: 24px;
}
.why-txt { font-size: .88rem; color: var(--mute); line-height: 1.8; }

.why-row {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 22px 0; border-top: 1px solid var(--rule);
    opacity: 0; transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.25,1,.5,1);
}
.why-row:last-child { border-bottom: 1px solid var(--rule); }
.why-row.on { opacity:1; transform:none; }
.why-row:nth-child(1) { transition-delay: .04s; }
.why-row:nth-child(2) { transition-delay: .14s; }
.why-row:nth-child(3) { transition-delay: .24s; }
.why-row:nth-child(4) { transition-delay: .34s; }

.why-n {
    font-family: var(--h); font-size: .68rem; font-weight: 700;
    letter-spacing: 1.5px; color: var(--gold);
    min-width: 22px; padding-top: 2px;
}
.why-name {
    font-family: var(--h); font-size: 1.05rem; font-weight: 600;
    text-transform: uppercase; color: var(--text);
    letter-spacing: .3px; margin-bottom: 4px;
}
.why-body { font-size: .83rem; color: var(--mute); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--cream); border-top: 1px solid var(--rule); }
.faq-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px 64px; }
.faq-h {
    font-family: var(--h); font-size: clamp(1.4rem,3vw,1.8rem);
    font-weight: 700; text-transform: uppercase;
    color: var(--text); margin-bottom: 24px; padding-top: 48px;
}

.faq-item {
    border-top: 1px solid var(--rule);
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item.on { opacity:1; transform:none; }
.faq-item:nth-child(1) { transition-delay: .05s; }
.faq-item:nth-child(2) { transition-delay: .12s; }
.faq-item:nth-child(3) { transition-delay: .19s; }
.faq-item:nth-child(4) { transition-delay: .26s; }

.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 0;
    font-family: var(--h); font-size: 1.05rem; font-weight: 600;
    text-transform: uppercase; color: var(--text); letter-spacing: .3px;
    transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid var(--rule); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
    transition: border-color .2s, background .2s;
}
.faq-icon svg { transition: transform .3s ease; }
.faq-q[aria-expanded="true"] .faq-icon { border-color: var(--gold); background: var(--gold); }
.faq-q[aria-expanded="true"] .faq-icon svg { transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-icon svg path { stroke: #000; }

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-a.open { max-height: 600px; padding-bottom: 20px; }
.faq-a p { font-size: .88rem; color: var(--mute); line-height: 1.75; max-width: 640px; }

/* ── EMERGENCY ───────────────────────────────────────────── */
.emergency {
    background: var(--ink);
    padding: clamp(80px,10vw,130px) 40px;
    text-align: center; position: relative; overflow: hidden;
}
.em-top-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: .4;
}
.em-lbl {
    font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.em-num {
    font-family: var(--h); font-size: clamp(3.2rem,11vw,7.5rem);
    font-weight: 700; letter-spacing: -3px; line-height: 1; margin-bottom: 28px;
}
.em-num a { color: #fff; text-decoration: none; transition: color .2s; }
.em-num a:hover { color: var(--gold); }
.em-sub { font-size: .83rem; color: #555; margin-bottom: 36px; }
.em-btn {
    display: inline-flex; align-items: center; gap: 11px;
    border: 1px solid rgba(255,255,255,.15); color: #fff;
    text-decoration: none; font-family: var(--h); font-size: .9rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    padding: 14px 32px; border-radius: 2px;
    transition: border-color .25s, color .25s, background .25s;
}
.em-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: #080808;
    border-top: 1px solid #161616;
    padding: 36px 40px;
}
.foot-row {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.foot-logo img { height: 34px; width: auto; display: block; }
.foot-info { font-size: .76rem; color: #3a3a3a; line-height: 2; text-align: right; }
.foot-info a { color: var(--gold); text-decoration: none; }
.foot-info a:hover { color: #fff; }
.foot-copy { font-size: .72rem; color: #2a2a2a; margin-top: 6px; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
    background: var(--ink);
    border-top: 1px solid rgba(184,144,42,.3);
    padding: 18px 40px;
}
.cookie-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-title {
    font-family: var(--h); font-size: .85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--gold); margin-bottom: 4px;
}
.cookie-text p:last-child {
    font-size: .78rem; color: #666; line-height: 1.5;
}
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    font-family: var(--h); font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 9px 18px; border-radius: 2px; border: none; cursor: pointer;
    transition: background .2s, color .2s;
}
.cookie-accept { background: var(--gold); color: #000; }
.cookie-accept:hover { background: #fff; }
.cookie-decline {
    background: transparent; color: #555;
    border: 1px solid #333;
}
.cookie-decline:hover { border-color: #555; color: #999; }
@media (max-width: 768px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-inner  { flex-direction: column; align-items: flex-start; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-btn    { flex: 1; text-align: center; }
}

/* ── WHATSAPP BUTTON ─────────────────────────────────────── */
.wa-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff; text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
}
.wa-btn span { display: none; }
.wa-btn svg  { width: 28px; height: 28px; }
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ── MOBILE FLOAT ────────────────────────────────────────── */
.mob-float {
    display: none; position: fixed;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 50%; transform: translateX(-50%); z-index: 300;
}
.mob-float a {
    display: flex; align-items: center; gap: 9px;
    background: var(--gold); color: #000; text-decoration: none;
    font-family: var(--h); font-size: .95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    padding: 14px 28px; border-radius: 100px; white-space: nowrap;
    box-shadow: 0 6px 28px rgba(184,144,42,.5);
    animation: mob-bob 3s ease-in-out infinite;
}
@keyframes mob-bob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(184,144,42,.55); }
}

/* ── GENERIC REVEAL ──────────────────────────────────────── */
.rev {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.rev.on { opacity:1; transform:none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 900px) {
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .mob-float { display: block; }
    .nav       { padding: 12px 20px; }
    .nav.solid { padding: 9px 20px; }
    .stats-grid{ grid-template-columns: 1fr; }
    .svc-row   { padding: 28px 24px; grid-template-columns: 56px 1fr; gap: 0 16px; }
    .svc-header{ padding: 48px 24px 32px; }
    .why       { padding: 60px 24px; }
    .faq-inner { padding: 0 24px 48px; }
    .statement { padding: 70px 24px; }
    .emergency { padding: 70px 24px; }
    footer     { padding: 28px 20px; }
    .foot-info { text-align: left; }

    /* Hero: split layout, left overlaps image */
    .hero-split          { grid-template-columns: 60% 40%; }
    .hero-right img      { object-position: 30% center; }
    .hero-left           { padding: 82px 20px 24px 22px; gap: 16px; z-index: 2; }
    .hero-left::after    { right: -28px; width: 56px; }
    .hero-nd-word        { font-size: 1.3rem; letter-spacing: 2px; }
    .hero-nd-sep         { display: none; }
    .hero-nd-live        { display: none; }
    .hero-nd-dot         { width: 9px; height: 9px; }
    .hero-247            { font-size: clamp(3rem, 11vw, 4rem); letter-spacing: -1px; }
    .hero-rule-gold      { display: none; }
    .hero-urgency        { font-size: .95rem !important; letter-spacing: .3px !important; }
    .hero-taglines p     { font-size: .75rem; letter-spacing: 1px; }
    .hero-badges         { flex-direction: column; gap: 9px; padding-top: 2px; }
    .hero-badge          { flex-direction: row; align-items: center; gap: 9px; text-align: left; }
    .hero-badge span     { font-size: .62rem; letter-spacing: 1px; }
    .badge-icon          { width: 36px; height: 36px; flex-shrink: 0; }
    .badge-icon svg      { width: 16px; height: 16px; }
    .hero-phonebar       { padding: 13px 20px; gap: 6px; }
    .hero-phonebar-tag   { display: none; }
    .hero-phone-link svg { width: 20px; height: 20px; }
    .hero-phone-link span{ font-size: clamp(1.3rem, 5vw, 1.7rem); }

    /* ── MOBILE SCROLL ANIMATIONS ── */

    /* Generic reveal: bigger lift + scale */
    .rev {
        opacity: 0;
        transform: translateY(52px) scale(0.94);
        transition: opacity .7s ease,
                    transform .8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .rev.on { opacity: 1; transform: none; }

    /* Showcase: zoom-in from slightly below */
    .svc-showcase.rev {
        transform: translateY(40px) scale(0.92);
        transition: opacity .75s ease,
                    transform .9s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Stats: big spring pop with stagger */
    .stat-cell {
        opacity: 0;
        transform: scale(0.65) translateY(36px);
        transition: opacity .45s ease,
                    transform .75s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .stat-cell.on { opacity: 1; transform: none; }
    .stat-cell:nth-child(2) { transition-delay: .15s; }
    .stat-cell:nth-child(3) { transition-delay: .30s; }

    /* Service rows: slide in from left with bounce */
    .svc-n {
        transition: opacity .55s ease,
                    transform .75s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .svc-row:nth-child(3) .svc-n { transition-delay: .05s; }
    .svc-row:nth-child(4) .svc-n { transition-delay: .15s; }
    .svc-row:nth-child(5) .svc-n { transition-delay: .25s; }
    .svc-row:nth-child(6) .svc-n { transition-delay: .35s; }

    /* Why rows: slide from left, bigger travel */
    .why-row {
        opacity: 0;
        transform: translateX(-70px);
        transition: opacity .55s ease,
                    transform .75s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .why-row.on { opacity: 1; transform: none; }
    .why-row:nth-child(1) { transition-delay: .04s; }
    .why-row:nth-child(2) { transition-delay: .16s; }
    .why-row:nth-child(3) { transition-delay: .28s; }
    .why-row:nth-child(4) { transition-delay: .40s; }

    /* FAQ: slide in from right */
    .faq-item {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity .5s ease,
                    transform .7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .faq-item.on { opacity: 1; transform: none; }
    .faq-item:nth-child(1) { transition-delay: .04s; }
    .faq-item:nth-child(2) { transition-delay: .14s; }
    .faq-item:nth-child(3) { transition-delay: .24s; }
    .faq-item:nth-child(4) { transition-delay: .34s; }

    .em-num { letter-spacing: -1px; }
}

@media (max-width: 480px) {
    .nav-tel span        { display: none; }
    .hero-split          { grid-template-columns: 64% 36%; }
    .hero-left           { padding: 76px 16px 20px 18px; gap: 13px; }
    .hero-247            { font-size: clamp(2.6rem, 10vw, 3.4rem); }
    .hero-urgency        { font-size: .85rem !important; }
    .hero-badges         { display: none; }
    .hero-phone-link span{ font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
