/* ============================================================
   FALCONEDGE — Royal Cream & Brown Palette
   Light, readable, premium. Built for new business owners.
============================================================ */

:root {
    /* Background tones */
    --c-bg:           #faf6ef;   /* warm cream */
    --c-bg-pure:      #ffffff;   /* card whites */
    --c-bg-warm:      #f4ecdd;   /* sand */
    --c-bg-deeper:    #ece1cc;   /* deeper sand */

    /* Navy (from logo) */
    --c-navy:         #0d1f3c;   /* deep royal navy */
    --c-navy-soft:    #1a2f52;
    --c-navy-light:   #2c4570;

    /* Brown family */
    --c-brown:        #5c3a1e;   /* rich chocolate */
    --c-brown-warm:   #8b5a2b;   /* cognac */
    --c-brown-light:  #b08855;   /* tan */

    /* Gold (from logo) */
    --c-gold:         #c89a5e;
    --c-gold-bright:  #e8c992;
    --c-gold-deep:    #a87a4a;
    --c-gold-glow:    rgba(200, 154, 94, 0.18);

    /* Lines */
    --c-line:         #e0d5c0;
    --c-line-strong:  #c4b395;

    /* Text */
    --c-text:         #1a1410;
    --c-text-body:    #3d2f24;
    --c-text-muted:   #7a6855;
    --c-text-faint:   #a39684;
    --c-text-light:   #faf6ef;   /* for dark sections */

    /* Type */
    --f-display: 'Fraunces', 'Times New Roman', serif;
    --f-body:    'Manrope', system-ui, sans-serif;
    --f-mono:    'JetBrains Mono', ui-monospace, monospace;

    /* Spacing */
    --s-4: 1rem; --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem; --s-10: 8rem;

    --container: 1320px;
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-body);
    background: var(--c-bg);
    color: var(--c-text-body);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Custom cursor (desktop only) ---------- */
.cursor, .cursor-trail {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    border-radius: 50%; transition: opacity 0.3s, transform 0.2s var(--ease-out); opacity: 0;
}
.cursor { width: 8px; height: 8px; background: var(--c-navy); transform: translate(-50%, -50%); }
.cursor-trail {
    width: 36px; height: 36px;
    border: 1.5px solid var(--c-gold-deep);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.4s var(--ease-out), width 0.3s, height 0.3s, background 0.3s;
}
.cursor-trail.hover { width: 64px; height: 64px; background: rgba(200, 154, 94, 0.12); border-color: var(--c-gold); }
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    .cursor, .cursor-trail { opacity: 1; }
}

/* ---------- Page loader with logo ---------- */
.page-loader {
    position: fixed; inset: 0;
    background: var(--c-bg);
    z-index: 10000;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.page-loader.gone { opacity: 0; visibility: hidden; }
.loader-logo {
    width: clamp(180px, 28vw, 320px);
    height: auto;
    opacity: 0;
    transform: scale(0.96);
    animation: loaderLogo 1.2s var(--ease-out) forwards;
    filter: drop-shadow(0 12px 40px rgba(13, 31, 60, 0.15));
}
@keyframes loaderLogo {
    0% { opacity: 0; transform: scale(0.94); }
    100% { opacity: 1; transform: scale(1); }
}
.loader-bar {
    width: 220px; height: 2px;
    background: var(--c-line);
    overflow: hidden;
    border-radius: 2px;
}
.loader-bar-fill {
    height: 100%; background: linear-gradient(90deg, var(--c-gold), var(--c-gold-deep));
    width: 0;
    animation: loaderFill 1.4s var(--ease-out) 0.4s forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ---------- Container ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* ============================================================
   OFFER BANNER (sticky top)
============================================================ */
.offer-banner {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-navy-soft) 100%);
    color: var(--c-text-light);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--c-gold-deep);
}
.offer-banner-inner {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.88rem;
}
.offer-pulse {
    width: 8px; height: 8px;
    background: var(--c-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--c-gold);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.4); }
}
.offer-text { flex: 1; }
.offer-text strong { color: var(--c-gold-bright); }
.offer-text em { color: var(--c-gold); font-style: normal; font-family: var(--f-mono); font-size: 0.85rem; }
.offer-cta {
    color: var(--c-bg);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border: 1px solid var(--c-gold);
    border-radius: 100px;
    background: var(--c-gold-deep);
    transition: all 0.3s;
    white-space: nowrap;
}
.offer-cta:hover { background: var(--c-gold); border-color: var(--c-gold-bright); }
.offer-close {
    color: var(--c-bg-warm);
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0 0.25rem;
}
.offer-close:hover { opacity: 1; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(250, 246, 239, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}
.offer-banner + .nav { top: auto; }
.nav.scrolled {
    background: rgba(250, 246, 239, 0.94);
    border-bottom-color: var(--c-line);
    padding: 0.6rem 0;
}
.nav-inner {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand {
    display: flex; align-items: center;
    transition: transform 0.3s var(--ease-out);
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
    height: 44px;
    width: auto;
    transition: height 0.3s;
}
.nav.scrolled .brand-logo { height: 36px; }

.nav-links {
    display: flex; gap: 2.2rem;
    font-size: 0.92rem; font-weight: 500;
}
.nav-links a {
    position: relative; padding: 0.4rem 0;
    color: var(--c-text-body);
    transition: color 0.25s;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--c-gold-deep);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--c-navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: var(--c-navy);
    color: var(--c-bg);
    border-radius: 100px;
    font-size: 0.88rem; font-weight: 600;
    transition: all 0.3s var(--ease-out);
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--c-gold-deep);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
}
.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { color: var(--c-bg); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-navy); transition: all 0.3s; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 1rem 1.7rem;
    font-family: var(--f-body);
    font-size: 0.95rem; font-weight: 600;
    border-radius: 100px;
    transition: all 0.35s var(--ease-out);
    position: relative; overflow: hidden;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.btn-lg { padding: 1.2rem 2rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--c-navy);
    color: var(--c-bg);
    box-shadow: 0 6px 20px -6px rgba(13, 31, 60, 0.3);
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--c-gold-deep), var(--c-gold));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(200, 154, 94, 0.4); color: var(--c-bg); }

