/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: #fefdf8;
  color: #1a3a2a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; }
.italic-em { font-style: italic; font-weight: 400; }

/* ── Navbar ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 101, 52, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled { box-shadow: 0 1px 20px rgba(15, 35, 25, 0.08); }
.nav-logo-mark {
  font-size: 18px;
  color: #166534;
  font-weight: 700;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a3a2a;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #166534;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #166534; }
.nav-link:hover::after { width: 100%; }
.btn-nav {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #166534;
  border: 1.5px solid #166534;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-nav:hover {
  background: #166534;
  color: #fefdf8;
}
.nav-menu-btn {
  color: #1a3a2a;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-menu-btn:hover { background: rgba(22, 101, 52, 0.06); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s ease;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 25, 0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fefdf8;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a3a2a;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(22, 101, 52, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-link:hover { color: #166534; padding-left: 0.5rem; }
.mobile-menu-cta {
  margin-top: 2rem;
  display: block;
  text-align: center;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #166534;
  color: #fefdf8;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #0f4d28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 101, 52, 0.25);
}
.btn-primary--outline {
  background: transparent;
  color: #fefdf8;
  border: 1.5px solid rgba(254, 253, 248, 0.5);
}
.btn-primary--outline:hover {
  background: #fefdf8;
  color: #166534;
  border-color: #fefdf8;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a3a2a;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid rgba(26, 58, 42, 0.2);
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: #166534;
  color: #166534;
  background: rgba(22, 101, 52, 0.04);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a3a2a;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid rgba(26, 58, 42, 0.2);
  transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
  border-color: #166534;
  color: #166534;
}
.btn-arrow { transition: transform 0.2s ease; }
.btn-primary:hover .btn-arrow,
.btn-cta-secondary:hover .btn-arrow { transform: translate(3px, -3px); }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: #166534;
}
.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #0f2319;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.125rem;
  color: #4a6b5a;
  max-width: 520px;
  line-height: 1.7;
}

/* ── Hero ── */
.hero-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 1.5rem;
}
.hero-label-line {
  width: 2.5rem;
  height: 2px;
  background: #166534;
}
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #0f2319;
  margin-bottom: 1.75rem;
}
.hero-line {
  display: block;
}
.hero-line:first-child { color: #0f2319; }
.hero-line:last-child { color: #166534; }
.italic-em { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a6b5a;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f2319;
}
.stat-desc {
  font-size: 0.8125rem;
  color: #6b8f7e;
  margin-top: 0.125rem;
}
.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(22, 101, 52, 0.2);
}

/* Hero Image Stack */
.hero-image-col { position: relative; }
.hero-image-stack {
  position: relative;
  padding-left: 2rem;
}
.hero-img-primary {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 35, 25, 0.12);
}
.hero-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-img-secondary {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 35, 25, 0.15);
  border: 4px solid #fefdf8;
}
.hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-badge {
  position: absolute;
  top: -1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #166534;
  color: #fefdf8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.625rem 1rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(22, 101, 52, 0.3);
}
.hero-badge svg { opacity: 0.9; }

/* Hero Scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6b8f7e;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #166534, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee ── */
.marquee-section {
  background: #0f2319;
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(254, 253, 248, 0.6);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ── */
.section-about {
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
}
.about-image-wrapper { position: relative; }
.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 35, 25, 0.1);
}
.about-image-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  border: 2px solid #166534;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}
.about-content { max-width: 560px; }
.about-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4a6b5a;
  margin-bottom: 1.25rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 101, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #166534;
}
.value-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f2319;
  margin-bottom: 0.25rem;
}
.value-desc {
  font-size: 0.9375rem;
  color: #6b8f7e;
  line-height: 1.6;
}

/* ── Shop ── */
.section-shop {
  padding: 5rem 0 7rem;
  background: #f0fdf4;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-sub { margin: 0 auto; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
.shop-card--large { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .shop-card--large { grid-column: span 2; }
}
.shop-card--wide { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .shop-card--wide { grid-column: span 3; }
}
.shop-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fefdf8;
  box-shadow: 0 4px 20px rgba(15, 35, 25, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 35, 25, 0.12);
}
.shop-card-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.shop-card--large .shop-card-image,
.shop-card--wide .shop-card-image { aspect-ratio: 16/9; }
.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-card:hover .shop-card-image img { transform: scale(1.05); }
.shop-card-content {
  padding: 1.5rem;
}
.shop-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #166534;
  background: rgba(22, 101, 52, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.shop-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f2319;
  margin-bottom: 0.5rem;
}
.shop-card-desc {
  font-size: 0.9375rem;
  color: #6b8f7e;
  line-height: 1.6;
}

/* ── CTA ── */
.section-cta {
  padding: 7rem 0;
  background: #0f2319;
  position: relative;
  overflow: hidden;
}
.cta-card {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-pattern {
  position: absolute;
  inset: -4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  pointer-events: none;
  opacity: 0.06;
}
.cta-pattern-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fefdf8;
}
.cta-content { position: relative; }
.cta-content .section-label { color: #86efac; }
.cta-content .section-label::before { background: #86efac; }
.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #fefdf8;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.cta-body {
  font-size: 1.0625rem;
  color: rgba(254, 253, 248, 0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cta-actions .btn-primary:hover { background: #fefdf8; color: #166534; }

/* ── Visit ── */
.section-visit {
  padding: 7rem 0;
  background: #fefdf8;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.visit-content { max-width: 520px; }
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2.5rem 0;
}
.visit-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(22, 101, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #166534;
}
.visit-info-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b8f7e;
  margin-bottom: 0.25rem;
}
.visit-info-value {
  font-size: 1rem;
  color: #0f2319;
  line-height: 1.6;
}
.visit-link { transition: color 0.2s; }
.visit-link:hover { color: #166534; }
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15, 35, 25, 0.1);
  min-height: 400px;
}
@media (min-width: 1024px) { .visit-map { min-height: 480px; } }

/* ── Footer ── */
.footer {
  background: #0f2319;
  color: rgba(254, 253, 248, 0.6);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1.5fr 1fr; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-logo-mark {
  font-size: 20px;
  color: #86efac;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}
.footer-link {
  font-size: 0.9375rem;
  color: rgba(254, 253, 248, 0.6);
  transition: color 0.2s;
}
.footer-link:hover { color: #86efac; }
.footer-address p {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(254, 253, 248, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.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; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-image-stack { padding-left: 0; margin-top: 1rem; }
  .hero-img-secondary { left: 0; }
  .hero-scroll-indicator { display: none; }
  .section-about, .section-shop, .section-cta, .section-visit { padding: 5rem 0; }
}
