/* ============================================================
   DESERT DUMP & DEMOLITION — Tradesman Pro
   ============================================================
   Local-business polished aesthetic. Two-tier navbar with utility
   bar + main nav. Hero is a photo/illustration left + quote form
   right. Manrope throughout. Trust-forward, photography-friendly.
   ============================================================ */

/* -------- Reset and base -------- */
html, body { margin: 0; padding: 0; }
body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}
[data-theme="dark"] body { background: #0c0e10; color: #e6e8eb; }
/* Green accent on text selection */
::selection { background: rgba(63,160,46,0.25); color: inherit; }
[data-theme="dark"] ::selection { background: rgba(91,196,47,0.3); }
* { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Kill all template chrome from style.css */
.hero-corner, .hero-frame, .hero-slideshow,
.ornament-divider, .ornament-divider-icon,
.section.botanical, .about-section, .stats-row,
.mobile-nav-overlay::before, .mobile-nav-overlay::after,
.event-type-card .event-type-icon::before,
.gallery-hero .hero-accent::before,
.footer-flourish-top, .footer-flourish-rule, .footer-flourish-glyph,
.divider-floral, .drop-cap,
.view-toggle-row, .catalog, [data-view="catalog"],
.hero-arrow, .hero-dots,
.section-eyebrow,
.site-nav, .site-footer, .mobile-nav-overlay { display: none !important; }

:root {
    --dd-bg: #ffffff;
    --dd-bg-alt: #f5f6f7;
    --dd-surface: #ffffff;
    --dd-ink: #16181c;
    --dd-ink-muted: #5b6068;
    --dd-ink-soft: #8a8f96;
    --dd-line: #e6e7ea;
    --dd-line-strong: #d1d4d8;
    --dd-green: #3FA02E;
    --dd-green-dark: #2F8E1F;
    --dd-green-light: #5BC42F;
    --dd-black: #0c0e10;
    --dd-star: #ffb800;
    --dd-shadow-sm: 0 1px 2px rgba(16,24,32,0.05), 0 1px 4px rgba(16,24,32,0.04);
    --dd-shadow-md: 0 4px 12px rgba(16,24,32,0.08), 0 2px 6px rgba(16,24,32,0.05);
    --dd-shadow-lg: 0 16px 40px rgba(16,24,32,0.1), 0 4px 12px rgba(16,24,32,0.06);
}
[data-theme="dark"] {
    --dd-bg: #0c0e10;
    --dd-bg-alt: #14171a;
    --dd-surface: #17191c;
    --dd-ink: #e6e8eb;
    --dd-ink-muted: #a3a8ae;
    --dd-ink-soft: #6e7278;
    --dd-line: #23262a;
    --dd-line-strong: #2e3236;
    --dd-shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --dd-shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --dd-shadow-lg: 0 16px 40px rgba(0,0,0,0.5);
}

/* ============================================================
   NAVBAR — two-tier
   ============================================================ */
.dd-utility {
    background: var(--dd-black);
    color: #d8dadd;
    font-size: 0.82rem;
    padding: 8px clamp(16px, 4vw, 48px);
    border-bottom: 1px solid #1c1f22;
}
.dd-utility-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px clamp(14px, 2vw, 28px);
}
.dd-utility-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d8dadd;
}
.dd-utility-item svg { width: 14px; height: 14px; opacity: 0.85; }
.dd-utility-item .accent { color: var(--dd-green-light); font-weight: 600; }
.dd-utility-stars {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dd-utility-stars .stars { color: var(--dd-star); letter-spacing: 1px; }
.dd-utility-spacer { flex: 1; }
@media (max-width: 720px) {
    .dd-utility { font-size: 0.75rem; padding: 6px 16px; }
}

.dd-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dd-surface);
    border-bottom: 1px solid var(--dd-line);
    padding: 18px clamp(16px, 4vw, 48px);
    box-shadow: var(--dd-shadow-sm);
    position: sticky;
}
.dd-nav::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 3px;
    background: var(--dd-green);
}
.dd-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 32px);
}
.dd-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-right: auto;
    color: var(--dd-ink);
}
.dd-nav-logo-img {
    height: clamp(48px, 5.5vw, 62px);
    width: auto;
    display: block;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px 10px;
    border: 1px solid var(--dd-line);
    box-shadow: var(--dd-shadow-sm);
}
[data-theme="dark"] .dd-nav-logo-img { background: #f5f5f5; border-color: transparent; }
.dd-nav-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dd-ink-soft);
    padding-right: clamp(6px, 1.4vw, 18px);
}
.dd-nav-meta .dot { color: var(--dd-green); }
@media (max-width: 1100px) { .dd-nav-meta { display: none; } }
.dd-logo-svg {
    height: clamp(44px, 5vw, 56px);
    width: auto;
    display: block;
    color: var(--dd-ink);
    transition: color 0.15s;
}
.dd-nav-logo:hover .dd-logo-svg { color: var(--dd-green); }
.dd-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.dd-nav-links a {
    color: var(--dd-ink-muted);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    position: relative;
}
.dd-nav-links a:hover,
.dd-nav-links a.active { color: var(--dd-ink); border-bottom-color: var(--dd-green); }
.dd-nav-links a.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--dd-green);
}
.dd-nav-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dd-ink);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 18px;
    border: 1.5px solid var(--dd-line-strong);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.dd-nav-quote:hover { border-color: var(--dd-ink); color: var(--dd-ink); }
