:root {
  --turmeric: #e8a502;
  --forest: #1b5e20;
  --terracotta: #c56f45;
  --cream: #fff7e6;
  --white: #ffffff;
  --sand: #f2e7d5;
  --text: #2a2a2a;
  --muted: #6f6a63;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 25px 45px rgba(27, 94, 32, 0.08);
  --shadow-card: 0 10px 20px rgba(0,0,0,0.05);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--forest);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Top Bar & Nav */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-icon {
  width: 56px;
  height: 56px;
}

.brand-icon svg {
  width: 100%;
  height: 100%;
}

.outer-ring {
  fill: none;
  stroke: var(--turmeric);
  stroke-width: 4;
}

.inner-fill {
  fill: var(--forest);
}

.mango {
  fill: var(--turmeric);
  stroke: var(--turmeric);
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-wordmark__primary {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: var(--forest);
}

.brand-wordmark__secondary {
  font-size: 0.9rem;
  letter-spacing: 0.25rem;
  color: var(--terracotta);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest);
  transition: color 0.2s;
}

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

.lang-toggle {
  display: inline-flex;
  gap: 0.2rem;
  background: var(--sand);
  padding: 0.2rem;
  border-radius: 999px;
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle button.active {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream), #fef1ce);
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  min-height: 85vh;
}

.hero__content {
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--forest);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.lead {
  font-size: 1.15rem;
  max-width: 50ch;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 2px solid var(--forest);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn.primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.btn.primary:hover {
  background: #144a18;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

.btn.ghost {
  color: var(--forest);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(27, 94, 32, 0.05);
}

.btn.white {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest);
}
.btn.white:hover {
    background: #fff;
}

/* CSS Jar Graphic */
.hero__image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__image-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--turmeric);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.css-jar {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 280px;
}

.jar-lid {
  width: 160px;
  height: 40px;
  background: #333;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.jar-neck {
  width: 150px;
  height: 20px;
  background: rgba(255,255,255,0.4);
  margin: -5px auto 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.jar-body {
  width: 200px;
  height: 220px;
  background: linear-gradient(135deg, #e8a502 0%, #d69400 100%);
  border-radius: 20px 20px 40px 40px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.jar-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 120px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.label-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--forest);
  font-size: 1.5rem;
  border: 2px solid var(--forest);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.label-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.label-detail {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.jar-shine {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 20px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  border-radius: 999px;
  transform: rotate(5deg);
}

/* Sections */
main {
  padding: 0 0 4rem;
}

.panel {
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
}

.panel.lemon {
  background: var(--white);
}

.panel__header.centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.highlight-card {
  text-align: center;
  background: #fdfaf4;
}

.icon-circle {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--sand);
  width: 80px;
  height: 80px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.ingredients-showcase {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--sand);
    border-radius: var(--radius-md);
}

.ingredients-list {
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
    margin-top: 1rem;
}

.story-panel {
    background: var(--forest);
    color: var(--cream);
    text-align: center;
    padding: 6rem 1.5rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-panel h2 {
    color: var(--turmeric);
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.4rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    line-height: 1.8;
}

.signature {
    margin-top: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--turmeric);
}

.roadmap {
    background: var(--white);
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.roadmap-date {
    background: var(--terracotta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.roadmap-item h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #154015;
    color: var(--cream);
    text-align: center;
    padding: 5rem 1.5rem 2rem;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
}

.footer-content h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.contact-phone-container {
  margin-top: 1.5rem;
}

.contact-phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--turmeric);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  letter-spacing: 0.05em;
}

.contact-phone:hover {
  border-bottom-color: var(--turmeric);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 3rem;
    gap: 3rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__actions {
    justify-content: center;
  }
  
  .nav-links {
    display: none; /* Simplify for mobile, or add hamburger later */
  }

  .story-text {
      font-size: 1.1rem;
  }
}