.btn-ghost {
    background: transparent;
    color: var(--c-navy);
    border-color: var(--c-navy);
}
.btn-ghost:hover {
    background: var(--c-navy);
    color: var(--c-bg);
}

.btn-ghost-light {
    background: transparent;
    color: var(--c-text-light);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
    background: var(--c-bg);
    color: var(--c-navy);
    border-color: var(--c-bg);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    padding: 5rem 0 4rem;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-video-wrap { position: absolute; inset: -5%; z-index: -2; }
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.7) brightness(1.05);
    opacity: 0.18;
}
.hero-video-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(200, 154, 94, 0.08), transparent 70%),
        linear-gradient(180deg, rgba(250,246,239,0.5) 0%, rgba(250,246,239,0.85) 100%);
}

.hero-content {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    position: relative;
}

.hero-flag {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.55rem 1.1rem;
    background: var(--c-navy);
    color: var(--c-text-light);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px -8px rgba(13, 31, 60, 0.25);
}
.hero-flag strong { color: var(--c-gold-bright); font-weight: 700; }
.flag-dot {
    width: 8px; height: 8px;
    background: var(--c-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--c-gold);
    animation: pulse 1.6s ease-in-out infinite;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--c-navy);
    max-width: 22ch;
}
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.reveal-line > span {
    display: block;
    transform: translateY(110%);
    animation: revealLine 1s var(--ease-out) forwards;
}
.reveal-line:nth-child(1) > span { animation-delay: 0.5s; }
.reveal-line:nth-child(2) > span { animation-delay: 0.65s; }
.reveal-line:nth-child(3) > span { animation-delay: 0.8s; }
@keyframes revealLine { to { transform: translateY(0); } }

.italic {
    font-style: italic;
    color: var(--c-brown-warm);
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--c-text-body);
    max-width: 40rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Countdown */
.hero-countdown, .lh-countdown {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    display: inline-flex; flex-direction: column; gap: 0.85rem;
    margin-bottom: 3rem;
    max-width: 480px;
    box-shadow: 0 10px 30px -10px rgba(13, 31, 60, 0.08);
}
.cd-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-text-muted);
}
.cd-blocks {
    display: flex; align-items: baseline;
    gap: 0.5rem;
}
.cd-block {
    display: flex; flex-direction: column; align-items: center;
    min-width: 64px;
    padding: 0.5rem 0.75rem;
    background: var(--c-bg-warm);
    border-radius: 6px;
}
.cd-num {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    color: var(--c-navy);
    font-variant-numeric: tabular-nums;
}
.cd-unit {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-muted);
    margin-top: 0.2rem;
}
.cd-sep {
    font-size: 1.5rem;
    color: var(--c-gold-deep);
    font-weight: 300;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    max-width: 720px;
}
.meta-item {
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--c-line);
}
.meta-item:last-child { border-right: none; }
.meta-num {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--c-navy);
    line-height: 1;
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.meta-sm { font-size: 0.6em; color: var(--c-text-muted); margin-left: 0.1em; }
.meta-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
}

