/*
 Theme Name:   Waco Deck Repair Child
 Theme URI:    https://wacodeckrepair.com
 Description:  Child theme for Waco Deck Repair, built on Neve.
 Author:       Waco Deck Repair
 Template:     neve
 Version:      1.0.0
 Text Domain:  waco-deck-repair-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — edit here to rebrand the entire site
   ============================================================ */
:root {
    /* Brand colors */
    --dk-charcoal:    #1E1E1E;      /* Primary dark — hero bg, nav */
    --dk-slate:       #2C3440;      /* Section dark — cards, footers */
    --dk-warm-gray:   #4A4A4A;      /* Body text on light backgrounds */
    --dk-mid-gray:    #7A7A7A;      /* Muted text, captions */
    --dk-cream:       #F5F0E8;      /* Off-white section background */
    --dk-parchment:   #EDE5D4;      /* Alternate light section */
    --dk-white:       #FFFFFF;

    /* Accent — CTAs must stand out. This amber/amber-dark pair is unmissable. */
    --dk-amber:       #D97706;      /* Primary CTA color */
    --dk-amber-dk:    #B45309;      /* CTA hover / dark variant */
    --dk-amber-lt:    #FCD34D;      /* Light accent / highlights */

    /* Wood tones — used for decorative elements */
    --dk-wood-lt:     #A0785A;      /* Light wood accent */
    --dk-wood-dk:     #6B4C35;      /* Dark wood accent */

    /* Typography */
    --dk-font-display: 'Bitter', Georgia, serif;
    --dk-font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

    /* Spacing */
    --dk-space-xs:    8px;
    --dk-space-sm:    16px;
    --dk-space-md:    24px;
    --dk-space-lg:    48px;
    --dk-space-xl:    72px;
    --dk-space-2xl:   96px;

    /* Layout */
    --dk-max-width:   1160px;
    --dk-radius:      10px;
    --dk-radius-lg:   18px;

    /* Shadows */
    --dk-shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
    --dk-shadow-md:   0 6px 28px rgba(0,0,0,0.13);
    --dk-shadow-lg:   0 16px 56px rgba(0,0,0,0.22);
    --dk-shadow-hero: 0 20px 64px rgba(0,0,0,0.32);

    /* Transitions */
    --dk-transition:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
.dk-page *,
.lp-page * {
    box-sizing: border-box;
}

.dk-page img,
.lp-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dk-page a,
.lp-page a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.dk-container {
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.dk-section {
    padding: var(--dk-space-xl) 0;
}

.dk-section--cream     { background-color: var(--dk-cream); }
.dk-section--parchment { background-color: var(--dk-parchment); }
.dk-section--dark      { background-color: var(--dk-slate); }
.dk-section--charcoal  { background-color: var(--dk-charcoal); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.dk-eyebrow {
    display: block;
    font-family: var(--dk-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dk-amber);
    margin-bottom: var(--dk-space-xs);
}

.dk-eyebrow--light {
    color: rgba(253, 211, 77, 0.75);
}

.dk-h1 {
    font-family: var(--dk-font-display);
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dk-white);
    margin: 0 0 var(--dk-space-sm);
}

.dk-h1 em {
    font-style: italic;
    color: var(--dk-amber-lt);
}

.dk-h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dk-charcoal);
    margin: 0 0 var(--dk-space-sm);
}

.dk-h2--light { color: var(--dk-white); }

.dk-h3 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dk-charcoal);
    margin: 0 0 var(--dk-space-xs);
}

.dk-h3--light { color: var(--dk-cream); }

.dk-h4 {
    font-family: var(--dk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 6px;
}

.dk-h4--light { color: var(--dk-cream); }

.dk-lead {
    font-family: var(--dk-font-body);
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.82);
    margin: 0 0 var(--dk-space-md);
}

.dk-body {
    font-family: var(--dk-font-body);
    font-size: 1rem;
    line-height: 1.78;
    color: var(--dk-warm-gray);
    margin: 0 0 var(--dk-space-sm);
}

.dk-body:last-child { margin-bottom: 0; }

