/* =============================================
   VARIABLES
============================================= */
:root {
    --black:        #050908;
    --dark:         #0b1710;
    --forest:       #0e2416;
    --green:        #1b643a;
    --green-mid:    #268a50;
    --green-bright: #4aba6a;
    --teal:         #1a7a68;
    --white:        #f0f8f2;
    --off-white:    #c4d8c6;
    --muted:        #6a8870;
    --border:       rgba(74,186,106,0.14);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

/* =============================================
   UTILITIES
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); box-shadow: 0 8px 28px rgba(38,138,80,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(240,248,242,0.38); }
.btn-outline:hover { border-color: var(--white); background: rgba(240,248,242,0.06); }
.btn-lime { background: var(--green-bright); color: var(--black); border-color: var(--green-bright); }
.btn-lime:hover { background: #5fcc7d; box-shadow: 0 8px 28px rgba(74,186,106,0.35); }

/* Visually hidden but accessible — used for the Netlify Forms honeypot field */
.visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVIGATION
============================================= */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(5,9,8,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 12px 32px;
    max-width: 1200px; margin: 0 auto; position: relative;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo { height: 34px; width: auto; border-radius: 4px; }
.nav-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
    font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.84rem;
    color: var(--off-white); letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 7px;
}
.nav-phone i { color: var(--green-bright); font-size: 0.7rem; }
.nav-phone:hover { color: var(--white); }
.nav-cta-btn {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.78rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 8px 18px; background: var(--green); color: var(--white);
    border-radius: 3px; transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--green-mid); color: var(--white); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; }
.nav-mobile {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,9,8,0.98); border-bottom: 1px solid var(--border);
    padding: 10px 0; z-index: 600;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-family: 'Oswald', sans-serif; font-size: 0.92rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--off-white);
    padding: 12px 28px; border-bottom: 1px solid rgba(74,186,106,0.07);
    display: flex; align-items: center; gap: 10px;
}
.nav-mobile a:hover { color: var(--white); background: rgba(74,186,106,0.05); }

/* =============================================
   HERO  — action shot background, business card as floating widget
============================================= */
.hero {
    min-height: 100vh;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 100px;
    overflow: hidden;
}
/* Atmospheric dark overlay — lets the plate colours breathe through */
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        155deg,
        rgba(5,10,6,0.85)  0%,
        rgba(8,16,14,0.72) 35%,
        rgba(7,13,22,0.76) 65%,
        rgba(5,8,6,0.90)   100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
}
.hero-location {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--green-bright); margin-bottom: 18px;
    animation: fadeUp 0.7s ease both;
}
.hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 13rem);
    letter-spacing: clamp(3px, 1.5vw, 14px);
    line-height: 0.88;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 60px rgba(0,0,0,0.3);
    animation: fadeDown 0.8s 0.1s ease both;
}
.hero-h1-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 13rem);
    letter-spacing: clamp(3px, 1.5vw, 14px);
    line-height: 0.88;
    color: rgba(240,248,242,0.82);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    animation: fadeUp 0.8s 0.15s ease both;
}
.hero-divider {
    width: 60px; height: 2px;
    background: var(--green-bright);
    margin: 24px auto;
    animation: fadeUp 0.7s 0.3s ease both;
}
.hero-tagline {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--off-white); margin-bottom: 44px;
    animation: fadeUp 0.7s 0.4s ease both;
}
.hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.7s 0.5s ease both;
}
/* Hero scroll cue */
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; flex-direction: column;
    align-items: center; gap: 5px;
    color: rgba(200,220,205,0.3); font-family: 'Oswald', sans-serif;
    font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
    animation: bounce 2.4s 1.8s infinite;
}
.hero-scroll i { font-size: 0.85rem; }

