@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg: #090a0f;
  --panel: #11141c;
  --panel-light: #1a1e29;
  --gold: #d4af37;
  --gold-soft: #e6c875;
  --gold-dark: #aa8c2c;
  --text: #f0f2f5;
  --muted: #a0a8b5;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; display: block; height: auto; }

/* Typography */
h1, h2, h3, h4, .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Layout - Mobile Default */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }

/* Header - Mobile */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(9, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.brand { font-size: 18px; color: var(--gold); letter-spacing: 1px; }
.nav-links { display: none; } /* Hide on mobile by default */
.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--gold) !important;
  font-size: 12px;
}

/* Hero - Mobile */
.hero {
  padding-top: 120px; /* offset header + spacing */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video, .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,10,15,0.7) 0%, rgba(9,10,15,0.95) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero h1 {
  font-size: clamp(32px, 8vw, 48px);
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 i { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Buttons */
.btn-group { display: flex; flex-direction: column; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Standard Section */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 32px; margin-bottom: 16px; color: #fff; }
.section-header p { font-size: 16px; color: var(--muted); }

/* Core Values Grid - Mobile */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.value-card { text-align: center; padding: 32px 16px; background: var(--panel); border-radius: var(--radius); border: 1px solid var(--line); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--gold); }
.value-card p { color: var(--muted); font-size: 15px; }

/* The Process Section - Mobile */
.process-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.process-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.process-img img { width: 100%; height: 300px; object-fit: cover; display: block; }
.process-step { display: flex; gap: 16px; margin-bottom: 32px; align-items: flex-start; }
.step-num { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--line); line-height: 0.8; font-style: italic; }
.step-content h4 { font-size: 18px; margin-bottom: 8px; color: var(--gold-soft); font-family: 'Inter', sans-serif; font-weight: 500;}
.step-content p { color: var(--muted); font-size: 14px; }

/* Education Section - Mobile */
.edu-section { background: var(--bg); }
.edu-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.edu-card { background: var(--panel); padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--line); }
.edu-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--gold); }
.edu-card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

/* Available Dogs / Luxury Profile - Mobile */
.dog-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 60px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.dog-media { position: relative; }
.dog-media img { width: 100%; height: 350px; object-fit: cover; }
.status-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 6px 12px; background: rgba(9,10,15,0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  border: 1px solid var(--gold); border-radius: 4px; z-index: 10;
}
.dog-info { padding: 24px; }
.dog-info h3 { font-size: 36px; margin-bottom: 8px; color: #fff; }
.dog-tagline { font-size: 16px; color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; margin-bottom: 24px; display: block; }
.dog-specs { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.spec-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.03); padding-bottom: 8px; }
.spec-item:last-child { border-bottom: none; }
.spec-item h5 { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 0; font-family: 'Inter', sans-serif;}
.spec-item p { font-size: 14px; color: var(--text); text-align: right; margin-bottom: 0; }
.dog-desc { color: var(--muted); margin-bottom: 32px; font-size: 15px; }

