/* ==========================================================================
   IronVolt Electrical — Demo Site Stylesheet
   Fictional trade business demo built by ForgePoint.
   ========================================================================== */

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ed-white);
    color: var(--ed-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; }

/* ===== Design Tokens ===== */
:root {
    /* Core palette */
    --ed-navy: #0c121b;
    --ed-navy-2: #131b27;
    --ed-navy-3: #1b2534;
    --ed-white: #f7f7f5;
    --ed-panel: #ffffff;
    --ed-ink: #12161d;
    --ed-ink-soft: #4b5563;
    --ed-gray: #6b7280;
    --ed-border: rgba(18, 22, 29, 0.1);
    --ed-border-dark: rgba(247, 247, 245, 0.1);

    /* Accent */
    --ed-amber: #ffb020;
    --ed-amber-dark: #e2960a;
    --ed-amber-soft: rgba(255, 176, 32, 0.14);

    /* Type */
    --ed-font-head: 'Archivo', sans-serif;
    --ed-font-body: 'Inter', sans-serif;

    /* Motion */
    --ed-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ed-transition: 0.25s var(--ed-ease);

    /* Shape */
    --ed-radius-sm: 8px;
    --ed-radius: 14px;
    --ed-radius-lg: 22px;

    --ed-sticky-offset: 0px;
}

/* ===== Layout / Container ===== */
.ed-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ed-section {
    padding: 100px 0;
}

.ed-section-alt {
    background: var(--ed-navy);
    color: var(--ed-white);
}

.ed-section-head {
    max-width: 640px;
    margin: 0 0 56px;
}

.ed-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ed-font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ed-amber-dark);
    margin-bottom: 14px;
}

.ed-section-alt .ed-eyebrow { color: var(--ed-amber); }

.ed-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: currentColor;
}

.ed-section-head h2 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.ed-section-head p {
    color: var(--ed-ink-soft);
    font-size: 1.05rem;
}

.ed-section-alt .ed-section-head p { color: rgba(247, 247, 245, 0.68); }

/* ===== Buttons ===== */
.ed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 28px;
    border-radius: var(--ed-radius-sm);
    border: 2px solid transparent;
    transition: transform var(--ed-transition), background var(--ed-transition), border-color var(--ed-transition), color var(--ed-transition);
    white-space: nowrap;
}

.ed-btn-primary {
    background: var(--ed-amber);
    color: var(--ed-navy);
}

.ed-btn-primary:hover {
    background: var(--ed-amber-dark);
    transform: translateY(-2px);
}

.ed-btn-outline {
    border-color: var(--ed-border);
    color: var(--ed-ink);
}

.ed-section-alt .ed-btn-outline,
.ed-hero .ed-btn-outline {
    border-color: var(--ed-border-dark);
    color: var(--ed-white);
}

.ed-btn-outline:hover {
    border-color: var(--ed-amber);
    color: var(--ed-amber-dark);
    transform: translateY(-2px);
}

.ed-section-alt .ed-btn-outline:hover,
.ed-hero .ed-btn-outline:hover {
    color: var(--ed-amber);
}

.ed-btn-block { width: 100%; }

/* ===== Header / Nav ===== */
.ed-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(12, 18, 27, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ed-border-dark);
    transition: box-shadow var(--ed-transition);
}

.ed-header.scrolled { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28); }

.ed-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.ed-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ed-logo-main {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    color: var(--ed-white);
}

.ed-logo-main span { color: var(--ed-amber); }

.ed-logo-sub {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 247, 245, 0.5);
}

.ed-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ed-nav-link {
    font-family: var(--ed-font-head);
    font-weight: 600;
    font-size: 0.92rem;
    color: rgba(247, 247, 245, 0.78);
    padding: 10px 16px;
    border-radius: var(--ed-radius-sm);
    transition: color var(--ed-transition), background var(--ed-transition);
}

.ed-nav-link:hover,
.ed-nav-link.active {
    color: var(--ed-white);
    background: rgba(247, 247, 245, 0.08);
}

