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

:root {
  /* Brand Colors from Spec Sheet */
  --color-sand: #E8E2D8;
  --color-periwinkle: #ABC6F7;
  --color-brown: #693B2A;
  --color-navy: #26303B;
  
  /* Fallbacks for JS Success Dialogs */
  --color-accent: var(--color-periwinkle);
  --color-accent-hover: #96B5E8;

  /* Global Layout Tokens */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5.5rem;

  /* Shadows (Adapted to brand tones) */
  --shadow-sm: 0 2px 4px rgba(38, 48, 59, 0.04);
  --shadow-md: 0 8px 24px rgba(38, 48, 59, 0.05);
  --shadow-lg: 0 16px 36px rgba(38, 48, 59, 0.08);
  --shadow-xl: 0 24px 48px rgba(38, 48, 59, 0.12);
  
  --glass-blur: 24px;
}

/* Color Combination Themes */

/* Combination 1: Off-white background, brown text, periwinkle accent */
.theme-sand-brown-periwinkle {
  --theme-bg: var(--color-sand);
  --theme-text: var(--color-brown);
  --theme-text-muted: #837066;
  --theme-accent: var(--color-periwinkle);
  --theme-accent-hover: #96B5E8;
  --theme-accent-text: var(--color-brown);
  --theme-border: rgba(105, 59, 42, 0.15);
  --theme-glass-bg: rgba(240, 236, 230, 0.7);
  --theme-glass-border: rgba(105, 59, 42, 0.1);
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Combination 2: Periwinkle background, brown text, off-white accent */
.theme-periwinkle-brown-sand {
  --theme-bg: var(--color-periwinkle);
  --theme-text: var(--color-brown);
  --theme-text-muted: #5C463C;
  --theme-accent: var(--color-sand);
  --theme-accent-hover: #F2EDE6;
  --theme-accent-text: var(--color-brown);
  --theme-border: rgba(105, 59, 42, 0.15);
  --theme-glass-bg: rgba(188, 209, 247, 0.7);
  --theme-glass-border: rgba(105, 59, 42, 0.1);
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Combination 3: Brown background, off-white text, periwinkle accent */
.theme-brown-sand-periwinkle {
  --theme-bg: var(--color-brown);
  --theme-text: var(--color-sand);
  --theme-text-muted: #CDBEB0;
  --theme-accent: var(--color-periwinkle);
  --theme-accent-hover: #C3D7FA;
  --theme-accent-text: var(--color-brown);
  --theme-border: rgba(232, 226, 216, 0.15);
  --theme-glass-bg: rgba(85, 48, 34, 0.7);
  --theme-glass-border: rgba(232, 226, 216, 0.1);
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Combination 4: Navy background, periwinkle text, off-white accent */
.theme-navy-periwinkle-sand {
  --theme-bg: var(--color-navy);
  --theme-text: var(--color-periwinkle);
  --theme-text-muted: #8CA3C7;
  --theme-accent: var(--color-sand);
  --theme-accent-hover: #F2EDE6;
  --theme-accent-text: var(--color-brown);
  --theme-border: rgba(171, 198, 247, 0.15);
  --theme-glass-bg: rgba(30, 38, 47, 0.75);
  --theme-glass-border: rgba(171, 198, 247, 0.1);
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--color-sand);
  color: var(--color-brown);
  font-family: 'Merriweather', serif;
  font-weight: 300;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-sand);
}
::-webkit-scrollbar-thumb {
  background: var(--color-brown);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

/* Typography Hierarchy */

/* Title: Montserrat Bold */
h1, .font-title, .hero-title, .section-title-large, .form-title, .modal-visual-title h4, .footer-logo span, .team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Subtitle: Merriweather Semi Bold */
h2, h3, h4, .font-subtitle, .founder-title, .timeline-step-title, .mission-text h3 {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Body 1: Merriweather Light */
p, li, .font-body, .founder-bio, .timeline-step-desc, .mission-text p, .footer-description, .cta-info .section-description-large, .team-bio {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  line-height: 1.8;
}

/* Text 1: Montserrat Normal */
.font-text-normal, .footer-bottom, .modal-spec-row, .form-label, .footer-links a, .timeline-num, .footer-newsletter p, .overlay-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Text 2: Montserrat Semi Bold (Small Accent) */
.font-text-accent, .hero-tagline, .section-label, .product-tag, .btn-luxury, .nav-cta, .btn-product-details, .btn-modal-action, .btn-submit-allocation, .nav-links a, .team-role, .visual-caption {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--theme-glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--theme-glass-border);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3vw;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--theme-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 0.9rem 3vw;
  background: rgba(38, 48, 59, 0.95);
  border-bottom: 1px solid var(--color-periwinkle);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--theme-text);
  text-decoration: none;
  font-size: 1.3rem;
}

.logo-poppy-icon {
  width: 22px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  animation: pulse-slow 3s infinite ease-in-out;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  color: var(--theme-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-periwinkle);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--theme-text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta-link {
  background: var(--theme-accent);
  color: var(--theme-accent-text) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta-link:hover {
  background-color: var(--theme-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-cta-link::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--theme-text);
  transition: 0.3s ease;
}

/* Sections Base Config */
section {
  padding: var(--space-3xl) 10vw;
  position: relative;
}

.section-label {
  display: inline-block;
  color: var(--theme-text-muted);
  margin-bottom: 0.8rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--theme-text-muted);
  vertical-align: middle;
  margin-left: 10px;
}

.section-title-large {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--theme-text);
  margin-bottom: 1.5rem;
}

.section-description-large {
  font-size: 1.15rem;
  color: var(--theme-text-muted);
  margin-bottom: 2rem;
}

/* Hero Section (Veen Waters style full-bleed) */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15vh;
  padding-bottom: 10vh;
  overflow: hidden;
}

