:root {
  --ink: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1f1f1c;
  --text: #1c1c1a;
  --muted: #6c6c64;
  --paper: #f7f7f2;
  --soft: #efefe8;
  --hero-grey: #e5e5e1;
  --white: #fff;
  --lime: #8ab800;          /* darkened lime per client request */
  --lime-deep: #74a000;
  --lime-bright: #a4d000;   /* glow accent on dark */
  --lime-soft: #eef6d6;
  --line: rgba(10, 10, 10, .1);
  --line-strong: rgba(10, 10, 10, .16);
  --shadow: 0 24px 70px rgba(10, 10, 10, .16);
  --shadow-sm: 0 10px 30px rgba(10, 10, 10, .09);
  --radius: 12px;
  --font-display: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, a, span, strong, article, section, div, li { min-width: 0; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: .012em; line-height: .92; margin: 0; }
h3 { font-family: var(--font-cond); font-weight: 700; margin: 0; letter-spacing: .01em; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; font-family: var(--font-cond); color: var(--lime-deep); font-size: .92rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.eyebrow.light { color: var(--lime-bright); }

.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 8px; border: 2px solid transparent; border-radius: var(--radius); padding: 0 24px; font-family: var(--font-cond); font-size: 1.06rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease; text-align: center; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--lime); color: var(--ink); border-color: var(--lime); box-shadow: 0 8px 22px rgba(138, 184, 0, .34); }
.btn.primary:hover { background: var(--lime-deep); border-color: var(--lime-deep); box-shadow: 0 14px 34px rgba(138, 184, 0, .42); }
.btn.outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.outline:hover { border-color: var(--lime-deep); color: var(--lime-deep); }
.btn.ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost-dark:hover { background: var(--ink); color: var(--white); }
.btn.ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn.ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn.small { min-height: 44px; padding: 0 18px; font-size: .96rem; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px clamp(16px, 4vw, 56px); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo { height: 38px; width: auto; flex: 0 0 auto; }
.nav-links { display: flex; gap: 28px; font-family: var(--font-cond); font-size: 1.08rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.nav-links a { position: relative; color: var(--charcoal); padding: 4px 0; }
.nav-links a:after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--lime); transition: right .18s ease; }
.nav-links a:hover { color: var(--lime-deep); }
.nav-links a:hover:after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { font-family: var(--font-cond); font-weight: 700; font-size: 1.12rem; letter-spacing: .02em; color: var(--ink); white-space: nowrap; }
.phone-link:hover { color: var(--lime-deep); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; position: relative; }
.menu-toggle span, .menu-toggle:before, .menu-toggle:after { content: ""; position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 999px; background: var(--ink); }
.menu-toggle span { top: 23px; }
.menu-toggle:before { top: 16px; }
.menu-toggle:after { top: 30px; }
.mobile-menu { display: none; }

