/* ============================================================
   FURRTIFY — Main Stylesheet
   Palette:
     Primary:   #3d7a24 (vivid forest green)
     Gold:      #D4A853 (warm amber gold)
     BG:        #F5F0E8 (warm ivory cream)
     Tint:      #EEF4E5 (light green section)
     Text:      #1C1C1A (warm near-black)
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #F5F0E8;
  color: #1C1C1A;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1C1C1A;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: #3a3a38; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A853;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: #3d7a24;
  color: #fff;
}
.btn-primary:hover { background: #2f6019; }

.btn-outline {
  background: transparent;
  color: #3d7a24;
  border: 1.5px solid #3d7a24;
}
.btn-outline:hover { background: #3d7a24; color: #fff; }

.btn-gold {
  background: #D4A853;
  color: #1C1C1A;
}
.btn-gold:hover { background: #c09640; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F5F0E8;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3d7a24;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a3a38;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #3d7a24; }

.nav-cta { margin-left: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1C1A;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  padding: 6rem 0 5rem;
  background: #F5F0E8;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 520px; }

.hero h1 {
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  color: #3d7a24;
}

.hero p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555550;
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #EEF4E5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #8aaa74;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #fff;
  border: 1px solid rgba(28,28,26,0.08);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 4px 16px rgba(28,28,26,0.08);
}

.hero-badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2px;
}

.hero-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3d7a24;
}

/* ── Trust Pillars ── */
.pillars {
  background: #3d7a24;
  padding: 4rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 1rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: #D4A853;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── Section headings ── */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 { margin-bottom: 0.75rem; }
.section-head p {
  font-size: 1rem;
  color: #555550;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Product Cards ── */
.products-section { background: #F5F0E8; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(28,28,26,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28,28,26,0.1);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #EEF4E5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #8aaa74;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.badge-type-airdried { background: #3d7a24; color: #fff; }
.badge-type-retort    { background: #1a5c8a; color: #fff; }
.badge-type-supplement { background: #7a4d24; color: #fff; }
.badge-pet-dog  { background: #EEF4E5; color: #2f6019; }
.badge-pet-cat  { background: #FFF5E0; color: #8a6000; }
.badge-pet-both { background: #f3ece0; color: #5a4a20; }
.badge-featured { background: #D4A853; color: #1C1C1A; }

.product-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C1C1A;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.8125rem;
  color: #666660;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid rgba(28,28,26,0.06);
}

.product-card-weight {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}

.btn-enquire {
  font-size: 0.8rem;
  font-weight: 500;
  color: #3d7a24;
  border: 1.5px solid #3d7a24;
  padding: 0.375rem 0.875rem;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-enquire:hover { background: #3d7a24; color: #fff; }

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(28,28,26,0.05);
  border-radius: 6px;
  padding: 4px;
}

.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: #555550;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn.active {
  background: #3d7a24;
  color: #fff;
}
.filter-btn:hover:not(.active) { background: rgba(28,28,26,0.06); }

.filter-divider {
  width: 1px;
  height: 28px;
  background: rgba(28,28,26,0.1);
  align-self: center;
}

/* ── Brand Story / About Strip ── */
.brand-strip {
  background: #EEF4E5;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-strip-visual {
  aspect-ratio: 1;
  background: #d8e8cc;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-strip-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-strip-content h2 {
  margin-bottom: 1.25rem;
}

.brand-strip-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444440;
  margin-bottom: 1.5rem;
}

.brand-strip-content p + p { margin-top: 0.75rem; }

/* ── Science / Process Section ── */
.process-section { background: #F5F0E8; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(28,28,26,0.06);
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #D4A853;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: #666660;
  line-height: 1.7;
}

/* ── Featured Products on homepage ── */
.featured-section { background: #F5F0E8; }

/* ── CTA Banner ── */
.cta-banner {
  background: #1C1C1A;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #F5F0E8;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(245,240,232,0.65);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* ── About Page ── */
.about-hero {
  background: #EEF4E5;
  padding: 5rem 0 4rem;
}

.about-hero h1 { margin-bottom: 1.25rem; }
.about-hero .lead {
  font-size: 1.125rem;
  color: #444440;
  max-width: 600px;
  line-height: 1.8;
}

.about-values {
  background: #F5F0E8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(28,28,26,0.06);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: #666660;
  line-height: 1.7;
}

.value-dot {
  width: 10px;
  height: 10px;
  background: #D4A853;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* ── Contact Page ── */
.contact-hero {
  background: #EEF4E5;
  padding: 5rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(28,28,26,0.07);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #444440;
  margin-bottom: 0.375rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(28,28,26,0.15);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: #1C1C1A;
  background: #FDFAF6;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3d7a24;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #EEF4E5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #3d7a24;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: #1C1C1A;
  font-weight: 500;
}

/* ── Footer ── */
.site-footer {
  background: #1C1C1A;
  color: rgba(245,240,232,0.7);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d7a24;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
  max-width: 220px;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #D4A853; }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.35);
}

.footer-bottom a { color: rgba(245,240,232,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(245,240,232,0.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-content { max-width: 100%; }
  .hero-badge { bottom: 1rem; left: 1rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #F5F0E8; padding: 1.5rem 1.25rem 2rem; gap: 1.25rem; border-bottom: 1px solid rgba(28,28,26,0.1); }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
