/* =============================================================
   WOLFHOEVE — MAIN STYLESHEET
   Child of Hello Elementor
   ============================================================= */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--wh-parchment);
  color: var(--wh-charcoal);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}

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

a { color: var(--wh-brown-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--wh-gold); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--wh-brown-deep);
}

.elementor-heading-title { font-family: 'Playfair Display', serif; }

p { line-height: 1.85; }

/* ── Elementor container / section defaults ───────────────── */
.elementor-section,
.e-con {
  position: relative;
}

/* ── Site background ──────────────────────────────────────── */
.site-content,
#content { background: var(--wh-parchment); }

/* ── NAVIGATION ───────────────────────────────────────────── */
.wolfhoeve-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(74, 48, 0, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: box-shadow .3s;
}
.wolfhoeve-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

.wh-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--wh-gold-light);
  text-decoration: none;
  letter-spacing: .05em;
  white-space: nowrap;
}
.wh-nav-logo:hover { color: #fff; }

.wh-nav-links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2.2rem;
}
.wh-nav-links a {
  color: var(--wh-parchment-dk);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}
.wh-nav-links a:hover { color: var(--wh-gold-light); }

.wh-nav-cta {
  background: var(--wh-gold);
  color: var(--wh-brown-deep) !important;
  padding: .45rem 1.2rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.wh-nav-cta:hover { background: var(--wh-gold-light); color: var(--wh-brown-deep) !important; }

.wh-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.wh-nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wh-gold-light);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav */
.wh-mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(74, 48, 0, 0.98);
  z-index: 9998;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(200,168,75,.2);
}
.wh-mobile-nav.open { display: flex; }
.wh-mobile-nav a {
  color: var(--wh-parchment-dk);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wh-mobile-nav a:hover { color: var(--wh-gold-light); }

/* Spacer so content isn't hidden behind fixed nav */
.wh-nav-spacer { height: 64px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.wh-btn,
.elementor-button {
  display: inline-block;
  padding: .85rem 2rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.wh-btn-primary,
.elementor-button-primary {
  background: var(--wh-gold);
  color: var(--wh-brown-deep);
}
.wh-btn-primary:hover { background: var(--wh-gold-light); color: var(--wh-brown-deep); }

.wh-btn-ghost {
  background: transparent;
  color: var(--wh-parchment);
  border: 1px solid rgba(255,255,255,.28);
}
.wh-btn-ghost:hover {
  border-color: var(--wh-gold);
  color: var(--wh-gold-light);
}

.wh-btn-dark {
  background: var(--wh-brown-deep);
  color: var(--wh-gold-light);
}
.wh-btn-dark:hover { background: #3a2600; color: var(--wh-gold-light); }

/* ── HERO SECTION ─────────────────────────────────────────── */
.wh-hero {
  min-height: 100vh;
  background: var(--wh-brown-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wh-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle, var(--wh-gold) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.wh-hero-text {
  padding: 6rem 3rem 6rem 5rem;
  position: relative;
  z-index: 2;
}
.wh-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wh-gold);
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
}
.wh-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  color: var(--wh-parchment);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 1.8rem;
}
.wh-hero-title em {
  font-style: italic;
  color: var(--wh-gold-light);
}
.wh-hero-sub {
  color: var(--wh-parchment-dk2);
  max-width: 440px;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.wh-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.wh-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
  position: relative;
  z-index: 2;
}
.wh-hero-visual svg { max-width: 420px; width: 100%; }

/* ── SECTION SCAFFOLDING ──────────────────────────────────── */
.wh-section { padding: 6rem 0; }
.wh-section-light { background: var(--wh-white-warm); }
.wh-section-parchment { background: var(--wh-parchment); }
.wh-section-dark { background: var(--wh-brown-deep); }
.wh-section-parchment-dk { background: var(--wh-parchment-dk); }

.wh-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.wh-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--wh-brown-deep);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.wh-section-title em { font-style: italic; }
.wh-section-title.on-dark { color: var(--wh-parchment); }

.wh-section-body {
  font-size: 1rem;
  color: var(--wh-ink);
  max-width: 620px;
  line-height: 1.9;
  font-weight: 300;
}
.wh-section-body.on-dark { color: var(--wh-parchment-dk2); }

/* ── DIVIDER ──────────────────────────────────────────────── */
.wh-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.5rem 0 2.5rem;
}
.wh-divider-line { flex: 1; height: 1px; background: var(--wh-parchment-dk2); }
.wh-divider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wh-gold);
}

/* ── ABOUT GRID ───────────────────────────────────────────── */
.wh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.wh-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.wh-stat-card {
  border-left: 3px solid var(--wh-gold);
  padding: 1.1rem 1.2rem 1.1rem 1.4rem;
  background: var(--wh-parchment);
  border-radius: 0 4px 4px 0;
}
.wh-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--wh-brown-deep);
  font-weight: 400;
  line-height: 1;
  margin-bottom: .3rem;
}
.wh-stat-label {
  font-size: .73rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--wh-muted);
}

.wh-philosophy-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.wh-philosophy-marker {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wh-parchment);
  border: 1px solid var(--wh-parchment-dk2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
}
.wh-philosophy-marker svg { width: 17px; height: 17px; fill: var(--wh-brown-mid); }
.wh-philosophy-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wh-brown-deep);
  margin: 0 0 .3rem;
}
.wh-philosophy-item p {
  font-size: .88rem;
  color: var(--wh-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* ── COLOR SECTION ────────────────────────────────────────── */
.wh-colors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}
.wh-color-group { margin-bottom: 3.5rem; }
.wh-color-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--wh-brown-deep);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--wh-gold);
  display: inline-block;
}
.wh-color-group-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wh-muted);
  margin-bottom: 1.2rem;
  display: block;
}