/* Floating video preview card — bottom-right corner */
.hero-vid-card {
    position: absolute; bottom: 36px; right: 40px;
    width: 252px; border-radius: 8px; overflow: hidden;
    background: rgba(5,9,8,0.86);
    border: 1px solid rgba(74,186,106,0.22);
    backdrop-filter: blur(10px); cursor: pointer; z-index: 10;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    animation: fadeUp 0.8s 0.9s ease both;
}
.hero-vid-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74,186,106,0.5);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.hvc-thumb {
    width: 100%; height: 142px;
    background-size: cover; background-position: center;
    position: relative;
}
.hvc-overlay {
    position: absolute; inset: 0;
    background: rgba(5,9,8,0.38);
    display: flex; align-items: center; justify-content: center;
}
.hvc-play {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 2px solid rgba(255,255,255,0.55);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.hvc-play i { color: white; font-size: 0.95rem; margin-left: 3px; }
.hero-vid-card:hover .hvc-play { background: rgba(255,255,255,0.22); border-color: white; transform: scale(1.08); }
.hvc-label {
    padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.hvc-title {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--off-white);
}
.hvc-yt { color: #ff4444; font-size: 0.9rem; }

/* Floating business card — bottom-left corner */
.hero-biz-card {
    position: absolute; bottom: 36px; left: 40px;
    width: 200px; border-radius: 6px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06);
    transform: rotate(-3deg);
    transition: transform 0.35s, box-shadow 0.35s;
    z-index: 10;
    animation: fadeUp 0.8s 1.0s ease both;
    cursor: default;
}
.hero-biz-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.7), 0 0 0 1px rgba(74,186,106,0.2);
}
.hero-biz-card img { width: 100%; display: block; }

/* Mobile: hide video card, show text link */
.hero-watch-link {
    display: none;
    align-items: center; gap: 8px;
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--green-bright); margin-top: 16px;
    cursor: pointer;
}
.hero-watch-link i { font-size: 0.7rem; }


/* =============================================
   MARQUEE BAND — two tracks, opposite directions
============================================= */
.marquee-band {
    background: var(--black);
    border-top: 1px solid rgba(74,186,106,0.12);
    border-bottom: 1px solid rgba(74,186,106,0.12);
    overflow: hidden;
    padding: 7px 0;
}
.mq-row { overflow: hidden; padding: 5px 0; }
.mq-animated { display: flex; width: max-content; }
.mq-track {
    display: flex; align-items: center;
    gap: 36px; padding-right: 36px;
    flex-shrink: 0;
}
.mq-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem; letter-spacing: 3px;
    color: rgba(240,248,242,0.7); white-space: nowrap;
}
.mq-sep { color: var(--green-bright); font-size: 0.55rem; flex-shrink: 0; }
.mq-fwd { animation: mq-fwd 26s linear infinite; }
.mq-rev { animation: mq-rev 34s linear infinite; }
@keyframes mq-fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* =============================================
   SERVICES — full-width alternating 90vh sections