.ed-nav-cta {
    background: var(--ed-amber);
    color: var(--ed-navy) !important;
    margin-left: 8px;
}

.ed-nav-cta:hover { background: var(--ed-amber-dark); }

.ed-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ed-white);
    margin-right: 6px;
}

.ed-nav-phone svg { color: var(--ed-amber); flex-shrink: 0; }

.ed-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.ed-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ed-white);
    transition: transform var(--ed-transition), opacity var(--ed-transition);
}

.ed-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ed-menu-toggle.open span:nth-child(2) { opacity: 0; }
.ed-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.ed-hero {
    position: relative;
    background: linear-gradient(180deg, var(--ed-navy) 0%, var(--ed-navy-2) 100%);
    color: var(--ed-white);
    padding: 96px 0 110px;
    overflow: hidden;
}

.ed-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 176, 32, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 176, 32, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, black 10%, transparent 70%);
    pointer-events: none;
}

.ed-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.ed-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 176, 32, 0.12);
    border: 1px solid rgba(255, 176, 32, 0.3);
    color: var(--ed-amber);
    font-family: var(--ed-font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.ed-hero-title {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.6vw, 3.7rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.ed-hero-title em {
    font-style: normal;
    color: var(--ed-amber);
}

.ed-hero-sub {
    font-size: 1.12rem;
    color: rgba(247, 247, 245, 0.72);
    max-width: 480px;
    margin-bottom: 34px;
}

.ed-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.ed-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.ed-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(247, 247, 245, 0.75);
}

.ed-hero-trust-item svg { color: var(--ed-amber); flex-shrink: 0; }

.ed-hero-media {
    position: relative;
}

.ed-hero-frame {
    position: relative;
    border-radius: var(--ed-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ed-border-dark);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    aspect-ratio: 4 / 5;
    background: linear-gradient(155deg, #1b2534 0%, #0c121b 100%);
}

.ed-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ed-hero-stat-card {
    position: absolute;
    left: -20px;
    bottom: -24px;
    background: var(--ed-panel);
    color: var(--ed-ink);
    border-radius: var(--ed-radius);
    padding: 18px 22px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
}

.ed-hero-stat-card .ed-stat-num {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--ed-amber-dark);
    line-height: 1;
}

.ed-hero-stat-card .ed-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ed-ink-soft);
    max-width: 110px;
}

/* ===== Trust / Stats Bar ===== */
.ed-trustbar {
    background: var(--ed-panel);
    border-bottom: 1px solid var(--ed-border);
}

.ed-trustbar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 44px 0;
}

.ed-trustbar-item {
    text-align: center;
    border-right: 1px solid var(--ed-border);
}

.ed-trustbar-item:last-child { border-right: none; }

.ed-trustbar-num {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--ed-navy);
}

.ed-trustbar-num span { color: var(--ed-amber-dark); }

.ed-trustbar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ed-gray);
    margin-top: 4px;
}

/* ===== Services Grid ===== */
.ed-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ed-service-card {
    background: var(--ed-panel);
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius);
    padding: 30px 26px;
    transition: transform var(--ed-transition), box-shadow var(--ed-transition), border-color var(--ed-transition);
}

.ed-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12, 18, 27, 0.1);
    border-color: rgba(255, 176, 32, 0.4);
}

.ed-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ed-amber-soft);
    color: var(--ed-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ed-service-card h3 {
    font-family: var(--ed-font-head);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.ed-service-card p {
    font-size: 0.94rem;
    color: var(--ed-ink-soft);
    margin-bottom: 16px;
}

.ed-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--ed-amber-dark);
}

.ed-service-link svg { transition: transform var(--ed-transition); }
.ed-service-card:hover .ed-service-link svg { transform: translateX(4px); }

.ed-services-more {
    text-align: center;
    margin-top: 44px;
}

/* ===== Service Detail List (services.html) ===== */
.ed-service-detail {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid var(--ed-border);
}

.ed-service-detail:last-child { border-bottom: none; }