/* Reveal helpers */
.reveal {
    opacity: 0; transform: translateY(20px);
    animation: revealFade 1s var(--ease-out) forwards;
}
.hero-flag.reveal      { animation-delay: 0.2s; }
.hero-sub.reveal       { animation-delay: 1.0s; }
.hero-ctas.reveal      { animation-delay: 1.15s; }
.hero-countdown.reveal { animation-delay: 1.25s; }
.hero-meta.reveal      { animation-delay: 1.4s; }
@keyframes revealFade { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   BRAND STRIP — Trusted logos
============================================================ */
.brand-strip {
    background: var(--c-bg-pure);
    padding: 3rem 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.brand-strip-label {
    text-align: center;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
}
.brand-strip-logos {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 2.5rem 4rem;
}
.brand-wordmark {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: -0.02em;
    opacity: 0.55;
    transition: opacity 0.3s, color 0.3s;
}
.brand-wordmark:hover { opacity: 1; color: var(--c-brown-warm); }

/* ============================================================
   SECTIONS — common
============================================================ */
.section { padding: var(--s-10) 0; position: relative; }
.section-head { margin-bottom: 4rem; max-width: 60rem; }
.section-head.text-center { margin-inline: auto; text-align: center; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    color: var(--c-gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
}
.section-head.text-center .section-eyebrow { justify-content: center; }
.section-eyebrow i {
    display: inline-block; width: 32px; height: 2px;
    background: var(--c-gold-deep);
}
.section-eyebrow.light { color: var(--c-gold-bright); }
.section-eyebrow.light i { background: var(--c-gold-bright); }
.section-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 400;
    color: var(--c-navy);
}
.section-title.light { color: var(--c-text-light); }
.section-title.text-center { text-align: center; }
.section-sub {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--c-text-body);
    max-width: 44rem;
    line-height: 1.65;
}
.section-head.text-center .section-sub { margin-inline: auto; }

/* Scroll-triggered reveal */
.reveal-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   WHY US
============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.why-card {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-gold);
    box-shadow: 0 24px 50px -20px rgba(13, 31, 60, 0.12);
}
.why-num {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    color: var(--c-gold-deep);
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
}
.why-icon {
    width: 48px; height: 48px;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}
.why-card:hover .why-icon { color: var(--c-gold-deep); }
.why-card h3 {
    font-family: var(--f-display);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--c-navy);
    line-height: 1.15;
}
.why-card p {
    color: var(--c-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   ABOUT — Two column
============================================================ */
.about {
    background: var(--c-bg-warm);
    position: relative;
    overflow: hidden;
}
.about-bg {
    position: absolute;
    inset: -10% 0;
    background-image: var(--about-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: grayscale(0.5);
    z-index: 0;
}
.about > .container { position: relative; z-index: 1; }
.about-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.about-lead {
    font-size: 1.1rem;
    color: var(--c-text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 38rem;
}
.about-points {
    display: flex; flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--c-line-strong);
    padding-top: 2rem;
}
.about-points li {
    display: flex; align-items: baseline; gap: 1.5rem;
}
.about-num {
    font-family: var(--f-display);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--c-gold-deep);
    letter-spacing: -0.03em;
    min-width: 100px;
    line-height: 1;
}
.about-text {
    color: var(--c-text-body);
    font-size: 1.02rem;
}

.about-clients {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px -20px rgba(13, 31, 60, 0.1);
}
.about-clients-title {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-gold-deep);
    margin-bottom: 1.75rem;
    font-weight: 500;
}
.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.client-card {
    padding: 1rem 1.25rem;
    background: var(--c-bg-warm);
    border-radius: 6px;
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-navy);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.client-card:hover {
    background: var(--c-navy);
    color: var(--c-bg);
    border-color: var(--c-gold);
}
.about-clients-foot {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================================
   CTA BANNERS
============================================================ */
.cta-banner {
    background: var(--c-navy);
    color: var(--c-text-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 80% 50%, var(--c-gold-glow), transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(200, 154, 94, 0.08), transparent 70%);
    z-index: 0;
}
.cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    flex-wrap: wrap;
}
.cta-copy h3 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--c-gold-bright);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.cta-copy p {
    font-size: 1.05rem;
    color: var(--c-bg-warm);
    max-width: 38rem;
    line-height: 1.6;
}
.cta-banner .btn-primary { background: var(--c-gold-deep); }
.cta-banner .btn-primary::before { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-bright)); }