============================================= */
.svc-section {
    display: flex; min-height: 90vh;
    position: relative; overflow: hidden;
}
.svc-section.reversed { flex-direction: row-reverse; }
.svc-content-panel {
    width: 55%; padding: 100px 80px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
}
.svc-section:first-of-type .svc-content-panel { background: #0a1b12; }
.svc-section.reversed .svc-content-panel { background: #090f1b; }
.svc-img-panel { width: 45%; position: relative; overflow: hidden; }
.svc-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    animation: kb 14s ease-in-out alternate infinite;
}
@keyframes kb { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.svc-img-dim {
    position: absolute; inset: 0;
    background: rgba(5,9,8,0.22);
}
/* Ghost number behind content */
.svc-ghost {
    position: absolute; top: 20px; right: 32px;
    font-family: 'Bebas Neue', sans-serif; font-size: 14rem; line-height: 1;
    color: rgba(74,186,106,0.05); user-select: none; pointer-events: none;
    transition: color 0.4s;
}
.svc-section:hover .svc-ghost { color: rgba(74,186,106,0.09); }
.svc-icon-box {
    width: 52px; height: 52px; border-radius: 8px;
    border: 1px solid rgba(74,186,106,0.28);
    background: rgba(74,186,106,0.07);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.svc-icon-box i { color: var(--green-bright); font-size: 1.2rem; }
.svc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    letter-spacing: 2px; line-height: 1; color: var(--white);
    margin: 8px 0 22px;
}
.svc-desc {
    color: var(--muted); font-size: 0.9rem;
    line-height: 1.85; max-width: 420px; margin-bottom: 28px;
}
.svc-list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--off-white); font-size: 0.84rem; padding: 5px 0;
    border-bottom: 1px solid rgba(74,186,106,0.07);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li i { color: var(--green-bright); font-size: 0.55rem; flex-shrink: 0; }

/* =============================================
   STATEMENT — full-width staircase typography
============================================= */
.statement {
    padding: 96px 56px 80px;
    background: #030504;
    overflow: hidden;
}
.s-lines { margin-bottom: 44px; }
.s-line {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5.5rem, 16vw, 18rem);
    line-height: 0.88; letter-spacing: 2px;
    color: var(--white);
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.s-line.visible { opacity: 1; transform: translateY(0); }
.s-l1 { text-align: left; }
.s-l2 { text-align: center; }
.s-l3 { text-align: right; color: var(--green-bright); }
.s-rule {
    width: 100%; height: 1px;
    background: rgba(74,186,106,0.15); margin-bottom: 28px;
}
.s-attr {
    display: flex; align-items: flex-start; justify-content: flex-end;
    gap: 4px; flex-direction: column; text-align: right;
}
.s-attr-quote {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    color: var(--off-white); font-style: italic;
}
.s-attr-name {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-top: 4px;
}

/* =============================================
   ABOUT / LEGACY — editorial pull quote
============================================= */
.legacy {
    background: var(--forest);
    padding: 120px 0;
    position: relative; overflow: hidden;
}
.legacy::after {
    content: '';
    position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(27,100,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.legacy-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.legacy-fn {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.64rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
}
.legacy-pull {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    letter-spacing: 1.5px; line-height: 1.08; color: var(--white);
    margin-bottom: 10px;
}
.legacy-pull span { color: var(--green-bright); }
.legacy-attr {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 36px;
}
.legacy-rule { width: 48px; height: 2px; background: var(--green); margin-bottom: 28px; }
.legacy-body {
    color: var(--muted); font-size: 0.92rem; line-height: 1.88; margin-bottom: 18px;
}
.legacy-body strong { color: var(--off-white); font-weight: 600; }

/* Right column: stats + social */
.legacy-stats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.l-stat {
    border-left: 3px solid var(--green);
    padding: 16px 24px; background: rgba(74,186,106,0.04);
}
.l-stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem;
    letter-spacing: 2px; color: var(--green-bright); line-height: 1; margin-bottom: 4px;
}
.l-stat-label {
    font-family: 'Oswald', sans-serif; font-size: 0.73rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--off-white);
}
.social-stack { display: flex; flex-direction: column; gap: 10px; }
.social-stack-label {
    font-family: 'Oswald', sans-serif; font-size: 0.64rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 6px;
}
.soc-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(74,186,106,0.04);
    border: 1px solid rgba(74,186,106,0.12); border-radius: 5px;
    color: var(--off-white); font-size: 0.84rem;
    transition: all 0.2s;
}
.soc-row:hover { background: rgba(74,186,106,0.09); border-color: rgba(74,186,106,0.28); color: var(--white); }
.soc-row i { font-size: 1rem; flex-shrink: 0; }
.soc-row i.fa-youtube { color: #ff4040; }
.soc-row i.fa-facebook-f { color: #4a8ef5; }

/* =============================================
   VIDEO SECTION — "WATCH US WORK"
============================================= */
.videos { background: var(--dark); padding: 100px 0; }
.videos-header { text-align: center; margin-bottom: 52px; }
.videos-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: 4px; color: var(--white);
    margin-bottom: 10px;
}
.videos-sub {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
}
.vthumb {
    position: relative; overflow: hidden; border-radius: 6px;
    display: block; cursor: pointer;
}
.vthumb-large { grid-row: span 2; }
.vt-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.55s ease;
}
.vthumb:hover .vt-bg { transform: scale(1.06); }
.vt-dim {
    position: absolute; inset: 0;
    background: rgba(5,9,8,0.5);
    transition: background 0.3s;
}
.vthumb:hover .vt-dim { background: rgba(5,9,8,0.36); }
.vt-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.vt-play {
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.vt-play i { color: white; font-size: 1.1rem; margin-left: 4px; }
.vthumb:hover .vt-play { background: rgba(255,255,255,0.2); border-color: white; transform: scale(1.1); }
.vthumb-large .vt-play { width: 72px; height: 72px; }
.vthumb-large .vt-play i { font-size: 1.4rem; }
.vt-label {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.78); text-align: center; padding: 0 16px;
}
.vt-yt-badge {
    position: absolute; bottom: 12px; left: 14px; z-index: 3;
    font-family: 'Oswald', sans-serif; font-size: 0.62rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 5px;
}
.vt-yt-badge i { color: #ff4444; }
.video-channel-link {
    text-align: center; margin-top: 28px;
}
.video-channel-link a {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--green-bright); display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(74,186,106,0.3); padding-bottom: 3px;
    transition: border-color 0.2s, color 0.2s;
}
.video-channel-link a:hover { color: #5fcc7d; border-color: rgba(74,186,106,0.65); }

/* =============================================
   TESTIMONIAL — single large featured quote
============================================= */
.testimonial {
    background: var(--forest);
    padding: 100px 56px;
    position: relative; overflow: hidden;
}
.t-giant-quote {
    position: absolute; top: -40px; left: 20px;
    font-family: 'Bebas Neue', sans-serif; font-size: 24rem; line-height: 1;
    color: var(--green-bright); opacity: 0.05;
    user-select: none; pointer-events: none;
}
.t-inner {
    max-width: 900px; margin: 0 auto;
    position: relative; z-index: 1; text-align: center;
}
.t-stars { color: #f0b940; font-size: 0.88rem; letter-spacing: 3px; margin-bottom: 28px; }
.t-quote {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    color: var(--off-white); line-height: 1.62;
    font-style: italic; margin-bottom: 36px;
}
.t-rule { width: 48px; height: 1px; background: rgba(74,186,106,0.3); margin: 0 auto 24px; }
.t-author {
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.t-init {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(74,186,106,0.1);
    border: 1px solid rgba(74,186,106,0.22);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1px;
    color: var(--green-bright); flex-shrink: 0;
}
.t-name {
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white);
}
.t-loc { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* =============================================
   CONTACT — work-order styled form
============================================= */
.contact { background: var(--black); padding: 110px 0; position: relative; }
.contact::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    letter-spacing: 4px; color: var(--white); margin-bottom: 10px;
}
.contact-sub { color: var(--muted); font-size: 0.92rem; max-width: 440px; margin: 0 auto; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 44px; align-items: start;
}

/* Work-order panel */
.work-order {
    background: #080e0a;
    border: 1px solid rgba(74,186,106,0.2);
    border-radius: 4px; overflow: hidden;
}
.wo-header {
    background: var(--green); padding: 14px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.wo-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem;
    letter-spacing: 3px; color: var(--white);
}
.wo-job {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.58); white-space: nowrap;
}
.wo-body { padding: 32px 36px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { margin-bottom: 22px; }
.fg label {
    display: block;
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(74,186,106,0.55); margin-bottom: 6px;
}
/* Bottom-border-only fields — "blank line" look */
.fg input, .fg select, .fg textarea {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(74,186,106,0.18);
    border-radius: 0; padding: 8px 2px 10px;
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 0.9rem; outline: none;
    transition: border-color 0.2s; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-bottom-color: var(--green-bright);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.1); }
.fg select option { background: #0e2316; }
.fg textarea { resize: vertical; min-height: 110px; }
.wo-divider { border: none; border-top: 1px solid rgba(74,186,106,0.1); margin: 8px 0 24px; }
.wo-submit {
    width: 100%; background: var(--green); color: var(--white);
    font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 3px;
    padding: 17px 32px; border: none; border-radius: 3px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.wo-submit:hover {
    background: var(--green-mid); transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(38,138,80,0.3);
}
.wo-success {
    display: none; text-align: center; padding: 60px 20px;
}
.wo-success i { font-size: 3rem; color: var(--green-bright); margin-bottom: 18px; display: block; }
.wo-success h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px;
    color: var(--white); margin-bottom: 8px;
}
.wo-success p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-block {
    background: var(--forest);
    border: 1px solid var(--border); border-radius: 6px; padding: 24px;
}
.ci-title {
    font-family: 'Oswald', sans-serif; font-size: 0.64rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
    margin-bottom: 16px;
}
.ci-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(74,186,106,0.07);
}
.ci-row:last-child { border-bottom: none; padding-bottom: 0; }
.ci-row:first-of-type { padding-top: 0; }
.ci-icon {
    width: 34px; height: 34px; min-width: 34px; border-radius: 5px;
    background: rgba(74,186,106,0.07);
    border: 1px solid rgba(74,186,106,0.14);
    display: flex; align-items: center; justify-content: center;
}
.ci-icon i { color: var(--green-bright); font-size: 0.75rem; }
.ci-detail strong {
    display: block; font-family: 'Oswald', sans-serif;
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--off-white); margin-bottom: 2px;
}
.ci-detail a, .ci-detail span { font-size: 0.8rem; color: var(--muted); }
.ci-detail a:hover { color: var(--green-bright); }

