/* ============================================================
   YOUR BACKYARD KNOWS — LAWN & GARDEN PAGE
   lawn-garden.css  |  hosted: /wp-content/uploads/ybk/lawn-garden.css
   ============================================================ */
*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --green-dark: #1F4D3A;
      --green-mid: #2F6B4F;
      --green-light: #3d7a52;
      --green-accent: #2F6B4F;
      --gold: #F4B544;
      --gold-light: #f7c96e;
      --gold-dark: #d9a03a;
      --cream: #faf7f0;
      --cream-dark: #f0ead6;
      --beige: #C9B38A;
      --text-dark: #1a1a1a;
      --text-mid: #4a4a4a;
      --text-light: #6a6a6a;
      --white: #ffffff;
      --border: #e0ddd4;
      --light-gray: #F5F5F5;
    }

    body {
      font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Montserrat', Arial, sans-serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo-img {
      height: 130px !important;
      max-height: 130px !important;
      width: auto !important;
      max-width: 280px !important;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav a:link, .nav a:visited { color: #333 !important; border-bottom: none !important; text-decoration: none !important; }
.nav a {
      font-size: 14px;
      white-space: nowrap;
      font-weight: 500;
      color: var(--text-dark);
      transition: color 0.2s;
      position: relative;
    }

    .nav a:hover {
      color: var(--green-mid);
    }

    .nav a.active {
      color: var(--green-dark);
      font-weight: 700;
    }

    .nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--green-dark);
      border-radius: 1px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-dark);
      padding: 4px;
    }

    .search-btn svg {
      width: 20px;
      height: 20px;
    }

    .cta-header {
      background: var(--green-dark);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .cta-header:hover {
      background: var(--green-mid);
    }

    /* ========== BREADCRUMB ========== */
    .breadcrumb {
      position: absolute;
      top: 16px;
      left: 24px;
      z-index: 3;
      font-size: 13px;
      color: rgba(255,255,255,0.8);
    }

    .breadcrumb a {
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }

    .breadcrumb a:hover {
      color: var(--white);
    }

    .breadcrumb span {
      margin: 0 6px;
      opacity: 0.6;
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 480px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #1a3a2a;
      z-index: 0;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background-image: url('https://yourbackyardknows.com/wp-content/uploads/ybk/lawn-garden-hero.jpg');
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(15, 30, 18, 0.75) 0%, rgba(15, 30, 18, 0.4) 50%, rgba(15, 30, 18, 0.15) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 70px 24px 50px;
      width: 100%;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
      max-width: 480px;
    }

    .hero p {
      color: rgba(255,255,255,0.85);
      font-size: 16px;
      max-width: 420px;
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-dark);
      color: var(--white);
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-hero-primary:hover {
      background: var(--green-mid);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-hero-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
    }

    /* ========== BROWSE BY CATEGORY ========== */
    .idea-types {
      padding: 48px 0 40px;
      background: var(--white);
    }

    .section-heading-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 32px;
    }

    .section-heading-line::before,
    .section-heading-line::after {
      content: '';
      height: 2px;
      width: 60px;
      background: var(--green-dark);
    }

    .section-heading-line h2 {
      font-size: 20px;
      font-weight: 800;
      color: var(--text-dark);
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .idea-pills {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .idea-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border: 2px solid var(--border);
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .idea-pill:hover {
      border-color: var(--green-mid);
      color: var(--green-dark);
      background: #f0f7f3;
    }

    .idea-pill svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* ========== FEATURED ARTICLES ========== */
    .featured {
      padding: 48px 0 56px;
      background: var(--cream);
    }

    .featured-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .featured-header h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .featured-subtext {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .view-all {
      font-size: 14px;
      font-weight: 600;
      color: var(--green-dark);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .view-all:hover {
      color: var(--green-mid);
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .article-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .article-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .article-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .article-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      padding: 5px 12px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'Open Sans', sans-serif;
    }

    .badge-lawn { background: var(--green-dark); color: var(--white); }
    .badge-weed { background: var(--gold); color: var(--text-dark); }
    .badge-fertilize { background: var(--green-accent); color: var(--white); }

    .article-body {
      padding: 18px;
    }

    .article-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .article-body p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .read-more {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }

    .read-more:hover {
      color: var(--green-mid);
    }

    /* ========== SOLVE COMMON LAWN PROBLEMS ========== */
    .problems {
      padding: 56px 0;
      background: var(--white);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .problem-card {
      border-radius: 12px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }

    .problem-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .problem-img-wrap {
      width: 100%;
      height: 160px;
      overflow: hidden;
      position: relative;
    }

    .problem-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .problem-icon {
      position: absolute;
      bottom: -18px;
      left: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 2;
    }

    .problem-icon svg {
      width: 18px;
      height: 18px;
    }

    .icon-blue { background: #3a7ca5; }
    .icon-green { background: var(--green-mid); }
    .icon-teal { background: #4a8fa5; }
    .icon-orange { background: #d4873a; }

    .problem-body {
      padding: 28px 16px 18px;
    }

    .problem-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .problem-body p {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .view-solutions {
      font-size: 13px;
      font-weight: 600;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }

    .view-solutions:hover {
      color: var(--green-mid);
    }

    /* ========== PRODUCTS + TRENDING ========== */
    .trending-section {
      padding: 48px 0 56px;
      background: var(--cream);
    }

    .trending-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: start;
    }

    .trending-right h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .trending-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .trending-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .trending-card {
      cursor: pointer;
      transition: transform 0.2s;
    }

    .trending-card:hover {
      transform: translateY(-3px);
    }

    .trending-card-img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .trending-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .trending-card span {
      font-size: 12px;
      font-weight: 600;
      color: var(--green-dark);
      display: block;
      text-align: center;
    }

    /* Products sidebar */
    .products-sidebar {
      background: var(--white);
      border-radius: 12px;
      padding: 22px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .products-sidebar h2 {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .product-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .product-item:last-child {
      border-bottom: none;
    }

    .product-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      flex-shrink: 0;
      background: #f0f7f3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .product-info {
      flex: 1;
      min-width: 0;
    }

    .product-info h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
    }

    .product-link {
      font-size: 12px;
      font-weight: 600;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      gap: 2px;
      margin-top: 2px;
      transition: color 0.2s;
    }

    .product-link:hover {
      color: var(--green-mid);
    }

    /* ========== SEASONAL LAWN CARE GUIDE ========== */
    .seasonal {
      padding: 56px 0;
      background: var(--white);
    }

    .seasonal-subtext {
      text-align: center;
      font-size: 14px;
      color: var(--text-light);
      margin-top: -24px;
      margin-bottom: 32px;
    }

    .seasonal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .season-card {
      border-radius: 14px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }

    .season-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .season-card-img {
      width: 100%;
      height: 170px;
      overflow: hidden;
    }

    .season-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .season-card-body {
      padding: 20px 18px;
      text-align: center;
    }

    .season-card-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .season-card-body p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .season-btn {
      display: inline-block;
      padding: 10px 22px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
      font-family: 'Open Sans', sans-serif;
    }

    .season-btn:hover {
      opacity: 0.85;
    }

    .season-btn-green { background: var(--green-dark); color: var(--white); }
    .season-btn-gold { background: var(--gold); color: var(--text-dark); }
    .season-btn-orange { background: #c07830; color: var(--white); }
    .season-btn-blue { background: #4a7a9a; color: var(--white); }

    /* Season color themes */
    .sc-spring .season-card-body h3 { color: #2d5a3d; }
    .sc-summer .season-card-body h3 { color: #8a6d1b; }
    .sc-fall .season-card-body h3 { color: #8a4a1b; }
    .sc-winter .season-card-body h3 { color: #2a4a6a; }

    /* ========== NEWSLETTER ========== */
    .newsletter {
      padding: 40px 0;
      background: var(--white);
    }

    .newsletter-inner {
      background: var(--green-dark);
      border-radius: 16px;
      padding: 40px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .newsletter-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .newsletter-icon {
      width: 56px;
      height: 56px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .newsletter-icon svg {
      width: 28px;
      height: 28px;
      color: var(--white);
    }

    .newsletter-text h3 {
      font-family: 'Open Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .newsletter-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .newsletter-form input {
      padding: 14px 18px;
      border: 2px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-size: 14px;
      width: 280px;
      outline: none;
      font-family: 'Open Sans', sans-serif;
    }

    .newsletter-form input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .newsletter-form input:focus {
      border-color: var(--gold);
    }

    .newsletter-form button {
      background: var(--gold);
      color: var(--text-dark);
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      font-family: 'Open Sans', sans-serif;
    }

    .newsletter-form button:hover {
      background: var(--gold-light);
    }

    /* ========== SEO CONTENT BLOCK ========== */
    .seo-block {
      padding: 40px 0 48px;
      background: var(--light-gray);
    }

    .seo-block .seo-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--green-dark);
      margin-bottom: 6px;
    }

    .seo-block h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .seo-block p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 900px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--green-dark);
      color: var(--white);
      padding: 48px 0 0;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
    }

    .footer-logo {
      margin-bottom: 8px;
    }

    .footer-logo-img {
      height: 115px !important;
      max-height: 115px !important;
      width: auto !important;
      max-width: 280px !important;
    }

    .footer h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 13px;
      opacity: 0.75;
      transition: opacity 0.2s;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    .social-icons {
      display: flex;
      gap: 12px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .social-icon:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.5);
    }

    .social-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding: 16px 0;
      text-align: center;
      font-size: 12px;
      opacity: 0.6;
    }

/* ============================================================
   RESPONSIVE — REVISED (no hamburger required)
   Nav scrolls horizontally on mobile.
   ============================================================ */

.menu-toggle { display: none !important; }

/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .header-inner { padding: 8px 16px; }
  .logo-img { height: 90px !important; max-height: 90px !important; max-width: 220px !important; }
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
  .cta-header { padding: 10px 16px !important; font-size: 13px !important; }
}

/* ---------- MOBILE (<= 768px) ---------- */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; padding: 8px 12px; gap: 4px; }
  .logo-img { height: 60px !important; max-height: 60px !important; max-width: 160px !important; }
  .header-right { margin-left: auto; }
  .cta-header { display: none !important; }

  .nav {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    flex: 0 0 100%;
    gap: 0;
    padding: 4px 0 6px;
    border-top: 1px solid #eee;
    scrollbar-width: none;
    justify-content: flex-start !important;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; font-size: 12px; padding: 8px 10px; flex-shrink: 0; }

  h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.5rem !important; }
  .hero, .au-hero, .hero-section { padding: 40px 16px !important; }
  section, .section, .au-section { padding-left: 16px !important; padding-right: 16px !important; }

  .pillars-grid, .au-pillars, .promise-grid, .au-promise,
  .hero-grid, .story-grid, .network-grid,
  .contact-layout, .info-grid, .footer-grid,
  .lifestyle-grid, .amazon-grid, .steps-grid,
  .popular-guides, .categories-layout, .recipe-spotlight,
  .techniques-grid, .recipes-grid, .detailed-cols, .shop-grid,
  .cat-grid, .subcat-grid, .product-card-grid, .picks-grid,
  .solutions-grid, .products-grid, .pest-id-grid, .seasonal-grid,
  .natural-grid, .cta-grid {
    grid-template-columns: 1fr !important;
  }

  .section-heading-line { flex-wrap: wrap !important; gap: 8px !important; }
  .section-heading-line::before, .section-heading-line::after { width: 30px !important; }
  .section-heading-line h2 { white-space: normal !important; text-align: center !important; font-size: 16px !important; }
    .cat-nav-inner { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .cat-nav-link { display: inline-block !important; }
  .newsletter-inner { flex-direction: column !important; align-items: flex-start !important; padding: 24px 16px !important; }
  .newsletter-left { flex-wrap: wrap !important; }
  .newsletter-form, .signup-form { flex-direction: column !important; }
  .newsletter-form input { width: 100% !important; }
  .newsletter-form button { width: 100% !important; }
  .footer-inner, .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 420px) {
  .logo-img { height: 50px !important; max-height: 50px !important; max-width: 140px !important; }
  h1 { font-size: 1.65rem !important; }
  h2 { font-size: 1.25rem !important; }
}

/* === FULL-BLEED HERO FIX === */
.hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
