.logo-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  display: inline-block;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1), height 0.3s cubic-bezier(.4,0,.2,1);
  will-change: opacity, width, height;
}
.nav-logo-large-left {
  width: 86px;
  height: 86px;
  background: url('images/logo-bold-black.png') left center/contain no-repeat;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1), height 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-logo-large-right {
  width: 320px;
  height: 60px;
  background: url('images/logo-text-black.png') right center/cover no-repeat;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1), height 0.3s cubic-bezier(.4,0,.2,1);
}
.site-header {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.site-header .nav-logo-large {
  opacity: 1;
  width: 341px;
  height: 70.9px;
}
.site-header .nav-logo-small {
  opacity: 0;
  width: 40px;
  height: 40px;
}
.site-header.shrink {
  min-height: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.site-header.shrink .nav-logo-large-left {
  width: 40px;
  height: 40px;
  opacity: 1;
}
.site-header.shrink .nav-logo-large-right {
  opacity: 0;
  width: 0;
  height: 0;
}
.brand {
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
  opacity: 0;
}
.site-header.shrink .brand {
  opacity: 1;
}
.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  display: inline-block;
}
/* Basic reset and variables */
:root{
  --bg:#B79F7D;
  --text:#0f1724;
  --muted:#64748b;
  --accent:#ff6b35; /* warm food accent */
  --accent-600:#e55b20;
  --container:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; color:var(--text); background:var(--bg); line-height:1.5}
.container{max-width:var(--container);margin:0 auto;padding:0 1rem}

/* Header */
.site-header{border-bottom:1px solid #fff1ea;background:var(--bg);position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 0}
.brand{font-weight:700;color:var(--text);text-decoration:none}

.nav-toggle{background:transparent;border:0;padding:0.5rem;display:flex;align-items:center;cursor:pointer}
.hamburger,.hamburger::before,.hamburger::after{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;position:relative}
.hamburger::before,.hamburger::after{content:'';position:relative;display:block;margin-top:6px}

.primary-nav{position:fixed;inset:0 0 0 40%;background:var(--bg);transform:translateX(100%);transition:transform .25s ease;padding:2rem}
.primary-nav ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:1rem}
.primary-nav a{color:var(--text);text-decoration:none;font-weight:600}

/* When nav is open (small screens) */
.nav-open .primary-nav{transform:translateX(0)}

/* Buttons */
.btn{display:inline-block;padding:.5rem .85rem;border-radius:8px;border:1px solid transparent;text-decoration:none}
.btn-primary{background:var(--accent);color:#fff}
.btn-outline{background:transparent;border-color:#fde9dd;color:var(--text)}

/* Hero */
.hero {
    color: #fffbe9;
  min-height: 100vh;
  height: 100dvh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  width: 100%;
  height: 100%;
  position: relative;
  background: url('images/first-slide-bg.png') center center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(var(--bg-rgb), 0) 0%,
    rgba(var(--bg-rgb), 0.99) 95%,
    var(--bg) 100%
  );
  z-index: 1;
}

:root {
  --bg-rgb: 183, 159, 125;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-inner{display:grid;grid-template-columns:1fr;gap:1.25rem;align-items:center}
.hero-copy h1{font-size:1.5rem;margin:.25rem 0}
.hero-copy p{color:var(--muted)}
.hero-media{display:flex;justify-content:center}
.hero-image{width:260px;height:220px;border-radius:12px;border:1px solid #fdeedc;display:flex;align-items:center;justify-content:center;background:transparent}
.hero-image .image-placeholder{color:var(--muted);font-weight:700}

/* Features */
.features{padding:2rem 0}
.features-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem}
.feature{background:transparent;border:1px solid #fff5f1;padding:1rem;border-radius:8px}

/* Pricing / Menu */
.pricing{padding:2rem 0}
.pricing-grid{display:grid;grid-template-columns:1fr;gap:1rem}
.card{background:transparent;border:1px solid #fff5f1;padding:1rem;border-radius:10px;text-align:center}
.price{font-size:1.5rem;font-weight:700;margin:0.25rem 0}

/* Contact */
.contact{padding:2rem 0}
.signup-form{display:flex;gap:.5rem;flex-direction:column;max-width:600px}
.signup-form input,.signup-form select{padding:.6rem .75rem;border:1px solid #fde6db;border-radius:8px}

/* Footer */
.site-footer{border-top:1px solid #fff1ea;padding:1rem 0;color:var(--muted)}

/* Accessibility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

@media (max-width: 400px) {
  .logo-brand-group {
    padding-left: 12px;
  }
  .nav-logo-large-right {
    width: 170px;
    height: 30px;
  }
  .site-header.shrink .nav-logo-large-left {
    width: 27px;
    height: 27px;
  }
  .nav-logo-large-left {
    width: 43px;
    height: 43px;
  }
}

/* Medium and up */
@media(min-width:700px){
  .primary-nav{position:static;transform:none;padding:0;background:transparent}
  .primary-nav ul{flex-direction:row;gap:1rem;align-items:center}
  .nav-toggle{display:none}
  .hero-inner{grid-template-columns:1fr 360px}
  .hero-copy h1{font-size:2rem}
  .features-grid{grid-template-columns:repeat(3,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .signup-form{flex-direction:row}
}

@media(min-width:1100px){
  .hero-copy h1{font-size:2.5rem}
}
