*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green: #4a7c59;
      --green-dark: #365e42;
      --green-light: #eef4f0;
      --cream: #faf8f4;
      --text: #2b2b2b;
      --text-muted: #666;
      --border: #e2ddd6;
      --white: #ffffff;
      --radius: 6px;
      --max: 1100px;
    }

    body {
      font-family: 'Georgia', serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
    }

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

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

    /* ── NAV ── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #dedad2;
      width: 100%;
    }

    .nav-inner {
      width: 100%;
      padding: 0 40px;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      height: 230px;
    }

    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: stretch;
    }

    .logo img {
      height: 100%;
      width: auto;
      mix-blend-mode: multiply;
      display: block;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
      justify-content: center;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: block;
      padding: 8px 18px;
      font-family: 'Georgia', serif;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: #6b5c4e;
      cursor: pointer;
      transition: color 0.15s;
    }

    .nav-link:hover, .nav-link.active {
      color: #4a3a2e;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: #dedad2;
      border: 1px solid #b8aa9a;
      border-radius: var(--radius);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      min-width: 160px;
      z-index: 200;
    }

    .nav-item:hover .dropdown { display: block; }

    .dropdown a {
      display: block;
      padding: 10px 16px;
      font-family: 'Georgia', serif;
      font-size: 0.9rem;
      color: #6b5c4e;
      transition: background 0.15s, color 0.15s;
    }

    .dropdown a:hover {
      background: #b8aa9a;
      color: #3a2e24;
    }

    .nav-icons {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .nav-icons a, .nav-icons button {
      color: #6b5c4e;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: color 0.15s;
    }

    .nav-icons a:hover, .nav-icons button:hover { color: #3a2e24; }

    /* ── PAGES ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 560px;
      overflow: hidden;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%);
      display: flex;
      align-items: center;
      padding: 0 60px;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      color: var(--white);
      line-height: 1.2;
      max-width: 480px;
      margin-bottom: 12px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .hero-text p {
      color: rgba(255,255,255,0.9);
      font-size: 1.1rem;
      margin-bottom: 24px;
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      background: var(--green);
      color: var(--white);
      border-radius: var(--radius);
      font-family: sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      border: none;
    }

    .btn:hover { background: var(--green-dark); }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--green);
      color: var(--green);
    }

    .btn-outline:hover { background: var(--green); color: var(--white); }

    /* ── SECTION ── */
    section {
      padding: 64px 24px;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-label {
      font-family: sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 16px;
      line-height: 1.25;
    }

    h3 { font-size: 1.25rem; margin-bottom: 8px; }

    p { margin-bottom: 16px; }
    p:last-child { margin-bottom: 0; }

    hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

    /* ── FLOCK GRID ── */
    .flock-section { background: var(--cream); }

    .flock-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }

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

    .chicken-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .chicken-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: top;
    }

    .chicken-info {
      padding: 14px 16px;
    }

    .chicken-info strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 3px;
    }

    .chicken-info span {
      font-family: sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ── BLOG TEASERS ── */
    .blog-teasers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 32px;
    }

    .blog-teaser {
      display: flex;
      flex-direction: column;
    }

    .blog-teaser img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .blog-teaser h3 { font-size: 1.4rem; margin-bottom: 10px; }

    .blog-teaser p { color: var(--text-muted); font-size: 0.95rem; }

    .read-more {
      display: inline-block;
      margin-top: 12px;
      font-family: sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green);
      letter-spacing: 0.03em;
    }

    .read-more:hover { text-decoration: underline; }

    /* ── ABOUT PAGE ── */
    .about-hero {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 48px;
      align-items: start;
    }

    .about-hero img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    .photo-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      margin-top: 40px;
    }

    .photo-mosaic img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
    }

    /* Why Us */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 32px;
    }

    .why-card {
      background: var(--cream);
      border-radius: 10px;
      padding: 28px;
    }

    .why-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--green);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 8px;
    }

    /* Impact */
    .impact-section { background: var(--green-light); }

    .impact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 32px;
    }

    .impact-grid img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    .milestone {
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .milestone:last-child { border-bottom: none; }

    .milestone-date {
      font-family: sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    /* ── BUY EGGS ── */
    .steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin: 40px 0;
    }

    .step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .step-num {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--green);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 700;
      font-family: sans-serif;
    }

    .pricing-card {
      background: var(--cream);
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 36px;
      text-align: center;
      max-width: 320px;
      margin: 40px auto;
    }

    .pricing-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--green);
      font-family: sans-serif;
    }

    .price-label { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
    .price-desc { font-family: sans-serif; font-size: 0.85rem; color: var(--text-muted); }

    .zipcodes {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .zip-tag {
      background: var(--green-light);
      color: var(--green-dark);
      font-family: sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* ── GALLERY ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 12px;
      margin-top: 32px;
    }

    .gallery-grid img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .gallery-grid img:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    .lightbox.open { display: flex; }

    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
    }

    .lightbox-close {
      position: fixed;
      top: 20px;
      right: 28px;
      color: white;
      font-size: 2.2rem;
      cursor: pointer;
      font-family: sans-serif;
      line-height: 1;
    }

    /* ── BLOG ── */
    .blog-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      border-bottom: 2px solid var(--border);
      padding-bottom: 0;
    }

    .tab-btn {
      padding: 10px 20px;
      font-family: sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--text-muted);
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: color 0.15s, border-color 0.15s;
    }

    .tab-btn:hover { color: var(--green); }
    .tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

    .blog-card {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 28px;
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }

    .blog-card:last-child { border-bottom: none; }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }

    .blog-meta {
      font-family: sans-serif;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .blog-category-tag {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      font-family: sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    /* ── FOOTER ── */
    .footer-social-bar {
      background: #857565;
      padding: 14px 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px;
    }

    .footer-social-bar a {
      color: #e5dfd3;
      display: flex;
      align-items: center;
      transition: color 0.15s;
    }

    .footer-social-bar a:hover { color: #fff; }

    footer {
      background: #e5dfd3;
      color: #7a6d60;
      padding: 0;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      padding: 48px 48px 32px;
      align-items: start;
    }

    .footer-col-blog { padding-right: 24px; }

    .footer-col-logo {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .footer-col-logo img {
      height: 260px;
      width: auto;
      mix-blend-mode: multiply;
    }

    .footer-col-menu {
      text-align: right;
      padding-left: 24px;
    }

    footer h4 {
      font-family: sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #5c5047;
      margin-bottom: 18px;
    }

    footer ul { list-style: none; }

    footer ul li { margin-bottom: 12px; }

    footer ul li a {
      font-family: 'Georgia', serif;
      font-size: 0.95rem;
      color: #7a6d60;
      transition: color 0.15s;
    }

    footer ul li a:hover { color: #4a3a2e; }

    .footer-bottom {
      text-align: center;
      padding: 28px 24px 36px;
      font-family: 'Georgia', serif;
      font-size: 0.875rem;
      color: #7a6d60;
    }

    .footer-bottom a {
      color: #7a6d60;
      text-decoration: underline;
    }

    .footer-bottom a:hover { color: #4a3a2e; }

    /* ── RESPONSIVE ── */

    /* Breed modal */
    .breed-modal-overlay {
      display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2000;
      background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
    }
    .breed-modal {
      background: #fff; border-radius: 16px; max-width: 680px; width: 92%;
      max-height: 90vh; overflow-y: auto; padding: 0;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .breed-modal-header {
      position: relative; padding: 28px 28px 0;
    }
    .breed-modal-close {
      position: absolute; top: 16px; right: 16px;
      background: var(--cream); border: none; border-radius: 50%;
      width: 36px; height: 36px; font-size: 1.2rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .breed-modal-body { padding: 20px 28px 32px; }
    .breed-modal img { width: 100%; height: 220px; object-fit: cover; object-position: top; border-radius: 10px; margin-bottom: 20px; }
    .breed-facts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 20px; }
    .breed-fact { background: var(--cream); border-radius: 8px; padding: 14px 16px; }
    .breed-fact-label { font-family: sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 6px; }
    .breed-fact-value { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
    .chicken-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.13); }
    .chicken-card { transition: transform 0.15s, box-shadow 0.15s; }
    @media (max-width: 600px) { .breed-facts { grid-template-columns: 1fr; } }

    /* Mobile hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: 0.2s; }
    .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 500; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-family: Georgia, serif; font-size: 1.4rem; color: var(--brown); text-decoration: none; }
    .mobile-nav-close { position: absolute; top: 20px; right: 24px; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: var(--brown); }
    @media (max-width: 768px) {
      .hero { height: 400px; }
      .hero-overlay { padding: 0 28px; }
      .hero-text h1 { font-size: 1.9rem; }

      .about-hero,
      .why-grid,
      .impact-grid,
      .two-col,
      .steps,
      .blog-teasers { grid-template-columns: 1fr; }

      .blog-card { grid-template-columns: 1fr; }
      .blog-card img { height: 220px; }

      .photo-mosaic { grid-template-columns: 1fr 1fr; }

      .footer-inner { grid-template-columns: 1fr; gap: 32px; }

      nav { display: none; }
      .hamburger { display: flex; }
      .flock-grid { grid-template-columns: 1fr 1fr; }
      .breed-facts { grid-template-columns: 1fr; }
    }