.ed-service-detail-num {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: 3.4rem;
    color: var(--ed-amber-soft);
    -webkit-text-stroke: 1.5px rgba(255, 176, 32, 0.5);
    color: transparent;
    line-height: 1;
}

.ed-service-detail h3 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 14px 0 12px;
    color: var(--ed-ink);
}

.ed-service-detail-body p {
    color: var(--ed-ink-soft);
    margin-bottom: 20px;
}

.ed-service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.ed-service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ed-ink);
}

.ed-service-detail-list svg {
    color: var(--ed-amber-dark);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===== Featured Work Strip (index.html) ===== */
.ed-work-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ed-work-strip-item {
    position: relative;
    border-radius: var(--ed-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(155deg, var(--ed-navy-3), var(--ed-navy));
}

.ed-work-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ed-ease);
}

.ed-work-strip-item:hover img { transform: scale(1.06); }

.ed-work-strip-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(12, 18, 27, 0.75);
    backdrop-filter: blur(6px);
    color: var(--ed-white);
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 7px 12px;
    border-radius: 999px;
}

/* ===== Before / After Slider ===== */
.ed-ba {
    position: relative;
    border-radius: var(--ed-radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--ed-navy);
    user-select: none;
    box-shadow: 0 24px 60px rgba(12, 18, 27, 0.18);
}

.ed-ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ed-ba-placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ed-ba-before .ed-ba-placeholder { right: 8%; }
.ed-ba-after .ed-ba-placeholder { left: 8%; }

.ed-ba-before {
    background:
        repeating-linear-gradient(135deg, rgba(247,247,245,0.03) 0 2px, transparent 2px 14px),
        linear-gradient(155deg, #262c35 0%, #12161d 100%);
}

.ed-ba-before .ed-ba-placeholder { color: rgba(247, 247, 245, 0.4); }

.ed-ba-after {
    clip-path: inset(0 calc(100% - var(--ed-ba-pos, 50%)) 0 0);
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 176, 32, 0.16), transparent 65%),
        linear-gradient(155deg, #1b2534 0%, #0c121b 100%);
}

.ed-ba-after .ed-ba-placeholder { color: rgba(255, 176, 32, 0.75); }

.ed-ba-note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.86rem;
    font-style: italic;
    color: var(--ed-gray);
}

.ed-ba-label {
    position: absolute;
    top: 16px;
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ed-white);
    background: rgba(12, 18, 27, 0.7);
    padding: 6px 12px;
    border-radius: 999px;
}

.ed-ba-label-before { left: 16px; }
.ed-ba-label-after { right: 16px; }

.ed-ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ed-ba-pos, 50%);
    width: 3px;
    background: var(--ed-amber);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 0 4px rgba(255, 176, 32, 0.18);
}

.ed-ba-handle {
    position: absolute;
    top: 50%;
    left: var(--ed-ba-pos, 50%);
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ed-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ed-navy);
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ed-ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

.ed-ba-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 44px;
    height: 100%;
}

.ed-ba-caption {
    text-align: center;
    margin-top: 18px;
    font-weight: 600;
    color: var(--ed-ink-soft);
    font-size: 0.94rem;
}

/* ===== Why Choose Us ===== */
.ed-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
}

.ed-why-item {
    display: flex;
    gap: 18px;
}

.ed-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 176, 32, 0.14);
    color: var(--ed-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ed-why-item h4 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.ed-why-item p {
    font-size: 0.92rem;
    color: rgba(247, 247, 245, 0.68);
}

/* ===== Process Steps (about.html) ===== */
.ed-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: ed-step;
}

.ed-process-item {
    position: relative;
    padding-top: 20px;
}

.ed-process-item::before {
    counter-increment: ed-step;
    content: counter(ed-step, decimal-leading-zero);
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: 1rem;
    color: var(--ed-amber-dark);
    display: block;
    margin-bottom: 12px;
}

.ed-process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 12px;
    right: -18px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--ed-border);
    border-right: 2px solid var(--ed-border);
    transform: rotate(45deg);
    display: none;
}

.ed-process-item h4 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.ed-process-item p {
    font-size: 0.9rem;
    color: var(--ed-ink-soft);
}