.dk-body--muted { color: var(--dk-mid-gray); }
.dk-body--light { color: rgba(245, 240, 232, 0.72); }

/* ============================================================
   BUTTONS
   ============================================================ */
.dk-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--dk-space-xs);
    font-family: var(--dk-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: var(--dk-transition);
    text-decoration: none;
    white-space: nowrap;
}

.dk-btn--primary {
    background: var(--dk-amber);
    color: var(--dk-charcoal) !important;
    box-shadow: 0 6px 28px rgba(217, 119, 6, 0.40);
}

.dk-btn--primary:hover {
    background: var(--dk-amber-dk);
    color: var(--dk-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(217, 119, 6, 0.50);
}

.dk-btn--secondary {
    background: transparent;
    color: var(--dk-cream) !important;
    border: 2px solid rgba(245, 240, 232, 0.38);
}

.dk-btn--secondary:hover {
    background: rgba(245, 240, 232, 0.10);
    border-color: rgba(245, 240, 232, 0.65);
}

.dk-btn--dark {
    background: var(--dk-charcoal);
    color: var(--dk-white) !important;
}

.dk-btn--dark:hover {
    background: var(--dk-slate);
    transform: translateY(-2px);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.dk-hero {
    background-color: var(--dk-charcoal);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

/* Subtle wood-grain texture overlay using CSS only */
.dk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            93deg,
            transparent 0px,
            transparent 3px,
            rgba(160, 120, 90, 0.025) 3px,
            rgba(160, 120, 90, 0.025) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.dk-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.dk-hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dk-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 119, 6, 0.16);
    border: 1px solid rgba(217, 119, 6, 0.36);
    color: var(--dk-amber-lt);
    font-family: var(--dk-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.dk-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: var(--dk-space-md);
}

.dk-hero__form-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 32px 28px;
    box-shadow: var(--dk-shadow-hero);
}

.dk-hero__form-card .dk-h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.dk-hero__form-card .dk-body--muted {
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.dk-form-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-family: var(--dk-font-body);
    font-size: 0.78rem;
    color: var(--dk-mid-gray);
}

.dk-form-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-amber);
    flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.dk-trustbar {
    background: var(--dk-slate);
    padding: 18px 0;
    border-top: 2px solid var(--dk-amber);
}

.dk-trustbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 36px;
    align-items: center;
    justify-content: center;
}

.dk-trustbar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--dk-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dk-cream);
}

.dk-trustbar__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dk-trustbar__icon svg {
    width: 15px;
    height: 15px;
    fill: var(--dk-amber-lt);
}

/* ============================================================
   IMAGE + CONTENT SPLIT SECTIONS
   ============================================================ */
.dk-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dk-split--reverse { direction: rtl; }
.dk-split--reverse > * { direction: ltr; }

.dk-split__img {
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-md);
    position: relative;
}

.dk-split__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dk-split__img:hover img {
    transform: scale(1.03);
}

.dk-split__img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--dk-amber);
    color: var(--dk-charcoal);
    font-family: var(--dk-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.dk-process {
    background: var(--dk-charcoal);
    padding: var(--dk-space-xl) 0;
    position: relative;
    overflow: hidden;
}

.dk-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            93deg,
            transparent 0px,
            transparent 3px,
            rgba(160, 120, 90, 0.02) 3px,
            rgba(160, 120, 90, 0.02) 4px
        );
    pointer-events: none;
}

.dk-process__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--dk-space-lg);
    position: relative;
    z-index: 1;
}

.dk-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.dk-process__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: rgba(217, 119, 6, 0.22);
}

.dk-pstep {
    padding: 0 var(--dk-space-sm);
    text-align: center;
}

.dk-pstep__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dk-slate);
    border: 2px solid rgba(217, 119, 6, 0.45);
    color: var(--dk-amber-lt);
    font-family: var(--dk-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--dk-transition);
}

.dk-pstep:first-child .dk-pstep__num,
.dk-pstep:last-child .dk-pstep__num {
    background: var(--dk-amber);
    border-color: var(--dk-amber);
    color: var(--dk-charcoal);
}