.hero-background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(
      to right,
      rgba(38, 48, 59, 0.7) 15%,
      rgba(38, 48, 59, 0.2) 60%,
      rgba(38, 48, 59, 0.5) 100%
    ),
    url('assets/bhutan_himalayan_peaks.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Native CSS Parallax */
  filter: contrast(1.05) brightness(0.95);
}

@media (max-width: 768px) {
  .hero-background-media {
    background-attachment: scroll; /* Disable fixed attachment to prevent iOS scaling issue */
    /* Mobile Fallback: Smooth opacity fade on scroll */
    opacity: calc(1 - var(--scroll-y, 0) / 600);
    will-change: opacity;
  }
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  color: var(--color-periwinkle);
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1;
  color: var(--color-sand);
}

.hero-title span {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--theme-text-muted);
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  margin-top: 0.8rem;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.2rem;
  color: #B5C9E5;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.btn-luxury {
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-luxury-primary {
  background: var(--theme-accent);
  color: var(--theme-accent-text);
  font-weight: 600;
}

.btn-luxury-primary:hover {
  background: var(--theme-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 198, 247, 0.3);
}

.btn-luxury-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-luxury-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-blue-bubble {
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  cursor: pointer;
  background: var(--color-periwinkle);
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-periwinkle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-blue-bubble:hover {
  background: transparent;
  color: var(--color-periwinkle);
  border-color: var(--color-periwinkle);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 198, 247, 0.2);
}

/* 2. Himalayan Kingdom Section (Quiet Luxury Framed Layout) */
.kingdom-section {
  padding: var(--space-3xl) 10vw;
  background-color: var(--color-sand);
  position: relative;
}

