*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C8861A;
      --gold-light: #F0B429;
      --gold-pale: #FEF3DC;
      --brown: #3D2B1F;
      --brown-mid: #6B4226;
      --green: #2D4A2D;
      --green-light: #4A7C59;
      --cream: #FBF5EC;
      --white: #FFFDF8;
      --text: #2A1F14;
      --text-light: #6B5744;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(61, 43, 31, 0.97);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      border-bottom: 2px solid var(--gold);
}
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--gold-light);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a {
      color: #E8D5B5; text-decoration: none;
      font-weight: 600; font-size: 0.9rem;
      letter-spacing: 0.05em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }

    .nav-cta {
      background: var(--gold); color: var(--brown) !important;
      padding: 8px 20px; border-radius: 25px;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--brown) !important; }

    /* ---- HERO ---- */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(160deg, rgba(61,43,31,0.85) 0%, rgba(45,74,45,0.75) 100%),
        url('https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?w=1600&q=80') center/cover no-repeat;
      display: flex; align-items: center;
      padding: 120px 8% 80px;
      position: relative;
    }
    #hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, transparent, var(--cream));
    }
    .hero-content { max-width: 680px; animation: fadeUp 0.9s ease both; }
    .hero-badge {
      display: inline-block;
      background: var(--gold); color: var(--brown);
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 20px;
      margin-bottom: 24px;
    }
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero-content h1 em {
      color: var(--gold-light); font-style: italic;
    }
    .hero-content p {
      font-size: 1.15rem; color: #E8D5B5;
      line-height: 1.7; margin-bottom: 36px;
      font-weight: 300;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--brown);
      padding: 14px 32px; border-radius: 30px;
      font-weight: 700; font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(200,134,26,0.4);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,134,26,0.5); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.5); color: var(--white);
      padding: 14px 32px; border-radius: 30px;
      font-weight: 600; font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

    .hero-stats {
      position: absolute; bottom: 100px; right: 8%;
      display: flex; gap: 40px;
      animation: fadeUp 1.1s 0.3s ease both;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900;
      color: var(--gold-light); display: block;
    }
    .stat-label { font-size: 0.8rem; color: #C8B89A; text-transform: uppercase; letter-spacing: 0.1em; }

    /* ---- SECTION BASE ---- */
    section { padding: 90px 8%; }
    .section-tag {
      display: inline-block;
      color: var(--gold); font-weight: 700;
      font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--brown); margin-bottom: 16px;
      line-height: 1.2;
    }
    .section-sub {
      color: var(--text-light); font-size: 1.05rem;
      line-height: 1.7; max-width: 560px;
    }

    /* ---- ABOUT ---- */
    #about { background: var(--white); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-img-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%; height: 480px; object-fit: cover;
      border-radius: 20px;
    }
    .about-badge-img {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--gold); color: var(--brown);
      width: 120px; height: 120px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .about-badge-img strong { font-size: 1.8rem; font-weight: 900; }
    .about-badge-img span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
    .about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .about-feat {
      display: flex; gap: 14px; align-items: flex-start;
    }
    .feat-icon {
      min-width: 40px; height: 40px;
      background: var(--gold-pale); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .feat-text strong { display: block; color: var(--brown); font-weight: 700; margin-bottom: 2px; }
    .feat-text p { font-size: 0.9rem; color: var(--text-light); }

    /* ---- BREEDS ---- */
    #breeds { background: var(--cream); }
    .breeds-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
    .breeds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .breed-card {
      background: var(--white); border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(61,43,31,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .breed-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(61,43,31,0.15); }
    .breed-img { position: relative; overflow: hidden; }
    .breed-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
    .breed-card:hover .breed-img img { transform: scale(1.06); }
    .breed-tag {
      position: absolute; top: 14px; left: 14px;
      background: var(--gold); color: var(--brown);
      font-size: 0.7rem; font-weight: 700;
      padding: 4px 12px; border-radius: 12px;
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .breed-info { padding: 22px; }
    .breed-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--brown); margin-bottom: 6px;
    }
    .breed-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
    .breed-meta { display: flex; gap: 16px; }
    .meta-item { font-size: 0.8rem; color: var(--green-light); font-weight: 700; }
    .meta-item span { display: block; color: var(--text-light); font-weight: 400; font-size: 0.75rem; }

    /* ---- SERVICES ---- */
    .services-grid { 
      display: grid; 
      grid-template-columns: repeat(3, 1fr); 
      gap: 24px; 
      margin-top: 50px; 
    }

    .service-card {
      border: 1.5px solid #EAD9C4;
      border-radius: 16px; 
      padding: 30px 24px;
      text-align: center;
      transition: all 0.3s;
    }

    .service-card:hover {
      border-color: var(--gold);
      background: var(--gold-pale);
      transform: translateY(-4px);
    }

    .service-icon { 
      font-size: 2.5rem; 
      margin-bottom: 14px; 
    }

    .service-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; 
      color: var(--brown);
      margin-bottom: 8px;
    }

    .service-card p { 
      font-size: 0.88rem; 
      color: var(--text-light); 
      line-height: 1.6; 
    }

    /* ---- GALLERY ---- */
    #gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 200px);
      gap: 14px; margin-top: 40px;
    }
    .gallery-item {
      border-radius: 14px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(61,43,31,0.6), transparent);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

    /* ---- ORDER ---- */
    #order { background: var(--green); position: relative; overflow: hidden; }
    #order::before {
      content: '🐣'; font-size: 20rem; position: absolute;
      right: -60px; top: -60px; opacity: 0.04; line-height: 1;
    }
    #order .section-title { color: var(--white); }
    #order .section-tag { color: var(--gold-light); }
    #order .section-sub { color: #B0D4B8; }
    .order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
    .steps { display: flex; flex-direction: column; gap: 28px; }
    .step { display: flex; gap: 20px; align-items: flex-start; }
    .step-num {
      min-width: 48px; height: 48px;
      background: var(--gold); color: var(--brown);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 900;
    }
    .step-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
    .step-text p { color: #9CBEA4; font-size: 0.9rem; line-height: 1.6; }

    /* ORDER FORM */
    .order-form {
      background: var(--white); border-radius: 20px;
      padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }
    .order-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--brown); margin-bottom: 24px;
    }

    #orderForm {
      max-width: 500px;
      margin: 40px auto;
      padding: 25px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    #orderForm input,
    #orderForm select,
    #orderForm textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      transition: 0.3s ease;
    }

    #orderForm input:focus,
    #orderForm select:focus,
    #orderForm textarea:focus {
      border-color: #2e7d32;
      outline: none;
      box-shadow: 0 0 5px rgba(46, 125, 50, 0.3);
    }

    #orderForm textarea {
      min-height: 90px;
      resize: vertical;
    }

    .button {
      padding: 12px;
      background: #2e7d32;
      color: white;
      font-size: 15px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .button:hover {
      background: #1b5e20;
    }

    /* ---- LOCATION ---- */
    #location { background: var(--white); }
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
    .map-placeholder {
      background: #E8D5B5;
      border-radius: 20px; height: 380px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--brown-mid);
      border: 2px dashed var(--gold);
      overflow: hidden; position: relative;
    }
    .map-pin { font-size: 3rem; position: relative; animation: bounce 2s infinite; }
    .map-placeholder p { position: relative; font-weight: 700; font-size: 1rem; }
    .map-placeholder small { position: relative; color: var(--brown-mid); opacity: 0.7; font-size: 0.85rem; }
    .map-btn {
      position: relative;
      display: inline-block;
      background: var(--gold); color: var(--brown);
      padding: 10px 24px; border-radius: 20px;
      font-weight: 700; font-size: 0.9rem;
      text-decoration: none; margin-top: 8px;
      transition: all 0.2s;
    }
    .map-btn:hover { background: var(--gold-light); }

    .location-info { display: flex; flex-direction: column; gap: 28px; }
    .info-block { display: flex; gap: 16px; align-items: flex-start; }
    .info-icon {
      min-width: 44px; height: 44px;
      background: var(--gold-pale); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .info-text strong { display: block; color: var(--brown); font-weight: 700; margin-bottom: 4px; }
    .info-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

    /* ---- CONTACT ---- */
    #contact { background: var(--brown); }
    #contact .section-title { color: var(--white); }
    #contact .section-tag { color: var(--gold-light); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 50px; }
    .contact-info { display: flex; flex-direction: column; gap: 32px; }
    .contact-detail { display: flex; gap: 16px; align-items: flex-start; }
    .contact-icon {
      min-width: 48px; height: 48px;
      background: rgba(200,134,26,0.2);
      border: 1.5px solid var(--gold);
      border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    }
    .fb-link {
      color: var(--gold-pale);
      text-decoration: none;
    }
    .contact-detail strong { display: block; color: var(--gold-light); font-weight: 700; margin-bottom: 4px; }
    .contact-detail p { color: #C8B89A; font-size: 0.95rem; }
    .contact-form { background: rgba(255,255,255,0.07); border-radius: 20px; padding: 36px; border: 1px solid rgba(200,134,26,0.3); }
    .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 24px; }
    .contact-form .form-group label { color: #C8B89A; }
    .contact-form input, .contact-form select, .contact-form textarea {
      background: rgba(255,255,255,0.08);
      border-color: rgba(200,134,26,0.3);
      color: var(--white);
    }

    .contact-form label {
      font-weight: 600;
      font-size: 14px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 14px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .contact-form .form-submit {
      padding: 12px;
      background: #2e7d32;
      color: white;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form .form-submit:hover {
      background: #1b5e20;
    }

    .contact-form select {
      background: var(--brown);
      color: var(--text-light);
    }

    /* ---- FOOTER ---- */
    footer {
      background: #1E120A; color: #8C7460;
      padding: 48px 8%;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
    }
    footer .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--gold-light); font-weight: 700;
    }
    footer p { font-size: 0.85rem; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { color: #8C7460; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold-light); }

    .breed-info {
      text-decoration: none;
    }

    /* ---- ANIMATIONS ---- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    .fade-in {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s, transform 0.7s;
    }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ---- RESPONSIVE: TABLET (max 900px) ---- */
    @media (max-width: 900px) {

      /* Nav */
      .nav-links { display: none; }
      .nav-logo { font-size: 1.2rem; }

      /* Sections */
      section { padding: 70px 6%; }

      /* Hero */
      #hero { padding: 100px 6% 120px; }
      .hero-content h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
      .hero-content p { font-size: 1rem; }
      .hero-stats {
        position: static;
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
      }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap img { height: 340px; }
      .about-badge-img { bottom: 10px; right: 10px; width: 100px; height: 100px; }
      .about-badge-img strong { font-size: 1.5rem; }

      /* Breeds */
      .breeds-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .breeds-header { flex-direction: column; align-items: flex-start; }

      /* Services */
      .services-grid { grid-template-columns: 1fr 1fr; }

      /* Gallery */
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

      /* Order */
      .order-grid { grid-template-columns: 1fr; gap: 40px; }
      #orderForm { margin: 20px auto; }

      /* Location */
      .location-grid { grid-template-columns: 1fr; gap: 40px; }
      .map-placeholder { height: 280px; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }

      /* Footer */
      footer { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-links { flex-wrap: wrap; gap: 16px; }
    }

    /* ---- RESPONSIVE: MOBILE (max 600px) ---- */
    @media (max-width: 600px) {

      /* Nav */
      nav { padding: 0 4%; }
      .nav-logo { font-size: 1.1rem; }

      /* Sections */
      section { padding: 60px 5%; }

      /* Hero */
      #hero { padding: 90px 5% 100px; align-items: flex-start; }
      .hero-content { max-width: 100%; }
      .hero-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 16px; }
      .hero-content p { font-size: 0.95rem; margin-bottom: 28px; }
      .hero-badge { font-size: 0.7rem; }
      .hero-buttons { flex-direction: column; gap: 12px; }
      .btn-primary, .btn-outline { text-align: center; padding: 13px 24px; font-size: 0.95rem; }
      .hero-stats { gap: 20px; }
      .stat-num { font-size: 1.8rem; }

      /* About */
      .about-img-wrap img { height: 260px; }
      .about-badge-img { width: 84px; height: 84px; bottom: 8px; right: 8px; }
      .about-badge-img strong { font-size: 1.2rem; }
      .about-badge-img span { font-size: 0.55rem; }

      /* Breeds */
      .breeds-grid { grid-template-columns: 1fr; gap: 20px; }
      .breed-img img { height: 200px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px 18px; }

      /* Gallery */
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
      }
      .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
      .gallery-item { height: 200px; }

      /* Order */
      .order-form { padding: 24px 18px; }
      .order-form h3 { font-size: 1.25rem; }
      #orderForm { padding: 16px; margin: 16px auto; }
      .step-num { min-width: 40px; height: 40px; font-size: 1.1rem; }

      /* Location */
      .map-placeholder { height: 240px; }
      .info-block { flex-direction: column; gap: 8px; }

      /* Contact */
      .contact-form { padding: 24px 18px; }
      .contact-form h3 { font-size: 1.25rem; }
      .contact-detail { flex-direction: column; gap: 8px; }
      .contact-icon { min-width: 40px; height: 40px; font-size: 1.1rem; }

      /* Footer */
      footer { padding: 36px 5%; text-align: center; align-items: center; }
      .footer-links { justify-content: center; }
    }
    /* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(61,43,31,0.98);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li a { display: block; padding: 14px 6%; font-size: 1rem; }
  .nav-cta { margin: 8px 6%; border-radius: 8px; text-align: center; }
}