/* ==========================================================================
   Redline Dumpsters — Design Tokens
   ========================================================================== */
:root {
  /* Color — red sampled directly from the Rose Roll-Offs logo */
  --black: #151312;
  --charcoal: #221f1e;
  --charcoal-2: #2c2826;
  --red: #d4143f;
  --red-dark: #7a0a26;
  --red-bright: #fa0240;
  --cream: #f4efe6;
  --cream-2: #ebe4d6;
  --steel: #6b6660;
  --steel-light: #a39c92;
  --line: rgba(21, 19, 18, 0.12);
  --line-dark: rgba(244, 239, 230, 0.14);

  /* Type — Rye echoes the branded western/wanted-poster lettering on the logo */
  --font-display: "Rye", "Oswald", "Arial Narrow", serif;
  --font-ui: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius: 3px;
  --stripe: repeating-linear-gradient(
    -45deg,
    var(--black) 0 22px,
    var(--red) 22px 44px
  );
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p {
  color: var(--steel);
  font-size: 1.05rem;
  margin-top: 14px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

section { padding: 88px 0; }

/* Hazard stripe divider — the signature motif */
.hazard {
  height: 10px;
  width: 100%;
  background: var(--stripe);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-bright); border-color: var(--red-bright); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-dark);
}
.btn-outline:hover { border-color: var(--cream); }

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--charcoal-2); }

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

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 54px;
  width: auto;
  border-radius: 3px;
  background: #ffffff;
  padding: 3px 6px;
}
.footer-logo-img {
  height: 64px;
  margin-bottom: 6px;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--cream-2);
  font-size: 0.88rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--red-bright); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.phone-link svg { width: 18px; height: 18px; color: var(--red-bright); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 70px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(232,57,44,0.18);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
}
.hero h1 em {
  font-style: normal;
  color: var(--red-bright);
}
.hero-sub {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.7rem;
  color: var(--cream);
}
.hero-stats div span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
}

.hero-art { position: relative; }
.hero-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  display: block;
}
.hero-photo-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--red);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.hero-photo-tag .tag-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.85);
}
.hero-photo-tag .tag-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .hero-photo-tag { left: 10px; bottom: -14px; padding: 9px 14px; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--line-dark);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 26px 20px;
  text-align: center;
  border-left: 1px solid var(--line-dark);
  color: var(--cream-2);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 26px; height: 26px; color: var(--red-bright); margin-bottom: 10px; }
.trust-item p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Dumpster size cards ("steel tags") — signature element
   ========================================================================== */
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sizes-grid.single-size {
  grid-template-columns: 1fr !important;
  justify-items: center;
}
.sizes-grid.single-size .tag-card {
  max-width: 380px;
  width: 100%;
}
.tag-card {
  background: var(--black);

  color: var(--cream);
  border-radius: var(--radius);
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.tag-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--stripe);
}
.tag-card .rivet {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.08);
}
.tag-card .rivet.tl { top: 16px; left: 14px; }
.tag-card .rivet.tr { top: 16px; right: 14px; }
.tag-card .size-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 6px;
  margin-top: 8px;
}
.tag-card h3 {
  font-size: 2.2rem;
  margin-bottom: 4px;
}
.tag-card .yard-word {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--steel-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.tag-card .desc {
  font-size: 0.92rem;
  color: var(--cream-2);
  min-height: 62px;
}
.tag-card .price {
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-dark);
}
.tag-card .price .amount { font-size: 2rem; color: var(--cream); font-weight: 600; }
.tag-card .price .unit { font-size: 0.8rem; color: var(--steel-light); }
.tag-card .specs { margin-bottom: 20px; }
.tag-card .specs li {
  font-size: 0.85rem;
  color: var(--cream-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  gap: 8px;
}
.tag-card .specs li:last-child { border-bottom: none; }
.tag-card .specs li svg { width: 14px; height: 14px; color: var(--red-bright); flex-shrink: 0; margin-top: 2px; }
.tag-card.featured { border-color: var(--red); }
.tag-card .most-popular {
  position: absolute;
  top: 0; right: 20px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0 0 3px 3px;
}

.sizes-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--steel);
  text-align: center;
}

/* ==========================================================================
   Rig showcase
   ========================================================================== */
