/*
Theme Name: Shakti Henna
Theme URI: https://shaktihenna.com
Author: Shakti Henna Exports
Description: Premium B2B WordPress theme for Shakti Henna — natural henna powder and Multani Mitti exporter from Rajasthan, India. Full-page landing with hero, products, quality, export, and contact sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shakti-henna
Tags: one-page, business, custom-colors, custom-logo, full-width-template
*/

/* ============================================
   GOOGLE FONTS & FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS / CSS VARIABLES
   ============================================ */
:root {
  /* Forest Green Palette */
  --forest-900: #0f2218;
  --forest-800: #163020;
  --forest-700: #1e4229;
  --forest-600: #265534;
  --forest-200: #c4dfc9;
  --forest-100: #e4f0e7;

  /* Cream / Warm Neutrals */
  --cream-50:  #fdf9f3;
  --cream-100: #f7f0e3;
  --cream-200: #ede2cc;
  --cream-300: #d6c9ad;

  /* Gold / Amber Accent */
  --gold-600: #b07d2a;
  --gold-500: #d4a030;
  --gold-400: #e8b84b;

  /* Semantic */
  --background:     var(--cream-50);
  --foreground:     #1a2e1e;
  --card:           #ffffff;
  --border:         #dde8de;
  --muted:          #f0ebe0;
  --muted-fg:       #7a8c7c;
  --destructive:    #c0392b;
  --radius:         0.5rem;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-card:       0 2px 8px rgba(15,34,24,.07), 0 1px 2px rgba(15,34,24,.04);
  --shadow-card-hover: 0 8px 30px rgba(15,34,24,.12), 0 2px 8px rgba(15,34,24,.06);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container-max {
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 1rem;
}

@media (min-width: 768px) {
  .section-padding { padding: 100px 2rem; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 100px 4rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold-500);
  color: var(--forest-900);
}
.btn-gold:hover { background: var(--gold-600); color: var(--forest-900); }

.btn-outline {
  background: transparent;
  border-color: rgba(253,249,243,.4);
  color: var(--cream-50);
}
.btn-outline:hover {
  background: rgba(253,249,243,.1);
  border-color: rgba(253,249,243,.7);
  color: var(--cream-50);
}

.btn-forest {
  background: var(--forest-800);
  color: var(--cream-50);
}
.btn-forest:hover { background: var(--forest-700); color: var(--cream-50); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   STICKY NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,34,24,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(38,85,52,.6);
  transition: background .3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nav-inner { padding: 0 2rem; }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--forest-900); stroke-width: 2;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-50);
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; }
}

.nav-links a {
  color: rgba(253,249,243,.75);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-400); }

/* Nav CTA */
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: block; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none; border: none; padding: .5rem;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--cream-50);
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .nav-hamburger { display: none; } }

/* Mobile Menu */
.nav-mobile {
  display: none;
  background: var(--forest-900);
  border-top: 1px solid rgba(38,85,52,.5);
  padding: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.nav-mobile.open { display: block; max-height: 400px; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.nav-mobile a {
  color: var(--cream-100);
  font-weight: 500;
  display: block; padding: .25rem 0;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold-400); }
.nav-mobile .btn { margin-top: .5rem; }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-900);
  background-image: url('images/henna-powder-hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,34,24,.9) 0%, rgba(15,34,24,.75) 60%, rgba(22,48,32,.6) 100%);
}

.hero-dots {
  position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(circle at 2px 2px, #fdf9f3 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  padding-top: 7rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(212,160,48,.15);
  border: 1px solid rgba(212,160,48,.35);
  color: var(--gold-400);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--cream-50);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s .2s forwards;
}

.hero-h1 .accent { display: block; color: var(--gold-400); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(237,226,204,.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s .35s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s .5s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s .65s forwards;
}

@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}
.hero-stat-lbl {
  font-size: .8rem;
  color: rgba(214,201,173,.7);
  margin-top: .2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(253,249,243,.35);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
  animation: bounce 1.8s infinite;
}
.hero-scroll::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--cream-100);
}

