/* =============================================================================
   RemovALL — design system
   Brand: gold (#D4AF37) + near-black, modern moving-company aesthetic
   ========================================================================== */

:root {
    --gold:        #D4AF37;
    --gold-light:  #F4E4BC;
    --gold-dark:   #b8932f;
    --gold-soft:   rgba(212, 175, 55, 0.12);

    --ink:         #111315;   /* near-black surfaces */
    --ink-2:       #1a1c1f;
    --ink-3:       #24272b;
    --darker:      #0c0d0e;

    --text:        #2b2f33;
    --text-soft:   #5c636b;
    --muted:       #8a929b;
    --line:        #e7e9ec;
    --bg:          #ffffff;
    --bg-alt:      #f6f7f9;

    --container:   1200px;
    --radius:      16px;
    --radius-sm:   10px;
    --radius-lg:   24px;

    --shadow-sm:   0 2px 8px rgba(17, 19, 21, 0.06);
    --shadow:      0 14px 40px rgba(17, 19, 21, 0.10);
    --shadow-lg:   0 30px 60px rgba(17, 19, 21, 0.18);

    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
    --header-h:    76px;

    --font-head:   'Poppins', system-ui, sans-serif;
    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 700; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 2000;
    background: var(--gold); color: #000; padding: 12px 18px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-alt  { background: var(--bg-alt); }
.bg-dark { background: var(--ink); color: #e9ebee; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark);
    margin-bottom: 14px;
}
.bg-dark .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.section-head .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--gold); }
h2.section-title { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 800; letter-spacing: -0.02em; }
.section-lead { margin-top: 16px; color: var(--text-soft); font-size: 1.08rem; }
.bg-dark .section-lead { color: #aeb4bb; }

/* --------------------------------------------------------------- buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    padding: 15px 30px; border-radius: 999px; transition: all 0.3s var(--ease);
    white-space: nowrap; line-height: 1;
}
.btn i { font-size: 1.05em; }
.btn-sm { padding: 11px 22px; font-size: 0.92rem; }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

.btn-gold { background: var(--gold); color: #1a1a1a; box-shadow: 0 10px 24px rgba(212,175,55,0.32); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(212,175,55,0.42); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-3px); }

.btn-outline { border: 2px solid var(--gold); color: var(--gold-dark); }
.bg-dark .btn-outline, .hero .btn-outline { color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-3px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row.center { justify-content: center; }

/* ---------------------------------------------------------------- header */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(17, 19, 21, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(12,13,14,0.98); box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { border-radius: 10px; object-fit: cover; }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.02em; color: var(--gold); }
.brand-r { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
    color: #d7dadd; font-family: var(--font-head); font-weight: 500; font-size: 0.96rem;
    padding: 9px 16px; border-radius: 999px; transition: all 0.25s var(--ease); position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after {
    content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-family: var(--font-head); font-size: 0.95rem; }
.nav-phone i { color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { background: var(--darker); border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 24px 24px; }
.mobile-link { display: block; color: #e9ebee; font-family: var(--font-head); font-weight: 500; padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-link.is-active { color: var(--gold); }
.mobile-actions { display: grid; gap: 12px; margin-top: 18px; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; color: #fff; min-height: 94vh; display: flex; align-items: flex-end; padding: 120px 0 58px; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(105deg, rgba(12,13,14,0.94) 0%, rgba(17,19,21,0.82) 45%, rgba(17,19,21,0.45) 100%);
}
/* Homepage hero: team photo — keep faces in the lit upper band, text reads
   over a bottom-weighted gradient so the crew is never covered. */
.hero .hero-bg img { object-position: center bottom; }
.hero .hero-overlay {
    background: linear-gradient(to top,
        rgba(12,13,14,0.95) 0%,
        rgba(12,13,14,0.80) 30%,
        rgba(12,13,14,0.50) 45%,
        rgba(17,19,21,0.30) 60%,
        rgba(17,19,21,0.10) 100%);
}
.hero-inner { max-width: 680px; }
.hero .badge {
    display: inline-flex; align-items: center; gap: 9px; background: rgba(212,175,55,0.16);
    border: 1px solid rgba(212,175,55,0.4); color: var(--gold-light);
    padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,0.5); }
.hero h1 .gold { color: var(--gold); }
.hero-tagline { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; font-size: 0.95rem; margin: 16px 0 12px; }
.hero-lead { font-size: 1.15rem; color: #e3e6e9; max-width: 540px; margin-bottom: 28px; text-shadow: 0 1px 14px rgba(0,0,0,0.45); }
.hero .btn-row { margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 28px 40px; }
.hero-trust .item { display: flex; align-items: center; gap: 12px; }
.hero-trust .item i { color: var(--gold); font-size: 1.4rem; }
.hero-trust .item strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: #fff; line-height: 1.1; }
.hero-trust .item span { font-size: 0.86rem; color: #aeb4bb; }

/* page hero (interior pages) */
.page-hero { position: relative; color: #fff; padding: clamp(70px, 11vw, 120px) 0 clamp(60px, 9vw, 96px); text-align: center; isolation: isolate; overflow: hidden; }
.page-hero .hero-bg { z-index: -2; }
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(12,13,14,0.86), rgba(17,19,21,0.78)); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.page-hero p { color: #c9ced3; font-size: 1.12rem; margin-top: 16px; max-width: 640px; margin-inline: auto; }
.breadcrumbs { margin-top: 22px; font-size: 0.88rem; color: #aeb4bb; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.6; }

/* ----------------------------------------------------------------- cards */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 26px; }
.card-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #1a1a1a; font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; padding: 6px 12px; border-radius: 999px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.98rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--gold-dark); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.card-link i { transition: transform 0.3s var(--ease); }
.card:hover .card-link i { transform: translateX(5px); }

/* icon feature card */
.feature { text-align: center; padding: 38px 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-icon {
    width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 18px;
    display: grid; place-items: center; font-size: 1.7rem; color: var(--gold-dark);
    background: var(--gold-soft);
}
.bg-dark .feature { background: var(--ink-2); border-color: rgba(255,255,255,0.07); }
.bg-dark .feature:hover { background: var(--ink-3); }
.bg-dark .feature-icon { background: rgba(212,175,55,0.14); color: var(--gold); }
.feature h3, .feature h4 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: 0.95rem; }
.bg-dark .feature p { color: #aeb4bb; }

/* --------------------------------------------------------- split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.split-media .badge-float {
    position: absolute; bottom: -22px; left: 28px; background: var(--gold); color: #1a1a1a;
    padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow); font-family: var(--font-head);
}
.split-media .badge-float strong { display: block; font-size: 1.6rem; line-height: 1; }
.split-media .badge-float span { font-size: 0.82rem; }
.split-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.split-body > p { color: var(--text-soft); margin-bottom: 18px; }
.bg-dark .split-body > p { color: #b6bcc3; }

.icon-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.icon-head .ih-icon { font-size: 2rem; color: var(--gold); width: 64px; height: 64px; display: grid; place-items: center; background: var(--gold-soft); border-radius: 16px; flex: none; }
.bg-dark .icon-head .ih-icon { background: rgba(212,175,55,0.14); }
.icon-head h2, .icon-head h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.1rem); }

.check-list { display: grid; gap: 14px; margin-top: 8px; }
.check-list.two { grid-template-columns: 1fr 1fr; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); }
.bg-dark .check-list li { color: #d7dade; }
.check-list li i { color: var(--gold); margin-top: 5px; flex: none; }

/* ----------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat .label { display: block; margin-top: 10px; color: #aeb4bb; font-size: 0.95rem; letter-spacing: 0.02em; }

/* --------------------------------------------------------------- gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid.featured { grid-auto-flow: dense; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.tile.tall { grid-row: span 2; aspect-ratio: 3/4; }
.tile.wide { grid-column: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile:hover img { transform: scale(1.08); }
.tile-cap {
    position: absolute; inset: auto 0 0 0; padding: 28px 20px 18px; color: #fff;
    background: linear-gradient(transparent, rgba(12,13,14,0.85)); font-family: var(--font-head);
    font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.video-card video { width: 100%; height: auto; max-height: 78vh; display: block; margin-inline: auto; background: #000; }
.video-card .vc-body { padding: 16px 20px; color: #e9ebee; }
.video-card .vc-body h3 { color: #fff; font-size: 1.05rem; }
.video-card .vc-body p { color: #9aa1a8; font-size: 0.88rem; margin-top: 4px; }

/* ----------------------------------------------------------- testimonials */
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi-slide { min-width: 100%; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
    background: var(--bg); border-radius: var(--radius); padding: 30px; border: 1px solid var(--line);
    border-top: 4px solid var(--gold); display: flex; flex-direction: column; gap: 14px;
}
.testi .stars { color: #f5b301; letter-spacing: 2px; }
.testi blockquote { color: var(--text); font-size: 1rem; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 10px; margin-top: auto; color: var(--muted); font-size: 0.88rem; }
.testi .who i { color: #1877f2; }
.testi h4 { font-size: 1.1rem; }

.slider-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 36px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; transition: all 0.3s var(--ease); }
.slider-btn:hover { background: var(--gold); color: #1a1a1a; }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: all 0.3s var(--ease); }
.slider-dots button.active { background: var(--gold); width: 28px; border-radius: 999px; }

/* -------------------------------------------------------------------- CTA */
.cta-band { position: relative; text-align: center; color: #fff; padding: 90px 0; isolation: isolate; overflow: hidden; }
.cta-band .hero-bg { z-index: -2; }
.cta-band .hero-overlay { background: linear-gradient(120deg, rgba(12,13,14,0.92), rgba(184,147,47,0.55)); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.cta-band p { color: #e2e5e8; font-size: 1.15rem; margin: 16px 0 32px; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-list { display: grid; gap: 22px; margin-top: 28px; }
.info-item { display: flex; gap: 18px; }
.info-item .ii-icon { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.15rem; }
.info-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--text-soft); }
.info-item a:hover { color: var(--gold-dark); }

.quick-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.6rem; margin-bottom: 6px; }
.form-card .sub { color: var(--text-soft); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; color: var(--text); background: #fff; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.char-count { font-size: 0.78rem; color: var(--muted); margin-top: 6px; text-align: right; }
.captcha-box { background: var(--bg-alt); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 20px; }
.captcha-box label { display: flex; align-items: center; gap: 8px; }
.captcha-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.captcha-row #captcha-question { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.captcha-row input { width: 90px; }
.captcha-refresh { color: var(--gold-dark); font-size: 1.1rem; padding: 6px; }
.captcha-hint { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }

.form-message { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.form-message.success { background: #e8f6ec; border: 1px solid #b7e0c2; color: #1d6a36; }
.form-message.error { background: #fdecec; border: 1px solid #f3c2c2; color: #9a2b2b; }
.form-message i { font-size: 1.2rem; margin-top: 1px; }
.is-loading { opacity: 0.65; pointer-events: none; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--darker); color: #b6bcc3; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.brand-footer .brand-text { font-size: 1.35rem; }
.footer-tag { color: var(--gold); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.12em; font-size: 0.85rem; margin: 16px 0 12px; }
.footer-desc { font-size: 0.95rem; color: #969ca3; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #cfd3d8; transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-3px); }
.footer-heading { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-list li, .footer-contact li { margin-bottom: 12px; font-size: 0.95rem; }
.footer-list a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact li i { color: var(--gold); margin-top: 4px; flex: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.88rem; color: #7e858d; }
.footer-bottom a:hover { color: var(--gold); }

/* ------------------------------------------------------------- whatsapp */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px;
    background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center;
    font-size: 1.7rem; box-shadow: 0 10px 26px rgba(37,211,102,0.45); transition: all 0.3s var(--ease);
}
.whatsapp-float:hover { background: #1ebe5b; transform: scale(1.08); }
.whatsapp-float::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------------------------------------------------------- scroll reveal */
/* Only hide when JS is active so content is never lost without JavaScript. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------- responsive */
@media (max-width: 980px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .gallery-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    .container { padding-inline: 18px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .check-list.two { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .gallery-grid, .video-grid { grid-template-columns: 1fr; }
    .tile.wide, .tile.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
    .form-card { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-row .btn { width: 100%; }
    .hero-trust { gap: 20px; }
}

/* =============================================================================
   Swiper carousels (work showcase + reviews)
   ========================================================================== */
.work-swiper, .reviews-section { --swiper-theme-color: var(--gold); }

.work-carousel { max-width: 1320px; margin: 0 auto; padding-inline: 24px; }
.work-swiper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.work-slide { position: relative; }
.work-slide img { width: 100%; height: clamp(320px, 54vw, 580px); object-fit: cover; display: block; }
.work-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 44px 38px; color: #fff;
    background: linear-gradient(transparent, rgba(12,13,14,0.55) 45%, rgba(12,13,14,0.92));
}
.work-caption h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.01em; }
.work-caption p { color: var(--gold-light); margin-top: 6px; font-size: 1.05rem; }

.work-swiper .swiper-button-prev, .work-swiper .swiper-button-next {
    width: 54px; height: 54px; border-radius: 50%; color: #fff;
    background: rgba(17,19,21,0.5); backdrop-filter: blur(4px); transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.work-swiper .swiper-button-prev:hover, .work-swiper .swiper-button-next:hover { background: var(--gold); color: #1a1a1a; }
.work-swiper .swiper-button-prev::after, .work-swiper .swiper-button-next::after { font-size: 1.15rem; font-weight: 800; }
.work-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.55; width: 9px; height: 9px; transition: all 0.3s var(--ease); }
.work-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 26px; border-radius: 5px; }

/* reviews */
.reviews-wrap { position: relative; }
.reviews-swiper { padding-bottom: 6px; }
.reviews-swiper .swiper-slide { height: auto; display: flex; }
.reviews-swiper .testi { width: 100%; }
.reviews-controls { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 36px; }
.reviews-controls .swiper-button-prev, .reviews-controls .swiper-button-next {
    position: static; margin: 0; width: 46px; height: 46px; border-radius: 50%;
    background: var(--ink); color: #fff; transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.reviews-controls .swiper-button-prev:hover, .reviews-controls .swiper-button-next:hover { background: var(--gold); color: #1a1a1a; }
.reviews-controls .swiper-button-prev::after, .reviews-controls .swiper-button-next::after { font-size: 0.9rem; font-weight: 800; }
.reviews-controls .swiper-pagination { position: static; width: auto; display: flex; align-items: center; gap: 8px; }
.reviews-controls .swiper-pagination-bullet { background: var(--line); opacity: 1; width: 9px; height: 9px; }
.reviews-controls .swiper-pagination-bullet-active { background: var(--gold); width: 26px; border-radius: 5px; }

/* =============================================================================
   Lightbox media grid (gallery)
   ========================================================================== */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.media-grid.videos { gap: 22px; margin-bottom: 8px; }
.media-item {
    position: relative; display: block; overflow: hidden; border-radius: var(--radius);
    aspect-ratio: 4/3; box-shadow: var(--shadow-sm); cursor: pointer; background: var(--ink-2);
}
.media-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.media-item:hover img { transform: scale(1.07); }
.media-item .media-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; color: #fff;
    font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; z-index: 2;
    background: linear-gradient(transparent, rgba(12,13,14,0.85));
}
.media-item .play {
    position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; z-index: 2;
    display: grid; place-items: center; border-radius: 50%; background: rgba(212,175,55,0.94);
    color: #1a1a1a; font-size: 1.3rem; box-shadow: 0 10px 26px rgba(0,0,0,0.4);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.media-item .play i { margin-left: 4px; }
.media-item.is-video:hover .play { transform: scale(1.12); background: var(--gold); }
.glightbox-clean .gslide-description { background: var(--ink); }
.glightbox-clean .gdesc-inner { color: #e9ebee; }

@media (max-width: 820px) {
    .media-grid, .media-grid.videos { grid-template-columns: repeat(2, 1fr); }
    .work-caption { padding: 50px 24px 24px; }
}
@media (max-width: 560px) {
    .media-grid, .media-grid.videos { grid-template-columns: 1fr; }
    .work-carousel { padding-inline: 16px; }
}
