:root {
  --ink: #121517;
  --charcoal: #1b1f22;
  --charcoal-2: #252a2e;
  --steel: #6d7479;
  --silver: #c8ccce;
  --silver-light: #eceeef;
  --paper: #f7f5ef;
  --white: #ffffff;
  --mustard: #d7a62a;
  --mustard-dark: #b78614;
  --rust: #a74429;
  --line: #dadcdd;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Arial, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.skip-link { position: fixed; top: -100px; left: 14px; z-index: 9999; background: var(--mustard); color: var(--ink); padding: 10px 14px; font-weight: 800; }
.skip-link:focus { top: 14px; }

.utility-bar { background: var(--ink); color: #e8eaeb; font-size: 12px; letter-spacing: .04em; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-copy { color: #c7cbcd; }
.utility-links { display: flex; align-items: center; gap: 26px; font-weight: 700; text-transform: uppercase; }
.utility-links a:hover { color: var(--mustard); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 260px; flex: 0 0 auto; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 28px; font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .04em; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; background: var(--mustard); transition: right .2s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a.active::after { right: 0; }
.nav-cta { background: var(--mustard); color: var(--ink); padding: 12px 18px; border: 2px solid var(--mustard); }
.nav-cta:hover { background: transparent; }
.menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--line); background: white; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero, .page-hero { position: relative; overflow: hidden; isolation: isolate; color: white; }
.hero { min-height: 690px; display: flex; align-items: center; }
.hero-media, .page-hero-media { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; transform: scale(1.002); }
.hero-media { background-image: url('assets/roll-off-main.jpg'); background-position: center 58%; }
.hero-overlay, .page-hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(9,11,12,.93) 0%, rgba(9,11,12,.82) 42%, rgba(9,11,12,.44) 72%, rgba(9,11,12,.18) 100%); }
.hero::after, .page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 7px; background: var(--mustard); z-index: 2; }
.hero-content { padding: 90px 0 58px; max-width: 760px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow::before, .section-kicker::before { content: ""; width: 30px; height: 4px; background: var(--mustard); }
.section-kicker.light { color: #d9dddf; }
.hero h1, .page-hero h1 { margin: 0; font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase; letter-spacing: -.025em; line-height: .94; text-wrap: balance; }
.hero h1 { font-size: clamp(58px, 7.3vw, 94px); max-width: 760px; }
.hero-content > p { max-width: 650px; margin: 24px 0 0; font-size: 20px; line-height: 1.55; color: #eef0f1; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 2px solid transparent; font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .06em; transition: .2s ease; }
.btn-primary { background: var(--mustard); color: var(--ink); border-color: var(--mustard); }
.btn-primary:hover { background: #e5b735; border-color: #e5b735; transform: translateY(-1px); }
.btn-secondary { border-color: rgba(255,255,255,.68); color: white; background: rgba(0,0,0,.18); }
.btn-secondary:hover { background: white; color: var(--ink); border-color: white; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--charcoal-2); }
.btn-light { background: white; color: var(--ink); }
.hero-proof { display: grid; grid-template-columns: repeat(3, max-content); width: fit-content; max-width: 100%; margin-top: 48px; background: rgba(12,14,15,.74); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(7px); }
.hero-proof div { padding: 16px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 26px; text-transform: uppercase; line-height: 1; color: var(--mustard); }
.hero-proof span { display: block; color: #e0e3e4; font-size: 12px; margin-top: 7px; white-space: nowrap; }

h2 { margin: 0; font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(44px, 5vw, 68px); text-transform: uppercase; letter-spacing: -.02em; line-height: 1; text-wrap: balance; }
h3 { text-wrap: balance; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.intro-section { background: var(--paper); }
.intro-copy { padding-top: 28px; }
.intro-copy p { margin: 0 0 18px; color: #454a4e; font-size: 18px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 10px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-bottom: 3px solid var(--mustard); padding-bottom: 4px; }
.text-link span { transition: .2s ease; color: var(--mustard-dark); }
.text-link:hover span { transform: translateX(3px); }

.services-section { background: var(--charcoal); color: white; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; margin-bottom: 44px; }
.section-heading p { margin: 0 0 3px; color: #cbd0d2; max-width: 470px; }
.section-heading.dark-heading p { color: #555b5f; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 480px; overflow: hidden; isolation: isolate; background: #2a2f33; box-shadow: 0 16px 32px rgba(0,0,0,.18); }
.service-card::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .45s ease; z-index: -2; }
.service-card:hover::before { transform: scale(1.045); }
.service-one::before { background-image: url('assets/construction-cleanup.jpg'); }
.service-two::before { background-image: url('assets/roll-off-rentals.jpg'); }
.service-three::before { background-image: url('assets/roll-off-main.jpg'); }
.service-card-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,7,8,.23) 10%, rgba(5,7,8,.55) 52%, rgba(5,7,8,.97) 100%); }
.service-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px; }
.service-number { display: inline-block; color: var(--mustard); font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin: 5px 0 12px; font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase; font-size: 34px; line-height: 1; }
.service-card p { margin: 0 0 18px; color: #e5e7e8; font-size: 14px; }
.service-card a { font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: white; }
.service-card a span { color: var(--mustard); }

.why-section { background: white; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { padding: 32px 24px; border: 1px solid var(--line); border-top: 5px solid var(--mustard); background: #fafafa; }
.icon-wrap { width: 54px; height: 54px; display: grid; place-items: center; background: #f0e5c9; margin-bottom: 36px; }
.icon-wrap svg { width: 28px; height: 28px; fill: var(--ink); }
.benefit-card h3 { margin: 0 0 10px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 25px; text-transform: uppercase; }
.benefit-card p { margin: 0; color: #5b6064; font-size: 14px; }

.cta-band { background: var(--mustard); color: var(--ink); padding: 50px 0; }
.cta-band .section-kicker::before { background: var(--ink); }
.cta-band .section-kicker.light { color: var(--ink); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { font-size: clamp(40px, 4vw, 58px); }
.cta-actions { display: flex; align-items: center; gap: 26px; }
.phone-link { font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 800; font-size: 27px; white-space: nowrap; }

.service-area { background: #e7e4da; }
.service-area-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.service-area-copy > p { max-width: 620px; color: #51575b; font-size: 17px; }
.address-card { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.address-card > div { background: white; padding: 22px; border-top: 5px solid var(--mustard); }
.address-label { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; color: #73787b; margin-bottom: 6px; }
.texas-mark { position: relative; justify-self: center; width: min(100%, 340px); text-align: center; }
.texas-mark svg { width: 100%; filter: drop-shadow(0 18px 24px rgba(0,0,0,.12)); }
.texas-mark svg path:first-child { fill: var(--charcoal); }
.texas-mark circle { fill: var(--mustard); }
.texas-mark .pulse { stroke: white; stroke-width: 3; fill: none; }
.texas-mark span { display: inline-block; margin-top: -12px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.contact-section { background: #16191b; color: white; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy p { color: #cbd0d2; font-size: 17px; max-width: 440px; }
.contact-details { margin-top: 34px; display: grid; gap: 14px; }
.contact-details > * { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details span { display: block; color: #969da1; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; margin-bottom: 4px; }
.contact-details strong { font-size: 15px; }
.contact-details a:hover { color: var(--mustard); }
.form-shell { background: white; overflow: hidden; min-height: 820px; box-shadow: 0 18px 50px rgba(0,0,0,.2); border-top: 6px solid var(--mustard); }
.form-shell iframe { background: white; }

/* Interior pages */
.page-hero { min-height: 520px; display: flex; align-items: flex-end; }
.page-hero-content { padding: 110px 0 72px; max-width: 850px; }
.page-hero h1 { font-size: clamp(54px, 7vw, 88px); }
.page-hero p { max-width: 680px; color: #eef0f1; font-size: 19px; margin: 22px 0 0; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.page-hero.construction .page-hero-media { background-image: url('assets/construction-cleanup.jpg'); background-position: center 55%; }
.page-hero.dumpsters .page-hero-media { background-image: url('assets/roll-off-rentals.jpg'); background-position: center 50%; }
.page-hero.metal .page-hero-media { background-image: url('assets/roll-off-main.jpg'); background-position: center 50%; }
.breadcrumbs { margin-bottom: 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #d9dddf; }
.breadcrumbs a { color: var(--mustard); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 70px; align-items: start; }
.prose h2 { font-size: clamp(40px, 4.7vw, 60px); margin-bottom: 22px; }
.prose h3 { margin: 38px 0 10px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 30px; text-transform: uppercase; line-height: 1.1; }
.prose p, .prose li { color: #474d51; font-size: 17px; }
.prose ul { padding-left: 22px; }
.prose strong { color: var(--ink); }
.side-card { position: sticky; top: 120px; background: var(--charcoal); color: white; padding: 28px; border-top: 6px solid var(--mustard); }
.side-card h2 { font-size: 34px; margin-bottom: 12px; }
.side-card p { color: #d1d5d7; font-size: 14px; }
.side-card .btn { width: 100%; margin-top: 9px; }
.side-card .phone-link { display: block; margin-top: 18px; color: var(--mustard); font-size: 24px; }
.detail-strip { background: var(--paper); }
.detail-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-card { background: white; border: 1px solid var(--line); padding: 30px; border-top: 5px solid var(--mustard); }
.detail-card span { display: block; font-family: "Barlow Condensed", Arial, sans-serif; color: var(--mustard-dark); font-size: 15px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.detail-card h3 { margin: 5px 0 8px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 28px; text-transform: uppercase; line-height: 1.05; }
.detail-card p { margin: 0; color: #5b6064; font-size: 14px; }
.image-feature { margin: 34px 0; border-top: 6px solid var(--mustard); }
.image-feature img { width: 100%; max-height: 520px; object-fit: cover; }
.size-guide { background: var(--white); }
.size-guide picture img { width: 100%; border: 1px solid #e3e3e3; }
.size-note { max-width: 860px; margin: 24px auto 0; text-align: center; color: #53595d; }
.accepted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.accepted-grid div { background: var(--paper); border-left: 4px solid var(--mustard); padding: 16px 18px; font-weight: 700; }
.faq-list { max-width: 900px; }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq-item:first-child { border-top: 0; }
.faq-item h3 { margin: 0 0 8px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 27px; text-transform: uppercase; }
.faq-item p { margin: 0; color: #53595d; }

.site-footer { background: #0b0d0e; color: #aeb5b8; padding: 66px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr .9fr 1fr; gap: 44px; }
.footer-brand img { width: 250px; background: #fff; padding: 4px; }
.footer-brand p { max-width: 330px; font-size: 14px; }
.site-footer h3 { color: white; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 18px; text-transform: uppercase; margin: 0 0 16px; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: var(--mustard); }
.footer-bottom { margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.footer-bottom a { display: inline; }

.legal-page { background: var(--paper); }
.legal-wrap { max-width: 850px; }
.legal-wrap h1 { font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(54px, 6vw, 76px); text-transform: uppercase; line-height: 1; margin: 0 0 30px; }
.legal-wrap h2 { font-size: 34px; margin-top: 38px; }

@media (max-width: 960px) {
  .utility-copy { display: none; }
  .utility-inner { justify-content: flex-end; }
  .brand { width: 220px; max-width: 56vw; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 18px 20px 24px; border-top: 1px solid var(--line); box-shadow: 0 18px 35px rgba(0,0,0,.12); flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border: 0; }
  .hero { min-height: 660px; }
  .hero-overlay, .page-hero-overlay { background: linear-gradient(90deg, rgba(8,10,11,.94) 0%, rgba(8,10,11,.77) 72%, rgba(8,10,11,.58) 100%); }
  .two-col, .section-heading, .service-area-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { align-items: start; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .detail-cards { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .contact-copy, .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 66px 0; }
  .utility-bar { position: sticky; top: 0; z-index: 1200; box-shadow: 0 2px 10px rgba(0,0,0,.22); }
  .utility-inner { min-height: 46px; }
  .utility-links { width: 100%; justify-content: space-between; gap: 12px; font-size: 11px; letter-spacing: .055em; }
  .utility-links a { display: flex; min-height: 46px; align-items: center; padding: 0 2px; }
  .site-header { top: 46px; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 190px; }
  .hero { min-height: 620px; align-items: end; }
  .hero-media { background-position: 57% center; }
  .hero-overlay, .page-hero-overlay { background: linear-gradient(0deg, rgba(8,10,11,.97) 0%, rgba(8,10,11,.86) 58%, rgba(8,10,11,.54) 100%); }
  .hero-content { padding: 70px 0 34px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-content > p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-proof { width: 100%; margin-top: 36px; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { padding: 13px 8px; text-align: center; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { font-size: 9px; white-space: normal; line-height: 1.25; }
  h2 { font-size: clamp(39px, 12vw, 52px); }
  .intro-copy { padding-top: 0; }
  .intro-copy p { font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 400px; }
  .service-card-content { padding: 24px; }
  .service-card h3 { font-size: 30px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .benefit-card { padding: 22px 16px; min-height: 220px; }
  .icon-wrap { margin-bottom: 26px; }
  .benefit-card h3 { font-size: 21px; }
  .benefit-card p { font-size: 12px; }
  .cta-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 16px; }
  .phone-link { text-align: center; }
  .address-card { grid-template-columns: 1fr; }
  .texas-mark { width: 250px; }
  .contact-grid { gap: 42px; }
  .form-shell { min-height: 800px; margin-left: -6px; margin-right: -6px; }
  .page-hero { min-height: 470px; }
  .page-hero-content { padding: 80px 0 55px; }
  .page-hero h1 { font-size: clamp(49px, 14vw, 69px); }
  .page-hero p { font-size: 16px; }
  .detail-cards, .accepted-grid { grid-template-columns: 1fr; }
  .image-feature img { max-height: 330px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
