/* ============================================================
   YARDO ECO — Main Theme Stylesheet
   Eco-green organic aesthetic
   ============================================================ */

:root {
  --y-cream: #f5f1e8;
  --y-cream-warm: #ede5d2;
  --y-moss: #3d5a3a;
  --y-moss-deep: #2a3f28;
  --y-moss-light: #5a7558;
  --y-olive: #6b7f4a;
  --y-sage: #a8b89a;
  --y-sage-soft: #c4d0b6;
  --y-clay: #c97755;
  --y-clay-deep: #a05a3c;
  --y-sun: #e8b850;
  --y-ink: #1f2a1d;
  --y-earth: #5a4a3a;
  --y-grey: #7a7567;
  --y-line: #d8d2c2;
  --y-white: #fdfbf5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--y-cream);
  color: var(--y-ink);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.yardo-container, .wp-block-group.alignwide > .wp-block-group {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ============================================================
   HEADER / TOP STRIP
   ============================================================ */
.yardo-top-strip {
  background: var(--y-moss-deep);
  color: var(--y-cream);
  padding: 10px 0;
  font-size: 0.84rem;
  font-weight: 500;
}
.yardo-top-strip .yardo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.yardo-top-strip .leaf::before {
  content: "🌱";
  margin-right: 8px;
}

.yardo-header {
  background: rgba(245, 241, 232, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--y-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.yardo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.yardo-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.yardo-logo .leaf-mark {
  width: 48px;
  height: 48px;
  background: var(--y-moss);
  color: var(--y-cream);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  transition: transform 0.4s;
}
.yardo-logo:hover .leaf-mark { transform: rotate(-12deg); }
.yardo-logo .text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.yardo-logo .text .name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--y-moss-deep);
  letter-spacing: -0.02em;
}
.yardo-logo .text small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: var(--y-olive);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.yardo-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.96rem;
  font-weight: 600;
}
.yardo-nav a {
  color: var(--y-ink);
  transition: color 0.2s;
}
.yardo-nav a:hover { color: var(--y-clay-deep); }
.yardo-cta-phone {
  background: var(--y-moss);
  color: var(--y-cream) !important;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.yardo-cta-phone:hover {
  background: var(--y-moss-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 63, 40, 0.25);
}
.yardo-cta-phone::before { content: "☎"; }

/* ============================================================
   HERO
   ============================================================ */
.yardo-hero {
  position: relative;
  padding: 64px 0 88px;
  background: linear-gradient(180deg, var(--y-cream) 0%, var(--y-cream-warm) 100%);
  overflow: hidden;
}
.yardo-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 380px; height: 380px;
  background: var(--y-sage);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
  opacity: 0.4;
  filter: blur(60px);
  pointer-events: none;
}
.yardo-hero::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: var(--y-clay);
  border-radius: 60% 40% 50% 60% / 40% 60% 50% 40%;
  opacity: 0.12;
  filter: blur(50px);
  pointer-events: none;
}
.yardo-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.yardo-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--y-sage);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--y-moss);
  margin-bottom: 26px;
  box-shadow: 0 4px 12px rgba(42, 63, 40, 0.06);
}
.yardo-hero-tag::before { content: "🌱"; font-size: 1rem; }

