@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #2B5731;
  --primary-light: #4A8C55;
  --accent-color: #E6F3E6;
  --bg-cream: #FEF8E2;
  --bg-white: #FFFFFF;
  --text-black: #1E231F;
  --text-muted: #5C675F;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  --shadow-soft: 0 12px 40px rgba(43, 87, 49, 0.08);
  --shadow-hover: 0 20px 40px rgba(43, 87, 49, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Global Elements */

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.promo-badge {
  background: #FFD700;
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Header Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo img {
  height: 65px;
  object-fit: contain;
  transition: var(--transition);
}
.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  background: var(--bg-white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.nav-utilities {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.currency-switcher {
  background: var(--bg-cream);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  color: var(--text-black);
  transition: var(--transition);
}

.currency-switcher:hover {
  border-color: var(--primary-green);
}

.icon-btn {
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  color: var(--text-black);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.icon-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: var(--primary-green);
}

.cart-icon {
  position: relative;
}

.cart-counter {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--primary-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-white);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  color: #fff;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition);
  cursor: pointer;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(43, 87, 49, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43, 87, 49, 0.35);
  background-color: var(--primary-light);
}

.btn-primary:hover::before {
  left: 100%;
  transition: 0.6s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--primary-green);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
}

/* Sections Global */
section {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================================================
   HERO IMMERSIVE SECTION (Nami Matcha Style)
   ========================================================================= */
.hero {
  position: relative;
  min-height: 105vh;
  margin-top: -120px; /* Pull up underneath transparent header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background-color: var(--primary-green);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKenBurns 10s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(43, 87, 49, 0.45), rgba(0, 0, 0, 0.4)); /* Dark cinematic tint to ensure text readable */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-cream);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  font-family: inherit;
}

.hero-desc {
  font-size: 1.35rem;
  font-weight: 300;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Featured Collection */
.shop-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 6rem 4rem;
  margin: 0 2rem 6rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.03);
}

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

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  background-color: #fff;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: var(--accent-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-black);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.product-card .btn-secondary {
  width: 100%;
}

/* Meet the Founder Section */
.founder-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 8rem;
  padding: 6rem 5%;
}

.founder-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.founder-content {
  flex: 1;
}

.founder-content h2 {
  color: var(--primary-green);
}

.quote-mark {
  font-size: 4rem;
  line-height: 0;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: serif;
  margin-bottom: 1rem;
  display: block;
}

/* Newsletter Section */
.newsletter {
  background: var(--primary-green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 6rem 4rem;
  margin: 0 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.newsletter h2 {
  color: #fff;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background-color: #fff;
  color: var(--primary-green);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: var(--bg-white);
  padding: 6rem 5% 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 300px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  background: var(--bg-cream);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-black);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-4px);
}

.payment-methods {
  display: flex;
  gap: 0.2rem;
  margin-top: 1rem;
  align-items: center;
}