.dk-pstep h4 {
    font-family: var(--dk-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dk-cream);
    margin: 0 0 8px;
}

.dk-pstep p {
    font-family: var(--dk-font-body);
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.58);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   SERVICE / BENEFIT CARDS
   ============================================================ */
.dk-cards-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--dk-space-lg);
}

.dk-cards-header .dk-body {
    color: var(--dk-warm-gray);
    margin: 0;
}

.dk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--dk-space-md);
}

.dk-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dk-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.dk-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    padding: 28px 24px;
    box-shadow: var(--dk-shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--dk-transition);
}

.dk-card:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--dk-amber);
    box-shadow: var(--dk-shadow-md);
}

.dk-card--dark {
    background: var(--dk-slate);
    border-bottom: 3px solid transparent;
}

.dk-card--dark:hover {
    border-bottom-color: var(--dk-amber);
}

.dk-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--dk-space-xs);
    background: var(--dk-parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--dk-space-sm);
}

.dk-card--dark .dk-card__icon {
    background: rgba(217, 119, 6, 0.15);
}

.dk-card__icon svg {
    width: 24px;
    height: 24px;
}

.dk-card h3 {
    font-family: var(--dk-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 8px;
}

.dk-card--dark h3 { color: var(--dk-cream); }

.dk-card p {
    font-family: var(--dk-font-body);
    font-size: 0.9rem;
    color: var(--dk-warm-gray);
    margin: 0;
    line-height: 1.65;
}

.dk-card--dark p { color: rgba(245, 240, 232, 0.62); }

/* Horizontal service card */
.dk-service-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-sm);
    background: var(--dk-white);
    transition: var(--dk-transition);
    text-decoration: none;
}

.dk-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-lg);
}

.dk-service-card--reverse { direction: rtl; }
.dk-service-card--reverse > * { direction: ltr; }

.dk-service-card__img {
    overflow: hidden;
    position: relative;
}

.dk-service-card__img img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dk-service-card:hover .dk-service-card__img img {
    transform: scale(1.05);
}

.dk-service-card__body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dk-service-card__body h3 {
    font-family: var(--dk-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 10px;
}

.dk-service-card__body p {
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-warm-gray);
    line-height: 1.7;
    margin: 0 0 20px;
}

.dk-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dk-font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dk-amber);
    transition: gap 0.2s ease;
}

.dk-service-card:hover .dk-service-card__link { gap: 14px; }

.dk-service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.dk-checklist {
    list-style: none;
    margin: var(--dk-space-md) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dk-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-warm-gray);
    line-height: 1.5;
}

.dk-checklist--light li { color: rgba(245, 240, 232, 0.88); }

.dk-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dk-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.dk-check svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: var(--dk-charcoal);
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   CTA SECTION — Full-width centered banner with image overlay
   ============================================================ */
.dk-cta {
    position: relative;
    padding: var(--dk-space-2xl) 0;
    background-color: var(--dk-charcoal);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.dk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(217, 119, 6, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(107, 76, 53, 0.15) 0%, transparent 55%);
    z-index: 0;
}

.dk-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            93deg,
            transparent 0px,
            transparent 3px,
            rgba(160, 120, 90, 0.025) 3px,
            rgba(160, 120, 90, 0.025) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.dk-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.dk-cta__headline {
    font-family: var(--dk-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--dk-white);
    line-height: 1.12;
    margin: 0 0 16px;
}

.dk-cta__sub {
    font-family: var(--dk-font-body);
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.68;
    margin: 0 0 32px;
}

.dk-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.dk-faq__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--dk-space-lg);
}

.dk-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dk-accordion-item {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    box-shadow: var(--dk-shadow-sm);
    overflow: hidden;
}

.dk-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.dk-accordion-trigger:hover { background: var(--dk-cream); }

.dk-accordion-trigger h4 {
    font-family: var(--dk-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.dk-accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dk-parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dk-transition);
}

.dk-accordion-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--dk-wood-dk);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.28s ease;
}

