    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --soil:    #0f2318;
      --bark:    #1a3828;
      --rust:    #3a7d55;
      --hay:     #7ec87a;
      --cream:   #e8f5e9;
      --sage:    #4caf7d;
      --sky:     #d0ead5;
      --white:   #f4fbf5;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--soil);
      color: var(--cream);
      font-family: 'Libre Baskerville', Georgia, serif;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(15,35,24,0.92);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(126,200,122,0.25);
    }
    .nav-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 900; letter-spacing: .04em;
      color: var(--hay); text-decoration: none;
    }
    .nav-brand span { color: var(--cream); font-style: italic; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--cream); text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--hay); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: relative;
      background:
        linear-gradient(170deg, rgba(43,29,14,0.55) 0%, rgba(43,29,14,0.80) 100%),
        url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=1600&auto=format&fit=crop') center/cover no-repeat;
      text-align: center;
      padding: 6rem 2rem 4rem;
      overflow: hidden;
    }
    .hero-badge {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--hay);
      border: 1px solid rgba(126,200,122,.4);
      padding: .4rem 1.4rem; border-radius: 2px;
      margin-bottom: 1.6rem;
      opacity: 0; animation: fadeUp .8s .2s forwards;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 9vw, 8rem);
      font-weight: 900; line-height: .95;
      letter-spacing: -.02em;
      color: var(--white);
      opacity: 0; animation: fadeUp .9s .4s forwards;
    }
    .hero-title em {
      color: var(--hay); font-style: italic; display: block;
    }
    .hero-sub {
      margin-top: 1.4rem;
      font-size: 1rem; letter-spacing: .06em; color: rgba(245,237,216,.75);
      opacity: 0; animation: fadeUp .9s .6s forwards;
    }
    .hero-cta {
      margin-top: 2.8rem;
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: fadeUp .9s .8s forwards;
    }
    .btn {
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
      padding: .85rem 2.2rem; border-radius: 2px;
      text-decoration: none; cursor: pointer; border: none;
      transition: all .2s;
    }
    .btn-primary {
      background: var(--hay); color: var(--soil);
    }
    .btn-primary:hover { background: #e0bc62; transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--cream);
      border: 1px solid rgba(245,237,216,.5);
    }
    .btn-outline:hover { border-color: var(--hay); color: var(--hay); }

    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      opacity: 0; animation: fadeIn 1s 1.4s forwards;
    }
    .hero-scroll span {
      font-family: 'Oswald', sans-serif; font-size: .65rem;
      letter-spacing: .2em; text-transform: uppercase; color: rgba(245,237,216,.5);
    }
    .scroll-line {
      width: 1px; height: 40px; background: linear-gradient(var(--hay), transparent);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }

    /* ── SECTION COMMON ── */
    section { padding: 6rem 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
      color: var(--hay); margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; line-height: 1.15;
      color: var(--white);
    }
    .divider {
      width: 60px; height: 2px; background: var(--hay);
      margin: 1.4rem 0 2rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--bark); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .about-text p {
      line-height: 1.85; color: rgba(245,237,216,.85);
      margin-bottom: 1.2rem; font-size: .98rem;
    }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .stat-card {
      background: rgba(15,35,24,.5);
      border: 1px solid rgba(126,200,122,.2);
      padding: 1.6rem 1.4rem; border-radius: 3px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 900;
      color: var(--hay); line-height: 1;
    }
    .stat-label {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(245,237,216,.6); margin-top: .5rem;
    }

    /* ── LIVESTOCK ── */
    #livestock { background: var(--soil); }
    .livestock-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; margin-top: 2.5rem;
    }
    .livestock-card {
      position: relative; overflow: hidden; border-radius: 4px;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .livestock-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
      display: block;
    }
    .livestock-card:hover img { transform: scale(1.06); }
    .livestock-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(43,29,14,.92) 0%, transparent 55%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.8rem 1.4rem;
    }
    .livestock-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700; color: var(--white);
    }
    .livestock-desc {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--hay); margin-top: .3rem;
    }

    /* ── FOR SALE ── */
    #forsale { background: var(--bark); }
    .sale-intro {
      max-width: 620px;
      color: rgba(245,237,216,.8); line-height: 1.8; margin-bottom: 3rem;
    }
    .sale-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.6rem;
    }
    .sale-card {
      background: rgba(15,35,24,.6);
      border: 1px solid rgba(126,200,122,.2);
      border-radius: 4px; overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .sale-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.4);
    }
    .sale-img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
    }
    .sale-body { padding: 1.4rem; }
    .sale-tag {
      font-family: 'Oswald', sans-serif; font-size: .68rem;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--hay); background: rgba(126,200,122,.12);
      border: 1px solid rgba(126,200,122,.3);
      padding: .2rem .7rem; border-radius: 2px;
      display: inline-block; margin-bottom: .8rem;
    }
    .sale-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; color: var(--white); margin-bottom: .5rem;
    }
    .sale-detail {
      font-size: .85rem; color: rgba(245,237,216,.65); line-height: 1.6;
    }
    .sale-footer {
      padding: .8rem 1.4rem 1.4rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .sale-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700; color: var(--hay);
    }
    .sale-cta {
      font-family: 'Oswald', sans-serif; font-size: .75rem;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--cream); text-decoration: none;
      border-bottom: 1px solid rgba(245,237,216,.3);
      padding-bottom: 1px;
      transition: color .2s, border-color .2s;
    }
    .sale-cta:hover { color: var(--hay); border-color: var(--hay); }

    /* ── GALLERY ── */
    #gallery { background: var(--soil); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 1rem; margin-top: 2.5rem;
    }
    .gallery-item {
      overflow: hidden; border-radius: 3px;
      position: relative;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s;
      display: block;
      min-height: 180px;
    }
    .gallery-item:hover img { transform: scale(1.05); }

    /* ── CONTACT ── */
    #contact { background: var(--bark); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    .contact-info { }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 2rem;
    }
    .contact-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: rgba(126,200,122,.12);
      border: 1px solid rgba(126,200,122,.3);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .contact-label {
      font-family: 'Oswald', sans-serif; font-size: .7rem;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--hay); margin-bottom: .3rem;
    }
    .contact-val {
      color: var(--cream); font-size: .95rem; line-height: 1.5;
    }
    .contact-val a { color: var(--cream); text-decoration: none; }
    .contact-val a:hover { color: var(--hay); }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label {
      font-family: 'Oswald', sans-serif; font-size: .72rem;
      letter-spacing: .15em; text-transform: uppercase;
      color: rgba(245,237,216,.6);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(15,35,24,.6);
      border: 1px solid rgba(126,200,122,.25);
      border-radius: 2px;
      padding: .75rem 1rem;
      color: var(--cream); font-family: 'Libre Baskerville', serif;
      font-size: .9rem;
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--hay); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select option { background: var(--soil); }

    /* ── FOOTER ── */
    footer {
      background: var(--soil);
      border-top: 1px solid rgba(126,200,122,.15);
      padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 900; color: var(--hay);
    }
    .footer-note {
      font-family: 'Oswald', sans-serif; font-weight: 300;
      font-size: .72rem; letter-spacing: .15em;
      color: rgba(245,237,216,.4);
    }
    .footer-social a {
      font-family: 'Oswald', sans-serif; font-size: .75rem;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(245,237,216,.5); text-decoration: none;
      transition: color .2s;
    }
    .footer-social a:hover { color: var(--hay); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%,100% { opacity: .6; transform: scaleY(1); }
      50%      { opacity: 1; transform: scaleY(1.15); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1.2rem; }
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .livestock-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    }
    @media (max-width: 600px) {
      nav { padding: .8rem 1rem; }
      .nav-links { gap: .8rem; }
      .nav-links a { font-size: .75rem; }
      .livestock-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; }}