.payment-methods span {
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.payment-icon {
  width: 36px;
  height: 24px;
  background: var(--bg-cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.1);
}

.terms-container {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 5%;
}

.terms-container h1 {
  margin-bottom: 2rem;
}

/* Enhanced Minimalist Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: var(--bg-cream);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.8s, transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  overflow: hidden;
}

.preloader-hide {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

.preloader-content-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.preloader-img {
  width: 180px;
  max-width: 80vw;
  animation: logoBreathe 3s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 10px 20px rgba(43,87,49,0.15));
}

@keyframes logoBreathe {
  0% { transform: scale(0.95) translateY(0); opacity: 0.85; filter: drop-shadow(0px 5px 10px rgba(43,87,49,0.05)); }
  100% { transform: scale(1.05) translateY(-8px); opacity: 1; filter: drop-shadow(0px 15px 30px rgba(43,87,49,0.25)); }
}

.preloader-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: rgba(43, 87, 49, 0.04);
  border-radius: 50%;
  animation: rippleEffect 3s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  z-index: 1;
}

@keyframes rippleEffect {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* Floating Matcha Particles */
.matcha-particle {
  position: absolute;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232b5731" fill-opacity="0.2"><path d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"/><path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12" stroke="%23fffcf3" stroke-width="1"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0;
}

.p1 { width: 50px; height: 50px; left: 15%; bottom: -60px; animation: floatUp 3s 0.2s ease-in-out infinite; }
.p2 { width: 35px; height: 35px; left: 35%; bottom: -40px; animation: floatUp 4s 0.5s ease-in-out infinite; }
.p3 { width: 60px; height: 60px; right: 20%; bottom: -70px; animation: floatUp 3.5s 0.1s ease-in-out infinite; }
.p4 { width: 40px; height: 40px; right: 40%; bottom: -50px; animation: floatUp 4.5s 0.8s ease-in-out infinite; }
.p5 { width: 55px; height: 55px; left: 55%; bottom: -65px; animation: floatUp 3.2s 1.2s ease-in-out infinite; }

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(360deg) scale(1.2); opacity: 0; }
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100000;
}
.toast {
  background: var(--bg-white);
  color: var(--primary-green);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* Modals Overlay */
.overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.overlay-modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-black);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  color: var(--primary-green);
  transform: scale(1.1);
}

/* Search Modal */
.search-content {
  width: 80%;
  max-width: 800px;
  text-align: center;
  transform: translateY(40px);
  transition: var(--transition);
}
.overlay-modal.active .search-content {
  transform: translateY(0);
}
.search-content input {
  width: 100%;
  font-size: 3rem;
  border: none;
  border-bottom: 2px solid var(--primary-green);
  background: transparent;
  color: var(--text-black);
  padding: 1rem 0;
  outline: none;
  font-family: inherit;
  font-weight: 600;
}
.search-content input::placeholder {
  color: rgba(0,0,0,0.2);
}

/* AI Modal */
.ai-content {
  background: var(--bg-white);
  width: 90%;
  max-width: 450px;
  height: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition);
}
.overlay-modal.active .ai-content {
  transform: translateY(0) scale(1);
}
.ai-header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.ai-chat {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ai-bubble {
  background: var(--accent-color);
  color: var(--primary-green);
  padding: 1rem;
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  max-width: 80%;
  font-weight: 500;
}
.user-bubble {
  background: var(--primary-green);
  color: white;
  padding: 1rem;
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
  max-width: 80%;
}
.ai-input {
  display: flex;
  padding: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.ai-input input {
  flex: 1;
  border: none;
  background: var(--bg-cream);
  padding: 1rem;
  border-radius: var(--radius-pill);
  outline: none;
}
.ai-input button {
  background: var(--primary-green);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-black);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--bg-white);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black);
}

/* Responsive Design Overrides */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .founder-section {
    flex-direction: column;
    text-align: center;
  }
  
  .shop-section, .newsletter {
    margin: 0 1rem 4rem;
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 2rem;
  }
  
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: 1rem;
  }

  .currency-switcher {
    display: none; /* Hide cluttered switcher on highly constrained mobile */
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }
  
  .newsletter-form input {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    width: 100%;
    padding: 1.2rem;
  }
}

/* --- Roadmap Section --- */
.roadmap-section {
    padding: 6rem 5%;
    background-color: var(--bg-cream);
}

.roadmap-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.roadmap-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid rgba(43, 87, 49, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    color: var(--primary-green);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s;
    margin-bottom: 2rem;
}

.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(43, 87, 49, 0.15);
    z-index: -1;
}

.roadmap-icon svg {
    width: 32px;
    height: 32px;
}

.roadmap-step:hover .roadmap-icon {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(43, 87, 49, 0.1);
}

.roadmap-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.roadmap-step:hover .roadmap-content {
    transform: translateY(-5px);
}

.roadmap-content h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.roadmap-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .roadmap-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
    .roadmap-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .roadmap-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .roadmap-icon {
        width: 70px;
        height: 70px;
    }
    .roadmap-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* --- About Grid --- */
.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-grid .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-grid div[style*="display: flex"] {
        justify-content: center;
    }
}