.about-grid {
  display: grid;
  gap: 3rem 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  order: 2;
}
@media (min-width: 1024px) { .about-img-wrap { order: 1; } }

.about-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media (min-width: 1024px) { .about-img-wrap img { height: 460px; } }

.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,34,24,.55) 0%, transparent 60%);
}
.about-img-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  color: var(--cream-50);
}
.about-img-caption .caption-sm { font-size: .82rem; opacity: .8; }
.about-img-caption .caption-lg { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }

.about-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--gold-500);
  color: var(--forest-900);
  border-radius: .9rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 90px;
}
.about-badge-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.about-badge-lbl { font-size: .7rem; font-weight: 700; }

.about-content { order: 1; }
@media (min-width: 1024px) { .about-content { order: 2; } }

.section-eyebrow {
  color: var(--gold-600);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--forest-900);
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.section-h2 span { color: var(--forest-700); display: block; }

.about-body {
  color: rgba(26,46,30,.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: .9rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.about-card-icon {
  width: 36px; height: 36px;
  background: var(--forest-100);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-card-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--forest-700); stroke-width: 2; }
.about-card-label { font-weight: 600; color: var(--forest-900); font-size: .9rem; }
.about-card-sub { color: var(--muted-fg); font-size: .78rem; margin-top: .15rem; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
#products {
  background: var(--cream-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: rgba(26,46,30,.6);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 1rem auto 0;
}

.products-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,34,24,.6) 0%, transparent 55%);
}
.product-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--gold-500);
  color: var(--forest-900);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 2rem;
}

.product-body { padding: 1.5rem; }
.product-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-900);
  margin-bottom: .75rem;
}
.product-desc {
  color: rgba(26,46,30,.7);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-meta-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-bottom: .5rem;
}
.product-tags {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem;
}
.tag-grade {
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: .75rem;
  font-weight: 500;
  padding: .2rem .7rem;
  border-radius: 2rem;
}
.tag-pack {
  background: var(--cream-200);
  color: rgba(26,46,30,.8);
  font-size: .75rem;
  padding: .2rem .7rem;
  border-radius: 2rem;
}

/* ============================================
   QUALITY SECTION
   ============================================ */
#quality {
  background: var(--forest-900);
}

#quality .section-eyebrow { color: var(--gold-400); }
#quality .section-h2 { color: var(--cream-50); }
#quality .section-header p { color: rgba(237,226,204,.6); }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
}

.quality-card {
  background: rgba(22,48,32,.6);
  border: 1px solid rgba(38,85,52,.45);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  transition: border-color .3s, background .3s;
}
.quality-card:hover {
  border-color: rgba(212,160,48,.35);
  background: rgba(22,48,32,.9);
}

.quality-card-icon {
  width: 52px; height: 52px;
  background: rgba(212,160,48,.15);
  border: 1px solid rgba(212,160,48,.25);
  border-radius: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.quality-card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-400); stroke-width: 2; }
.quality-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: .3rem;
}
.quality-card-sub { color: rgba(214,201,173,.55); font-size: .85rem; }

/* ============================================
   EXPORT SECTION
   ============================================ */
#export { background: var(--cream-100); }

.export-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .export-stats { grid-template-columns: repeat(4, 1fr); }
}

.export-stat-card {
  text-align: center;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-card);
}

.export-stat-icon {
  width: 48px; height: 48px;
  background: var(--forest-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.export-stat-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-400); stroke-width: 2; }
.export-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest-900);
}
.export-stat-lbl { color: rgba(26,46,30,.6); font-size: .85rem; margin-top: .25rem; font-weight: 500; }

.export-capabilities {
  background: var(--forest-900);
  border-radius: 1.75rem;
  padding: 2.5rem;
}
@media (min-width: 768px) { .export-capabilities { padding: 3rem; } }