.yardo-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--y-moss-deep);
  margin: 0 0 24px;
}
.yardo-hero h1 em {
  font-style: italic;
  color: var(--y-clay-deep);
}
.yardo-hero h1 .leaf-underline {
  position: relative;
  display: inline-block;
}
.yardo-hero h1 .leaf-underline::after {
  content: "";
  position: absolute;
  bottom: -2px; left: -4px; right: -4px;
  height: 10px;
  background: var(--y-sun);
  opacity: 0.4;
  z-index: -1;
  border-radius: 100px;
}
.yardo-hero p.lead {
  font-size: 1.14rem;
  color: var(--y-earth);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.yardo-hero p.lead strong { color: var(--y-moss-deep); font-weight: 600; }

.yardo-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.yardo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.yardo-btn-primary {
  background: var(--y-moss);
  color: var(--y-cream);
  border-color: var(--y-moss);
  box-shadow: 0 6px 16px rgba(42, 63, 40, 0.25);
}
.yardo-btn-primary:hover {
  background: var(--y-moss-deep);
  border-color: var(--y-moss-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(42, 63, 40, 0.3);
}
.yardo-btn-primary::after {
  content: "→";
  transition: transform 0.2s;
}
.yardo-btn-primary:hover::after { transform: translateX(4px); }
.yardo-btn-ghost {
  background: transparent;
  color: var(--y-moss-deep);
  border-color: var(--y-moss-deep);
}
.yardo-btn-ghost:hover {
  background: var(--y-moss-deep);
  color: var(--y-cream);
}

/* Hero stats row */
.yardo-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--y-line);
}
.yardo-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--y-moss-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.yardo-stat .num em {
  color: var(--y-clay-deep);
  font-style: normal;
  font-size: 1.4rem;
}
.yardo-stat .lbl {
  font-size: 0.78rem;
  color: var(--y-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}

/* ============================================================
   QUOTE CARD
   ============================================================ */
.yardo-quote-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(42, 63, 40, 0.18),
    0 12px 24px -8px rgba(42, 63, 40, 0.08);
  border: 1px solid var(--y-line);
}
.yardo-quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--y-moss) 0%, var(--y-olive) 50%, var(--y-sage) 100%);
}
.yardo-quote-card-head {
  padding: 24px 28px 20px;
  border-bottom: 1px dashed var(--y-line);
  background: var(--y-cream);
}
.yardo-quote-card-head .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--y-olive);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.yardo-quote-card-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--y-moss-deep);
  margin: 0;
}
.yardo-quote-card-head p {
  font-size: 0.92rem;
  color: var(--y-grey);
  margin: 4px 0 0;
}
.yardo-quote-card iframe {
  display: block;
  width: 100%;
  border: 0;
  background: white;
  height: 760px;
}

/* ============================================================
   ECO STATS BANNER (sustainability proof)
   ============================================================ */
.yardo-eco-banner {
  background: var(--y-moss-deep);
  color: var(--y-cream);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.yardo-eco-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -100px;
  width: 400px; height: 400px;
  background: var(--y-olive);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
  opacity: 0.15;
  filter: blur(50px);
}
.yardo-eco-banner-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.yardo-eco-stat {
  border-left: 2px solid var(--y-sun);
  padding-left: 18px;
}
.yardo-eco-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--y-sun);
  line-height: 1;
  letter-spacing: -0.02em;
}
.yardo-eco-stat .lbl {
  font-size: 0.84rem;
  color: var(--y-sage);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.yardo-block {
  padding: 96px 0;
  position: relative;
}
.yardo-block-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.yardo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--y-olive);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.yardo-eyebrow::before {
  content: "❋";
  color: var(--y-clay);
  font-size: 1rem;
}
.yardo-block h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--y-moss-deep);
  margin: 0 0 20px;
  max-width: 760px;
}
.yardo-block h2 em {
  font-style: italic;
  color: var(--y-clay-deep);
}
.yardo-block .intro {
  font-size: 1.08rem;
  color: var(--y-earth);
  max-width: 680px;
  margin: 0 0 56px;
  line-height: 1.7;
}

/* ============================================================
   ECO PROCESS — How we recycle 95%
   ============================================================ */
.yardo-recycle {
  background: var(--y-cream);
}
.yardo-recycle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.yardo-recycle-visual {
  background: var(--y-moss-deep);
  color: var(--y-cream);
  border-radius: 32px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.yardo-recycle-visual::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--y-olive);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
  opacity: 0.25;
  filter: blur(40px);
}
.yardo-recycle-visual .big {
  font-family: 'DM Serif Display', serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.9;
  color: var(--y-sun);
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}
.yardo-recycle-visual .big em {
  color: var(--y-sage);
  font-style: normal;
  font-size: 3rem;
  vertical-align: top;
}
.yardo-recycle-visual h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--y-cream);
}
.yardo-recycle-visual p {
  color: var(--y-sage-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.yardo-recycle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yardo-recycle-list li {
  padding: 22px 0;
  border-bottom: 1px dashed var(--y-line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.yardo-recycle-list li:last-child { border-bottom: none; }
.yardo-recycle-list .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--y-clay-deep);
  line-height: 1;
  min-width: 60px;
  letter-spacing: -0.02em;
}
.yardo-recycle-list .text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--y-moss-deep);
  margin-bottom: 4px;
}
.yardo-recycle-list .text span {
  color: var(--y-grey);
  font-size: 0.96rem;
}

