/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fdf8f8;
  --cream-dark: #f2eaea;
  --bark: #2c2c2c;
  --bark-mid: #4a4a4a;
  --bark-light: #6e6e6e;
  --sage: #9e9e9e;
  --sage-light: #bdbdbd;
  --stone: #c2b0b0;
  --gold: #d4909a;
  --gold-light: #b0b0b0;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --radius: 4px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; margin-bottom: 1rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.label-light { color: var(--sage-light); }
.center { text-align: center; }
.center-text { text-align: center; max-width: 600px; margin: 0 auto 2rem; color: var(--text-light); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.visible { opacity: 1; transform: none; }

.section-dark {
  background: var(--bark);
  color: var(--cream);
}
.section-dark h2 { color: var(--gold-light); }
.section-dark p { color: var(--cream-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bark);
  letter-spacing: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bark); }
.nav-burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--bark); }
.nav-mobile { display: none; list-style: none; background: var(--cream); padding: 1rem 2rem; }
.nav-mobile.open { display: block; }
.nav-mobile li { padding: 0.6rem 0; border-bottom: 1px solid var(--cream-dark); }
.nav-mobile a { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.85) brightness(0.75);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,20,10,0.3) 0%,
    rgba(30,20,10,0.55) 60%,
    rgba(20,12,6,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-title em {
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.hero-btn {
  display: inline-block;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 0.75rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.hero-btn:hover {
  background: var(--gold-light);
  color: var(--bark);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  font-size: 1.2rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-text { padding-right: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-img-wrap {
  position: relative;
}
.about-img {
  height: 550px;
  border-radius: var(--radius);
  object-position: center 15%;
}
.about-img-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bark);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ===== PEDIGREE ===== */
.pedigree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pedigree-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,144,154,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pedigree-card.highlight {
  border-color: var(--gold);
  background: rgba(212,144,154,0.12);
}
.pedigree-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.pedigree-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}
.pedigree-card span {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item img {
  height: 300px;
  border-radius: var(--radius);
  transition: transform 0.4s ease, filter 0.3s;
}
.gallery-item img:hover { transform: scale(1.02); }
.gallery-item.main {
  grid-column: 1 / 2;
  grid-row: 1;
}
.gallery-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--stone);
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== CALENDAR ===== */
.calendar-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,144,154,0.3);
}
.calendar-placeholder {
  background: rgba(255,255,255,0.05);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--cream-dark);
}
.cal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px dashed var(--stone);
  grid-column: 1 / -1;
}
.center-btn { text-align: center; margin-top: 3rem; }
.btn {
  display: inline-block;
  border: 1px solid var(--bark-mid);
  color: var(--bark);
  padding: 0.75rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn:hover { background: var(--bark); color: var(--cream); }

/* ===== CONTACT ===== */
.two-col-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,144,154,0.3);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.1rem; margin-top: 0.1rem; }
.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}
.contact-card strong { color: var(--white); font-size: 1rem; }
.contact-card a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bark);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(212,144,154,0.2);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.4);
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: var(--cream);
  text-align: center;
}
.blog-hero h1 { margin-bottom: 1rem; }
.blog-hero p { color: var(--text-light); max-width: 500px; margin: 0 auto; }

.blog-list {
  padding: 5rem 0;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,44,44,0.12);
}
.blog-card-img {
  height: 220px;
  object-fit: cover;
  background: var(--cream-dark);
}
.blog-card-body { padding: 1.75rem; }
.blog-card-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--bark);
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.blog-card .read-more {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-mid);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding-top: var(--nav-h);
  height: 50vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.article-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}
.article-hero-text h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.article-hero-text .article-date {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.article-body p { margin-bottom: 1.5em; font-size: 1.1rem; }
.article-body h2 { font-size: 1.7rem; margin: 2.5em 0 0.75em; }
.article-body img {
  border-radius: var(--radius);
  margin: 2.5rem 0;
  height: auto;
}
.article-body .back-link {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--cream-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col, .two-col-contact { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { order: -1; }
  .about-img { height: 380px; }
  .about-img-deco { display: none; }
  .pedigree-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.main { grid-column: 1 / -1; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero-title { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 1rem; }
}

/* ===== SLIDER ===== */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 2.5rem;
  user-select: none;
  width: 100%;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.slide {
  min-width: 100%;
  width: 100%;
  height: 550px;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--bark);
}
.slider-btn:hover { background: rgba(255,255,255,1); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.dot.active { background: var(--pink); }

@media (max-width: 640px) {
  .slide { height: 280px; }
}