.dk-accordion-item.is-open .dk-accordion-icon {
    background: var(--dk-amber);
}

.dk-accordion-item.is-open .dk-accordion-icon svg {
    stroke: var(--dk-charcoal);
    transform: rotate(180deg);
}

.dk-accordion-body {
    display: none;
    padding: 0 24px 20px;
}

.dk-accordion-item.is-open .dk-accordion-body { display: block; }

.dk-accordion-body p {
    font-family: var(--dk-font-body);
    font-size: 0.92rem;
    color: var(--dk-warm-gray);
    margin: 0;
    line-height: 1.75;
    border-top: 1px solid var(--dk-parchment);
    padding-top: 16px;
}

/* ============================================================
   MAP + BOTTOM FORM SECTION
   ============================================================ */
.dk-map-form {
    padding: var(--dk-space-xl) 0;
    background: var(--dk-cream);
}

.dk-map-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.dk-map-form__left h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 14px;
    line-height: 1.2;
}

.dk-map-form__left .dk-body { margin-bottom: var(--dk-space-md); }

.dk-map-wrap {
    border-radius: var(--dk-radius);
    overflow: hidden;
    box-shadow: var(--dk-shadow-md);
    line-height: 0;
}

.dk-form-box {
    background: var(--dk-slate);
    border-radius: var(--dk-radius-lg);
    padding: 36px 32px;
    box-shadow: var(--dk-shadow-lg);
    border-top: 3px solid var(--dk-amber);
}

.dk-form-box h3 {
    font-family: var(--dk-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dk-cream);
    margin: 0 0 8px;
}

.dk-form-box .dk-body--light { margin-bottom: 20px; font-size: 0.88rem; }

.dk-form-box .dk-form-trust { color: rgba(245, 240, 232, 0.45); }
.dk-form-box .dk-form-trust-dot { background: var(--dk-amber); }

/* ============================================================
   IMAGE GALLERY ROW
   ============================================================ */
.dk-gallery {
    padding: 48px 0;
    background: var(--dk-charcoal);
}

.dk-gallery__label {
    text-align: center;
    margin-bottom: 24px;
}

.dk-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dk-gallery__grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--dk-space-xs);
    transition: var(--dk-transition);
    filter: brightness(0.88);
}

.dk-gallery__grid img:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

/* ============================================================
   STAT BOX ROW
   ============================================================ */
.dk-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--dk-space-sm);
}

.dk-stat-box {
    background: var(--dk-slate);
    border-radius: var(--dk-radius);
    padding: 22px 18px;
    text-align: center;
    border-top: 2px solid rgba(217, 119, 6, 0.30);
}

.dk-stat-box__num {
    font-family: var(--dk-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dk-amber-lt);
    line-height: 1;
    margin-bottom: 6px;
}

.dk-stat-box__label {
    font-family: var(--dk-font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.35;
}

/* ============================================================
   LONG-FORM COPY SECTION (two-column with sticky sidebar)
   ============================================================ */
.dk-copy__inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.dk-copy__text h2 { margin-bottom: 18px; }
.dk-copy__text h3 {
    font-family: var(--dk-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 32px 0 10px;
}

.dk-copy__sidebar {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dk-callout-box {
    background: var(--dk-charcoal);
    border-radius: var(--dk-radius-lg);
    padding: 28px 24px;
    border-left: 4px solid var(--dk-amber);
}

.dk-callout-box h4 {
    font-family: var(--dk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dk-cream);
    margin: 0 0 10px;
}

.dk-callout-box .dk-body--light { margin-bottom: 18px; }

.dk-area-list {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    padding: 24px 22px;
    box-shadow: var(--dk-shadow-sm);
}

.dk-area-list h4 {
    font-family: var(--dk-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 14px;
}

.dk-area-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
}

.dk-area-list ul li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--dk-font-body);
    font-size: 0.88rem;
    color: var(--dk-warm-gray);
}

.dk-area-list ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-amber);
    flex-shrink: 0;
}