/* About Chad - Mobile */
.about-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; filter: grayscale(40%); }
.about-content h2 { font-size: 32px; margin-bottom: 16px; color: #fff; }
.about-content p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.signature { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-style: italic; margin-top: 16px; }

/* Footer - Mobile */
footer { padding: 60px 0 40px; text-align: center; color: var(--muted); font-size: 13px; background: var(--bg); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); margin-bottom: 24px; letter-spacing: 1px; }
.footer-links { margin-bottom: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-links a { color: var(--text); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }
.footer-links a:hover { color: var(--gold); }
.copyright { border-top: 1px solid var(--line); padding-top: 24px; max-width: 600px; margin: 0 auto; line-height: 1.5; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: all .3s;
}

/* ==========================================================================
   DESKTOP STYLES (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  section { padding: 100px 0; }
  
  .site-header { height: 80px; }
  .nav { height: 80px; }
  .brand { font-size: 20px; }
  .nav-links { display: flex; gap: 24px; align-items: center; }
  .nav-links a { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; color: var(--text); }
  .nav-cta { padding: 10px 24px; font-size: 13px; }
  
  .hero { padding-top: 160px; padding-bottom: 120px; text-align: left; }
  .hero-overlay { background: linear-gradient(to right, rgba(9,10,15,0.95) 0%, rgba(9,10,15,0.7) 50%, transparent 100%); }
  .hero-content { text-align: left; }
  .hero h1 { font-size: clamp(48px, 6vw, 72px); }
  .eyebrow { font-size: 12px; margin-bottom: 24px; }
  .btn-group { flex-direction: row; }
  .btn { width: auto; padding: 16px 32px; }
  
  .section-header { margin: 0 auto 80px; }
  .section-header h2 { font-size: 42px; }
  
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .value-card { padding: 40px 20px; background: transparent; border: none; }
  
  .process-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .process-img img { min-height: 500px; height: 100%; }
  .process-step { margin-bottom: 40px; }
  
  .edu-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .edu-card { padding: 40px; }
  
  .dog-profile {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .dog-profile:nth-child(even) { direction: rtl; }
  .dog-profile:nth-child(even) > * { direction: ltr; }
  .dog-media img { height: 600px; border-radius: var(--radius); }
  .dog-info { padding: 0; }
  .dog-info h3 { font-size: 48px; }
  .dog-specs { grid-template-columns: 1fr 1fr; gap: 24px; }
  .spec-item { display: block; border-bottom: none; padding-bottom: 0; }
  .spec-item h5 { margin-bottom: 8px; text-align: left; }
  .spec-item p { text-align: left; }
  
  .about-grid { grid-template-columns: 400px 1fr; gap: 80px; align-items: center; }
  .about-img img { height: 500px; }
  .about-content h2 { font-size: 42px; }
  
  footer { padding: 80px 0 40px; font-size: 14px; }
  .footer-logo { font-size: 24px; }
  .footer-links { gap: 24px; }
  .whatsapp-float { width: 60px; height: 60px; bottom: 30px; right: 30px; }
}

/* Puppy Gallery Mobile Overrides */
.puppy-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.puppy-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
  .puppy-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .puppy-gallery img {
    height: 180px;
  }
}

/* Parents Grid Mobile Overrides */
.parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

@media (max-width: 600px) {
  .parents-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .parents-grid h4 {
    font-size: 16px !important;
  }
  .parents-grid p {
    font-size: 12px !important;
  }
  .parents-grid img {
    height: 180px !important;
  }
  .parents-grid > div > div {
    padding: 12px !important;
  }
}

/* Global Mobile Grids Overrides (Enforce 2 columns everywhere based on user request) */
@media (max-width: 767px) {
  /* Process Grid (How We Work) */
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    align-items: center !important;
  }
  .process-img {
    height: 100% !important;
  }
  .process-img img {
    height: 100% !important;
    min-height: 250px !important;
    object-fit: cover !important;
  }
  .section-header h2 { font-size: 20px !important; margin-bottom: 8px !important; }
  .section-header p { font-size: 13px !important; margin-bottom: 20px !important; }
  
  .process-step { margin-bottom: 20px !important; }
  .process-step h4 { font-size: 14px !important; margin-bottom: 4px !important; }
  .process-step p { font-size: 11px !important; line-height: 1.3 !important; }
  .step-num { font-size: 22px !important; margin-right: 10px !important; }

  /* Bloodlines / Education Grid */
  .edu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .edu-card { padding: 12px !important; }
  .edu-card h3 { font-size: 15px !important; margin-bottom: 8px !important; }
  .edu-card p { font-size: 11px !important; line-height: 1.4 !important; }

  /* Values Grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .value-card { padding: 12px !important; }
  .value-card h3 { font-size: 14px !important; margin-bottom: 6px !important; }
  .value-card p { font-size: 11px !important; line-height: 1.3 !important; }
  .value-icon { font-size: 24px !important; margin-bottom: 8px !important; }
}