.export-capabilities h3 {
  font-size: 1.75rem;
  color: var(--cream-50);
  margin-bottom: 2rem;
}

.export-list {
  display: grid;
  gap: 1rem;
  list-style: none;
}
@media (min-width: 768px) {
  .export-list { grid-template-columns: 1fr 1fr; }
}

.export-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(237,226,204,.85);
  line-height: 1.55;
}
.export-list li svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: .15rem;
  fill: none; stroke: var(--gold-400); stroke-width: 2;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
#why-us { background: var(--cream-50); }

.why-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, border-color .3s;
}
.why-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--forest-200);
}

.why-card-icon {
  width: 48px; height: 48px;
  background: var(--forest-900);
  border-radius: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s;
}
.why-card:hover .why-card-icon { background: var(--gold-500); }
.why-card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-400); stroke-width: 2; transition: stroke .3s; }
.why-card:hover .why-card-icon svg { stroke: var(--forest-900); }

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-900);
  margin-bottom: .75rem;
}
.why-card p { color: rgba(26,46,30,.65); font-size: .92rem; line-height: 1.65; }

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact { background: var(--forest-900); }

.contact-grid {
  display: grid;
  gap: 3rem 5rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info { }
#contact .section-eyebrow { color: var(--gold-400); }
#contact .section-h2 { color: var(--cream-50); }
.contact-intro { color: rgba(237,226,204,.7); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(212,160,48,.15);
  border: 1px solid rgba(212,160,48,.25);
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--gold-400); stroke-width: 2; }
.contact-detail-lbl { color: rgba(214,201,173,.55); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail-val { color: var(--cream-100); font-weight: 500; margin-top: .2rem; }

/* Form */
.contact-form-wrap {
  background: var(--cream-50);
  border-radius: 1.75rem;
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row.two-cols { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: .45rem;
}
.form-label .req { color: var(--destructive); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--foreground);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(38,85,52,.12);
}
.form-textarea { resize: vertical; min-height: 110px; }

/* Checkboxes */
.checkbox-group-label {
  font-size: .88rem; font-weight: 600; color: var(--forest-900); margin-bottom: .7rem;
}
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.checkbox-label {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(26,46,30,.8); font-size: .92rem; cursor: pointer;
}
input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--forest-800);
  cursor: pointer;
  border-radius: 3px;
}

/* Form states */
.form-error {
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.3);
  color: var(--destructive);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .88rem;
  margin-bottom: 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--forest-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--forest-700); stroke-width: 2; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest-900); margin-bottom: .5rem; }
.form-success p { color: rgba(26,46,30,.6); line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
#colophon {
  background: var(--forest-900);
  border-top: 1px solid rgba(38,85,52,.55);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}
@media (min-width: 768px) { .footer-inner { padding: 3.5rem 2rem; } }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 34px; height: 34px; background: var(--gold-500); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--forest-900); stroke-width: 2; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--cream-50); }
.footer-brand p { color: rgba(214,201,173,.55); font-size: .9rem; line-height: 1.65; }

.footer-col-title {
  color: var(--cream-100); font-weight: 600;
  text-transform: uppercase; font-size: .72rem;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(214,201,173,.55); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-400); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; color: rgba(214,201,173,.55); font-size: .9rem; }
.footer-contact-list li svg { width: 16px; height: 16px; fill: none; stroke: var(--gold-400); stroke-width: 2; flex-shrink: 0; margin-top: .1rem; }

.footer-sep { border: none; border-top: 1px solid rgba(38,85,52,.5); margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex; flex-direction: column; gap: .75rem;
  align-items: center; text-align: center;
  color: rgba(214,201,173,.45); font-size: .85rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .5s; }

/* ============================================
   WORDPRESS DEFAULT OVERRIDES
   ============================================ */
.wp-block-image { max-width: 100%; }
.aligncenter { margin: 0 auto; }

/* Hide WP admin bar effect on fixed nav */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}