/* hero */
.hero { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: clamp(28px, 5vw, 64px); padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 76px); background: linear-gradient(90deg, var(--hero-grey) 0%, var(--hero-grey) 24%, var(--white) 76%, var(--white) 100%); overflow: hidden; }
.hero > *:not(.hero-motion) { position: relative; z-index: 1; }
.hero-motion { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.grid-plate { position: absolute; inset: -10%; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 52px 52px; opacity: .5; -webkit-mask-image: radial-gradient(circle at 70% 40%, #000, transparent 72%); mask-image: radial-gradient(circle at 70% 40%, #000, transparent 72%); }
.drift { position: absolute; inset: 0; }
.drift i { position: absolute; left: var(--x); top: 110%; width: 120px; color: rgba(138, 184, 0, .13); transform: scale(var(--s)); animation: driftUp var(--t) linear infinite; animation-delay: var(--d); }
.drift-glyph { width: 120px; height: auto; }
@keyframes driftUp { 0% { transform: translateY(0) scale(var(--s)); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(-135vh) scale(var(--s)); opacity: 0; } }
.hero-copy h1 { font-size: clamp(3.2rem, 8vw, 6.6rem); max-width: 13ch; }
.hero-copy > p { color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.32rem); max-width: 560px; margin: 20px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 28px 0 0; }
.hero-chips li { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-cond); font-weight: 600; font-size: 1.04rem; text-transform: uppercase; letter-spacing: .04em; color: var(--charcoal); }
.chip-dot { width: 11px; height: 11px; color: var(--lime); flex: 0 0 auto; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.hero-stage { position: relative; width: 100%; padding: clamp(28px, 5vw, 54px); border-radius: 24px; background: radial-gradient(circle at 50% 42%, var(--lime-soft), #fff 74%); border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.hero-dumpster { width: 100%; height: auto; filter: drop-shadow(0 26px 30px rgba(10,10,10,.22)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.stat-badge { position: absolute; top: 6%; right: 2%; display: grid; place-items: center; text-align: center; width: 108px; height: 108px; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: var(--shadow-sm); transform: rotate(-8deg); }
.stat-badge b { font-family: var(--font-display); font-size: 2.5rem; line-height: .8; }
.stat-badge i { font-family: var(--font-cond); font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; line-height: 1.05; margin-top: 2px; }
.ton-chip { position: absolute; bottom: 7%; left: 1%; display: grid; text-align: center; padding: 12px 18px; border-radius: 12px; background: var(--ink); color: var(--white); font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .04em; box-shadow: var(--shadow-sm); }
.ton-chip small { font-family: var(--font-cond); font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lime-bright); }

/* marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 16px 0; }
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: scrollX 34s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 20px; padding: 0 24px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .05em; color: rgba(255,255,255,.9); }
.marquee-glyph { width: 34px; height: auto; color: var(--lime-bright); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* sections */
.section { padding: clamp(58px, 8vw, 108px) clamp(16px, 5vw, 76px); }
.section.soft { background: var(--paper); }
.section-head { max-width: 860px; margin: 0 auto clamp(34px, 5vw, 52px); text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); color: var(--ink); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 16px auto 0; max-width: 640px; }
.section-cta { display: flex; justify-content: center; margin-top: 40px; }

/* size cards */
.size-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.size-card { position: relative; display: flex; flex-direction: column; padding: 28px 26px 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.size-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(138,184,0,.5); }
.size-card.featured { border-color: var(--lime); box-shadow: 0 24px 60px rgba(138,184,0,.2); }
.size-flag { position: absolute; top: -13px; left: 26px; padding: 6px 14px; border-radius: 999px; background: var(--lime); color: var(--ink); font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; }
.size-visual { border-radius: 12px; background: radial-gradient(circle at 50% 46%, var(--lime-soft), #fbfcf6 76%); padding: 18px; margin-bottom: 6px; }
.size-img { width: 100%; height: auto; }
.size-yards { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 14px; color: var(--ink); }
.size-yards b { font-family: var(--font-display); font-size: 3.4rem; line-height: .8; }
.size-yards span { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; line-height: 1; color: var(--muted); }
.size-card h3 { font-size: 1.9rem; margin-top: 10px; color: var(--ink); }
.size-tag { display: inline-block; margin-top: 4px; font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--lime-deep); }
.size-card > p { color: var(--muted); margin: 12px 0 0; }
.size-list { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.size-list li, .check-list li, .size-foot { display: flex; align-items: flex-start; gap: 10px; }
.size-list li { font-weight: 500; color: var(--text); }
.check { width: 20px; height: 20px; flex: 0 0 auto; color: var(--lime-deep); margin-top: 2px; }
.size-foot { align-items: center; justify-content: space-between; margin-top: 22px; gap: 12px; }
.ton-pill { display: inline-flex; align-items: center; padding: 7px 13px; border-radius: 999px; background: var(--ink); color: var(--white); font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; }
.size-more { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lime-deep); font-size: .92rem; white-space: nowrap; }

/* split dark */
.split-dark { background: var(--ink); color: var(--white); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
.split-dark h2 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
.split-dark > div:first-child p { color: rgba(255,255,255,.76); font-size: 1.12rem; margin: 18px 0 28px; max-width: 520px; }
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.value-card { padding: 24px 22px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.value-card h3 { color: var(--white); font-size: 1.4rem; }
.value-card p { color: rgba(255,255,255,.72); margin: 10px 0 0; font-size: .98rem; }
.value-grid.light-grid .value-card { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.value-grid.light-grid .value-card h3 { color: var(--ink); }
.value-grid.light-grid .value-card p { color: var(--muted); }

/* service cards */
.card-grid { display: grid; gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-badge { position: absolute; left: 16px; bottom: -22px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px; background: var(--lime); color: var(--ink); box-shadow: var(--shadow-sm); }
.badge-icon { width: 26px; height: 26px; }
.service-body { padding: 32px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-eyebrow { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--lime-deep); }
.service-card h3 { font-size: 1.7rem; margin: 8px 0 0; color: var(--ink); }
.service-body p { color: var(--muted); margin: 12px 0 18px; flex: 1; }
.service-more { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lime-deep); font-size: .92rem; }

/* process */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-grid article { padding: 28px 24px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 13px; background: var(--ink); color: var(--lime-bright); font-family: var(--font-display); font-size: 1.7rem; }
.process-grid h3 { font-size: 1.42rem; margin: 18px 0 8px; color: var(--ink); }
.process-grid p { color: var(--muted); margin: 0; font-size: .98rem; }

/* not sure which size band */
.notsure-section { padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); background: var(--lime-soft); }
.notsure-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(22px, 4vw, 48px); align-items: center; }
.notsure-mark { display: inline-flex; width: 88px; color: var(--lime-deep); flex: 0 0 auto; }
.notsure-glyph { width: 88px; height: auto; }
.notsure-copy .eyebrow { margin-bottom: 8px; }
.notsure-copy h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); color: var(--ink); }
.notsure-copy p { color: var(--muted); margin: 12px 0 0; max-width: 640px; font-size: 1.05rem; }
.notsure-actions { display: flex; flex-direction: column; gap: 12px; }
.notsure-actions .btn { white-space: nowrap; }
@media (max-width: 900px) {
  .notsure-inner { grid-template-columns: 1fr; text-align: center; }
  .notsure-mark { margin: 0 auto; }
  .notsure-copy p { margin-left: auto; margin-right: auto; }
  .notsure-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-item { padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: pointer; background: var(--soft); aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; aspect-ratio: auto; }
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(10,10,10,.9); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; width: auto; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 20px; right: 26px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: var(--lime); color: var(--ink); }

/* what fits */
.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.fit-col { padding: 30px 28px; border-radius: 16px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.fit-col h3 { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; color: var(--ink); margin-bottom: 16px; }
.fit-col.accept { border-top: 5px solid var(--lime); }
.fit-col.reject { border-top: 5px solid #d24b3a; }
.fit-mark { width: 26px; height: 26px; }
.fit-col.accept .fit-mark { color: var(--lime-deep); }
.fit-col.reject .fit-mark { color: #d24b3a; }
.fit-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.fit-col li { position: relative; padding-left: 18px; color: var(--text); font-weight: 500; }
.fit-col li:before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.fit-col.accept li:before { background: var(--lime); }
.fit-col.reject li:before { background: #d24b3a; }

/* pills */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--white); font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--charcoal); transition: .16s ease; }
.pill:hover { border-color: var(--lime); color: var(--lime-deep); transform: translateY(-2px); }
.pill-glyph { width: 24px; height: auto; color: var(--lime); }

/* promise band */
.promise-band { padding: clamp(64px, 9vw, 120px) clamp(16px, 5vw, 76px); background: var(--ink); color: var(--white); text-align: center; }
.promise-inner { max-width: 940px; margin: 0 auto; }
.promise-mark { display: inline-flex; width: 76px; color: var(--lime-bright); margin-bottom: 8px; }
.promise-glyph { width: 76px; height: auto; }
.promise-band blockquote { margin: 14px 0 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 4.2vw, 3.2rem); line-height: 1.08; letter-spacing: .01em; color: var(--white); text-wrap: balance; }
.promise-tag { margin: 22px 0 0; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--lime-bright); font-size: 1rem; }

/* faq */
.faq-section .section-head { text-align: center; }
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-cond); font-size: 1.24rem; font-weight: 700; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-plus:before, .faq-plus:after { content: ""; position: absolute; background: var(--lime-deep); border-radius: 2px; transition: transform .2s ease; }
.faq-plus:before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-plus:after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-list details[open] .faq-plus:after { transform: scaleY(0); }
.faq-list p { margin: 0 0 20px; color: var(--muted); }