/* ===== Testimonial Band ===== */
.ed-quote-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.ed-quote-stars {
    color: var(--ed-amber);
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 22px;
}

.ed-quote-block blockquote {
    font-family: var(--ed-font-head);
    font-weight: 600;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    line-height: 1.5;
    color: var(--ed-white);
    margin-bottom: 22px;
}

.ed-quote-block cite {
    font-style: normal;
    font-weight: 600;
    color: rgba(247, 247, 245, 0.6);
    font-size: 0.92rem;
}

/* ===== Service Area ===== */
.ed-area-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.ed-area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 24px;
}

.ed-area-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.94rem;
}

.ed-area-list svg { color: var(--ed-amber-dark); flex-shrink: 0; }

.ed-area-map {
    aspect-ratio: 1 / 1;
    border-radius: var(--ed-radius-lg);
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 176, 32, 0.16), transparent 60%),
        repeating-linear-gradient(0deg, rgba(18,22,29,0.05) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(18,22,29,0.05) 0 1px, transparent 1px 34px),
        var(--ed-navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-area-map-pin {
    width: 60px;
    height: 60px;
    border-radius: 50% 50% 50% 0;
    background: var(--ed-amber);
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.ed-area-map-pin svg { transform: rotate(45deg); color: var(--ed-navy); }

/* ===== CTA Band ===== */
.ed-cta-band {
    background: linear-gradient(120deg, var(--ed-amber) 0%, var(--ed-amber-dark) 100%);
    color: var(--ed-navy);
    padding: 72px 0;
}

.ed-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.ed-cta-band h2 {
    font-family: var(--ed-font-head);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    max-width: 480px;
}

.ed-cta-band p {
    font-weight: 600;
    margin-top: 8px;
    color: rgba(12, 18, 27, 0.75);
}

.ed-cta-band .ed-btn-primary {
    background: var(--ed-navy);
    color: var(--ed-white);
}

.ed-cta-band .ed-btn-primary:hover { background: #000; }

.ed-cta-band .ed-btn-outline {
    border-color: rgba(12, 18, 27, 0.3);
    color: var(--ed-navy);
}

.ed-cta-band .ed-btn-outline:hover {
    border-color: var(--ed-navy);
    color: var(--ed-navy);
}

/* ===== Footer ===== */
.ed-footer {
    background: var(--ed-navy);
    color: rgba(247, 247, 245, 0.7);
    padding: 64px 0 28px;
}

.ed-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--ed-border-dark);
}

.ed-footer-brand p {
    font-size: 0.88rem;
    margin: 16px 0 20px;
    max-width: 260px;
}

.ed-footer-social {
    display: flex;
    gap: 10px;
}

.ed-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(247, 247, 245, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ed-transition);
}

.ed-footer-social a:hover { background: var(--ed-amber); color: var(--ed-navy); }

.ed-footer h5 {
    font-family: var(--ed-font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ed-white);
    margin-bottom: 16px;
}

.ed-footer-links li { margin-bottom: 10px; }

.ed-footer-links a { font-size: 0.9rem; transition: color var(--ed-transition); }
.ed-footer-links a:hover { color: var(--ed-amber); }

.ed-footer-note {
    font-size: 0.82rem;
    line-height: 1.7;
    max-width: 880px;
    margin: 28px 0 14px;
}

.ed-footer-note a { color: var(--ed-amber); text-decoration: underline; }

.ed-footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

.ed-footer-copy a { text-decoration: underline; }

/* ===== Work / Gallery Page ===== */
.ed-work-hero {
    padding-bottom: 20px;
}

.ed-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.ed-filter-tab {
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.86rem;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--ed-border);
    color: var(--ed-ink-soft);
    background: var(--ed-panel);
    transition: all var(--ed-transition);
}

.ed-filter-tab:hover { border-color: var(--ed-amber); color: var(--ed-ink); }

.ed-filter-tab.active {
    background: var(--ed-navy);
    border-color: var(--ed-navy);
    color: var(--ed-white);
}

