/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0d0d0d; background: #ffffff; line-height: 1.6; }

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --sage: #4a5e3a;
  --sage-light: #6b7f5b;
  --sage-pale: #eef1eb;
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --grey: #6b6b6b;
  --grey-light: #e8e8e8;
  --off-white: #f7f7f7;
  --white: #ffffff;
  --gold: #4a5e3a;       /* repurposed — sage fills gold roles */
  --gold-light: #ffffff; /* white fills gold-light roles */
  --earth: #0d0d0d;      /* black fills earth roles */
  --mist: #888888;
  --text: #0d0d0d;
  --text-light: #555555;
  --cream: #f7f7f7;
  --cream-dark: #efefef;
  --radius: 2px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
em { font-style: italic; color: var(--sage); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.center-cta { text-align: center; margin-top: 48px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; color: var(--text-light); font-size: 1.05rem; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-primary:hover { background: var(--black); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--sage);
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--black);
  padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.05em;
}
.brand-icon { color: var(--sage-light); font-size: 1rem; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1.5px; background: var(--white);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(74,94,58,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 800px; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: block; margin-bottom: 20px;
}
.hero-headline { color: var(--white); margin-bottom: 24px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; gap: 10px;
}
.scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,0.35);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ── STATS RIBBON ── */
.stats-ribbon {
  display: flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--white);
  padding: 40px 24px; flex-wrap: wrap; gap: 0;
}
.stat { text-align: center; padding: 16px 40px; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--sage-light); line-height: 1;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.55; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ── BREEDS ── */
.breeds-section { background: var(--white); }
.breeds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.breed-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.breed-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.breed-img-wrap { position: relative; height: 240px; overflow: hidden; }
.breed-img-wrap img { height: 100%; transition: transform 0.5s ease; }
.breed-card:hover .breed-img-wrap img { transform: scale(1.04); }
.breed-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--sage); color: var(--white);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.breed-badge--wool { background: var(--black); }
.breed-badge--local { background: var(--sage-light); }
.breed-body { padding: 28px; }
.breed-body h3 { margin-bottom: 4px; }
.breed-origin { font-size: 0.75rem; color: var(--mist); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.breed-body p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 16px; }
.breed-traits { display: flex; flex-direction: column; gap: 6px; }
.breed-traits li {
  font-size: 0.83rem; color: var(--sage);
  padding-left: 16px; position: relative;
}
.breed-traits li::before { content: '—'; position: absolute; left: 0; color: var(--black); }

/* ── QUOTE BANNER ── */
.quote-banner {
  position: relative; padding: 120px 0;
  overflow: hidden;
}
.quote-bg { position: absolute; inset: 0; }
.quote-bg-img { width: 100%; height: 100%; object-fit: cover; }
.quote-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82);
}
.quote-content { position: relative; z-index: 2; }
blockquote { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; line-height: 0.5;
  color: var(--sage-light); opacity: 0.5;
  display: block; margin-bottom: 16px;
}
blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic; font-weight: 300;
  color: var(--white); line-height: 1.5;
  margin-bottom: 32px;
}
blockquote cite {
  font-size: 0.8rem; color: var(--sage-light);
  letter-spacing: 0.15em; text-transform: uppercase;
  font-style: normal;
}

/* ── SERVICES PREVIEW ── */
.services-preview { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  display: block; background: var(--white);
  border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.service-icon-wrap { height: 200px; overflow: hidden; }
.service-icon-wrap img { height: 100%; transition: transform 0.5s ease; }
.service-card:hover .service-icon-wrap img { transform: scale(1.04); }
.service-card > h3 { padding: 20px 24px 0; }
.service-card > p { padding: 8px 24px; color: var(--text-light); font-size: 0.9rem; }
.service-link {
  display: block; padding: 12px 24px 24px;
  color: var(--sage); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; transition: var(--transition);
}
.service-card:hover .service-link { color: var(--black); }

/* ── CERTIFICATIONS ── */
.cert-section { background: var(--white); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cert-card {
  text-align: center; padding: 40px 24px;
  border: 1px solid var(--grey-light);
  background: var(--white); border-radius: 4px;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.cert-seal {
  width: 72px; height: 72px;
  background: var(--sage); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto 20px;
}
.cert-card h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--black); }
.cert-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white); padding: 36px 28px;
  border-radius: 4px; box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.testi-card--featured { background: var(--sage); color: var(--white); border-color: var(--sage); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.65); }
