:root {
  --green-dark: #3d6b1f;
  --green: #5d8a3a;
  --green-light: #8eb84d;
  --green-pale: #eef4e2;
  --cream: #faf7f0;
  --warm-brown: #6b4423;
  --text: #2c2c2c;
  --text-soft: #6b6b6b;
  --line: #e8e4d8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Prompt', 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

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

/* ============ Top bar ============ */
.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-spacer { flex: 1; }

.topbar a.lang {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.topbar a.lang:hover { opacity: 0.7; }

/* ============ Nav ============ */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark { font-size: 2.2rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--green-dark);
}

.logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

/* ============ Hero ============ */
.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(40,60,20,0.55), rgba(40,60,20,0.55)),
    linear-gradient(135deg, #5d8a3a 0%, #3d6b1f 50%, #2d4f15 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
}

.hero::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.08;
  top: 10%;
  left: 8%;
}

.hero::after {
  content: '🍜';
  position: absolute;
  font-size: 12rem;
  opacity: 0.1;
  bottom: 8%;
  right: 8%;
}

.hero-overlay {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61,107,31,0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

/* ============ Sections ============ */
.section {
  padding: 6rem 0;
}

.section-light { background: #fff; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--green-dark); color: #fff; }

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

.section-head .eyebrow,
.eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--green);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-head-light h2 { color: #fff; }
.section-head-light .eyebrow { color: var(--green-light); }

.section-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ============ Branches ============ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.branch-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--line);
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.branch-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.branch-info {
  padding: 1.5rem;
}

.branch-info h3 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.branch-info p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.branch-hours {
  color: var(--green) !important;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ============ Split (story) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  height: 450px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  box-shadow: 0 12px 40px rgba(61,107,31,0.2);
}

.split-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.split-text p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.split-text .btn {
  margin-top: 1rem;
}

/* ============ Signature menu ============ */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.signature-card {
  text-align: center;
  padding: 0;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.signature-card:hover {
  transform: translateY(-5px);
}

.signature-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.signature-card h3 {
  margin: 1.2rem 1rem 0.4rem;
  color: var(--green-dark);
  font-weight: 600;
}

.signature-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0 1rem 0.8rem;
}

.signature-card .price {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
}

/* ============ Search & full menu ============ */
.search-bar {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#searchInput {
  width: 100%;
  padding: 1.1rem 1.6rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
  font-family: inherit;
}

#searchInput:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(93,138,58,0.12);
}

.filter-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--green);
  background: #fff;
  color: var(--green-dark);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover { background: var(--green-pale); }

.filter-btn.active {
  background: var(--green);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.menu-image {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.menu-info { padding: 1.2rem; }

.menu-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.menu-info .description {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  min-height: 2.6em;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
}

.tag {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 500;
}

.no-results {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-soft);
  padding: 3rem 0;
}

/* ============ Founders ============ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.founder-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--green-light);
}

.founder-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.founder-card .role {
  color: var(--green);
  font-style: italic;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.founder-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  padding: 2.2rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.contact-card:hover { background: rgba(255,255,255,0.1); }

.contact-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.contact-card h3 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.contact-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

/* ============ Footer ============ */
footer {
  background: #1a2e0d;
  color: rgba(255,255,255,0.8);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-inner h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-inner ul {
  list-style: none;
}

.footer-inner ul li {
  margin-bottom: 0.5rem;
}

.footer-inner a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-inner a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav-inner { flex-direction: column; gap: 1rem; }
  .nav-links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .topbar-inner { font-size: 0.75rem; gap: 0.8rem; flex-wrap: wrap; }

  .hero h1 { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }

  .section { padding: 4rem 0; }
  .section-head h2 { font-size: 2rem; }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-img { height: 300px; font-size: 6rem; }
  .split-text h2 { font-size: 1.8rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
