:root {
    --ink: #18140f;
    --ink-soft: #463c30;
    --cream: #f3ead0;
    --cream-light: #fff9eb;
    --tan: #d7bd82;
    --gold: #c99a34;
    --wood: #342115;
    --green: #263b26;
    --red: #7a2520;
    --line: rgba(24, 20, 15, .16);
    --shadow-soft: 0 14px 30px rgba(30, 22, 12, .12);
    --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    z-index: 999;
}
.skip-link:focus { left: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 12, 8, .88), rgba(16, 12, 8, .68), rgba(16, 12, 8, .88)),
        url('../images/wood-header.webp') center / cover no-repeat;
    border-bottom: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.header-inner {
    width: 100%;
    min-height: 66px;
    padding: 8px clamp(18px, 4vw, 72px);
    display: grid;
    grid-template-columns: minmax(270px, auto) 1fr auto;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.brand-badge {
    width: 64px;
    min-width: 64px;
    height: 46px;
    border-radius: 10px;
    background: rgba(255, 248, 230, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-shadow: 0 6px 14px rgba(0,0,0,.22);
}

.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.08;
    letter-spacing: .01em;
}

.brand-text span {
    display: block;
    margin-top: 3px;
    color: #f3d9a4;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 13px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.24);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    white-space: nowrap;
    color: #f4e5c1;
    text-align: right;
}

.header-contact a {
    text-decoration: none;
    font-weight: 800;
    color: #fff;
}

.mobile-toggle {
    display: none;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.24);
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 20px;
    cursor: pointer;
}

.page-hero {
    position: relative;
    min-height: 365px;
    display: flex;
    align-items: center;
    background: #21180f;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-image) center / cover no-repeat;
    transform: scale(1.01);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 6, .84) 0%, rgba(8, 8, 6, .58) 42%, rgba(8, 8, 6, .18) 100%),
        linear-gradient(0deg, rgba(8, 8, 6, .64), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(46px, 6vw, 68px) clamp(22px, 8vw, 150px);
    color: #fff;
}

.kicker {
    display: inline-block;
    color: #dcb65c;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

h1, h2, h3 {
    line-height: 1.12;
    font-family: Georgia, 'Times New Roman', serif;
}

h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(38px, 5vw, 60px);
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.hero-content p {
    max-width: 690px;
    margin: 18px 0 0;
    font-size: clamp(16px, 1.5vw, 19px);
    color: #fff3db;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.btn-primary {
    background: var(--gold);
    color: #170f07;
}

.btn-dark {
    background: rgba(0,0,0,.48);
    color: #fff;
}

.section {
    width: 100%;
    padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 76px);
}

.section.tight { padding-top: 42px; }

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.card,
.copy-panel,
.pricing-card,
.summary-card,
.accept-card,
.history-photo,
.small-card,
.office-card,
.map-box {
    border-radius: var(--radius);
}

