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

:root {
  --green-deep: #2D5A3D;
  --green-dark: #1E3F2B;
  --green-mid: #3A7050;
  --green-light: #4A8A62;
  --green-pale: #D4E4D9;
  --cream: #FAF8F0;
  --cream-dark: #F0EDE0;
  --gold: #C4A85A;
  --gold-light: #D4BE7A;
  --brown: #5C4A32;
  --text-dark: #2A2A2A;
  --text-body: #3D3D3D;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(30, 63, 43, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 63, 43, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 63, 43, 0.16);
  --radius: 4px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green-deep);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== UTILITY ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section-pad { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header .subtitle {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--green-mid);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}
.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.section-header .divider .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-header .divider svg {
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 168, 90, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
}
.btn-green {
  background: var(--green-deep);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== OLIVE BRANCH DECORATIVE ===== */
.olive-corner {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  border-top: 3px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(45, 90, 61, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav.scrolled .nav-inner {
  padding: 12px 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo-text span {
  color: var(--gold);
}
.nav-logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.3);
  margin: 0 4px;
}
.nav-logo-tagline {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 100px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  margin-left: 12px;
}
.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 63, 43, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  padding: 12px 24px;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-contact {
  margin-top: 32px;
  text-align: center;
}
.mobile-menu .mobile-contact a {
  font-family: 'Lora', serif;
  font-size: 1rem;
  display: block;
  padding: 6px 24px;
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 63, 43, 0.55) 0%,
    rgba(30, 63, 43, 0.35) 40%,
    rgba(30, 63, 43, 0.5) 70%,
    rgba(30, 63, 43, 0.75) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(196, 168, 90, 0.2);
  border: 1px solid rgba(196, 168, 90, 0.5);
  border-radius: 100px;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
}
.hero h1 span { color: var(--gold); }
.hero-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Lora', serif;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slide-indicators button {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.slide-indicators button.active {
  background: var(--gold);
  width: 48px;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 1;
}
.about-content .eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.about-content p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: var(--text-body);
}
.about-badges {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
}
.about-badge svg {
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green-deep);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--green-light), var(--gold));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ===== PRODUCTS ===== */
.products { background: var(--white); position: relative; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(45, 90, 61, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 90, 61, 0.15);
}
.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}
.product-card-image .product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.product-card-body {
  padding: 28px 24px;
}
.product-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--green-deep);
}
.product-card-body p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-body .product-link {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.product-card:hover .product-link { gap: 12px; }

/* ===== SERVICES ===== */
.services { background: var(--cream); position: relative; }
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.services-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.services-intro .eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.services-intro p {
  font-size: 1.02rem;
  margin-bottom: 24px;
}
.services-intro .btn { margin-top: 8px; }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 90, 61, 0.06);
  transition: all var(--transition);
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 90, 61, 0.12);
}
.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--green-deep);
}
.service-text p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header .subtitle { color: rgba(255,255,255,0.7); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(196, 168, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 1.02rem;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail-text p,
.contact-detail-text a {
  font-size: 1.02rem;
  color: var(--text-dark);
}
.contact-detail-text a:hover { color: var(--green-deep); }

.contact-form {
  background: var(--cream);
  padding: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 90, 61, 0.06);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--green-deep);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(45, 90, 61, 0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-style: italic;
}
.contact-form .btn { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 72px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--green-light), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  white-space: nowrap;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand .footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { flex-shrink: 0; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 16px 20px; }
  .nav.scrolled .nav-inner { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-divider, .nav-logo-tagline { display: none; }

  .hero { min-height: 600px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.7rem; }
  .slide-indicators { bottom: 80px; }

  .section-pad { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image-main img { height: 280px; }
  .about-image-accent { display: none; }
  .olive-corner { display: none; }

  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-card-image { height: 180px; }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-item { padding: 20px; }

  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 28px 16px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar { padding: 40px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 28px; }
  .about-badges { flex-direction: column; }
  .stat-item .stat-number { font-size: 1.8rem; }
  .stats-grid { gap: 16px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-card-body { padding: 20px 16px; }
  .product-card-body h3 { font-size: 1.1rem; }
  .product-card-body p { font-size: 0.88rem; }
}

/* ===== RESOURCES / GUIDES ===== */
.resources { background: var(--cream); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(45, 90, 61, 0.08);
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-card-img {
  height: 200px;
  overflow: hidden;
}
.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-card-img img { transform: scale(1.03); }
.guide-card-body {
  padding: 28px 24px;
}
.guide-card-body .guide-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  font-family: 'Lora', serif;
}
.guide-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.guide-card-body .guide-excerpt {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}
.guide-card-body .guide-link {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Lora', serif;
}
.guide-card-body .guide-link:hover { color: var(--gold); }
.guide-card-body .guide-link span { transition: transform 0.2s ease; }
.guide-card-body .guide-link:hover span { transform: translateX(4px); }

/* Guide expanded content */
.guide-full {
  display: none;
  padding: 0 24px 28px;
}
.guide-full.active { display: block; }
.guide-full article {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-body);
}
.guide-full article h4 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin: 24px 0 10px;
}
.guide-full article h4:first-child { margin-top: 0; }
.guide-full article p { margin-bottom: 12px; }
.guide-full article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.guide-full article ul li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.guide-full .guide-cta {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-deep);
}
.guide-full .guide-cta p {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--green-deep);
}
.guide-full .guide-cta a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* ===== STANDALONE GUIDE PAGES ===== */
.guide-page-hero {
  background: var(--green-deep);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.guide-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.guide-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 63, 43, 0.6) 0%,
    rgba(30, 63, 43, 0.75) 100%
  );
  z-index: 1;
}
.guide-page-hero .container {
  position: relative;
  z-index: 2;
}
.guide-page-hero .guide-tag {
  display: inline-block;
  background: rgba(196, 168, 90, 0.2);
  border: 1px solid rgba(196, 168, 90, 0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: 'Lora', serif;
}
.guide-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}
.guide-page-hero .guide-hero-excerpt {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  max-width: 700px;
  line-height: 1.7;
}

.guide-page-content {
  padding: 80px 0;
}
.guide-page-content .container {
  max-width: 800px;
}
.guide-page-content article {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-body);
}
.guide-page-content article h2 {
  font-size: 1.6rem;
  color: var(--green-deep);
  margin: 48px 0 16px;
}
.guide-page-content article h2:first-child {
  margin-top: 0;
}
.guide-page-content article p {
  margin-bottom: 16px;
}
.guide-page-content article ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}
.guide-page-content article ul li {
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.guide-page-content .guide-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-deep);
}
.guide-page-content .guide-cta p {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--green-deep);
}
.guide-page-content .guide-cta a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
}

.guide-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 32px;
  transition: color var(--transition);
}
.guide-back-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .guide-page-hero { padding: 120px 0 60px; }
  .guide-page-content { padding: 48px 0; }
  .guide-page-content .guide-cta { padding: 20px; }
}