/* Dark closing CTA (full bleed) */
.cta-banner-dark {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--c-navy) 0%, #0a1830 100%);
}
.cta-bg {
    position: absolute;
    inset: -10% 0;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.6) contrast(1.2);
    z-index: 0;
}
.cta-inner-stack {
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.cta-final-sub {
    font-size: 1.1rem;
    color: var(--c-bg-warm);
    max-width: 40rem;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}
.cta-final-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold), var(--c-gold-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-gold);
    box-shadow: 0 24px 50px -20px rgba(13, 31, 60, 0.12);
}
.service-card.featured {
    background: linear-gradient(135deg, var(--c-bg-pure) 0%, var(--c-bg-warm) 100%);
    border-color: var(--c-gold);
}
.service-icon {
    width: 56px; height: 56px;
    color: var(--c-navy);
    margin-bottom: 1.75rem;
    transition: color 0.3s;
}
.service-card:hover .service-icon { color: var(--c-gold-deep); }
.service-card h3 {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
    color: var(--c-navy);
}
.service-card p {
    color: var(--c-text-body);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* ============================================================
   PACKAGES
============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.pkg-card {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    display: flex; flex-direction: column;
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.pkg-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-gold);
    box-shadow: 0 30px 60px -20px rgba(13, 31, 60, 0.15);
}
.pkg-highlight {
    border-color: var(--c-gold);
    background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg-pure) 30%);
    box-shadow: 0 24px 50px -16px rgba(200, 154, 94, 0.25);
    transform: translateY(-4px);
}
.pkg-badge {
    position: absolute;
    top: -10px; right: 1.5rem;
    padding: 0.35rem 0.85rem;
    background: var(--c-navy);
    color: var(--c-gold-bright);
    font-family: var(--f-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid var(--c-gold-deep);
}
.pkg-name {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: var(--c-navy);
}
.pkg-tag {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}
.pkg-price {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-line);
}
.pkg-was {
    font-family: var(--f-mono);
    font-size: 0.85rem;
    color: var(--c-text-faint);
    text-decoration: line-through;
    text-decoration-color: var(--c-brown-warm);
}
.pkg-now {
    display: flex; align-items: baseline; gap: 0.3rem;
    margin-top: 0.25rem;
}
.pkg-cur {
    font-family: var(--f-mono);
    font-size: 0.85rem;
    color: var(--c-text-muted);
}
.pkg-amount {
    font-family: var(--f-display);
    font-size: 2rem;
    color: var(--c-navy);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.pkg-save {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    color: var(--c-gold-deep);
    background: var(--c-bg-warm);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.pkg-desc {
    color: var(--c-text-body);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.92rem;
}
.pkg-meta {
    display: flex; gap: 1rem;
    margin-bottom: 1.25rem;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    color: var(--c-text-muted);
}
.pkg-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.pkg-features {
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex; flex-direction: column;
    gap: 0.6rem;
}
.pkg-features li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--c-text-body);
    line-height: 1.45;
}
.pkg-features svg {
    width: 14px; height: 14px;
    color: var(--c-gold-deep);
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.pkg-cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--c-navy);
    border-radius: 100px;
    color: var(--c-navy);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    margin-top: auto;
}
.pkg-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.pkg-cta:hover {
    background: var(--c-navy);
    color: var(--c-bg);
}
.pkg-cta:hover svg { transform: translateX(4px); }
.pkg-highlight .pkg-cta {
    background: var(--c-navy);
    color: var(--c-bg);
}
.pkg-highlight .pkg-cta:hover {
    background: var(--c-gold-deep);
    border-color: var(--c-gold-deep);
}