.dd-nav-quote svg { width: 14px; height: 14px; color: var(--dd-green); }
.dd-nav-theme {
    background: transparent;
    border: 1px solid var(--dd-line);
    color: var(--dd-ink-muted);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
}
.dd-nav-theme:hover { border-color: var(--dd-green); color: var(--dd-green); }
.dd-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--dd-line);
    color: var(--dd-ink);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0;
}
@media (max-width: 920px) {
    .dd-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .dd-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--dd-surface);
        padding: 12px 24px;
        border-bottom: 1px solid var(--dd-line);
        box-shadow: var(--dd-shadow-md);
    }
    .dd-nav.open .dd-nav-links { display: flex; }
    .dd-nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--dd-line); }
}
@media (max-width: 560px) {
    .dd-nav-quote { padding: 10px 14px; font-size: 0.85rem; }
    .dd-nav-quote .label-full { display: none; }
    .dd-nav-quote .label-short { display: inline; }
}
.dd-nav-quote .label-short { display: none; }

/* ============================================================
   HERO — logo card left, headline right
   ============================================================ */
.dd-hero {
    background:
        radial-gradient(circle at 88% 16%, rgba(63,160,46,0.07) 0%, transparent 36%),
        var(--dd-bg);
    border-bottom: 1px solid var(--dd-line);
    position: relative;
}
.dd-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 8px;
    background:
        repeating-linear-gradient(135deg,
            #3FA02E 0,
            #3FA02E 14px,
            transparent 14px,
            transparent 28px);
    opacity: 0.85;
    pointer-events: none;
}
[data-theme="dark"] .dd-hero {
    background:
        radial-gradient(circle at 88% 16%, rgba(91,196,47,0.09) 0%, transparent 36%),
        var(--dd-bg);
}
.dd-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 48px) clamp(56px, 7vw, 96px);
    display: grid;
    grid-template-columns: minmax(220px, 380px) 1fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 820px) { .dd-hero-inner { grid-template-columns: 1fr; gap: 28px; } }
.dd-hero-mark {
    background: #f5f5f5;
    border-radius: 14px;
    padding: clamp(16px, 2vw, 24px);
    border: 1px solid var(--dd-line);
    box-shadow: var(--dd-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .dd-hero-mark { border-color: transparent; background: #f5f5f5; }
.dd-hero-mark img {
    width: 100%;
    height: auto;
    max-width: 340px;
    display: block;
}
.dd-hero-copy h1 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 20px;
    max-width: 22ch;
}
.dd-hero-copy h1 .green { color: var(--dd-green); }
.dd-hero-copy .dd-hero-lede {
    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    color: var(--dd-ink-muted);
    margin: 0 0 36px;
    max-width: 52ch;
    line-height: 1.55;
}
.dd-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dd-ink);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.02rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--dd-ink);
    transition: color 0.15s, border-color 0.15s, gap 0.15s;
}
.dd-hero-link:hover { color: var(--dd-green); border-color: var(--dd-green); gap: 14px; }

