:root{
  /* Warm artisan café palette (closer to the mockup) */
  --bg:#f4efe7;
  --text:#15201d;
  --muted:#465651;
  --card:#ffffff;
  --border:rgba(20,32,29,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --green:#1f3b32;
  --green2:#2d5547;
  --cream:#f4efe7;
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.container{width:min(1120px, calc(100% - 32px)); margin-inline:auto}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,242,234,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(20,32,29,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-logo{
  width:60px; height:60px; border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(31,59,50,.25);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.brand-text{line-height:1; min-width:0}
.brand-name{
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.6px;
  color: var(--green);
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
  white-space:nowrap;
}
.brand-sub{
  margin-top:2px;
  font-size:.78rem;
  font-weight:600;
  color: rgba(31,59,50,.72);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.nav-desktop{display:flex; align-items:center; gap:18px}
.nav-desktop a{font-weight:600; color:rgba(21,32,29,.84)}
.nav-desktop a:hover{color:var(--green)}

.burger{display:none;width:44px;height:44px;border-radius:14px;border:1px solid rgba(0,0,0,.10);background:#fff;box-shadow:0 10px 24px rgba(0,0,0,.10);align-items:center;justify-content:center;gap:4px}
.burger span{display:block;width:22px;height:3px;border-radius:999px;background:#1f3b32}

.mobile-drawer{
  display:none;
  padding:12px 16px 16px;
  border-top:1px solid rgba(20,32,29,.08);
}
.mobile-drawer a{display:block; padding:10px 0; font-weight:700; color:rgba(21,32,29,.85)}
.mobile-drawer .btn{margin-top:8px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-sm{padding:10px 12px; border-radius:12px; font-weight:800}
.btn-primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  color:#fff;
  box-shadow: 0 12px 28px rgba(31,59,50,.25);
}
.btn-primary:hover{filter:brightness(1.02)}
.btn-ghost{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(20,32,29,.12);
}
.btn-ghost:hover{background:#fff}

/* Hero */
.hero{position:relative; padding:18px 0 24px; overflow:hidden; background:var(--cream)}
.hero-media{
  position:absolute; inset:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  /* Make the hero image punchier (less washed out) */
  filter:saturate(1.28) contrast(1.28) brightness(1.00);
}
.hero-fade{
  position:absolute; inset:0;
  /* Much lighter overlay – keep the photo vibrant */
  background: linear-gradient(180deg, rgba(244,239,231,.06) 0%, rgba(244,239,231,.12) 55%, rgba(244,239,231,.18) 100%);
}

.hero-inner{position:relative; padding:52px 0 32px}
.hero-card{
  width:min(600px, 100%);
  background: rgba(255,255,255,.997);
  border:1px solid rgba(20,32,29,.12);
  border-radius: 26px;
  box-shadow: 0 34px 82px rgba(20,32,29,.22);
  padding:24px 22px 20px;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(31,59,50,.10);
  color: var(--green);
  font-weight:800;
  font-size:.84rem;
}
.hero h1{
  margin:12px 0 8px;
  font-family:"Playfair Display", serif;
  font-weight: 800;
  letter-spacing:-0.8px;
  font-size: clamp(1.95rem, 3.35vw, 2.6rem);
  color: #162622;
  text-shadow:none;
}
.hero-sub{margin:0 0 8px; color:rgba(21,32,29,.96); font-weight:650}
.hero-address{margin:0 0 14px; color:rgba(21,32,29,.92); font-weight:700}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.rating-pill{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  max-width:100%;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(20,32,29,.18);
  font-weight:850;
  color: rgba(21,32,29,.94);
}
.rating-pill strong{color:var(--green)}
.rating-pill span{color:rgba(21,32,29,.72); font-weight:800}
.hero-meta{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
.meta-item{font-size:.92rem; font-weight:800; color:rgba(21,32,29,.92)}

/* Sections */
.section{padding:44px 0}
.section-muted{background: #f7f2ea}
.section-head{margin-bottom:18px}
.section-head h2{
  margin:0 0 6px;
  font-family:"Playfair Display", serif;
  letter-spacing:-0.6px;
  font-size:1.7rem;
  color:var(--green);
}
.section-head p{margin:0; color:var(--muted); font-weight:600}

/* Cards */
.cards{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.card{
  background: var(--card);
  border:1px solid rgba(20,32,29,.10);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.card h3{margin:0 0 8px; font-size:1.05rem; color:var(--green)}
.card p{margin:0 0 14px; color:rgba(21,32,29,.74); font-weight:600; line-height:1.35}

/* Menu board (no prices) */
.menu-board{margin-top:20px;border-radius:22px;overflow:hidden}
.menu-board--chalk{
  background: radial-gradient(1200px 500px at 20% 0%, rgba(244,178,59,.16), transparent 60%),
              radial-gradient(900px 420px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #1b1b1b, #0f0f0f);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  padding:18px;
}
.menu-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media (max-width: 900px){.menu-grid{grid-template-columns:1fr}}

.menu-cat{
  background: rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:14px;
}
.menu-cat h3{
  margin:0 0 10px 0;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#f4b23b;
  display:flex;
  align-items:center;
  gap:10px;
}
.menu-cat h3 .icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(244,178,59,.14);
  border:1px solid rgba(244,178,59,.18);
  font-size:18px;
}
.menu-cat ul{list-style:none;margin:0;padding:0}
.menu-cat li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:6px 0;
  color:rgba(245,242,233,.92);
  font-weight:700;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
.menu-cat li:last-child{border-bottom:none}
.menu-cat .mi{width:22px;flex:0 0 22px;text-align:center;opacity:.95}
.menu-note{margin-top:10px;color:rgba(245,242,233,.72);font-weight:700;font-size:.92rem}

.menu-cta{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.menu-cta .btn{border-radius:999px}
.card-foot{display:flex; justify-content:space-between; align-items:center; gap:10px}
.tag{font-size:.78rem; font-weight:800; color:var(--green); background:rgba(31,59,50,.10); padding:6px 10px; border-radius:999px}
.link{font-weight:800; color:var(--green)}

/* Trust */
.trust{display:grid; grid-template-columns: 1.4fr .6fr; gap:18px; align-items:start}
.trust-left h2{margin-top:0}
.trust-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; margin-top:14px}
.trust-item{background:#fff; border:1px solid rgba(20,32,29,.10); border-radius:18px; padding:14px}
.trust-title{font-weight:900; color:var(--green); margin-bottom:4px}
.trust-text{color:rgba(21,32,29,.74); font-weight:600; line-height:1.35}
.trust-right{
  background:#fff;
  border:1px solid rgba(20,32,29,.10);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  display:flex; flex-direction:column; gap:10px;
}
.rating{border:1px dashed rgba(31,59,50,.28); border-radius:18px; padding:14px; text-align:center; background:rgba(31,59,50,.04)}
.stars{letter-spacing:2px; color:var(--green); font-weight:900}
.rating-big{font-size:2rem; font-weight:900; color:var(--green)}
.rating-sub{color:rgba(21,32,29,.68); font-weight:700}

/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.g-item{margin:0; border-radius:20px; overflow:hidden; border:1px solid rgba(20,32,29,.10); box-shadow: 0 10px 24px rgba(0,0,0,.05)}
.g-item img{width:100%; height:220px; object-fit:cover; transition: transform .25s ease}
.g-item.contain{background:#f5f2e9}
.g-item.contain img{object-fit:contain;background:#f5f2e9;padding:10px}

.g-item:hover img{transform: scale(1.03)}

/* Grazing boxes */
.grazing{
  margin-top:16px;
  background:#fff;
  border:1px solid rgba(20,32,29,.10);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 14px 30px rgba(20,32,29,.08);
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:center;
}
.grazing h3{margin:0 0 6px; color:var(--green); font-weight:900; letter-spacing:-.01em}
.grazing p{margin:0 0 10px; color:rgba(21,32,29,.74); font-weight:700}
.grazing .g-item{box-shadow:none}
.grazing .g-item img{height:240px}
.grazing-tags{display:flex; gap:8px; flex-wrap:wrap}
.tag{display:inline-flex; align-items:center; gap:6px; padding:8px 10px; border-radius:999px; background:rgba(36,77,65,.10); border:1px solid rgba(36,77,65,.18); color:rgba(21,32,29,.85); font-weight:800; font-size:.86rem}
 (max-width: 720px){
  .grazing{grid-template-columns:1fr}
  .grazing .g-item img{height:210px}
}


.cta-strip{
  margin-top:18px;
  background: linear-gradient(135deg, rgba(31,59,50,.10), rgba(246,242,234,.85));
  border:1px solid rgba(20,32,29,.10);
  border-radius:22px;
  padding:16px;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.cta-title{font-weight:900; color:var(--green); font-size:1.05rem}
.cta-sub{color:rgba(21,32,29,.74); font-weight:700}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Contact */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.contact-left h2{margin-top:0}
.contact-cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
.contact-card{
  background: linear-gradient(135deg, rgba(36,77,65,.08), rgba(255,255,255,1) 55%);
  border:1px solid rgba(20,32,29,.14);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 14px 30px rgba(20,32,29,.10);
  position:relative;
  overflow:hidden;
}
.contact-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background: linear-gradient(90deg, var(--green), rgba(36,77,65,.25));
}
.cc-title{font-weight:950; color:#162622; margin-bottom:4px; letter-spacing:-.2px}
.cc-text{color:rgba(21,32,29,.82); font-weight:800; line-height:1.35}

.contact-extra{margin-top:14px; display:grid; gap:8px}
.contact-line{font-weight:800; color:rgba(21,32,29,.82)}
.contact-line:hover{text-decoration:underline}

.form{background:#fff; border:1px solid rgba(20,32,29,.10); border-radius:22px; padding:16px; box-shadow: 0 10px 24px rgba(0,0,0,.05)}
.form label{display:block; font-weight:800; color:rgba(21,32,29,.82); font-size:.9rem; margin-bottom:10px}
.form input, .form textarea{
  width:100%; margin-top:6px;
  border:1px solid rgba(20,32,29,.12);
  border-radius:16px;
  padding:12px 12px;
  font: inherit;
  outline:none;
  background: #fff;
}
.form input:focus, .form textarea:focus{border-color: rgba(31,59,50,.45); box-shadow: 0 0 0 4px rgba(31,59,50,.10)}
.form-note{margin:10px 0 0; color:rgba(21,32,29,.64); font-weight:700; font-size:.9rem}

/* Sticky call */
.sticky-call{position:fixed; left:0; right:0; bottom:0; z-index:60; display:none; padding:10px; background: rgba(255,255,255,.92); border-top:1px solid rgba(20,32,29,.12); backdrop-filter: blur(10px)}
.sticky-call-btn{display:flex; justify-content:center; align-items:center; width:100%; padding:14px 16px; border-radius:16px; font-weight:900; background: linear-gradient(135deg, var(--green), var(--green2)); color:#fff; box-shadow: 0 16px 34px rgba(31,59,50,.25)}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .trust{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .contact-cards{grid-template-columns: 1fr}
}

@media (max-width: 768px){
  .nav-desktop{display:none}
  .burger{display:inline-flex; flex-direction:column; justify-content:center}
  .mobile-drawer{display:none}

  .brand-logo{width:56px; height:56px}

  .brand-name{font-size:1.35rem}
  .brand-sub{font-size:.72rem}

  .hero-inner{padding:42px 0 22px}
  .hero-card{padding:18px 16px; border-radius:22px}

  /* Prevent rating pill overflow on small screens */
  .rating-pill{font-size:.95rem; padding:10px 12px; row-gap:6px}
  .rating-pill .stars{font-size:1rem}

  .cards{grid-template-columns: repeat(2, 1fr); gap:12px}
  .card{padding:14px}

  .gallery{grid-template-columns: repeat(2, 1fr)}
  .g-item img{height:170px}

  .cta-strip{flex-direction:column; align-items:flex-start}

  .sticky-call{display:block}
  body{padding-bottom:82px}
}

@media (max-width: 420px){
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
}

/* Drawer open state */
.site-header.is-open .mobile-drawer{display:block}
.site-header.is-open .burger span:nth-child(1){transform: translateY(8px) rotate(45deg)}
.site-header.is-open .burger span:nth-child(2){opacity:0}
.site-header.is-open .burger span:nth-child(3){transform: translateY(-8px) rotate(-45deg)}
.burger span{transition: transform .2s ease, opacity .2s ease}



/* --- Additions: delivery platforms + email button --- */
.hero-actions{
  flex-wrap: wrap;
  gap: 12px;
}
.platforms{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.platforms-label{
  font-weight: 600;
  color: var(--text);
  opacity: .9;
}
.platform-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
}
.badge-je{ color:#111; }
.badge-ue{ color:#111; }
.badge-de{ color:#111; }

.btn-email{
  margin-top: 10px;
  width: fit-content;
}

.contact-line.subtle{
  opacity: .85;
}

@media (max-width: 520px){
  .platforms{
    justify-content: flex-start;
  }
  .btn-email{
    width: 100%;
    justify-content: center;
  }
}


/* Delivery platform logos */
.platform-logos{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.platform-logo{
  height:28px;
  width:auto;
  border-radius:10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 520px){
  .platform-logo{ height:24px; border-radius:9px; }
}


/* Delivery platforms (logos) */
.platforms{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-label{
  font-weight: 700;
  color: var(--text);
  opacity: 0.95;
}

.platform-logos{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.platform-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.platform-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.98);
}

.platform-logo{
  height: 34px; /* slightly bigger */
  width: auto;
  display: block;
}

@media (max-width: 520px){
  .platforms{
    justify-content: flex-start;
  }
  .platform-logo{
    height: 30px;
  }
}


/* Ensure overlays never block clicks */
.hero-fade,
.hero-overlay,
.hero-bg::after{
  pointer-events: none !important;
}

.platforms{
  position: relative;
  z-index: 5; /* above hero overlays */
}