.ed-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ed-work-item {
    display: none;
    position: relative;
    border-radius: var(--ed-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(155deg, var(--ed-navy-3), var(--ed-navy));
    cursor: pointer;
}

.ed-work-item.show { display: block; }

.ed-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ed-ease);
}

.ed-work-item:hover img { transform: scale(1.07); }

.ed-work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12,18,27,0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.ed-work-item-overlay h4 {
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ed-white);
}

.ed-work-item-overlay span {
    display: block;
    font-size: 0.78rem;
    color: rgba(247, 247, 245, 0.65);
    margin-top: 2px;
}

/* ===== Reveal Animation ===== */
.ed-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ed-ease), transform 0.7s var(--ed-ease);
}

.ed-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Lightbox ===== */
.ed-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 14, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ed-transition);
    padding: 40px;
}

.ed-lightbox.open { opacity: 1; visibility: visible; }

.ed-lightbox-figure {
    max-width: 900px;
    width: 100%;
}

.ed-lightbox-figure img {
    width: 100%;
    border-radius: var(--ed-radius);
    max-height: 76vh;
    object-fit: contain;
    background: var(--ed-navy-2);
}

.ed-lightbox-caption {
    text-align: center;
    color: rgba(247, 247, 245, 0.75);
    margin-top: 16px;
    font-size: 0.92rem;
}

.ed-lightbox-close,
.ed-lightbox-prev,
.ed-lightbox-next {
    position: absolute;
    background: rgba(247, 247, 245, 0.08);
    border: 1px solid var(--ed-border-dark);
    color: var(--ed-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background var(--ed-transition);
}

.ed-lightbox-close:hover,
.ed-lightbox-prev:hover,
.ed-lightbox-next:hover { background: var(--ed-amber); color: var(--ed-navy); }

.ed-lightbox-close { top: 28px; right: 28px; }
.ed-lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.ed-lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }

.ed-no-scroll { overflow: hidden; }

/* ===== About Page ===== */
.ed-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ed-about-media {
    border-radius: var(--ed-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(155deg, var(--ed-navy-3), var(--ed-navy));
}

.ed-about-body p { color: var(--ed-ink-soft); margin-bottom: 18px; }

.ed-cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.ed-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--ed-font-head);
    background: var(--ed-amber-soft);
    color: var(--ed-amber-dark);
    padding: 9px 14px;
    border-radius: 999px;
}

/* ===== Pricing Page ===== */
.ed-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ed-panel);
    border-radius: var(--ed-radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(12, 18, 27, 0.06);
}

.ed-pricing-table th,
.ed-pricing-table td {
    text-align: left;
    padding: 18px 22px;
    border-bottom: 1px solid var(--ed-border);
    font-size: 0.94rem;
}

.ed-pricing-table th {
    font-family: var(--ed-font-head);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ed-gray);
    background: rgba(18, 22, 29, 0.03);
}

.ed-pricing-table tr:last-child td { border-bottom: none; }

.ed-pricing-table td:first-child { font-weight: 700; }

.ed-pricing-table td:last-child {
    font-family: var(--ed-font-head);
    font-weight: 800;
    color: var(--ed-navy);
    white-space: nowrap;
}

.ed-pricing-note {
    margin-top: 18px;
    font-size: 0.88rem;
    color: var(--ed-gray);
}

.ed-faq-item {
    border-bottom: 1px solid var(--ed-border);
}

.ed-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--ed-font-head);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ed-ink);
}

.ed-faq-question svg {
    flex-shrink: 0;
    transition: transform var(--ed-transition);
    color: var(--ed-amber-dark);
}

.ed-faq-item.open .ed-faq-question svg { transform: rotate(45deg); }

.ed-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ed-transition);
}

.ed-faq-item.open .ed-faq-answer { max-height: 240px; }

.ed-faq-answer p {
    padding: 0 4px 22px;
    color: var(--ed-ink-soft);
    font-size: 0.94rem;
}

.ed-section-alt .ed-faq-item { border-bottom-color: var(--ed-border-dark); }

.ed-section-alt .ed-faq-question { color: var(--ed-white); }