/* ============================================================
   HOSTING
============================================================ */
.hosting { background: var(--c-bg-pure); }
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hosting-card {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 10px;
    padding: 2.25rem 1.85rem;
    display: flex; flex-direction: column;
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.hosting-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-gold);
    box-shadow: 0 24px 50px -20px rgba(13, 31, 60, 0.12);
}
.hosting-highlight {
    border-color: var(--c-navy);
    background: linear-gradient(180deg, var(--c-navy) 0%, #1a2f52 100%);
    color: var(--c-text-light);
}
.hosting-highlight .pkg-cta {
    background: var(--c-gold-deep);
    border-color: var(--c-gold-deep);
    color: var(--c-bg);
}
.hosting-highlight .pkg-cta:hover { background: var(--c-gold); border-color: var(--c-gold); }
.hosting-highlight .pkg-features li,
.hosting-highlight .hosting-name,
.hosting-highlight .hosting-price { color: var(--c-bg-warm); }
.hosting-highlight .pkg-features svg { color: var(--c-gold-bright); }
.hosting-highlight .hosting-tag { color: var(--c-gold-bright); }
.hosting-name {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.hosting-tag {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}
.hosting-price {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-line);
    letter-spacing: -0.02em;
}
.hosting-highlight .hosting-price { border-bottom-color: rgba(255,255,255,0.1); }

/* ============================================================
   WORK — Asymmetric grid
============================================================ */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
}
.work-tall { grid-row: span 2; }
.work-wide { grid-column: span 2; }
.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end;
    padding: 2rem;
    transition: all 0.5s var(--ease-out);
    isolation: isolate;
}
.work-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13, 31, 60, 0.05) 0%, rgba(13, 31, 60, 0.92) 100%);
    z-index: 0;
    transition: opacity 0.4s;
}
.work-item:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(13, 31, 60, 0.3); }
.work-meta { position: relative; z-index: 1; color: var(--c-text-light); }
.work-cat {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-gold-bright);
    margin-bottom: 0.7rem;
}
.work-meta h3 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
}
.work-meta p {
    font-size: 0.9rem;
    color: rgba(250, 246, 239, 0.85);
    line-height: 1.5;
    max-width: 28rem;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--c-bg-warm); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.t-card {
    padding: 2.5rem;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    background: var(--c-bg-pure);
    transition: all 0.4s var(--ease-out);
    display: flex; flex-direction: column;
    gap: 1.5rem;
}
.t-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-gold);
    box-shadow: 0 24px 50px -20px rgba(13, 31, 60, 0.12);
}
.t-stars {
    color: var(--c-gold-deep);
    letter-spacing: 0.18em;
    font-size: 1.1rem;
}
.t-card blockquote {
    font-family: var(--f-display);
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--c-navy);
    font-weight: 400;
    flex: 1;
    font-style: italic;
}
.t-card figcaption {
    border-top: 1px solid var(--c-line);
    padding-top: 1.25rem;
    display: flex; flex-direction: column;
    gap: 0.25rem;
    font-style: normal;
}
.t-card strong {
    color: var(--c-navy);
    font-weight: 600;
    font-size: 0.95rem;
}
.t-card span {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    font-family: var(--f-mono);
}

/* ============================================================
   LANDING PAGE (start-project.php)
============================================================ */
.landing-page { background: var(--c-bg-pure); }
.landing-hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
    isolation: isolate;
}
.lh-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.lh-mesh {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
}
.lh-mesh:first-child {
    top: -200px; right: -200px;
    background: radial-gradient(circle, var(--c-gold) 0%, transparent 70%);
}
.lh-mesh-2 {
    bottom: -200px; left: -200px;
    background: radial-gradient(circle, var(--c-navy-light) 0%, transparent 70%);
    opacity: 0.2;
}
.lh-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.lh-flag {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.55rem 1.1rem;
    background: var(--c-bg-pure);
    border: 1.5px solid var(--c-gold);
    color: var(--c-navy);
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 24px -8px rgba(200, 154, 94, 0.3);
}
.lh-flag strong { color: var(--c-gold-deep); }
.lh-flag .sep { color: var(--c-text-faint); }
.lh-slots {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    color: var(--c-brown-warm);
    font-weight: 600;
}
.lh-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--c-navy);
}
.lh-sub {
    font-size: 1.1rem;
    color: var(--c-text-body);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 38rem;
}
.lh-sub strong { color: var(--c-navy); font-weight: 700; }
.lh-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: var(--c-bg-warm);
    border-radius: 10px;
    border: 1px solid var(--c-line);
}
.lh-benefits li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--c-text-body);
    line-height: 1.45;
}
.lh-benefits svg {
    width: 18px; height: 18px;
    color: var(--c-gold-deep);
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.lh-trust {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-line);
}
.lh-trust-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}
.lh-trust-logos {
    display: flex; flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}
.lh-trust-logos span {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--c-navy);
    opacity: 0.55;
    letter-spacing: -0.01em;
}

