*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5EFE0;
  --cream-dark: #E8DFC7;
  --brown: #5C3D1E;
  --brown-light: #8B5E3C;
  --brown-dark: #3A2210;
  --green: #4A6741;
  --green-light: #6B9162;
  --green-pale: #EAF0E6;
  --terracotta: #C0612B;
  --terracotta-light: #E07A48;
  --gold: #C8963E;
  --white: #FDFAF4;
  --text-dark: #2A1A0A;
  --text-mid: #5C3D1E;
  --text-muted: #9B7A5A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background-color: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(253,250,244,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown); letter-spacing: 0.05em; text-decoration: none; }
.nav-logo span { color: var(--terracotta); }
.nav-menu { list-style: none; display: flex; gap: 2rem; }
.nav-menu a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.nav-menu a:hover { color: var(--terracotta); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--brown-dark); }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(58,34,16,0.85) 0%, rgba(90,60,30,0.6) 50%, rgba(74,103,65,0.55) 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px); }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero-content { position: relative; text-align: center; padding: 2rem 5vw; animation: fadeUp 1.2s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 8vw, 6rem); color: var(--cream); line-height: 1.08; margin-bottom: 0.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(245,239,224,0.75); margin-bottom: 2.5rem; }
.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary { background: var(--terracotta); color: var(--cream); padding: 0.85rem 2.2rem; border-radius: 2px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--terracotta-light); transform: translateY(-2px); color: var(--cream); }
.btn-outline { border: 1.5px solid var(--cream); color: var(--cream); padding: 0.85rem 2.2rem; border-radius: 2px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; animation: bounce 2s ease-in-out infinite; }
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,224,0.5); }
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* SECTION COMMONS */
section { padding: 6rem 5vw; }
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; margin-bottom: 0.8rem; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--brown-dark); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--terracotta); }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0 2rem; }

/* WELCOME */
#welcome { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.welcome-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1.02rem; }
.stats-row { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; background: var(--cream); border: 1px solid var(--cream-dark); padding: 1.2rem 1.6rem; border-bottom: 3px solid var(--gold); min-width: 100px; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--terracotta); }
.stat .lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.welcome-img { position: relative; }
.welcome-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; position: relative; z-index: 1; }
.welcome-img::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--gold); z-index: 0; }
.est-badge { position: absolute; bottom: -1rem; right: -1rem; z-index: 2; background: var(--terracotta); color: var(--cream); padding: 1rem 1.4rem; text-align: center; }
.est-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; }
.est-badge span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }

/* PRODUCTS */
#products { background: var(--green-pale); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 1rem; }
.product-card { background: var(--white); border: 1px solid var(--cream-dark); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(58,34,16,0.12); }
.product-img { width: 100%; height: 240px; object-fit: cover; display: block; filter: saturate(0.9); transition: filter 0.4s; }
.product-card:hover .product-img { filter: saturate(1.1); }
.product-coming-badge { position: absolute; top: 16px; right: 16px; background: var(--green); color: #fff; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }
.product-body { padding: 1.6rem 1.5rem; }
.product-tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); border: 1px solid var(--terracotta); padding: 3px 10px; border-radius: 2px; margin-bottom: 0.8rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 0.7rem; }
.product-desc { color: var(--text-mid); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.2rem; }
.product-cta { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s, gap 0.2s; }
.product-cta:hover { color: var(--terracotta); gap: 0.7rem; }

/* BREEDING */
#breeding { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.breeding-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }
.quality-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.pill { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 2px; background: var(--brown-dark); color: var(--cream); font-weight: 700; }
.breeding-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

/* CONNECT */
#connect { background: var(--brown-dark); text-align: center; }
#connect .section-label { color: var(--gold); }
#connect .section-title { color: var(--cream); }
#connect .section-title em { color: var(--gold); }
#connect .divider { margin-left: auto; margin-right: auto; }
.connect-form { display: flex; justify-content: center; max-width: 480px; margin: 0 auto 3rem; }
.connect-form input { flex: 1; padding: 0.9rem 1.2rem; border: 1.5px solid var(--cream-dark); background: rgba(255,255,255,0.06); color: var(--cream); font-family: 'Lato', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; border-radius: 2px 0 0 2px; }
.connect-form input::placeholder { color: rgba(245,239,224,0.4); }
.connect-form input:focus { border-color: var(--gold); }
.connect-form button { background: var(--terracotta); color: var(--cream); border: none; padding: 0.9rem 1.8rem; font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; border-radius: 0 2px 2px 0; }
.connect-form button:hover { background: var(--terracotta-light); }
.connect-channels { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.channel { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-decoration: none; transition: transform 0.2s; }
.channel:hover { transform: translateY(-4px); }
.channel-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(245,239,224,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.channel:hover .channel-icon { background: rgba(255,255,255,0.14); }
.channel span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,239,224,0.55); font-weight: 700; }

/* FOOTER */
.site-footer { background: #1e0f04; padding: 4rem 5vw 1.5rem; border-top: 1px solid rgba(200,150,62,0.2); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,239,224,0.08); }
.footer-brand .nav-logo { font-size: 1.1rem; display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(245,239,224,0.5); font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,239,224,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(245,239,224,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* WP ADMIN BAR */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }

/* RESPONSIVE */
@media (max-width: 960px) {
  #welcome, #breeding { grid-template-columns: 1fr; }
  .welcome-img { order: -1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  section { padding: 4rem 5vw; }
  .products-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .connect-form { flex-direction: column; }
  .connect-form input, .connect-form button { border-radius: 2px; width: 100%; }
}