/* =============================================
   FOOTER
============================================= */
.footer { background: #030504; border-top: 1px solid rgba(74,186,106,0.09); padding: 52px 0 24px; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 52px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(74,186,106,0.07); margin-bottom: 22px;
}
.footer-logo { height: 48px; width: auto; border-radius: 5px; margin-bottom: 12px; }
.footer-tag {
    font-family: 'Oswald', sans-serif; font-size: 0.7rem;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 32px; height: 32px; border-radius: 5px;
    background: rgba(74,186,106,0.05); border: 1px solid rgba(74,186,106,0.11);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; color: var(--muted); transition: all 0.2s;
}
.footer-socials a:hover { color: var(--green-bright); border-color: rgba(74,186,106,0.3); background: rgba(74,186,106,0.09); }
.footer-col-title {
    font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--muted); font-size: 0.82rem; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a i { color: var(--green); font-size: 0.52rem; }
.footer-links a:hover { color: var(--green-bright); }
.footer-ci { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.82rem; margin-bottom: 10px; }
.footer-ci i { color: var(--green); font-size: 0.74rem; width: 13px; }
.footer-ci a:hover { color: var(--green-bright); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { color: #222e24; font-size: 0.72rem; }
.footer-copy a { color: var(--green); }

/* =============================================
   SITE NAV — cross-page links (desktop)
============================================= */
.nav-links {
    display: flex; align-items: center; gap: 24px;
}
.nav-links a {
    font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.76rem;
    letter-spacing: 1.2px; text-transform: uppercase; color: var(--off-white);
}
.nav-links a:hover { color: var(--green-bright); }

/* =============================================
   PAGE HERO — inner-page banner (About, Services, Areas, etc.)
============================================= */
.page-hero {
    position: relative;
    min-height: 46vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 150px 32px 70px;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(5,10,6,0.88) 0%, rgba(8,16,14,0.8) 40%, rgba(7,13,22,0.84) 70%, rgba(5,8,6,0.92) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Oswald', sans-serif; font-size: 0.66rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
    margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--off-white); }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb i { font-size: 0.55rem; color: var(--green); }
.page-hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    letter-spacing: 3px; line-height: 1; color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    margin-bottom: 18px;
}
.page-hero-sub {
    font-family: 'Oswald', sans-serif; font-weight: 300; font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: var(--off-white); line-height: 1.7; max-width: 620px; margin: 0 auto 30px;
}
.page-hero .hero-btns { justify-content: center; }

