/* ---------- Base / Tokens ---------- */
:root {
  --cream: #f7f3ec;
  --dark: #061415;
  --dark: oklch(0.18 0.02 201.3);
  --darker: #040d0e;
  --footer-bg: #04100f;
  --text-dark: #14201f;
  --text-muted: #5c6664;
  --text-light: #e8ede9;
  --text-light-muted: #a9b4b1;
  --orange: #d9782e;
  --orange-dark: #c1651f;
  --border-light: #e2ddd0;
  --border-dark: #1c2f2f;

  --font-body: 'Source Sans 3', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75em;
}
.eyebrow.center { text-align: center; }

.serif-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 0.6em;
}
.section-dark .serif-heading,
.training-intro .serif-heading { color: #fff; }
.serif-heading.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #1a0f06; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: var(--border-light); }
.btn-outline-dark:hover { background: rgba(0,0,0,0.05); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo img { height: 40px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 12px;
  flex: 1;
}
.main-nav a {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,21,0.25) 0%, rgba(6,20,21,0.1) 30%, rgba(6,20,21,0.1) 55%, rgba(6,20,21,0.55) 100%),
    radial-gradient(ellipse 55% 75% at center, rgba(6,20,21,0.65) 0%, rgba(6,20,21,0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  width: 100%;
}
.hero-buttons { justify-content: center; }
.hero-body { margin: 0 auto; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0.1em 0 0.35em;
}
.hero-title .accent { color: var(--orange); }
.hero-body {
  max-width: 520px;
  color: var(--text-light);
  font-size: 1.05rem;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 1.5em;
  flex-wrap: wrap;
}
/* ---------- Health Standards ---------- */
.health-standards { padding: 90px 0; }
.health-standards-inner { text-align: center; }
.health-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.health-card-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.health-card-title .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.health-item {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 12px;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.health-item .check { color: var(--orange); font-weight: 700; margin-right: 6px; }
.badges-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.badge-akc { width: 100px; }
.badge-cgc { width: 84px; }
.badge-pennhip { width: 170px; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: relative;
  border: 2px solid var(--orange);
  border-radius: 4px;
  padding: 14px;
}
.about-photo img { border-radius: 2px; }
.photo-tag {
  position: absolute;
  right: 28px;
  bottom: -6px;
  background: var(--dark);
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  min-width: 120px;
}
.photo-tag-eyebrow {
  display: block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.photo-tag-name {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.88rem;
}
.about-content p { color: var(--text-light-muted); }
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 2em;
}
.about-columns h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.9em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--border-dark);
}
.about-item { margin-bottom: 1.4em; }
.about-item h4 { color: #fff; font-size: 0.98rem; margin-bottom: 0.35em; }
.about-item p { font-size: 0.92rem; color: var(--text-light-muted); }

/* ---------- Breeding ---------- */
.breeding { padding: 90px 0 0; }
.breeding-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}
.puppies-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(217,120,46,0.35);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.puppies-cta-thumb {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid rgba(217,120,46,0.5);
}
.puppies-cta .serif-heading { font-size: 1.3rem; }
.puppies-cta p { color: var(--text-light-muted); margin-bottom: 1.2em; }
.breeding-lead {
  color: var(--text-light-muted);
  font-size: 1.05rem;
}
.breeding-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1600px;
}
.breeding-photo-main {
  min-height: 320px;
}
.breeding-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breeding-right {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
}
.breeding-copy p { color: var(--text-light-muted); }
.breeding-copy-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 1.6em;
  align-items: start;
}
.breeding-photo-side img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.94rem;
}
.check-circle { color: var(--orange); font-weight: 700; }

.trained-puppy-box {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 40px;
  margin: 70px 0 40px;
}
.trained-puppy-box p { color: var(--text-light-muted); margin-bottom: 0.8em; }

.waiting-list {
  text-align: center;
  padding-bottom: 90px;
}
.waiting-list p { color: var(--text-light-muted); margin-bottom: 1.2em; }

/* ---------- Training ---------- */
.training-intro {
  position: relative;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}
.training-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
}
.training-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,20,21,0.85) 10%, rgba(6,20,21,0.35) 75%);
}
.training-intro .section-inner { position: relative; z-index: 2; }
.training-intro .serif-heading { max-width: 620px; }
.training-lead { max-width: 560px; color: var(--text-light-muted); font-size: 1.02rem; }

.training-cards-wrap { padding: 70px 24px 90px; }
.training-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.card-featured {
  background: var(--dark);
  border: none;
  border-top: 4px solid var(--orange);
  color: #fff;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217,120,46,0.14);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-featured .card-icon { background: rgba(217,120,46,0.22); }
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5em;
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6em; }
.card-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.2em; }
.card-featured .card-desc { color: var(--text-light-muted); }
.card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: auto; padding-bottom: 1.4em; }
.card-list li {
  font-size: 0.85rem;
  padding-left: 16px;
  position: relative;
  color: var(--text-dark);
}
.card-featured .card-list li { color: var(--text-light); }
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.card-price {
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 1em;
  border-top: 1px solid var(--border-light);
}
.card-featured .card-price { border-top-color: var(--border-dark); color: var(--orange); }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  margin-top: 2em;
}
.contact-intro { color: var(--text-muted); margin-bottom: 1.8em; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217,120,46,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3em;
}
.info-value { font-weight: 600; margin-bottom: 0; }
.info-value a:hover { color: var(--orange); }
.info-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }
.follow-us { margin-top: 24px; }
.social-buttons { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { margin-bottom: 20px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-field textarea { resize: vertical; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note.success { color: #2f7d4f; }
.form-note.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--text-light-muted); padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.paw-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-logo-text em { color: var(--orange); font-style: normal; font-size: 0.85em; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 18px; }
.footer-heading {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a { font-size: 0.9rem; margin-bottom: 12px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .breeding-intro { grid-template-columns: 1fr; text-align: center; }
  .breeding-details { grid-template-columns: 1fr; }
  .breeding-photo-main { min-height: 260px; }
  .breeding-copy-bottom { grid-template-columns: 1fr; }
  .breeding-photo-side img { min-height: 220px; }
  .training-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .about-columns { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .training-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
  .health-grid { grid-template-columns: 1fr; }
  .badge-akc { width: 76px; }
  .badge-cgc { width: 64px; }
  .badge-pennhip { width: 130px; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 20px 24px;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