/* Quote form card */
.dd-quote-card {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 14px;
    padding: clamp(20px, 2.5vw, 28px);
    box-shadow: var(--dd-shadow-lg);
    position: relative;
}
.dd-quote-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    right: 24px;
    height: 4px;
    background: var(--dd-green);
    border-radius: 4px 4px 0 0;
}
.dd-quote-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.dd-quote-card-sub { color: var(--dd-ink-muted); font-size: 0.9rem; margin: 0 0 18px; }
.dd-quote-form { display: grid; gap: 12px; }
.dd-quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .dd-quote-row { grid-template-columns: 1fr; } }
.dd-input, .dd-quote-form select, .dd-quote-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--dd-line-strong);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--dd-bg);
    color: var(--dd-ink);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.dd-quote-form select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235b6068' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.dd-input:focus, .dd-quote-form select:focus, .dd-quote-form textarea:focus {
    outline: none;
    border-color: var(--dd-green);
    box-shadow: 0 0 0 3px rgba(63,160,46,0.15);
}
.dd-quote-submit {
    width: 100%;
    background: var(--dd-green);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 0 var(--dd-green-dark), var(--dd-shadow-md);
    transition: background 0.15s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.dd-quote-submit:hover { background: var(--dd-green-dark); transform: translateY(-1px); }
.dd-quote-fine { font-size: 0.78rem; color: var(--dd-ink-soft); margin: 8px 0 0; text-align: center; }

/* ============================================================
   SECTION primitives
   ============================================================ */
.dd-section { padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 48px); }
.dd-section-inner { max-width: 1280px; margin: 0 auto; }
.dd-section.alt { background: var(--dd-bg-alt); }
.dd-section.tight { padding-top: clamp(36px, 4vw, 56px); padding-bottom: clamp(36px, 4vw, 56px); }
.dd-section-eyebrow {
    display: inline-block;
    color: var(--dd-green);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.dd-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    max-width: 24ch;
}
.dd-section-lede {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dd-ink-muted);
    margin: 0 0 32px;
    max-width: 60ch;
}

/* ============================================================
   WHAT WE DO — header + 2-col icon grid
   ============================================================ */
.dd-wwd-head { max-width: 880px; margin: 0 auto clamp(36px, 4vw, 56px); text-align: center; }
.dd-wwd-head .dd-section-eyebrow { display: inline-block; margin-bottom: 12px; }
.dd-wwd-head .dd-section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 auto 16px; max-width: 22ch; }
.dd-wwd-head p { font-size: 1.05rem; color: var(--dd-ink-muted); line-height: 1.6; margin: 0 auto; max-width: 56ch; }

/* "What we do" — 2x2 grid of duotone photo tiles with overlay text */
.dd-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 640px) { .dd-wwd-grid { grid-template-columns: 1fr; } }

.dd-wwd-card {
    position: relative;
    display: block;
    aspect-ratio: 5 / 3;
    min-height: 240px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dd-wwd-card:hover { transform: translateY(-3px); box-shadow: var(--dd-shadow-lg); }
.dd-wwd-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.45) contrast(1.18);
    transition: transform 0.4s, filter 0.25s;
}
.dd-wwd-card:hover img { transform: scale(1.05); filter: grayscale(1) brightness(0.55) contrast(1.18); }
.dd-wwd-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(63,160,46,0.4) 0%, transparent 55%),
        linear-gradient(180deg, transparent 40%, rgba(10,12,14,0.85) 100%);
    z-index: 1;
}
.dd-wwd-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 48px;
    height: 3px;
    background: var(--dd-green-light);
    z-index: 3;
    transition: width 0.3s cubic-bezier(.7,0,.3,1);
}
.dd-wwd-card:hover::after { width: 100%; }