/* cta */
.cta-band { padding: clamp(20px, 4vw, 40px); }
.cta-inner { max-width: 1180px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px); border-radius: 24px; background: radial-gradient(circle at 88% 8%, rgba(138,184,0,.28), transparent 46%), var(--charcoal); color: var(--white); text-align: center; }
.cta-inner h2 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.12rem; max-width: 640px; margin: 16px auto 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }

/* subhero + detail hero */
.subhero { padding: clamp(72px, 11vw, 140px) clamp(16px, 5vw, 76px) clamp(44px, 6vw, 64px); background: linear-gradient(160deg, var(--ink), var(--charcoal-2)); color: var(--white); position: relative; overflow: hidden; }
.subhero:after { content: ""; position: absolute; right: -6%; top: -20%; width: 46%; height: 160%; background: radial-gradient(circle, rgba(138,184,0,.18), transparent 66%); pointer-events: none; }
.subhero h1 { font-size: clamp(2.8rem, 6.4vw, 5.6rem); max-width: 16ch; position: relative; }
.subhero p { color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.8vw, 1.28rem); max-width: 620px; margin: 20px 0 0; position: relative; }
.detail-hero, .contact-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(30px, 5vw, 62px); align-items: center; padding: clamp(64px, 9vw, 120px) clamp(16px, 5vw, 76px); background: linear-gradient(160deg, var(--ink), var(--charcoal-2)); color: var(--white); position: relative; overflow: hidden; }
.detail-hero:after, .contact-hero:after { content: ""; position: absolute; right: -8%; top: -30%; width: 44%; height: 170%; background: radial-gradient(circle, rgba(138,184,0,.16), transparent 68%); pointer-events: none; }
.detail-hero > *, .contact-hero > * { position: relative; z-index: 1; }
.detail-hero h1, .contact-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); max-width: 14ch; }
.detail-hero p, .contact-hero p { color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.8vw, 1.26rem); max-width: 560px; margin: 20px 0 0; }
.detail-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12); }
.detail-img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* two-col */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
.two-col h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); color: var(--ink); }
.two-col > div p { color: var(--muted); font-size: 1.08rem; margin: 16px 0 0; }
.two-col .hero-actions { margin-top: 26px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.check-list li { padding: 16px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); font-weight: 600; color: var(--text); }
.about-photo, .about-img { border-radius: 18px; }
.about-photo { overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* areas */
.county-block { margin-bottom: clamp(38px, 5vw, 56px); }
.county-block:last-child { margin-bottom: 0; }
.county-head { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: var(--ink); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.area-card { display: flex; flex-direction: column; padding: 26px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(138,184,0,.5); }
.area-card span:first-child { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--lime-deep); }
.area-card h3 { font-size: 1.7rem; margin: 6px 0 0; color: var(--ink); }
.area-card p { color: var(--muted); margin: 10px 0 16px; flex: 1; }
.area-more { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lime-deep); font-size: .88rem; }

