/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-950: #042f23;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream-50:   #fefdf8;
  --cream-100:  #fefce8;
  --cream-200:  #fef9c3;
  --cream-300:  #fef3c7;
  --sand-100:   #faf5eb;
  --sand-200:   #f5edd6;
  --stone-50:   #fafaf9;
  --stone-100:  #f5f5f4;
  --stone-200:  #e7e5e4;
  --stone-400:  #a8a29e;
  --stone-500:  #78716c;
  --stone-600:  #57534e;
  --stone-700:  #44403c;
  --stone-800:  #292524;
  --stone-900:  #1c1917;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 3px rgba(6,95,70,0.06), 0 1px 2px rgba(6,95,70,0.04);
  --shadow-md:  0 4px 16px rgba(6,95,70,0.08), 0 2px 6px rgba(6,95,70,0.06);
  --shadow-lg:  0 12px 40px rgba(6,95,70,0.12), 0 4px 12px rgba(6,95,70,0.08);
  --shadow-xl:  0 20px 60px rgba(6,95,70,0.15), 0 8px 20px rgba(6,95,70,0.10);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--stone-800);
  background: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--stone-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--stone-600);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--emerald-800);
  border: 2px solid var(--emerald-100);
}
.btn-secondary:hover {
  border-color: var(--emerald-500);
  background: var(--emerald-50);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,253,248,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--emerald-800);
  font-weight: 600;
}

.nav-logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--stone-600);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--emerald-800); background: var(--emerald-50); }

.nav-cta {
  background: var(--emerald-800) !important;
  color: white !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--emerald-700) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--stone-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(145deg, var(--cream-50) 0%, var(--sand-100) 50%, var(--cream-100) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--emerald-800) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--stone-600);
  background: white;
  border: 1px solid var(--stone-200);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--stone-900);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-headline em {
  font-style: italic;
  color: var(--emerald-700);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--stone-600);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual stack */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-card-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-card-main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(4,47,35,0.7));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Stat cards */
.stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.stat-card--1 {
  top: 20px;
  right: -30px;
  animation-delay: 0s;
}
.stat-card--2 {
  bottom: 80px;
  left: -40px;
  animation-delay: 1.3s;
}
.stat-card--3 {
  bottom: -10px;
  right: 20px;
  animation-delay: 2.6s;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card--1 .stat-icon { background: var(--emerald-600); }
.stat-card--2 .stat-icon { background: var(--emerald-700); }
.stat-card--3 .stat-icon { background: var(--emerald-800); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--stone-900);
  line-height: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Section base ─────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--sand-100); }

/* ── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--cream-50);
}

.about-img-float img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: var(--emerald-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
}

.about-content .section-title { margin-bottom: 20px; }

.about-content > p {
  color: var(--stone-600);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--stone-900);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--stone-500);
}

/* ── Menu ─────────────────────────────────────────── */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-cat {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--stone-600);
  border: 2px solid var(--stone-200);
  transition: var(--transition);
}
.menu-cat:hover { border-color: var(--emerald-500); color: var(--emerald-700); }
.menu-cat.active {
  background: var(--emerald-800);
  color: white;
  border-color: var(--emerald-800);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6,95,70,0.06);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  color: white;
}
.menu-tag--tea  { background: var(--emerald-600); }
.menu-tag--bakes { background: #d97706; }
.menu-tag--cold { background: #0284c7; }

.menu-card-body { padding: 22px 24px 26px; }
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--stone-500);
  line-height: 1.7;
}

.menu-note {
  text-align: center;
  margin-top: 48px;
  padding: 20px 32px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-md);
  color: var(--emerald-800);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall  { grid-column: span 4; grid-row: span 2; }
.gallery-item--tall img { height: 100%; min-height: 560px; }
.gallery-item--wide  { grid-column: span 8; }
.gallery-item--wide img { height: 100%; min-height: 280px; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img { height: 100%; min-height: 280px; }

/* ── Visit ────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--stone-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--stone-900);
  margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
  font-size: 0.9rem;
  color: var(--stone-500);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--emerald-700); text-decoration: underline; }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-link { display: block; position: relative; }
.map-link img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,95,70,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.map-link:hover .map-overlay { background: rgba(6,95,70,0.7); }

/* Contact form */
.visit-form-wrap {}

.visit-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6,95,70,0.06);
}

.visit-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--stone-900);
  margin-bottom: 10px;
}

.visit-form-card > p {
  color: var(--stone-500);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--stone-700);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--stone-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--stone-800);
  background: var(--cream-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.form-success p { color: var(--stone-500); font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--emerald-950);
  color: white;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 16px; }
.footer-logo span { color: white; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: white; }

.footer-contact span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

/* ── Scroll reveal ────────────────────────────────── */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 420px; order: -1; }
  .hero-text { text-align: center; }
  .hero-headline { margin: 0 auto; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { min-height: 420px; }
  .about-img-main img { height: 420px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-item--tall { grid-column: span 6; grid-row: span 1; }
  .gallery-item--tall img { min-height: 280px; }
  .gallery-item--wide { grid-column: span 12; }

  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254,253,248,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(6,95,70,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 14px 16px; width: 100%; text-align: center; }
  .nav-cta { margin-left: 0 !important; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { min-height: 360px; }
  .stat-card { display: none; }
  .hero-card-main img { height: 320px; }

  .section { padding: 72px 0; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item--tall img,
  .gallery-item--wide img { min-height: 200px; }
  .gallery-item img { min-height: 200px; }

  .visit-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-img-float img { width: 200px; height: 150px; }
}