/* ============================================================
   ENTRANCE ANIMATIONS
   Supports animation-timeline: view() in modern browsers.
   Falls back to a simple fade-in on load for older browsers.
   ============================================================ */

/* Base state — elements start invisible and slightly below */
.dk-animate {
    opacity: 0;
    transform: translateY(24px);
    animation: dk-fadeup 0.65s ease forwards;
}

.dk-animate--delay-1 { animation-delay: 0.10s; }
.dk-animate--delay-2 { animation-delay: 0.22s; }
.dk-animate--delay-3 { animation-delay: 0.34s; }
.dk-animate--delay-4 { animation-delay: 0.46s; }
.dk-animate--delay-5 { animation-delay: 0.58s; }

@keyframes dk-fadeup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered version for modern browsers */
@supports (animation-timeline: scroll()) {
    .dk-scroll-animate {
        opacity: 0;
        transform: translateY(28px);
        animation: dk-fadeup 0.6s ease forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
    }
}

/* ============================================================
   ════════════════════════════════════════════════════════════
   LOCATION PAGE SYSTEM
   Self-contained classes for suburb/city landing pages.
   Each location page uses the .lp-page wrapper.
   Shares design tokens with the main site (inherits :root vars).
   ════════════════════════════════════════════════════════════
   ============================================================ */

/* ── lp-hero ── */
.lp-hero {
    background-color: var(--dk-charcoal);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            93deg,
            transparent 0px,
            transparent 3px,
            rgba(160, 120, 90, 0.022) 3px,
            rgba(160, 120, 90, 0.022) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-hero__breadcrumb {
    font-family: var(--dk-font-body);
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-hero__breadcrumb a {
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.2s ease;
}

.lp-hero__breadcrumb a:hover { color: var(--dk-amber-lt); }

.lp-hero h1 {
    font-family: var(--dk-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--dk-white);
    line-height: 1.12;
    margin: 0 0 16px;
}

.lp-hero h1 em {
    font-style: italic;
    color: var(--dk-amber-lt);
}

.lp-hero__lead {
    font-family: var(--dk-font-body);
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.78);
    line-height: 1.72;
    margin: 0 0 28px;
}

.lp-hero__cta { margin-top: 0; }

.lp-hero__form-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--dk-shadow-hero);
}

.lp-hero__form-card h3 {
    font-family: var(--dk-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 6px;
}

.lp-hero__form-card p {
    font-family: var(--dk-font-body);
    font-size: 0.86rem;
    color: var(--dk-mid-gray);
    margin: 0 0 16px;
    line-height: 1.5;
}

/* ── lp-trust-bar ── */
.lp-trust-bar {
    background: var(--dk-slate);
    padding: 16px 0;
    border-top: 2px solid var(--dk-amber);
}

.lp-trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    align-items: center;
    justify-content: center;
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dk-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dk-cream);
}

.lp-trust-bar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-amber);
    flex-shrink: 0;
}

/* ── lp-service-area ── */
.lp-service-area {
    padding: var(--dk-space-xl) 0;
    background: var(--dk-cream);
}

.lp-service-area__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-service-area h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dk-charcoal);
    line-height: 1.2;
    margin: 0 0 14px;
}

.lp-service-area p {
    font-family: var(--dk-font-body);
    font-size: 1rem;
    color: var(--dk-warm-gray);
    line-height: 1.78;
    margin: 0 0 16px;
}

.lp-service-area__img {
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-md);
}

.lp-service-area__img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ── lp-towns-grid ── */
.lp-towns-grid {
    padding: var(--dk-space-xl) 0;
    background: var(--dk-white);
}

.lp-towns-grid__header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 36px;
}

.lp-towns-grid__header h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 10px;
}

.lp-towns-grid__header p {
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-warm-gray);
    margin: 0;
    line-height: 1.65;
}

.lp-towns-grid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-town-card {
    display: block;
    background: var(--dk-cream);
    border-radius: var(--dk-radius);
    padding: 18px 16px;
    text-align: center;
    font-family: var(--dk-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dk-charcoal);
    border-bottom: 3px solid transparent;
    transition: var(--dk-transition);
    text-decoration: none;
}