.ed-section-alt .ed-faq-answer p { color: rgba(247, 247, 245, 0.68); }

/* ===== Contact Page ===== */
.ed-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
}

.ed-contact-info-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--ed-border);
}

.ed-contact-info-item:first-child { padding-top: 0; }

.ed-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ed-amber-soft);
    color: var(--ed-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ed-contact-info-item h4 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.ed-contact-info-item p,
.ed-contact-info-item a { font-size: 0.92rem; color: var(--ed-ink-soft); }

.ed-contact-emergency {
    background: var(--ed-navy);
    color: var(--ed-white);
    border-radius: var(--ed-radius);
    padding: 22px 24px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ed-contact-emergency svg { color: var(--ed-amber); flex-shrink: 0; }

.ed-contact-emergency h4 {
    font-family: var(--ed-font-head);
    font-weight: 800;
    font-size: 0.96rem;
}

.ed-contact-emergency a {
    color: var(--ed-amber);
    font-weight: 700;
}

.ed-form-card {
    background: var(--ed-panel);
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius-lg);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(12, 18, 27, 0.06);
}

.ed-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ed-field { margin-bottom: 18px; }

.ed-field label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ed-ink);
}

.ed-field input,
.ed-field select,
.ed-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius-sm);
    font-family: inherit;
    font-size: 0.94rem;
    background: var(--ed-white);
    color: var(--ed-ink);
    transition: border-color var(--ed-transition);
}

.ed-field input:focus,
.ed-field select:focus,
.ed-field textarea:focus {
    outline: none;
    border-color: var(--ed-amber);
}

.ed-field textarea { min-height: 130px; resize: vertical; }

.ed-form-notice {
    background: var(--ed-amber-soft);
    color: #7a5200;
    border: 1px solid rgba(255, 176, 32, 0.4);
    border-radius: var(--ed-radius-sm);
    padding: 16px 18px;
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.hidden { display: none !important; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .ed-hero-grid { grid-template-columns: 1fr; }
    .ed-hero-media { order: -1; max-width: 420px; }
    .ed-services-grid { grid-template-columns: repeat(2, 1fr); }
    .ed-work-strip { grid-template-columns: repeat(2, 1fr); }
    .ed-work-grid { grid-template-columns: repeat(2, 1fr); }
    .ed-trustbar-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
    .ed-trustbar-item:nth-child(2) { border-right: none; }
    .ed-why-grid { grid-template-columns: 1fr; }
    .ed-process { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
    .ed-area-grid { grid-template-columns: 1fr; }
    .ed-service-detail { grid-template-columns: 1fr; gap: 20px; }
    .ed-about-grid { grid-template-columns: 1fr; }
    .ed-contact-grid { grid-template-columns: 1fr; }
    .ed-footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}

@media (max-width: 720px) {
    .ed-nav {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ed-navy);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--ed-transition);
        overflow-y: auto;
    }

    .ed-nav.open { transform: translateX(0); }

    .ed-nav-link { padding: 16px; font-size: 1.05rem; }
    .ed-nav-cta { margin: 10px 0 0; text-align: center; }
    .ed-nav-phone { margin: 0 0 10px; padding: 0 16px; }

    .ed-menu-toggle { display: flex; }

    .ed-section { padding: 64px 0; }
    .ed-services-grid { grid-template-columns: 1fr; }
    .ed-work-strip { grid-template-columns: 1fr 1fr; }
    .ed-work-grid { grid-template-columns: 1fr; }
    .ed-trustbar-grid { grid-template-columns: 1fr 1fr; }
    .ed-process { grid-template-columns: 1fr; }
    .ed-area-list { grid-template-columns: 1fr; }
    .ed-form-row { grid-template-columns: 1fr; }
    .ed-cta-band-inner { flex-direction: column; text-align: center; }
    .ed-footer-grid { grid-template-columns: 1fr; }
    .ed-service-detail-list { grid-template-columns: 1fr; }
    .ed-hero-stat-card { left: 12px; bottom: -20px; }
}