.dd-wwd-num {
    position: absolute;
    z-index: 2;
    top: clamp(16px, 2vw, 22px);
    left: clamp(18px, 2.2vw, 24px);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: var(--dd-green-light);
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.dd-wwd-card-icon {
    position: absolute;
    z-index: 2;
    top: clamp(16px, 2vw, 22px);
    right: clamp(18px, 2.2vw, 24px);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-wwd-card-icon svg { width: 18px; height: 18px; }

.dd-wwd-card-body {
    position: absolute;
    z-index: 2;
    left: 0; right: 0; bottom: 0;
    padding: clamp(18px, 2.4vw, 26px);
}
.dd-wwd-name {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.dd-wwd-brief {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0;
    max-width: 38ch;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   DUOTONE PHOTO STRIP — green/black treatment hides amateur
   quality and gives the page atmosphere
   ============================================================ */
.dd-strip {
    background: #0c0e10;
    padding: clamp(48px, 5vw, 72px) clamp(20px, 5vw, 48px);
    position: relative;
    overflow: hidden;
}
.dd-strip-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.dd-strip-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(28px, 3vw, 40px);
    color: #fff;
}
.dd-strip-head .eyebrow {
    color: var(--dd-green-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.dd-strip-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    max-width: 22ch;
}
.dd-strip-head a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid #fff;
    padding-bottom: 3px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.15s, border-color 0.15s, gap 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dd-strip-head a:hover { color: var(--dd-green-light); border-color: var(--dd-green-light); gap: 12px; }

.dd-strip-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 12px;
    aspect-ratio: 16 / 7;
    max-height: 420px;
}
@media (max-width: 900px) { .dd-strip-grid { grid-template-columns: 1fr 1fr; aspect-ratio: auto; max-height: none; } }
@media (max-width: 520px) { .dd-strip-grid { grid-template-columns: 1fr; } }
.dd-strip-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    display: block;
    text-decoration: none;
    color: #fff;
}
@media (max-width: 720px) { .dd-strip-tile { aspect-ratio: 4/3; } }
.dd-strip-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Duotone: heavy desaturation + tint via filter */
    filter: grayscale(1) brightness(0.55) contrast(1.15);
    transition: filter 0.3s, transform 0.4s;
}
.dd-strip-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(63,160,46,0.45) 0%, rgba(63,160,46,0.05) 40%, transparent 60%),
        linear-gradient(180deg, transparent 35%, rgba(10,12,14,0.85) 100%);
    mix-blend-mode: normal;
    z-index: 1;
}
.dd-strip-tile:hover img { transform: scale(1.04); filter: grayscale(1) brightness(0.7) contrast(1.15); }
.dd-strip-tile-label {
    position: absolute;
    z-index: 2;
    left: 0; right: 0; bottom: 0;
    padding: clamp(18px, 2.2vw, 26px);
}
.dd-strip-tile-cat {
    display: inline-block;
    background: var(--dd-green);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.dd-strip-tile-name {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    margin: 0;
    color: #fff;
}

/* Featured single photo above the service grid */
.dd-wwd-feature {
    position: relative;
    aspect-ratio: 21 / 9;
    max-height: 520px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: clamp(28px, 3vw, 40px);
    background: #1a1a1a;
    box-shadow: var(--dd-shadow-md);
}
.dd-wwd-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dd-wwd-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}
.dd-wwd-feature-label {
    position: absolute;
    z-index: 1;
    left: 0; right: 0; bottom: 0;
    padding: clamp(20px, 2.5vw, 32px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.dd-wwd-feature-cat {
    display: inline-block;
    background: var(--dd-green);
    color: #0a0a0a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.dd-wwd-feature-name {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    margin: 0;
}
.dd-wwd-feature-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1.5px solid #fff;
    padding-bottom: 2px;
    transition: gap 0.15s, color 0.15s, border-color 0.15s;
}
.dd-wwd-feature-link:hover { color: var(--dd-green-light); border-color: var(--dd-green-light); }

.dd-wwd-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(28px, 3vw, 40px);
    padding-top: clamp(20px, 2.5vw, 28px);
    border-top: 1px solid var(--dd-line);
}
.dd-wwd-foot p {
    color: var(--dd-ink-muted);
    font-size: 0.95rem;
    margin: 0;
    max-width: 56ch;
}
.dd-wwd-foot a {
    color: var(--dd-ink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid var(--dd-ink);
    padding-bottom: 4px;
    transition: color 0.15s, border-color 0.15s, gap 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dd-wwd-foot a:hover { color: var(--dd-green); border-color: var(--dd-green); gap: 12px; }

/* ============================================================
   WORK TEASE (home) — large photo/illustration tiles
   ============================================================ */
.dd-work-tease {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.dd-work-tease > a {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    background: #1a1a1a;
    transition: transform 0.25s, box-shadow 0.25s;
}
.dd-work-tease > a:hover { transform: translateY(-3px); box-shadow: var(--dd-shadow-lg); }
.dd-work-tease > a { aspect-ratio: 4/3; }
.dd-work-tease > a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dd-work-tease > a:hover img { transform: scale(1.05); }
.dd-work-tease > a .dd-work-tile-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #1f2226 0%, #0d0f12 100%);
    transition: background 0.25s;
}
.dd-work-tease > a:hover .dd-work-tile-bg {
    background: linear-gradient(165deg, #262a2f 0%, #0d0f12 100%);
}
/* Subtle hairline corner highlight, all tiles same */
.dd-work-tease > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(63,160,46,0.12) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 0;
}
.dd-work-tease > a:hover::before { opacity: 1; }
.dd-work-tile-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: rgba(255,255,255,0.14);
    width: 72px;
    height: 72px;
    transition: color 0.25s;
}
.dd-work-tease > a:hover .dd-work-tile-icon { color: rgba(91,196,47,0.55); }
.dd-work-tile-icon svg { width: 100%; height: 100%; }
.dd-work-tile-label {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.dd-work-tile-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dd-green-light);
    margin: 0 0 4px;
}
.dd-work-tile-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}
@media (max-width: 800px) { .dd-work-tease { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .dd-work-tease { grid-template-columns: 1fr; } }
.dd-work-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.dd-work-foot .dd-link {
    font-weight: 700;
    text-decoration: none;
    color: var(--dd-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s;
}
.dd-work-foot .dd-link:hover { gap: 12px; color: var(--dd-green-dark); }

/* ============================================================
   SERVICES GRID (homepage)
   ============================================================ */
.dd-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1000px) { .dd-svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .dd-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .dd-svc-grid { grid-template-columns: 1fr; } }
.dd-svc {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 12px;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    position: relative;
}
.dd-svc:hover {
    transform: translateY(-3px);
    box-shadow: var(--dd-shadow-md);
    border-color: var(--dd-line-strong);
}
.dd-svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(63,160,46,0.1);
    color: var(--dd-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-svc-icon svg { width: 24px; height: 24px; }
.dd-svc-title { font-size: 1.05rem; font-weight: 700; margin: 0; }
.dd-svc-desc { font-size: 0.88rem; line-height: 1.5; color: var(--dd-ink-muted); margin: 0; }
.dd-svc-more {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dd-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.dd-areas {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
@media (max-width: 800px) { .dd-areas { grid-template-columns: 1fr; } }
.dd-areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dd-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 8px;
    border-bottom: 1px solid var(--dd-line);
    font-weight: 600;
}
.dd-area svg { width: 16px; height: 16px; color: var(--dd-green); }
.dd-area-map {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 14px;
    padding: 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image:
        linear-gradient(135deg, rgba(63,160,46,0.05) 0%, transparent 70%),
        radial-gradient(circle at 30% 40%, rgba(63,160,46,0.1) 0%, transparent 35%),
        radial-gradient(circle at 70% 60%, rgba(63,160,46,0.08) 0%, transparent 30%);
}
.dd-area-map svg { width: 80px; height: 80px; color: var(--dd-green); margin-bottom: 12px; }
.dd-area-map h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 4px; }
.dd-area-map p { font-size: 0.9rem; color: var(--dd-ink-muted); margin: 0; max-width: 24ch; }

/* ============================================================
   REVIEWS
   ============================================================ */
.dd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .dd-reviews-grid { grid-template-columns: 1fr; } }
.dd-review {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 12px;
    padding: 22px;
}
.dd-review-stars { color: var(--dd-star); letter-spacing: 1px; margin-bottom: 10px; font-size: 1rem; }
.dd-review-body { font-size: 0.97rem; line-height: 1.55; margin: 0 0 16px; }
.dd-review-meta { display: flex; align-items: center; gap: 10px; }
.dd-review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dd-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.dd-review-name { font-weight: 700; font-size: 0.92rem; }
.dd-review-where { font-size: 0.8rem; color: var(--dd-ink-soft); }

/* ============================================================
   PULL QUOTE (single big review, replaces 3-card grid on home)
   ============================================================ */
.dd-pull {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.dd-pull-stars { color: var(--dd-star); letter-spacing: 3px; font-size: 1.2rem; margin-bottom: 18px; }
.dd-pull-body {
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    color: var(--dd-ink);
}
.dd-pull-body::before { content: '\201C'; color: var(--dd-green); margin-right: 4px; }
.dd-pull-body::after  { content: '\201D'; color: var(--dd-green); margin-left: 4px; }
.dd-pull-attrib {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dd-ink-muted);
}
.dd-pull-attrib strong { color: var(--dd-ink); font-weight: 700; }
.dd-pull-divider { width: 24px; height: 1px; background: var(--dd-line-strong); }
.dd-pull-source {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--dd-ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   HOW WE WORK — dark process band with big numerals
   ============================================================ */
.dd-how {
    background:
        radial-gradient(circle at 90% 0%, rgba(63,160,46,0.13) 0%, transparent 35%),
        radial-gradient(circle at 8% 100%, rgba(63,160,46,0.07) 0%, transparent 35%),
        #0c0e10;
    color: #e6e8eb;
    padding: clamp(64px, 7vw, 96px) clamp(20px, 5vw, 48px);
    position: relative;
    overflow: hidden;
}
.dd-how::before,
.dd-how::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 8px;
    background:
        repeating-linear-gradient(135deg,
            #3FA02E 0,
            #3FA02E 14px,
            #0c0e10 14px,
            #0c0e10 28px);
    opacity: 0.7;
}
.dd-how::before { top: 0; }
.dd-how::after { bottom: 0; }
.dd-how-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dd-how-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(32px, 4vw, 48px);
}
.dd-how-head .eyebrow {
    color: var(--dd-green-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.dd-how-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    max-width: 22ch;
}
.dd-how-head p {
    color: #b8bcc0;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 30ch;
}
.dd-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #1c1f22;
    border-bottom: 1px solid #1c1f22;
}
@media (max-width: 900px) { .dd-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dd-how-grid { grid-template-columns: 1fr; } }

.dd-how-step {
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
    border-right: 1px solid #1c1f22;
    position: relative;
}
.dd-how-grid > .dd-how-step:last-child { border-right: 0; }
@media (max-width: 900px) {
    .dd-how-grid > .dd-how-step:nth-child(2) { border-right: 0; }
    .dd-how-step:nth-child(-n+2) { border-bottom: 1px solid #1c1f22; }
}
@media (max-width: 480px) {
    .dd-how-step { border-right: 0; border-bottom: 1px solid #1c1f22; }
    .dd-how-grid > .dd-how-step:last-child { border-bottom: 0; }
}
.dd-how-step .num {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dd-green-light);
    line-height: 1;
    letter-spacing: -0.04em;
    display: block;
    margin: 0 0 12px;
}
.dd-how-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0 0 8px;
}
.dd-how-step p {
    font-size: 0.92rem;
    color: #b8bcc0;
    line-height: 1.55;
    margin: 0;
}
.dd-how-step::before {
    content: '';
    position: absolute;
    top: clamp(24px, 3vw, 36px);
    left: 0;
    width: 2px;
    height: clamp(40px, 5vw, 56px);
    background: var(--dd-green);
    opacity: 0;
    transition: opacity 0.2s;
}
.dd-how-step:hover::before { opacity: 1; }

/* ============================================================
   PROCESS / How it works
   ============================================================ */
.dd-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .dd-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dd-process { grid-template-columns: 1fr; } }
.dd-process-step { position: relative; }
.dd-process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dd-green);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 12px;
}
.dd-process-step h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 6px; }
.dd-process-step p { font-size: 0.92rem; line-height: 1.5; color: var(--dd-ink-muted); margin: 0; }