.card {
    background: rgba(255, 249, 235, .82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.history-grid {
    display: grid;
    grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.history-photo {
    background: #fff9e8;
    padding: 10px;
    border: 1px solid rgba(23, 19, 14, .14);
    box-shadow: var(--shadow-soft);
}

.history-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: sepia(.12) contrast(.96);
    border-radius: 10px;
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
}

.lead {
    max-width: 1100px;
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--ink-soft);
}

.text-block p,
.copy-panel p {
    margin: 0 0 17px;
    font-size: 17px;
}

.operations {
    background: linear-gradient(180deg, #eadbb6, #f5edda);
    border-top: 1px solid rgba(23,19,14,.08);
    border-bottom: 1px solid rgba(23,19,14,.08);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.small-card {
    background: rgba(255,255,255,.62);
    border: 1px solid var(--line);
    padding: 19px 18px;
    min-height: 132px;
    box-shadow: 0 8px 18px rgba(24,20,15,.07);
}

.small-card .icon {
    width: 34px;
    height: 4px;
    margin-bottom: 15px;
    border-radius: 999px;
    overflow: hidden;
    color: transparent;
    background: var(--gold);
}

.small-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.small-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.info-row {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    gap: 24px;
    align-items: stretch;
}

.office-card,
.feature-card {
    padding: clamp(24px, 3vw, 34px);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 15px;
    background: rgba(255,255,255,.50);
    border-radius: 12px;
    border: 1px solid rgba(23,19,14,.08);
}

.contact-item > span {
    width: 8px;
    min-width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    overflow: hidden;
    color: transparent;
    background: var(--gold);
}

.contact-item strong { display: block; }

.bigwoods-card {
    display: block;
    margin-top: 26px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(18, 16, 12, .28);
    box-shadow: var(--shadow-soft);
}

.bigwoods-card img { width: 100%; }

.site-footer {
    background: #2b2d31;
    color: #fff;
    padding: 36px clamp(20px, 5vw, 76px) 24px;
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.years {
    border-top: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
    padding: 22px 0;
    text-align: center;
}

.years strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    line-height: 1;
}

.years span {
    display: block;
    margin-top: 6px;
    font-style: italic;
    color: #f6e5bc;
}

.footer-bottom {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.82);
}

/* Landfill page */
.service-hero { --hero-image: url('../images/landfill-entrance.webp'); }
.home-hero { --hero-image: url('../images/office-evening.webp'); }

 .service-summary {
    margin: 0;
    background: #f7ecd0;
    border-top: 1px solid rgba(23,19,14,.12);
    border-bottom: 1px solid rgba(23,19,14,.12);
}

.summary-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(20px, 5vw, 76px);
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1.15fr 1fr .75fr;
    gap: 0;
}

.summary-item {
    min-height: 108px;
    padding: 19px clamp(18px, 2.2vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border-right: 1px solid rgba(23,19,14,.14);
}

.summary-item:first-child {
    border-left: 1px solid rgba(23,19,14,.14);
}

.summary-label {
    display: block;
    margin-bottom: 5px;
    color: #8d681d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.summary-item strong {
    display: block;
    margin-bottom: 1px;
    font-size: 18px;
    line-height: 1.25;
}

.summary-item span:not(.summary-label),
.summary-item small,
.summary-item a {
    font-size: 16px;
    line-height: 1.45;
}

.summary-item small {
    color: var(--ink-soft);
}

.copy-panel {
    padding: 0;
    background: transparent;
    border: 0;
    max-width: 1220px;
}

.accept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.accept-card {
    padding: clamp(22px, 3vw, 28px);
    border: 1px solid rgba(23,19,14,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.09);
}

.accept-card.good { background: #dff2d5; }
.accept-card.bad { background: #ffd7d7; }

.accept-card h2 {
    margin: 0 0 17px;
    font-size: 25px;
}

.check-list, .x-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.check-list li, .x-list li {
    break-inside: avoid;
    margin: 0 0 9px;
    font-weight: 800;
    font-size: 15px;
}

.check-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
    background: #1f641d;
    color: #fff;
    font-size: 12px;
}

.x-list li::before {
    content: '×';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
    background: #7d1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.pricing-card {
    background: #fff9eb;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: clamp(24px, 3vw, 34px);
}

.price-lines {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.price-line {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 10px;
    font-weight: 800;
}

.price-line .dots {
    border-bottom: 2px dotted rgba(23,19,14,.38);
    transform: translateY(-5px);
}

.note {
    margin-top: 22px;
    padding: 14px 16px;
    background: rgba(125, 38, 31, .08);
    border-left: 4px solid var(--red);
    color: var(--ink-soft);
    font-weight: 800;
}

.yard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 15px;
}

.yard-table th, .yard-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(23,19,14,.12);
    text-align: left;
}

.yard-table th { background: rgba(210,178,116,.20); }

.map-box {
    min-height: 245px;
    background:
        linear-gradient(120deg, rgba(37,56,29,.84), rgba(37,56,29,.38)),
        url('../images/office-evening.webp') center / cover no-repeat;
    color: #fff;
    padding: clamp(24px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.map-box h2 { margin: 0 0 8px; }
.map-box p { margin: 0 0 18px; color: #fff4dd; }

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 14px;
    }

    .mobile-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .main-nav {
        grid-column: 1 / -1;
        display: none;
        justify-content: flex-start;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .site-header.nav-open .main-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header-contact {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 14px;
        width: 100%;
        padding-top: 8px;
        margin-top: 2px;
        text-align: center;
        white-space: normal;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
    .page-hero { min-height: 335px; }
    .history-grid,
    .info-row,
    .accept-grid,
    .summary-card { grid-template-columns: 1fr; }
    .summary-card { padding: 0 18px; }
    .summary-item {
        min-height: auto;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(23,19,14,.12);
    }
    .summary-item:first-child { border-left: 0; }
    .summary-item:last-child { border-bottom: 0; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .check-list, .x-list { columns: 1; }
    .price-line { grid-template-columns: 1fr auto; }
    .price-line .dots { display: none; }
}

@media (max-width: 560px) {
    .header-inner { padding: 9px 14px; gap: 9px 13px; }
    .brand-badge { width: 58px; min-width: 58px; height: 42px; }
    .brand-text strong { font-size: 13px; }
    .brand-text span { font-size: 9px; letter-spacing: .11em; }
    .header-contact {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        font-size: 12px;
        line-height: 1.35;
    }
    .header-contact a { font-size: 13px; }
    .hero-content { padding: 40px 18px; }
    h1 { font-size: clamp(32px, 11vw, 42px); }
    .hero-content p { font-size: 16px; }
    .section { padding: 42px 18px; }
    .card-grid { grid-template-columns: 1fr; }
    .office-card, .feature-card, .copy-panel, .pricing-card { padding: 22px; }
    .copy-panel { padding: 0; }
    .yard-table { font-size: 13px; }
    .footer-bottom { display: block; text-align: center; }
    .footer-bottom div + div { margin-top: 8px; }
}