.testi-stars { color: var(--sage); font-size: 0.9rem; margin-bottom: 16px; }
.testi-card--featured .testi-stars { color: rgba(255,255,255,0.8); }
.testi-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; }
.testi-card--featured p { color: rgba(255,255,255,0.88); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; }
.testi-author span { font-size: 0.75rem; color: var(--mist); }

/* ── BLOG PREVIEW ── */
.blog-preview { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--grey-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.blog-img-wrap { position: relative; height: 260px; overflow: hidden; }
.blog-img-wrap img { height: 100%; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--sage); color: var(--white);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.72rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.blog-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.blog-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-read { font-size: 0.8rem; color: var(--sage); font-weight: 600; }

.blog-side { display: flex; flex-direction: column; gap: 28px; }
.blog-card--small { overflow: hidden; }
.blog-card--small a { display: grid; grid-template-columns: 140px 1fr; grid-template-rows: 1fr; color: inherit; min-height: 140px; }
.blog-card--small a > img { width: 100%; height: 100%; object-fit: cover;  }
.blog-card--small .blog-body { padding: 16px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.blog-card--small .blog-body h3 { font-size: 1rem; line-height: 1.3; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--black); padding: 80px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.newsletter-text h2 { color: var(--white); }
.newsletter-text p { color: rgba(255,255,255,0.6); margin-top: 12px; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row input {
  flex: 1; min-width: 160px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); font-family: inherit; font-size: 0.9rem;
  border-radius: var(--radius); transition: var(--transition);
}
.form-row input::placeholder { color: rgba(255,255,255,0.4); }
.form-row input:focus { outline: none; border-color: var(--sage-light); background: rgba(255,255,255,0.12); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 12px; }

/* ── FAQs ── */
.faq-section { background: var(--white); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--black);
  transition: var(--transition); gap: 16px;
}
.faq-q:hover { color: var(--sage); }
.faq-icon { font-size: 1.4rem; color: var(--sage); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--sage-light); margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5); transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--sage-light); color: var(--sage-light); }
.footer-links h5, .footer-contact h5 {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); padding: 5px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 50vh; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 0 24px; margin-top: 80px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }

/* ── ABOUT PAGE ── */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { height: 520px; border-radius: 2px; }
.about-img-accent {
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 280px; border-radius: 2px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-text .section-eyebrow { display: block; margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; }
.about-values { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-item { border-left: 3px solid var(--sage); padding-left: 16px; }
.value-item h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--sage); margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--text-light); }

.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-img { height: 320px; border-radius: 4px; margin-bottom: 20px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.75rem; color: var(--sage); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.team-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── SERVICES PAGE ── */
.services-full { background: var(--white); }
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }
.service-detail-img { height: 400px; border-radius: 4px; overflow: hidden; }
.service-detail-img img { height: 100%; }
.service-detail-text .section-eyebrow { display: block; margin-bottom: 12px; }
.service-detail-text h2 { margin-bottom: 20px; }
.service-detail-text p { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; }
.service-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text-light);
}
.feature-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

.pricing-section { background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white); padding: 40px 32px;
  border-radius: 4px; box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.price-card--featured { background: var(--sage); color: var(--white); border-color: var(--sage); }
.price-card--featured h3, .price-card--featured .price-amount { color: var(--white); }
.price-card--featured .price-features li { color: rgba(255,255,255,0.8); }
.price-card--featured .price-features li::before { color: rgba(255,255,255,0.9); }
.price-badge {
  position: absolute; top: 16px; right: -24px;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 32px; transform: rotate(30deg);
}
.price-card h3 { margin-bottom: 8px; }
.price-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.price-card--featured .price-desc { color: rgba(255,255,255,0.7); }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--sage); margin-bottom: 4px; }
.price-unit { font-size: 0.75rem; color: var(--mist); margin-bottom: 28px; }
.price-card--featured .price-unit { color: rgba(255,255,255,0.6); }
.price-features { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 0.85rem; color: var(--text-light); padding-left: 18px; position: relative; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 600; }