/* Form card */
.lh-form-wrap {
    position: sticky;
    top: 6rem;
}
.lh-form-card {
    background: var(--c-bg-pure);
    border: 1px solid var(--c-line);
    border-radius: 14px;
    padding: 2.25rem;
    box-shadow: 0 30px 70px -20px rgba(13, 31, 60, 0.15);
}
.lh-form-head { margin-bottom: 1.75rem; }
.lh-form-head h2 {
    font-family: var(--f-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.lh-form-head p {
    color: var(--c-text-muted);
    font-size: 0.92rem;
}

.lh-strip {
    background: var(--c-bg-warm);
    padding: 2rem 0;
    border-top: 1px solid var(--c-line);
}
.lh-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.lh-strip-item {
    text-align: center;
    display: flex; flex-direction: column;
    gap: 0.3rem;
}
.lh-strip-item strong {
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: -0.01em;
}
.lh-strip-item span {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
}

/* ============================================================
   FORM
============================================================ */
.enquiry-form {
    display: flex; flex-direction: column;
    gap: 1.1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    font-weight: 500;
}
.field input, .field select, .field textarea {
    padding: 0.85rem 1rem;
    background: var(--c-bg);
    border: 1.5px solid var(--c-line);
    border-radius: 6px;
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 0.95rem;
    transition: all 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--c-gold-deep);
    background: var(--c-bg-pure);
    box-shadow: 0 0 0 4px var(--c-gold-glow);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-text-faint); }
.field textarea { resize: vertical; min-height: 90px; font-family: var(--f-body); }
.field select {
    cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a87a4a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}
.form-note {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* ============================================================
   THANKS PAGE
============================================================ */
.thanks {
    min-height: 80vh;
    display: flex; align-items: center;
    padding: 6rem 0 4rem;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, var(--c-gold-glow), transparent 70%),
        var(--c-bg);
}
.thanks-wrap {
    text-align: center;
    max-width: 44rem;
    margin-inline: auto;
}
.thanks-icon {
    color: var(--c-gold-deep);
    width: 80px; height: 80px;
    margin: 0 auto 2rem;
    animation: thankPulse 2s ease-in-out infinite;
}
@keyframes thankPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.05); opacity: 0.92; }
}
.thanks-wrap .section-eyebrow { justify-content: center; }
.thanks-lead {
    font-size: 1.15rem;
    color: var(--c-text-body);
    line-height: 1.65;
    margin: 2rem 0 2.5rem;
}
.thanks-ctas {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--c-navy);
    color: var(--c-bg-warm);
    padding: 5rem 0 2rem;
}
.footer-grid {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand { max-width: 26rem; }
.footer-logo {
    height: 50px; width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.05);
}
.footer-tag {
    color: var(--c-bg-warm);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.footer-address {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    color: var(--c-gold-bright);
    letter-spacing: 0.05em;
}
.footer-col h4 {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-col a {
    display: block;
    padding: 0.45rem 0;
    color: var(--c-bg-warm);
    font-size: 0.92rem;
    opacity: 0.7;
    transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.footer-col a:hover { opacity: 1; color: var(--c-gold-bright); transform: translateX(3px); }
.footer-bottom {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 154, 94, 0.18);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
    color: var(--c-bg-warm);
    opacity: 0.65;
    flex-wrap: wrap; gap: 1rem;
}
.footer-mono { font-family: var(--f-mono); letter-spacing: 0.05em; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hosting-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-tall, .work-wide { grid-row: auto; grid-column: auto; }
    .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .lh-grid { grid-template-columns: 1fr; gap: 3rem; }
    .lh-form-wrap { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .lh-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    :root { --s-10: 5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links.open {
        display: flex;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--c-bg);
        padding: 2rem 2.5rem;
        gap: 1rem;
        border-top: 1px solid var(--c-line);
        backdrop-filter: blur(20px);
    }
    .offer-banner-inner { font-size: 0.78rem; flex-wrap: wrap; }
    .offer-cta { padding: 0.3rem 0.7rem; font-size: 0.78rem; }
    .hero { min-height: auto; padding: 3rem 0; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .meta-item:nth-child(2) { border-right: none; }
    .meta-item:nth-child(1), .meta-item:nth-child(2) { border-bottom: 1px solid var(--c-line); }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .lh-benefits { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lh-form-card { padding: 1.5rem; }
    .cta-inner { flex-direction: column; text-align: center; gap: 2rem; }
    .nav-cta span { display: none; }
    .nav-cta { padding: 0.6rem 0.85rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cd-block { min-width: 56px; padding: 0.4rem 0.5rem; }
    .cd-num { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-video { display: none; }
}