/* ============================================================
   PROCESS (3 steps)
   ============================================================ */
.yardo-process {
  background: var(--y-cream-warm);
}
.yardo-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yardo-step {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--y-line);
  position: relative;
  transition: all 0.3s;
}
.yardo-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(42, 63, 40, 0.15);
}
.yardo-step .seed {
  width: 56px;
  height: 56px;
  background: var(--y-sage-soft);
  color: var(--y-moss-deep);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  display: grid;
  place-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 22px;
}
.yardo-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--y-moss-deep);
  margin: 0 0 12px;
  letter-spacing: -0.018em;
}
.yardo-step p {
  color: var(--y-earth);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   VEHICLES GRID
   ============================================================ */
.yardo-vehicles {
  background: var(--y-cream);
}
.yardo-v-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.yardo-v-tile {
  background: white;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--y-line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--y-ink);
  transition: all 0.25s;
}
.yardo-v-tile:hover {
  background: var(--y-sage-soft);
  border-color: var(--y-olive);
  transform: translateY(-2px);
}
.yardo-v-tile .leaf {
  width: 36px; height: 36px;
  background: var(--y-sage-soft);
  color: var(--y-moss-deep);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.yardo-v-tile:hover .leaf {
  background: var(--y-moss-deep);
  color: var(--y-sage-soft);
}

/* ============================================================
   CITIES (homepage city grid)
   ============================================================ */
.yardo-cities {
  background: var(--y-cream-warm);
  position: relative;
}
.yardo-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.yardo-city-link {
  padding: 18px 24px;
  background: white;
  border: 1px solid var(--y-line);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--y-ink);
  transition: all 0.2s;
}
.yardo-city-link:hover {
  background: var(--y-moss);
  color: var(--y-cream);
  border-color: var(--y-moss);
  transform: translateX(3px);
}
.yardo-city-link::after {
  content: "→";
  color: var(--y-clay);
  transition: color 0.2s, transform 0.2s;
}
.yardo-city-link:hover::after {
  color: var(--y-sun);
  transform: translateX(3px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.yardo-testimonials {
  background: var(--y-cream);
}
.yardo-t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yardo-t-card {
  background: white;
  padding: 36px 30px;
  border-radius: 24px;
  border: 1px solid var(--y-line);
  position: relative;
}
.yardo-t-card .leaf-quote {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'DM Serif Display', serif;
  font-size: 3.4rem;
  color: var(--y-sage);
  line-height: 0.6;
  font-style: italic;
}
.yardo-t-card .stars {
  color: var(--y-sun);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.yardo-t-card p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--y-ink);
  line-height: 1.55;
  margin: 0 0 22px;
}
.yardo-t-meta {
  padding-top: 18px;
  border-top: 1px dashed var(--y-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.yardo-t-avatar {
  width: 44px;
  height: 44px;
  background: var(--y-moss);
  color: var(--y-sun);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  display: grid;
  place-items: center;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.1rem;
}
.yardo-t-name { font-weight: 700; font-size: 0.95rem; color: var(--y-moss-deep); }
.yardo-t-loc { font-size: 0.85rem; color: var(--y-grey); }

/* ============================================================
   FAQ
   ============================================================ */
.yardo-faq {
  background: var(--y-cream-warm);
}
.yardo-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.yardo-faq-item {
  background: white;
  border-radius: 18px;
  padding: 22px 28px;
  margin-bottom: 12px;
  border: 1px solid var(--y-line);
  transition: all 0.2s;
}
.yardo-faq-item:hover { border-color: var(--y-sage); }
.yardo-faq-item[open] {
  background: var(--y-cream);
  border-color: var(--y-olive);
}
.yardo-faq-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.18rem;
  font-weight: 400;
  list-style: none;
  color: var(--y-moss-deep);
  letter-spacing: -0.015em;
}
.yardo-faq-item summary::-webkit-details-marker { display: none; }
.yardo-faq-item summary::after {
  content: "+";
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: var(--y-clay);
  font-weight: 600;
  width: 32px;
  height: 32px;
  background: var(--y-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.yardo-faq-item[open] summary::after {
  content: "−";
  background: var(--y-sage-soft);
  color: var(--y-moss-deep);
}
.yardo-faq-item p {
  margin-top: 16px;
  color: var(--y-earth);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.yardo-cta-strip {
  background: var(--y-moss-deep);
  color: var(--y-cream);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.yardo-cta-strip::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 380px; height: 380px;
  background: var(--y-olive);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
  opacity: 0.25;
  filter: blur(60px);
}
.yardo-cta-strip::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--y-clay);
  border-radius: 60% 40% 50% 60% / 40% 60% 50% 40%;
  opacity: 0.18;
  filter: blur(60px);
}
.yardo-cta-strip-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.yardo-cta-strip h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--y-cream);
  margin: 0 0 18px;
}
.yardo-cta-strip h2 em {
  color: var(--y-sun);
  font-style: italic;
}
.yardo-cta-strip p {
  color: var(--y-sage-soft);
  font-size: 1.12rem;
  margin: 0 auto 36px;
  max-width: 600px;
}
.yardo-cta-strip .yardo-btn-primary {
  background: var(--y-sun);
  color: var(--y-moss-deep);
  border-color: var(--y-sun);
  font-size: 1.05rem;
  padding: 19px 36px;
}
.yardo-cta-strip .yardo-btn-primary:hover {
  background: var(--y-cream);
  border-color: var(--y-cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.yardo-footer {
  background: var(--y-ink);
  color: rgba(245, 241, 232, 0.7);
  padding: 72px 0 28px;
  font-size: 0.92rem;
}
.yardo-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}
.yardo-footer h4 {
  color: var(--y-cream);
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.yardo-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.yardo-footer a:hover { color: var(--y-sun); }
.yardo-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 14px;
}
.yardo-footer-bottom a {
  color: var(--y-sun);
  font-weight: 600;
}

/* ============================================================
   CITY PAGE — additional bits
   ============================================================ */
.yardo-crumb {
  background: var(--y-cream-warm);
  padding: 14px 0;
  border-bottom: 1px solid var(--y-line);
  font-size: 0.88rem;
  color: var(--y-grey);
}
.yardo-crumb a {
  color: var(--y-olive);
  font-weight: 600;
}
.yardo-crumb a:hover { color: var(--y-moss-deep); }
.yardo-crumb .yardo-container { display: flex; gap: 12px; }

.yardo-local-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--y-line);
}
.yardo-local-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--y-moss-deep);
  margin: 0 0 16px;
}
.yardo-local-card p {
  color: var(--y-earth);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.yardo-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--y-line);
}
.yardo-neighborhood-pill {
  background: var(--y-sage-soft);
  color: var(--y-moss-deep);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.yardo-eco-callout {
  background: var(--y-moss-deep);
  color: var(--y-cream);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.yardo-eco-callout .icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.yardo-eco-callout p {
  margin: 0;
  color: var(--y-sage-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .yardo-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .yardo-eco-banner-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .yardo-recycle-grid { grid-template-columns: 1fr; gap: 36px; }
  .yardo-process-grid { grid-template-columns: 1fr; }
  .yardo-v-grid { grid-template-columns: repeat(2, 1fr); }
  .yardo-city-grid { grid-template-columns: repeat(2, 1fr); }
  .yardo-t-grid { grid-template-columns: 1fr; }
  .yardo-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .yardo-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .yardo-nav { display: none; }
  .yardo-block { padding: 64px 0; }
  .yardo-quote-card iframe { height: 720px; }
  .yardo-recycle-visual .big { font-size: 5rem; }
  .yardo-stat-row { grid-template-columns: 1fr; gap: 16px; }
  .yardo-stat-row .yardo-stat { display: flex; align-items: baseline; gap: 12px; }
}
@media (max-width: 560px) {
  .yardo-eco-banner-inner { grid-template-columns: 1fr; }
  .yardo-v-grid, .yardo-city-grid, .yardo-footer-grid { grid-template-columns: 1fr; }
  .yardo-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .yardo-top-strip .yardo-container span:nth-child(2) { display: none; }
}

/* ============================================================
   Block editor compatibility - ensure wp-block-* renders cleanly
   ============================================================ */
.wp-block-group.alignfull { padding-left: 0 !important; padding-right: 0 !important; }
.wp-block-buttons { gap: 14px !important; }

/* Reveal animation */
.yardo-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.yardo-reveal.in { opacity: 1; transform: translateY(0); }
