:root {
  --bg: #f7f2e9;
  --surface: #fffaf4;
  --surface-2: #fcf6ee;
  --text: #2c231c;
  --muted: #665b52;
  --primary: #5d3510;
  --primary-2: #a55a16;
  --accent: #35b24b;
  --line: rgba(93, 53, 16, 0.12);
  --shadow: 0 20px 40px rgba(64, 37, 12, 0.10);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrapper { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px;
  background: rgba(247, 242, 233, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.brand strong { font-size: 1.15rem; display: block; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 14px; box-shadow: var(--shadow); }
.eyebrow, .section-kicker, .pill, .mini-kicker {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; font-weight: 700;
}
.nav { display: flex; gap: 20px; font-weight: 600; color: var(--muted); }
.nav a:hover, .inline-link:hover { color: var(--primary); }
.toolbar { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  border: 1px solid var(--line); background: white; color: var(--primary);
  border-radius: 999px; padding: 10px 14px; font-weight: 700; cursor: pointer;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 20px; font-weight: 700; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: white; color: var(--primary); border: 1px solid var(--line); }
.btn-light { background: white; color: var(--primary); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.4); color: white; }
.hide-mobile { display: inline-flex; }
.hero { position: relative; min-height: 88vh; display: grid; place-items: center; overflow: hidden; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(28, 16, 10, 0.66) 0%, rgba(28, 16, 10, 0.28) 45%, rgba(28, 16, 10, 0.18) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; padding: 72px 0; }
.hero-copy { max-width: 720px; color: white; }
.card-glass {
  background: rgba(54, 29, 10, 0.38); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); border-radius: 28px; padding: 32px;
}
.hero h1, .section-heading h2, .cta-box h2 {
  font-family: 'Playfair Display', serif; line-height: 1.05; margin: 14px 0 16px;
}
.hero h1 { font-size: clamp(2.6rem, 4vw, 4.8rem); }
.hero p { font-size: 1.08rem; line-height: 1.75; max-width: 60ch; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.quick-facts {
  margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.quick-facts div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 16px;
}
.quick-facts strong, .quick-facts span { display: block; }
.quick-facts span { opacity: .9; margin-top: 6px; font-size: .95rem; }
.section-offset { margin-top: -40px; position: relative; z-index: 2; }
section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading.compact { margin-bottom: 18px; }
.section-heading h2 { font-size: clamp(2rem, 2.8vw, 3.4rem); }
.section-heading p, .story-text p, .products-note, .info-card p, .cta-box p, .media-body p, .values-card li { line-height: 1.75; color: var(--muted); }
.quick-grid, .cards-grid { display: grid; gap: 18px; }
.quick-grid { grid-template-columns: repeat(5, 1fr); }
.quick-card, .info-card, .values-card, .map-card, .media-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.quick-card { min-height: 146px; display: flex; flex-direction: column; justify-content: space-between; }
.quick-card strong { font-size: 1.05rem; }
.quick-card span { color: var(--muted); line-height: 1.55; margin-top: 10px; }
.quick-card.accent { background: linear-gradient(180deg, #4dbd61, #31a148); color: white; }
.quick-card.accent span { color: rgba(255,255,255,.92); }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: start; }
.values-card h3 { margin-top: 0; }
.values-card ul { margin: 0; padding-left: 18px; line-height: 2; }
.three-cols { grid-template-columns: repeat(3, 1fr); }
.two-cols { grid-template-columns: repeat(2, 1fr); }
.media-card { padding: 0; overflow: hidden; }
.media-card img {
  width: 100%; height: 280px; object-fit: cover; border-bottom: 1px solid var(--line);
}
.media-body { padding: 22px; }
.media-body h3 { margin: 8px 0 10px; font-size: 1.3rem; }
.mini-kicker { color: var(--primary-2); }
.product-showcase { margin-top: 8px; }
.seasonal-grid { margin-top: 18px; }
.basket-card { margin-top: 18px; display: grid; grid-template-columns: 1.1fr .9fr; }
.basket-card img { height: 360px; border-bottom: 0; border-right: 1px solid var(--line); }
.experience-grid { align-items: stretch; }
.experience-card.no-photo {
  background: linear-gradient(180deg, #fffaf4, #f1e2ce);
  display: flex; align-items: center;
}
.inline-link { font-weight: 700; color: var(--primary); display: inline-block; margin-top: 10px; }
.experience-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.route-btn { padding: 12px 16px; }
.map-card { padding: 14px; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: 20px; }
.full { width: 100%; margin-top: 14px; }
.soft { background: #fcf7f1; }
.cta-box {
  background: linear-gradient(135deg, #5d3510, #8c4c15); color: white;
  padding: 34px; border-radius: 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.footer {
  padding: 22px 0 46px; display: flex; justify-content: space-between; gap: 16px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-content: start; }
.footer-links a { font-weight: 700; color: var(--primary); }
.light { color: rgba(255,255,255,.78); }

@media (max-width: 1100px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .three-cols, .two-cols { grid-template-columns: repeat(2, 1fr); }
  .basket-card { grid-template-columns: 1fr; }
  .basket-card img { border-right: 0; border-bottom: 1px solid var(--line); height: 300px; }
}
@media (max-width: 900px) {
  .desktop-nav, .hide-mobile { display: none; }
  .topbar { padding-inline: 16px; }
  .story-grid, .cta-box, .footer { grid-template-columns: 1fr; display: grid; }
  .quick-facts, .three-cols, .two-cols { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 96px 0 42px; }
}
@media (max-width: 640px) {
  section { padding: 68px 0; }
  .wrapper { width: min(100% - 20px, 1120px); }
  .hero-copy, .quick-card, .info-card, .values-card, .cta-box { border-radius: 22px; }
  .card-glass { padding: 24px; }
  .quick-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions, .experience-actions { flex-direction: column; }
  .btn { width: 100%; }
  .brand-logo { width: 50px; height: 50px; }
  .media-card img, .basket-card img { height: 240px; }
}