.kingdom-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 6vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.kingdom-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.kingdom-illustration-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.kingdom-illustration {
  width: 100%;
  max-width: 440px;
  height: auto;
  color: var(--color-brown);
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kingdom-illustration:hover {
  transform: translateY(-4px);
}

.kingdom-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3. Coffee in Bhutan (Solid Color Background + 3 Boxes Grid) */
.coffee-section {
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(43, 27, 20, 0.35) 0%,
      rgba(43, 27, 20, 0.55) 100%
    ),
    url('assets/bhutan_tigers_nest.jpg');
  background-size: cover;
  background-position: center;
  padding: var(--space-3xl) 10vw;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.coffee-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.coffee-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.coffee-header .section-title-large {
  color: var(--color-sand);
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  font-size: 3.5rem;
  font-weight: 800;
}

.coffee-header .section-description-large {
  color: #F5F1EB;
  font-size: 1.45rem;
  line-height: 1.6;
  text-wrap: pretty;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

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

.coffee-box-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 2.2rem;
  border-radius: 6px;
  background: rgba(43, 27, 20, 0.88); /* Dark coffee brown background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 226, 216, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.coffee-box-card:hover {
  background: rgba(58, 38, 28, 0.92);
  border-color: rgba(232, 226, 216, 0.3);
  transform: translateY(-4px);
}

.coffee-box-card h3 {
  font-size: 1.4rem;
  color: var(--color-sand);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.coffee-box-card p {
  font-size: 1.05rem;
  color: #E8E2D8;
  line-height: 1.7;
  font-weight: 300;
}

/* 4. Farmers Section (Social Impact Model) */
.farmers-grid {
  display: block;
}

.farmers-info {
  max-width: 900px;
  margin-bottom: 3.5rem;
}

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

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  align-items: flex-start;
  height: 100%;
}

.pillar-card:hover {
  border-color: var(--color-sand);
  background: rgba(171, 198, 247, 0.8);
}

.pillar-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-text);
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover .pillar-icon-container {
  background: var(--theme-text);
  color: var(--theme-bg);
  border-color: var(--theme-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.pillar-text h3 {
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 0.4rem;
}

.pillar-text p {
  font-size: 0.9rem;
  color: var(--theme-text-muted);
}

/* 5. Team Section */
.team-section {
  background-color: var(--color-sand);
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.team-avatar-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team-profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.team-role {
  color: var(--color-brown);
  display: block;
  margin-bottom: 0.4rem;
  text-align: center;
  width: 100%;
}

.team-name {
  font-size: 1.6rem;
  color: var(--theme-text);
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.team-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-brown);
  margin: 1.25rem 0;
  line-height: 1.5;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  border-left: 3px solid var(--color-periwinkle);
  padding-left: 1.1rem;
  text-align: left;
}

.team-bio-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  text-align: left;
}

.team-bio-secondary {
  font-size: 0.9rem;
  font-weight: 300;
  color: #8E7B6C; /* Elegant muted brown/sand color to break up the paragraphs */
  line-height: 1.75;
  text-align: left;
}

/* 6. Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  padding: var(--space-3xl) 10vw;
  background-color: var(--color-navy);
}

.contact-card {
  width: 100%;
  max-width: 900px;
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact-actions {
  margin-top: 1.5rem;
}

.contact-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 1.1rem 2.2rem !important;
  text-transform: none !important;
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 0.02em !important;
  border-radius: 100px !important;
  background-color: var(--color-periwinkle) !important;
  color: var(--color-navy) !important;
  text-decoration: none !important;
  border: 1px solid var(--color-periwinkle) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.contact-btn:hover {
  background-color: transparent !important;
  color: var(--color-periwinkle) !important;
  border-color: var(--color-periwinkle) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(171, 198, 247, 0.2) !important;
}

.contact-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer Section */
.footer {
  padding: 5rem 10vw 3rem;
  border-top: 1px solid var(--theme-border);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4vw;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--theme-text);
  text-decoration: none;
  font-size: 1.4rem;
}

.footer-description {
  font-size: 0.88rem;
  color: var(--theme-text-muted);
}

.footer-nav-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-text);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--theme-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-sand);
}

.footer-newsletter h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-text);
  margin-bottom: 1rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--theme-text-muted);
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(232, 226, 216, 0.05);
  border: 1px solid rgba(232, 226, 216, 0.15);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  color: var(--color-sand);
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-periwinkle);
  background: rgba(232, 226, 216, 0.08);
}

.btn-newsletter-submit {
  background: var(--theme-accent);
  border: none;
  color: var(--theme-accent-text);
  width: 44px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-newsletter-submit:hover {
  background: var(--theme-accent-hover);
}

.btn-newsletter-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--theme-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--theme-text-muted);
  font-size: 0.8rem;
}

.footer-social-links {
  display: flex;
  gap: 1.25rem;
}

.footer-social-links a {
  color: var(--theme-text-muted);
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: var(--color-sand);
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(171, 198, 247, 0.6));
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  section {
    padding: var(--space-2xl) 5vw;
  }
}

@media (max-width: 992px) {
  .kingdom-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .kingdom-illustration {
    max-width: 320px;
  }

  .coffee-boxes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .farmers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.25rem 1.5rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(38, 48, 59, 0.98);
    border-bottom: 1px solid var(--color-periwinkle);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .hero-title span {
    font-size: 1.8rem;
  }
  .kingdom-visuals {
    grid-template-columns: 1fr;
  }
  .visual-img {
    height: 280px;
  }
  .coffee-content {
    padding: 2rem;
  }
  .image-overlay-box {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .overlay-stat {
    font-size: 1.8rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