.wh-color-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.4rem;
}
.wh-color-card {
  background: var(--wh-white-warm);
  border: 1px solid var(--wh-parchment-dk2);
  border-radius: 5px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.wh-color-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(74,48,0,.13);
}
.wh-color-swatch {
  height: 110px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: .9rem 1rem;
}
.wh-color-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent 60%);
}
.wh-swatch-tag {
  position: relative;
  z-index: 1;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.wh-color-body { padding: 1.1rem 1.2rem 1.3rem; }
.wh-color-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--wh-brown-deep);
  font-weight: 600;
  margin-bottom: .4rem;
}
.wh-color-desc {
  font-size: .84rem;
  color: var(--wh-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: .8rem;
}
.wh-badge {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .22rem .65rem;
  border-radius: 2px;
}
.wh-badge-recognized  { background: #e4edda; color: #355218; }
.wh-badge-phasing     { background: #fdebd0; color: #7a4a10; }
.wh-badge-development { background: #fdf3dc; color: #7a5500; }
.wh-badge-new         { background: #e8f4f8; color: #1a5c7a; }

/* ── APP CTA SECTION ──────────────────────────────────────── */
.wh-app-section {
  background: var(--wh-brown-deep);
  position: relative;
  overflow: hidden;
}
.wh-app-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(circle, var(--wh-gold) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.wh-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.wh-app-feature {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.wh-app-feature:last-child { margin-bottom: 0; }
.wh-app-icon {
  width: 34px; height: 34px;
  background: var(--wh-gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-app-icon svg { width: 17px; height: 17px; fill: var(--wh-brown-deep); }
.wh-app-feature h4 {
  font-size: .88rem;
  font-weight: 500;
  color: var(--wh-parchment);
  margin: 0 0 .2rem;
  font-family: 'Inter', sans-serif;
}
.wh-app-feature p {
  font-size: .82rem;
  color: var(--wh-parchment-dk2);
  line-height: 1.55;
  margin: 0;
}
.wh-app-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── BREEDING PRINCIPLES ──────────────────────────────────── */
.wh-breeding-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.wh-principle {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--wh-parchment-dk2);
  align-items: start;
}
.wh-principle:last-child { border-bottom: none; }
.wh-principle-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--wh-gold);
  font-style: italic;
  padding-top: .1rem;
}
.wh-principle h4 {
  font-family: 'Playfair Display', serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--wh-brown-deep);
  margin: 0 0 .3rem;
}
.wh-principle p {
  font-size: .86rem;
  color: var(--wh-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}
.wh-brahma-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wh-brahma-art svg { max-width: 380px; width: 100%; }

/* ── CONTACT ──────────────────────────────────────────────── */
.wh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.wh-contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.wh-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.wh-contact-icon {
  width: 36px; height: 36px;
  background: var(--wh-brown-deep);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-contact-icon svg { width: 16px; height: 16px; fill: var(--wh-gold); }
.wh-contact-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wh-muted);
  margin-bottom: .2rem;
}
.wh-contact-value { font-size: .95rem; color: var(--wh-charcoal); }
.wh-contact-note {
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--wh-brown-deep);
  border-radius: 4px;
}
.wh-contact-note p {
  font-size: .87rem;
  color: var(--wh-parchment-dk2);
  line-height: 1.75;
  margin: 0;
}
.wh-contact-note strong { color: var(--wh-gold-light); font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────────────── */
.wh-footer {
  background: var(--wh-charcoal);
  padding: 2.5rem 0;
}
.wh-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.wh-footer-brand {
  font-family: 'Playfair Display', serif;
  color: var(--wh-gold-light);
  font-size: 1rem;
  text-decoration: none;
}
.wh-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.wh-footer-links a {
  font-size: .75rem;
  color: var(--wh-parchment-dk2);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.wh-footer-links a:hover { color: var(--wh-gold-light); }
.wh-footer-copy { font-size: .75rem; color: var(--wh-muted); font-weight: 300; }

/* ── Elementor widget overrides ───────────────────────────── */
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Playfair Display', serif;
}
.elementor-widget-text-editor p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.85;
}
.elementor-button-wrapper .elementor-button {
  font-family: 'Inter', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wh-hero { grid-template-columns: 1fr; }
  .wh-hero-visual { display: none; }
  .wh-hero-text { padding: 5rem 2.5rem; }
  .wh-about-grid,
  .wh-colors-intro,
  .wh-app-grid,
  .wh-breeding-grid,
  .wh-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wh-section { padding: 4rem 0; }
  .wh-brahma-art { display: none; }
}

@media (max-width: 768px) {
  .wolfhoeve-nav { padding: 0 1.5rem; }
  .wh-nav-links, .wh-nav-cta { display: none; }
  .wh-nav-hamburger { display: flex; }
  .wh-container { padding: 0 1.5rem; }
  .wh-hero-text { padding: 4rem 1.5rem; }
  .wh-stat-row { grid-template-columns: 1fr 1fr; }
  .wh-color-cards { grid-template-columns: 1fr; }
  .wh-footer-inner { flex-direction: column; align-items: flex-start; }
}
