:root {
  --forest: #253326;
  --forest-dark: #17201a;
  --burgundy: #7a2331;
  --burgundy-dark: #5e1a25;
  --cream: #f6f1e6;
  --cream-dark: #ece3d0;
  --brown-text: #362c22;
  --tan: #c9a876;
  --gold: #b8863b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-text);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }

a { color: var(--burgundy); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 10px;
  display: block;
}
.section-eyebrow-light { color: var(--tan); }

.section-lede {
  max-width: 640px;
  font-size: 1.05rem;
  color: #574a3a;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest-dark);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  text-decoration: none;
  color: var(--cream);
  line-height: 1.1;
  font-family: var(--font-display);
}
.wordmark-line1 { display: block; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); }
.wordmark-line2 { display: block; font-size: 1.35rem; font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--tan); }
.main-nav a.nav-cta {
  background: var(--burgundy);
  padding: 9px 18px;
  border-radius: 2px;
  color: #fff;
}
.main-nav a.nav-cta:hover { background: var(--burgundy-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); }

/* Hero */
.hero {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content { max-width: 720px; padding: 100px 24px 90px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--tan);
  margin-bottom: 18px;
}
.hero h1 { font-size: 3.2rem; margin-bottom: 20px; }
.hero-tagline { font-size: 1.2rem; max-width: 560px; margin: 0 auto 32px; color: #f0ece0; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Intro strip */
.intro-strip { background: var(--cream-dark); padding: 56px 0; border-bottom: 1px solid #ddd0b0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.intro-grid h3 { font-size: 1.15rem; color: var(--burgundy); margin-bottom: 10px; }
.intro-grid p { color: #574a3a; margin: 0; }

/* Story */
.story { padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image img { border: 1px solid #ddd0b0; box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.story-image .caption { font-size: 0.85rem; color: #7a6c58; margin-top: 10px; font-style: italic; }
.story-text h2 { font-size: 2.1rem; color: var(--forest); }
.story-text p { color: #453a2c; }

/* Heritage */
.heritage { background: var(--forest-dark); color: var(--cream); padding: 96px 0; }
.heritage-title { font-size: 2.1rem; color: #fff; }
.heritage-intro { color: #cfc6b0; max-width: 560px; margin-bottom: 48px; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-bottom: 56px; }
.timeline-item { border-top: 3px solid var(--gold); padding-top: 20px; }
.timeline-marker {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 14px;
}
.timeline-item h4 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.timeline-item p { color: #cfc6b0; font-size: 0.95rem; margin: 0; }

.heritage-media { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.heritage-media figure { margin: 0; }
.heritage-media img { border: 1px solid rgba(255,255,255,0.15); }
.heritage-media figcaption { font-size: 0.85rem; color: #cfc6b0; margin-top: 10px; font-style: italic; }

/* Hounds */
.hounds { padding: 96px 0; background: var(--cream); }
.hounds h2 { font-size: 2.1rem; color: var(--forest); }
.hound-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.hound-card {
  background: #fff;
  border: 1px solid #e5dac0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(40,30,10,0.06);
}
.hound-photo { aspect-ratio: 4/3; overflow: hidden; }
.hound-photo img { width: 100%; height: 100%; object-fit: cover; }
.hound-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hound-body h3 { font-size: 1.35rem; color: var(--forest); margin-bottom: 6px; }
.hound-meta { font-size: 0.85rem; color: var(--burgundy); font-weight: 600; margin-bottom: 10px; }
.hound-pedigree { font-size: 0.88rem; color: #574a3a; margin-bottom: 6px; }
.hound-breeder { font-style: italic; color: #8a7c64; margin-bottom: 14px; }
.hound-body p:last-of-type { flex: 1; }
.hound-link { font-size: 0.9rem; font-weight: 600; text-decoration: none; margin-top: 10px; display: inline-block; }

.hound-card-cta { background: var(--forest); border-color: var(--forest); justify-content: center; }
.hound-body-cta { justify-content: center; text-align: center; }
.hound-body-cta h3 { color: #fff; }
.hound-body-cta p { color: #d8d2c0; }

/* Gallery */
.gallery { padding: 0 0 96px; background: var(--cream); }
.gallery h2 { font-size: 2.1rem; color: var(--forest); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.gallery-grid img { aspect-ratio: 1/1; object-fit: cover; border: 1px solid #e5dac0; }

/* Contact */
.contact { background: var(--forest-dark); color: var(--cream); padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.contact h2 { font-size: 2.1rem; color: #fff; }
.contact-info p { color: #cfc6b0; }
.contact-details { list-style: none; padding: 0; margin: 24px 0; }
.contact-details li { margin-bottom: 10px; color: #cfc6b0; }
.contact-details a { color: var(--tan); }
.contact-note { font-size: 0.9rem; color: #a89c84; }

.contact-form { background: var(--cream); padding: 36px; border-radius: 3px; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--forest); }
.form-row .optional { font-weight: 400; color: #8a7c64; }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 11px 12px;
  border: 1px solid #c9bb98;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--brown-text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}
.btn-submit { width: 100%; border: none; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--forest); text-align: center; }

/* Footer */
.site-footer { background: var(--forest-dark); color: #cfc6b0; padding: 48px 0 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; }
.wordmark-footer { font-family: var(--font-display); font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.footer-tag { font-size: 0.88rem; max-width: 360px; margin: 0; color: #a89c84; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #cfc6b0; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--tan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 0.82rem; color: #8a7c64; }
.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: 1fr; }
  .heritage-media { grid-template-columns: 1fr; }
  .hound-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
    border-bottom: 3px solid var(--gold);
  }
  .main-nav.open { display: flex; }
  .main-nav a.nav-cta { align-self: flex-start; }
  .hound-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 70px 20px 60px; }
}