/* ============================================================
   Quiet end-rule (replaces loud CTA strip)
   ============================================================ */
.dd-endrule {
    text-align: center;
    padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 48px);
    border-top: 1px solid var(--dd-line);
    color: var(--dd-ink-muted);
    font-size: 1.02rem;
}
.dd-endrule a {
    color: var(--dd-ink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid var(--dd-ink);
    transition: color 0.15s, border-color 0.15s;
}
.dd-endrule a:hover { color: var(--dd-green); border-bottom-color: var(--dd-green); }
.dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, border-color 0.15s;
}
.dd-btn-primary { background: var(--dd-green); color: #fff; box-shadow: 0 1px 0 var(--dd-green-dark), var(--dd-shadow-md); }
.dd-btn-primary:hover { background: var(--dd-green-dark); transform: translateY(-1px); }
.dd-btn-outline { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.3); }
.dd-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #ffffff; }
.dd-btn-light { background: #ffffff; color: var(--dd-ink); }
.dd-btn-light:hover { background: var(--dd-bg-alt); }

/* ============================================================
   FOOTER — editorial / minimal
   ============================================================ */
.dd-footer {
    background: var(--dd-black);
    color: #b8bcc0;
    padding: clamp(40px, 4.5vw, 64px) clamp(20px, 5vw, 48px) 20px;
}
.dd-footer a { color: #b8bcc0; text-decoration: none; transition: color 0.15s; }
.dd-footer a:hover { color: #ffffff; }
.dd-footer-top {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(24px, 3vw, 56px);
    align-items: end;
    padding-bottom: clamp(24px, 3vw, 36px);
    border-bottom: 1px solid #1c1f22;
}
@media (max-width: 720px) { .dd-footer-top { grid-template-columns: 1fr; align-items: start; } }
.dd-footer-mark {
    color: #ffffff;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 10px;
    white-space: nowrap;
}
@media (max-width: 720px) { .dd-footer-mark { white-space: normal; } }
.dd-footer-mark .green { color: var(--dd-green); }
.dd-footer-tagline {
    color: #b8bcc0;
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0;
    max-width: 36ch;
}
.dd-footer-quick {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}
@media (max-width: 720px) { .dd-footer-quick { align-items: flex-start; text-align: left; } }
.dd-footer-quick .dd-footer-phone-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6e7278;
    text-transform: uppercase;
}
.dd-footer-quick .dd-footer-phone {
    color: #ffffff;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    text-decoration: none;
}
.dd-footer-quick .dd-footer-phone:hover { color: var(--dd-green-light); }
.dd-footer-mid {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(20px, 2.5vw, 32px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 3vw, 48px);
}
@media (max-width: 720px) { .dd-footer-mid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dd-footer-mid { grid-template-columns: 1fr; } }
.dd-footer-mid h3 {
    color: #6e7278;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.dd-footer-mid ul { list-style: none; padding: 0; margin: 0; }
.dd-footer-mid li {
    font-size: 0.95rem;
    line-height: 1.85;
}
.dd-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px solid #1c1f22;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.8rem;
    color: #6e7278;
}
.dd-footer-bottom button {
    background: transparent;
    border: 1px solid #2a2e32;
    color: #b8bcc0;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.dd-footer-bottom button:hover { border-color: #ffffff; color: #ffffff; }
.dd-footer-bottom button.active { background: var(--dd-green); border-color: var(--dd-green); color: #ffffff; }
.dd-footer-toggles { display: flex; gap: 8px; align-items: center; }

/* ============================================================
   PAGE HEAD (gallery, services, contact)
   ============================================================ */
.dd-page-head {
    background: var(--dd-bg-alt);
    border-bottom: 1px solid var(--dd-line);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 48px);
}
.dd-page-head-inner { max-width: 1280px; margin: 0 auto; }
.dd-page-head h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; }
.dd-page-head p { font-size: 1.08rem; color: var(--dd-ink-muted); max-width: 56ch; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.dd-gallery { max-width: 1280px; margin: 0 auto; padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 48px); }
.dd-gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.dd-gallery-filters button {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 9px 18px;
    background: transparent;
    color: var(--dd-ink-muted);
    border: 1px solid var(--dd-line-strong);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.15s;
}
.dd-gallery-filters button:hover { color: var(--dd-ink); border-color: var(--dd-ink); }
.dd-gallery-filters button.active { background: var(--dd-green); color: #fff; border-color: var(--dd-green); }
.dd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 900px) { .dd-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dd-gallery-grid { grid-template-columns: 1fr; } }
.dd-job {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    display: flex;
    align-items: flex-end;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dd-job:hover { transform: translateY(-3px); box-shadow: var(--dd-shadow-lg); }
.dd-job img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dd-job:hover img { transform: scale(1.05); }
.dd-job-label { position: relative; z-index: 1; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 16px; font-weight: 700; }

/* Empty state */
.dd-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 48px);
    text-align: center;
}
.dd-empty-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(63,160,46,0.1);
    color: var(--dd-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-empty-icon svg { width: 42px; height: 42px; }
.dd-empty h2 { font-size: 1.6rem; font-weight: 800; margin: 0 0 10px; }
.dd-empty p { font-size: 1rem; color: var(--dd-ink-muted); margin: 0 0 24px; }

/* ============================================================
   SERVICES PAGE — detailed catalog
   ============================================================ */
.dd-svc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 880px) { .dd-svc-detail-grid { grid-template-columns: 1fr; } }
.dd-svc-detail {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 14px;
    padding: clamp(20px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.dd-svc-detail:hover { transform: translateY(-3px); box-shadow: var(--dd-shadow-md); border-color: var(--dd-line-strong); }
.dd-svc-detail-header { display: flex; align-items: center; gap: 14px; }
.dd-svc-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(63,160,46,0.15) 0%, rgba(63,160,46,0.05) 100%);
    color: var(--dd-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-svc-detail-icon svg { width: 28px; height: 28px; }
.dd-svc-detail h3 { font-size: 1.3rem; font-weight: 800; margin: 0; }
.dd-svc-detail-body { font-size: 0.95rem; line-height: 1.55; color: var(--dd-ink-muted); margin: 0; }
.dd-svc-detail-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.dd-svc-detail-list li { display: flex; align-items: baseline; gap: 7px; font-size: 0.88rem; }
.dd-svc-detail-list li::before { content: '✓'; color: var(--dd-green); font-weight: 700; flex-shrink: 0; }
.dd-svc-detail-cta { margin-top: auto; align-self: flex-start; font-weight: 700; font-size: 0.95rem; color: var(--dd-green); text-decoration: none; padding-top: 8px; display: inline-flex; align-items: center; gap: 4px; }
.dd-svc-detail-cta:hover { color: var(--dd-green-dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.dd-contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 48px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
@media (max-width: 900px) { .dd-contact-grid { grid-template-columns: 1fr; } }
.dd-contact-info {
    background: var(--dd-bg-alt);
    border: 1px solid var(--dd-line);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 32px);
}
.dd-contact-info h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dd-ink-soft); margin: 0 0 6px; }
.dd-contact-info h3:not(:first-of-type) { margin-top: 20px; }
.dd-contact-info .dd-info-phone { color: var(--dd-ink); font-weight: 800; font-size: 1.8rem; letter-spacing: -0.01em; text-decoration: none; display: block; }
.dd-contact-info .dd-info-phone:hover { color: var(--dd-green); }
.dd-contact-info p { font-size: 0.95rem; line-height: 1.5; color: var(--dd-ink-muted); margin: 0 0 10px; }
.dd-info-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.dd-info-list li { font-size: 0.9rem; color: var(--dd-ink-muted); display: flex; align-items: baseline; gap: 6px; }
.dd-info-list li::before { content: '•'; color: var(--dd-green); }
.dd-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dd-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Utility */
:focus-visible { outline: 2px solid var(--dd-green); outline-offset: 2px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