/* contact */
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 15px; max-width: 460px; }
.contact-list li { display: grid; gap: 3px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list span:first-child { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--lime-bright); }
.contact-list a, .contact-list li > span:last-child { font-size: 1.14rem; font-weight: 600; color: var(--white); }
.contact-list a:hover { color: var(--lime-bright); }
.quote-card { padding: clamp(26px, 4vw, 40px); background: var(--white); color: var(--text); border-radius: 18px; box-shadow: var(--shadow); }
.quote-card h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); }
.contact-lead { color: var(--muted); margin: 12px 0 24px; }
.form-placeholder { border: 2px dashed rgba(138,184,0,.55); border-radius: 14px; background: linear-gradient(180deg, var(--lime-soft), #fff); padding: clamp(26px, 4vw, 40px); text-align: center; }
.form-placeholder-tag { display: inline-flex; margin-bottom: 14px; padding: 6px 13px; border-radius: 999px; background: var(--ink); color: var(--lime-bright); font-family: var(--font-cond); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.form-placeholder-title { margin: 0 0 6px; font-family: var(--font-cond); font-size: 1.34rem; font-weight: 700; color: var(--ink); }
.form-placeholder-note { margin: 0 0 22px; color: var(--muted); }
.form-placeholder-actions { display: grid; gap: 10px; }

/* footer */
.footer { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr); gap: clamp(32px, 6vw, 80px); padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 76px) 40px; background: var(--ink); color: var(--white); }
.footer .brand-logo { height: 42px; }
.footer-brand-col p { color: rgba(255,255,255,.66); max-width: 420px; margin: 18px 0; }
.footer-phone { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .03em; color: var(--lime-bright); }
.footer-cols { display: grid; grid-template-columns: repeat(3, max-content); gap: 30px 56px; }
.footer-cols b { display: block; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-cols a { display: block; color: rgba(255,255,255,.82); margin-bottom: 10px; }
.footer-cols a:hover { color: var(--lime-bright); }

/* mobile sticky */
.mobile-sticky { display: none; }

/* legal */
.legal-section { max-width: 900px; margin: 0 auto; }
.legal-prose { color: var(--text); }
.legal-prose .updated { color: var(--muted); margin: 0 0 28px; }
.legal-prose h2 { font-family: var(--font-cond); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; margin: 34px 0 12px; color: var(--ink); }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p, .legal-prose li { color: var(--text); font-size: 1.03rem; line-height: 1.72; }
.legal-prose ul { padding-left: 22px; margin: 0 0 14px; display: grid; gap: 6px; }
.legal-prose a { color: var(--lime-deep); text-decoration: underline; }
.legal-prose strong { font-weight: 700; }

/* reveal */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 1040px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 76px 14px auto; z-index: 49; display: grid; gap: 6px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: .18s ease; }
  body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu a { padding: 15px; border-radius: 10px; font-family: var(--font-cond); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
  .hero, .split-dark, .two-col, .detail-hero, .contact-hero { grid-template-columns: 1fr; }
  .split-dark { gap: 34px; }
  .size-grid, .card-grid.three, .card-grid.two, .process-grid, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: auto; aspect-ratio: 4 / 3; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { min-height: 66px; padding: 8px 14px; }
  .brand-logo { height: 32px; }
  .hero { padding: 36px 14px 44px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 13vw, 4rem); }
  .hero-visual { min-height: auto; }
  .stat-badge { width: 84px; height: 84px; }
  .stat-badge b { font-size: 1.9rem; }
  .hero-actions, .cta-actions, .form-placeholder-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .size-grid, .card-grid.two, .card-grid.three, .process-grid, .area-grid, .fit-grid, .check-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section h2 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .marquee-track span { font-size: 1.25rem; }
  .mobile-sticky { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: flex; opacity: 0; transform: translateY(16px); pointer-events: none; box-shadow: var(--shadow); transition: opacity .22s ease, transform .22s ease; }
  body.show-mobile-sticky .mobile-sticky { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .footer { padding-bottom: 90px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px 30px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .drift, .marquee-track { display: none; }
  html.js .reveal { opacity: 1; transform: none; }
}