/* =============================================
   CONTENT SECTION — long-form body copy pages
============================================= */
.content-section { background: var(--dark); padding: 90px 0; }
.content-section.alt { background: var(--forest); }
.content-wrap { max-width: 780px; margin: 0 auto; }
.content-wrap.wide { max-width: 1100px; }
.content-wrap h2 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px; color: var(--white); margin: 44px 0 18px;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.05rem;
    letter-spacing: 0.5px; text-transform: uppercase; color: var(--green-bright);
    margin: 30px 0 12px;
}
.content-wrap p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 18px; }
.content-wrap p strong { color: var(--off-white); }
.content-wrap ul { margin: 0 0 20px; }
.content-wrap ul li {
    display: flex; align-items: flex-start; gap: 10px; color: var(--off-white);
    font-size: 0.92rem; line-height: 1.7; padding: 6px 0;
}
.content-wrap ul li i { color: var(--green-bright); font-size: 0.6rem; margin-top: 7px; flex-shrink: 0; }
.content-wrap p a, .content-wrap li a, .content-wrap a.inline-link {
    color: var(--green-bright); border-bottom: 1px solid rgba(74,186,106,0.35);
}
.content-wrap p a:hover, .content-wrap li a:hover, .content-wrap a.inline-link:hover {
    border-color: var(--green-bright);
}
.content-section-header { text-align: center; margin-bottom: 52px; }