.rig-section { padding: 88px 0; }
.rig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.rig-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.rig-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 14px 0 18px; }
.rig-copy p { color: var(--steel); font-size: 1.02rem; margin-bottom: 26px; max-width: 480px; }
@media (max-width: 980px) {
  .rig-grid { grid-template-columns: 1fr; }
  .rig-photo { order: -1; }
}

/* ==========================================================================
   Photo gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-section { background: var(--cream-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-step { position: relative; padding-left: 4px; }
.process-step .num {
  font-family: var(--font-ui);
  font-size: 3.2rem;
  color: var(--red);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.process-step p { color: var(--steel); margin: 0; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--steel-light);
  border-right: 2px solid var(--steel-light);
  transform: rotate(45deg);
  display: none;
}
@media (min-width: 900px) {
  .process-step:not(:last-child)::after { display: block; }
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.15s ease;
}
.service-card:hover { background: var(--cream-2); }
.service-card svg { width: 30px; height: 30px; color: var(--red); margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--steel); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Accepted / Not accepted
   ========================================================================== */
.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.accept-card {
  border-radius: var(--radius);
  padding: 32px;
}
.accept-card.yes { background: var(--black); color: var(--cream); }
.accept-card.no { background: transparent; border: 2px solid var(--black); color: var(--black); }
.accept-card h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.accept-card h3 svg { width: 22px; height: 22px; }
.accept-card.yes h3 svg { color: var(--red-bright); }
.accept-card.no h3 svg { color: var(--red); }
.accept-card ul { columns: 2; column-gap: 24px; }
.accept-card li {
  font-size: 0.9rem;
  padding: 7px 0;
  break-inside: avoid;
}
.accept-card.yes li { border-bottom: 1px solid var(--line-dark); }
.accept-card.no li { border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Service area
   ========================================================================== */
.area-section { background: var(--black); color: var(--cream); }
.area-section .section-head p { color: var(--steel-light); }
.area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}
.area-list li {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red-bright);
}
.area-note {
  margin-top: 30px;
  color: var(--steel-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card .stars { color: var(--red); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 0.96rem; color: var(--black); margin: 0 0 18px; }
.testimonial-card .who {
  font-family: var(--font-ui);
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--steel);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial-card .who strong { color: var(--black); display: block; font-size: 0.95rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  text-transform: none;
  color: var(--black);
}
.faq-q svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { color: var(--steel); padding-bottom: 22px; margin: 0; max-width: 700px; }
.faq-item.open .faq-a { max-height: 240px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--red);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(244,239,230,0.9); margin-bottom: 30px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: rgba(244,239,230,0.5); }
.cta-banner .btn-outline:hover { border-color: var(--cream); background: rgba(0,0,0,0.12); }

/* ==========================================================================
   Contact / quote form
   ========================================================================== */
.contact-section { background: var(--cream-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 18px; }
.contact-info .row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--steel);
}
.contact-info .row svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-info .row strong { display: block; color: var(--black); font-family: var(--font-ui); text-transform: uppercase; font-size: 0.9rem; }

.quote-form {
  background: var(--black);
  color: var(--cream);
  padding: 34px;
  border-radius: var(--radius);
}
.quote-form h3 { font-size: 1.2rem; margin-bottom: 4px; }
.quote-form .form-sub { color: var(--steel-light); font-size: 0.9rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--red-bright);
  outline-offset: 1px;
}
.form-note { font-size: 0.78rem; color: var(--steel-light); margin-top: 12px; }
.form-success,
.form-error {
  display: none;
  background: var(--charcoal);
  border: 1px solid var(--red);
  padding: 16px;
  border-radius: 2px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-success.show,
.form-error.show { display: block; }
.form-error { border-color: var(--red-bright); }

#formSubmitBtn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--black);
  color: var(--cream-2);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--steel-light); font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--red-bright); color: var(--red-bright); }

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--steel-light); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--red-bright); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--steel-light);
}
.footer-bottom a:hover { color: var(--cream); }
.footer-legal { display: flex; gap: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .accept-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
  .main-nav, .header-cta .phone-link, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--line-dark);
  }
  section { padding: 60px 0; }
  .sizes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .accept-card ul { columns: 1; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

