   :root {
      --cream: #f5f0e8;
      --dark: #1a1a14;
      --brown: #6b4c2a;
      --gold: #c8973a;
      --green: #2d4a2d;
      --light-green: #4a7c4a;
      --text-muted: #7a6e5e;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(26, 26, 20, 0.92);
      backdrop-filter: blur(10px);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--gold);
      letter-spacing: 1px;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    /* ── HERO ── */
    .hero {
      height: 120vh;
      background: 
        linear-gradient(160deg, rgba(26,26,20,0.4) 0%, rgba(45,74,45,0.4) 50%, rgba(26,46,26,0.4) 100%),
        url('../images/hero_image.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(200, 151, 58, 0.12) 0%, transparent 70%);
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s ease both;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 900;
      color: white;
      line-height: 1.0;
      margin-bottom: 16px;
    }

    .hero h1 span {
      color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 48px;
    }

    .hero-cta {
      display: inline-block;
      padding: 14px 40px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--dark);
    }

    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }

    .scroll-hint::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(200,151,58,0.6), transparent);
    }

    /* ── SECTIONS ── */
    section { padding: 100px 60px; }

    .section-label {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .section-title em {
      color: var(--green);
      font-style: italic;
    }

    /* ── ABOUT ── */
    .about {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--cream);
    }

    .stat-box {
      background: white;
      padding: 36px 28px;
      border-left: 3px solid transparent;
      transition: border-color 0.3s;
    }

    .stat-box:hover { border-left-color: var(--gold); }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── BREED ── */
    .breed {
      background: var(--dark);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .breed::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(200,151,58,0.08) 0%, transparent 70%);
    }

    .breed .section-title { color: white; }

    .breed-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
      background: rgba(255,255,255,0.05);
    }

    .breed-card {
      background: rgba(255,255,255,0.03);
      padding: 48px 36px;
      border-top: 1px solid rgba(200,151,58,0.2);
      transition: background 0.3s;
      position: relative;
    }

    .breed-card:hover { background: rgba(200,151,58,0.06); }

    .breed-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }

    .breed-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .breed-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.8;
    }

/* ── GALLERY ── */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 1;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8a882, #9a8a6a);
  color: rgba(0,0,0,0.6);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 8px;
}

.gallery-placeholder span { font-size: 32px; opacity: 0.4; }

    /* ── CONTACT ── */
    .contact {
      background: var(--green);
      color: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact .section-title { color: white; }
    .contact .section-label { color: var(--gold); }

    .contact-info p {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.9;
      margin-bottom: 32px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(200,151,58,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      color: var(--gold);
    }

    .contact-item-text {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
    }

    .contact-item-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 14px 18px;
      color: white;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }

    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--gold); }

    .contact-form textarea { height: 120px; resize: none; }

    .contact-form button {
      padding: 14px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .contact-form button:hover { opacity: 0.85; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 32px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 18px;
    }

    .footer-text {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 1px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      section { padding: 70px 24px; }
      .about { grid-template-columns: 1fr; gap: 40px; }
      .breed-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
      .contact { grid-template-columns: 1fr; gap: 48px; }
      footer { flex-direction: column; gap: 12px; text-align: center; }
    }