/* =============================================
   HUB CARDS — services.html / areas.html
============================================= */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px;
}
.hub-card {
    background: var(--forest); border: 1px solid var(--border); border-radius: 8px;
    padding: 32px 28px; transition: all 0.25s; display: flex; flex-direction: column;
}
.hub-card:hover { border-color: rgba(74,186,106,0.4); transform: translateY(-4px); }
.hub-card .svc-icon-box { margin-bottom: 18px; }
.hub-card h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 1.5px;
    color: var(--white); margin-bottom: 10px;
}
.hub-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.75; margin-bottom: 18px; flex-grow: 1; }
.hub-card .card-link {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.74rem;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-bright);
    display: inline-flex; align-items: center; gap: 7px;
}
.hub-card .card-link i { font-size: 0.65rem; transition: transform 0.2s; }
.hub-card:hover .card-link i { transform: translateX(3px); }

/* =============================================
   FAQ LIST
============================================= */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border-bottom: 1px solid rgba(74,186,106,0.1); padding: 26px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem;
    color: var(--white); margin-bottom: 10px; display: flex; gap: 12px;
}
.faq-q i { color: var(--green-bright); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.faq-a { color: var(--muted); font-size: 0.9rem; line-height: 1.85; padding-left: 27px; }

/* =============================================
   AREA META CHIPS (area pages)
============================================= */
.area-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 4px; }
.area-meta-item {
    display: flex; align-items: center; gap: 8px;
    background: rgba(74,186,106,0.06); border: 1px solid var(--border);
    border-radius: 20px; padding: 8px 16px;
    font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.5px;
    color: var(--off-white);
}
.area-meta-item i { color: var(--green-bright); font-size: 0.72rem; }

/* =============================================
   MAP EMBED (Contact page)
============================================= */
.map-embed-wrap {
    border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
    margin-bottom: 16px;
}
.map-embed { width: 100%; height: 320px; border: 0; display: block; }

/* =============================================
   SIMPLE PAGES — 404 and other minimal content pages
============================================= */
.simple-page {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 160px 32px 100px;
}
.simple-page-eyebrow {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--green-bright); margin-bottom: 18px;
}
.simple-page-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 4px; line-height: 0.9; color: var(--white);
    margin-bottom: 20px;
}
.simple-page-body {
    color: var(--muted); font-size: 0.95rem; max-width: 480px;
    margin-bottom: 36px; line-height: 1.8;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes bounce   {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .svc-content-panel { padding: 80px 48px; }
    .legacy-grid { grid-template-columns: 1fr; gap: 56px; }
    .video-grid { grid-template-columns: 1fr; grid-template-rows: 380px 200px 200px; }
    .vthumb-large { grid-row: span 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .hero-vid-card { display: none; }
    .hero-biz-card { display: none; }
    .hero-watch-link { display: flex; }
    .nav-links, .nav-phone, .nav-cta-btn { display: none; }
    .nav-toggle { display: block; }
}
@media (max-width: 768px) {
    .svc-section, .svc-section.reversed { flex-direction: column; min-height: auto; }
    .svc-content-panel, .svc-img-panel { width: 100%; }
    .svc-img-panel { height: 52vw; min-height: 280px; }
    .svc-content-panel { padding: 60px 28px; }
    .statement { padding: 72px 28px 60px; }
    .testimonial { padding: 80px 28px; }
    .t-giant-quote { font-size: 14rem; }
    .wo-body { padding: 24px 20px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .page-hero { padding: 130px 24px 56px; }
}
@media (max-width: 640px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn { width: 100%; max-width: 290px; justify-content: center; }
    .legacy-stats { gap: 14px; }
}
