/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #F7F5F0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }
.text-accent { color: #D4A843; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 15px; transition: all 0.3s ease; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #D4A843; color: #1B4332; border-color: #D4A843;
}
.btn-primary:hover { background: #c4952f; border-color: #c4952f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
.btn-outline {
  background: transparent; color: #F7F5F0; border-color: rgba(247,245,240,0.5);
}
.btn-outline:hover { border-color: #F7F5F0; background: rgba(247,245,240,0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Labels & Titles ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  color: #D4A843; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: #D4A843;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); color: #1B4332; margin-bottom: 20px;
}
.section-sub {
  font-size: 17px; color: #555; max-width: 520px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── Geometric Decorations ─── */
.geo-shape { position: fixed; pointer-events: none; z-index: 0; opacity: 0.07; }
.geo-circle-1 {
  width: 420px; height: 420px; border-radius: 50%;
  background: #2D6A4F; top: -100px; right: -120px;
}
.geo-circle-2 {
  width: 260px; height: 260px; border-radius: 50%;
  background: #D4A843; bottom: 15%; left: -80px;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid #2D6A4F;
  top: 38%; right: -40px;
}
.geo-square {
  width: 140px; height: 140px; background: #D4A843;
  top: 60%; left: 4%; transform: rotate(25deg); border-radius: 12px;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(27,67,50,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15); padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px;
  color: #F7F5F0;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: #D4A843; color: #1B4332;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.nav-menu { display: flex; gap: 8px; align-items: center; }
.nav-menu a {
  padding: 8px 16px; border-radius: 50px; font-size: 14px;
  font-weight: 500; color: rgba(247,245,240,0.8); transition: all 0.25s ease;
}
.nav-menu a:hover { color: #F7F5F0; background: rgba(247,245,240,0.12); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.hamburger {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 22px; height: 2px; background: #F7F5F0;
  box-shadow: 0 -7px 0 #F7F5F0, 0 7px 0 #F7F5F0;
  transition: all 0.3s ease;
}
.hamburger.active { box-shadow: 0 -7px 0 transparent, 0 7px 0 transparent; }
.hamburger.active::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 22px; height: 2px; background: #F7F5F0;
  transform: rotate(45deg);
}
.hamburger.active::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 22px; height: 2px; background: #F7F5F0;
  transform: rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, #1B4332 0%, #2D6A4F 55%, #40916C 100%);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(212,168,67,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 10% 80%, rgba(45,106,79,0.4) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
  border-radius: 50px; padding: 6px 16px; font-size: 13px;
  font-weight: 500; color: #D4A843; margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #D4A843;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: #F7F5F0;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-headline .text-accent {
  background: linear-gradient(135deg, #D4A843 0%, #e8c068 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: rgba(247,245,240,0.75); line-height: 1.75;
  margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Floating Stat Cards ─── */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 380px;
}
.stat-card {
  border-radius: 20px; padding: 24px 20px; position: relative; overflow: hidden;
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card--green { background: #2D6A4F; color: #F7F5F0; }
.stat-card--cream { background: #F7F5F0; color: #1B4332; }
.stat-card--dark { background: #1B4332; color: #F7F5F0; }
.stat-card--accent { background: #D4A843; color: #1B4332; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem;
  font-weight: 700; margin-bottom: 6px; line-height: 1;
}
.stat-number span { font-size: 1.4rem; }
.stat-label { font-size: 13px; opacity: 0.8; line-height: 1.4; }
.stat-card-accent {
  position: absolute; width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.08); top: -12px; right: -12px;
}

/* ─── About ─── */
.about { padding: 100px 0; position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px; border-radius: 20px;
  background: #D4A843; z-index: -1;
}
.about-floating-card {
  position: absolute; bottom: -30px; left: -20px;
  background: #1B4332; color: #F7F5F0; border-radius: 16px;
  padding: 20px 24px; z-index: 2;
}
.afc-number { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: #D4A843; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.afc-label { font-size: 15px; margin-top: 4px; }
.about-text .section-title { margin-top: 4px; }
.about-text p { color: #444; margin-bottom: 16px; line-height: 1.75; }
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.af-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: #D4A843;
  color: #1B4332; font-size: 12px; font-weight: 700; margin-right: 12px;
  flex-shrink: 0;
}
.about-features li {
  display: flex; align-items: center; font-size: 15px; color: #333; font-weight: 500;
}

/* ─── Divider ─── */
.geo-divider { padding: 0 24px; }
.geo-divider-bar {
  height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #1B4332 0%, #2D6A4F 30%, #40916C 50%, #D4A843 80%, #1B4332 100%);
}

/* ─── Menu ─── */
.menu { padding: 100px 0; background: #1B4332; position: relative; z-index: 1; }
.menu .section-title { color: #F7F5F0; }
.menu .section-sub { color: rgba(247,245,240,0.65); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.menu-card {
  background: rgba(247,245,240,0.06); border: 1px solid rgba(247,245,240,0.1);
  border-radius: 20px; overflow: hidden; transition: all 0.35s ease;
}
.menu-card:hover { transform: translateY(-6px); background: rgba(247,245,240,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.menu-card-img { position: relative; overflow: hidden; }
.menu-card-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: #D4A843; color: #1B4332; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 50px;
}
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
  font-size: 1.25rem; color: #F7F5F0; margin-bottom: 10px;
}
.menu-card-body p { font-size: 14px; color: rgba(247,245,240,0.6); line-height: 1.7; }
.menu-note {
  margin-top: 40px; text-align: center;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.25);
  border-radius: 14px; padding: 20px 28px;
}
.menu-note p { font-size: 15px; color: rgba(247,245,240,0.7); }
.menu-note strong { color: #D4A843; }

/* ─── Store ─── */
.store { padding: 100px 0; position: relative; z-index: 1; }
.store-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.store-text .section-title { margin-top: 4px; }
.store-text p { color: #444; line-height: 1.75; margin-bottom: 16px; }
.store-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.store-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: #333; font-weight: 500;
}
.sl-icon { font-size: 20px; }
.store-visual { position: relative; }
.store-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.store-img-grid img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 18px;
}
.store-badge {
  position: absolute; top: -20px; right: -20px;
  background: #D4A843; color: #1B4332; border-radius: 16px;
  padding: 20px 24px; text-align: center;
}
.sb-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem;
  font-weight: 700; line-height: 1;
}
.sb-number span { font-size: 1.2rem; }
.sb-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ─── Community ─── */
.community { padding: 100px 0; background: #F7F5F0; position: relative; z-index: 1; }
.community-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comm-card { border-radius: 24px; padding: 40px 32px; transition: transform 0.3s ease; }
.comm-card:hover { transform: translateY(-6px); }
.comm-card--green { background: #2D6A4F; color: #F7F5F0; }
.comm-card--cream { background: #F7F5F0; color: #1B4332; border: 2px solid #E8E4DB; }
.comm-card--dark { background: #1B4332; color: #F7F5F0; }
.comm-icon { margin-bottom: 20px; }
.comm-card--green .comm-icon { color: #95D5B2; }
.comm-card--cream .comm-icon { color: #1B4332; }
.comm-card--dark .comm-icon { color: #D4A843; }
.comm-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.comm-card p { font-size: 15px; line-height: 1.7; opacity: 0.8; }

/* ─── Contact ─── */
.contact { padding: 100px 0; position: relative; z-index: 1; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-title { margin-top: 4px; }
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 16px;
}
.cd-icon {
  width: 48px; height: 48px; border-radius: 14px; background: #E8F5E9;
  display: flex; align-items: center; justify-content: center;
  color: #1B4332; flex-shrink: 0;
}
.contact-details strong { display: block; font-size: 14px; color: #1B4332; margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: 15px; color: #444; }
.contact-details a:hover { color: #D4A843; }
.contact-form-wrap {
  background: #1B4332; border-radius: 24px; padding: 40px;
}
.cf-title {
  font-size: 1.5rem; color: #F7F5F0; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: rgba(247,245,240,0.7);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid rgba(247,245,240,0.15); background: rgba(247,245,240,0.07);
  color: #F7F5F0; font-family: 'DM Sans', sans-serif; font-size: 15px;
  transition: border-color 0.25s ease; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(247,245,240,0.35); }
.form-group input:focus, .form-group textarea:focus { border-color: #D4A843; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px; border-radius: 12px; background: rgba(149,213,178,0.15);
  color: #95D5B2; font-size: 14px; font-weight: 500;
}

/* ─── Footer ─── */
.footer {
  background: #143326; padding: 48px 0; position: relative; z-index: 1;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark {
  width: 34px; height: 34px; border-radius: 8px; font-size: 16px;
}
.footer-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 18px; color: #F7F5F0;
}
.footer-copy { font-size: 14px; color: rgba(247,245,240,0.5); margin-bottom: 8px; }
.footer-copy a { color: #D4A843; transition: color 0.2s; }
.footer-copy a:hover { color: #e8c068; }
.footer-credit { font-size: 13px; color: rgba(247,245,240,0.3); }

/* ─── Animations ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-cards { max-width: 320px; }
  .about-grid, .store-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .store-visual { order: -1; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #1B4332; flex-direction: column; padding: 80px 32px 32px;
    gap: 4px; transition: right 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 14px 16px; font-size: 16px; width: 100%; border-radius: 12px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .community-cards { grid-template-columns: 1fr; }
  .store-img-grid { grid-template-columns: 1fr; }
  .store-img-grid img { height: 220px; }
  .contact-form-wrap { padding: 28px; }
  .about-img-accent { width: 100px; height: 100px; bottom: -10px; right: -10px; }
  .about-floating-card { bottom: -20px; left: -10px; padding: 14px 18px; }
  .store-badge { top: -12px; right: -12px; padding: 14px 18px; }
  .sb-number { font-size: 1.5rem; }
  .geo-shape { display: none; }
}

@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
  .stat-card { padding: 18px 16px; }
  .stat-number { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