/* ── GALLERY PAGE ── */
.gallery-grid {
  columns: 3; column-gap: 16px; padding: 0 24px;
  max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  overflow: hidden; border-radius: 3px;
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.gallery-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.94); align-items: center; justify-content: center;
}
.gallery-modal.open { display: flex; }
.gallery-modal img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.modal-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: none; border: none; font-family: inherit; line-height: 1;
}

/* ── BLOG PAGE ── */
.blog-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.blog-main-posts { display: flex; flex-direction: column; gap: 40px; }
.blog-post-card {
  background: var(--white); border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.blog-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.blog-post-link { display: grid; grid-template-columns: 420px 1fr; color: inherit; }
.blog-post-img { height: 100%; min-height: 320px; overflow: hidden; }
.blog-post-img img { height: 100%; }
.blog-post-body { padding: 32px; display: flex; flex-direction: column; text-align: right; align-items: flex-end; }
.blog-post-body .blog-tag { position: static; background: var(--sage-pale); color: var(--sage); display: inline-block; margin-bottom: 12px; }
.blog-post-body h3 { margin-bottom: 12px; }
.blog-post-body p { color: var(--text-light); font-size: 0.9rem; flex: 1; }
.blog-post-body .blog-read { margin-top: 20px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-widget { background: var(--white); padding: 28px; border-radius: 4px; box-shadow: var(--shadow); border: 1px solid var(--grey-light); }
.sidebar-widget h4 { font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; color: var(--black); border-bottom: 2px solid var(--sage); padding-bottom: 10px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cats a { font-size: 0.85rem; color: var(--text-light); padding: 6px 0; border-bottom: 1px solid var(--grey-light); transition: var(--transition); display: flex; justify-content: space-between; }
.sidebar-cats a:hover { color: var(--sage); }
.sidebar-cats span { color: var(--mist); }
.recent-post { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.recent-post img { width: 64px; height: 64px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.recent-post h5 { font-size: 0.83rem; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--text); line-height: 1.4; }
.recent-post p { font-size: 0.72rem; color: var(--mist); margin-top: 4px; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 5px 12px; border: 1px solid var(--grey-light);
  font-size: 0.72rem; color: var(--text-light); border-radius: 100px;
  transition: var(--transition);
}
.tag-pill:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.contact-info .section-eyebrow { display: block; margin-bottom: 16px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--text-light); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; background: var(--sage);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 4px; }
.contact-item-text p { font-size: 0.88rem; color: var(--text-light); }
.contact-form-wrap { background: var(--white); padding: 48px; border-radius: 4px; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-light); }
.contact-form-wrap h3 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  background: var(--off-white); color: var(--text);
  font-family: inherit; font-size: 0.9rem;
  border-radius: var(--radius); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 3000;
  background: var(--sage); color: var(--white);
  padding: 16px 24px; border-radius: 4px;
  font-size: 0.88rem; box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .breeds-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-side { display: grid; grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { columns: 2; }
  .about-img-accent { display: none; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.reverse .service-detail-text { order: 0; }
  .service-detail-img { height: 300px; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    inset: 0; background: var(--black);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }

  .section { padding: 64px 0; }
  .stat-divider { display: none; }
  .stat { padding: 12px 24px; }

  .breeds-grid, .services-grid, .cert-grid,
  .testimonials-grid, .team-grid, .pricing-grid { grid-template-columns: 1fr; }

  .stats-ribbon { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .blog-post-link { grid-template-columns: 1fr; }
  .blog-post-img { min-height: 200px; }
  .blog-side { grid-template-columns: 1fr; }
  .blog-card--small a { grid-template-columns: 1fr; min-height: 0; }
  .blog-card--small a > img { height: 180px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links h5, .footer-contact h5 { display: none; }
  .footer-links { flex-direction: row; flex-wrap: wrap; }
  .footer-links a { padding: 3px 8px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .form-row { flex-direction: column; }
  .newsletter-inner { text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .stat-num { font-size: 2rem; }
}

/* ── BLOG ARTICLE PAGE ── */
.blog-article h3 { margin: 32px 0 14px; color: var(--black); }
.blog-article p { color: var(--text-light); font-size: 0.96rem; line-height: 1.85; margin-bottom: 16px; }