.lp-town-card:hover {
    background: var(--dk-amber);
    color: var(--dk-charcoal);
    border-bottom-color: var(--dk-amber-dk);
    transform: translateY(-3px);
    box-shadow: var(--dk-shadow-sm);
}

/* ── lp-cta ── */
.lp-cta {
    padding: var(--dk-space-2xl) 0;
    background: var(--dk-charcoal);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(217, 119, 6, 0.11) 0%, transparent 60%);
    pointer-events: none;
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-cta h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dk-white);
    margin: 0 0 14px;
    line-height: 1.15;
}

.lp-cta p {
    font-family: var(--dk-font-body);
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.72);
    line-height: 1.68;
    margin: 0 0 28px;
}

/* ── lp-faq ── */
.lp-faq {
    padding: var(--dk-space-xl) 0;
    background: var(--dk-parchment);
}

.lp-faq__header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 40px;
}

.lp-faq__header h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 10px;
}

.lp-faq__header p {
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-warm-gray);
    margin: 0;
}

/* Uses dk-accordion styles — no duplication needed */

/* ── lp-map ── */
.lp-map {
    padding: var(--dk-space-xl) 0;
    background: var(--dk-cream);
}

.lp-map__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: var(--dk-max-width);
    margin: 0 auto;
    padding: 0 var(--dk-space-md);
}

.lp-map__content h2 {
    font-family: var(--dk-font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--dk-charcoal);
    margin: 0 0 12px;
}

.lp-map__content p {
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-warm-gray);
    line-height: 1.72;
    margin: 0 0 20px;
}

.lp-map__embed {
    border-radius: var(--dk-radius);
    overflow: hidden;
    box-shadow: var(--dk-shadow-md);
    line-height: 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablet / small desktop */
@media (max-width: 1024px) {
    .dk-service-card          { grid-template-columns: 240px 1fr; }
    .dk-cards-grid--4         { grid-template-columns: repeat(2, 1fr); }
    .dk-stats-row             { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 960px) {
    .dk-hero__inner           { grid-template-columns: 1fr; }
    .dk-split                 { grid-template-columns: 1fr; gap: 36px; }
    .dk-split--reverse        { direction: ltr; }
    .dk-cards-grid            { grid-template-columns: repeat(2, 1fr); }
    .dk-cards-grid--2         { grid-template-columns: 1fr; }
    .dk-service-card          { grid-template-columns: 1fr; }
    .dk-service-card--reverse { direction: ltr; }
    .dk-service-card__img img { height: 220px; min-height: auto; }
    .dk-process__steps        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dk-process__steps::before{ display: none; }
    .dk-copy__inner           { grid-template-columns: 1fr; }
    .dk-copy__sidebar         { position: static; }
    .dk-map-form__inner       { grid-template-columns: 1fr; }
    .dk-gallery__grid         { grid-template-columns: repeat(2, 1fr); }
    .lp-hero__inner           { grid-template-columns: 1fr; }
    .lp-service-area__inner   { grid-template-columns: 1fr; }
    .lp-map__inner            { grid-template-columns: 1fr; }
    .lp-towns-grid__grid      { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
    .dk-section               { padding: var(--dk-space-lg) 0; }
    .dk-cards-grid            { grid-template-columns: 1fr; }
    .dk-cards-grid--4         { grid-template-columns: 1fr; }
    .dk-stats-row             { grid-template-columns: repeat(2, 1fr); }
    .dk-process__steps        { grid-template-columns: 1fr; }
    .dk-gallery__grid         { grid-template-columns: 1fr 1fr; }
    .dk-gallery__grid img     { height: 160px; }
    .dk-hero__inner           { gap: 36px; }
    .dk-trustbar__inner       { justify-content: flex-start; padding: 0 var(--dk-space-md); }
    .dk-area-list ul          { grid-template-columns: 1fr; }
    .lp-towns-grid__grid      { grid-template-columns: repeat(2, 1fr); }
    .lp-hero__inner           { gap: 32px; }
}
