*{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#ffffff;
  --text:#171717;
  --muted:#6d6d6d;
  --line:#e9e9e9;
  --soft:#f7f7f3;
  --accent:#f2c94c;
}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}
.nav{height:78px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  background:#111;color:#fff;display:grid;place-items:center;
  font-weight:800;font-size:14px;letter-spacing:.5px;
}
.brand strong{display:block;font-size:15px;line-height:1.1}
.brand small{display:block;color:var(--muted);font-size:11px;margin-top:3px;letter-spacing:.8px;text-transform:uppercase}
.nav-links{display:flex;gap:30px;font-size:14px}
.nav-links a{position:relative;padding:8px 0}
.nav-links a:after{
  content:"";position:absolute;left:0;bottom:2px;width:0;height:1px;background:#111;transition:.25s;
}
.nav-links a:hover:after{width:100%}
.menu-toggle{display:none;border:0;background:transparent;font-size:24px;cursor:pointer}

.hero{padding:90px 0 70px}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.eyebrow{
  display:inline-block;font-size:12px;font-weight:700;letter-spacing:1.8px;
  text-transform:uppercase;color:#777;margin-bottom:18px;
}
.hero h1{
  font-size:clamp(52px,7vw,88px);
  line-height:.95;letter-spacing:-4px;font-weight:800;
}
.hero-copy p{max-width:610px;margin:28px 0;color:var(--muted);font-size:17px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  min-height:48px;padding:0 22px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;transition:.2s;
}
.btn-dark{background:#111;color:#fff}
.btn-dark:hover{transform:translateY(-2px);background:#2c2c2c}
.btn-light{border:1px solid var(--line);background:#fff}
.btn-light:hover{background:var(--soft)}

.hero-card{
  min-height:520px;background:var(--soft);border-radius:32px;
  padding:44px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  border:1px solid #efefe9;
}
.burger-art{width:min(360px,90%);filter:drop-shadow(0 25px 18px rgba(0,0,0,.10))}
.burger-art>div{margin:auto}
.bun{background:linear-gradient(#e9ad52,#cf8530)}
.top{height:100px;border-radius:150px 150px 38px 38px;position:relative}
.top:before{
  content:"";position:absolute;inset:25px 45px;
  background-image:radial-gradient(#fff6d7 2px,transparent 2px);
  background-size:26px 18px;opacity:.85;
}
.lettuce{height:28px;width:104%;margin-left:-2%!important;background:#6b993f;border-radius:40% 55% 40% 60%}
.cheese{height:34px;width:92%;background:#f4c542;clip-path:polygon(0 0,100% 0,92% 55%,82% 35%,70% 80%,52% 45%,35% 90%,18% 40%,0 65%)}
.patty{height:65px;width:96%;background:linear-gradient(#5a2b1e,#32170f);border-radius:24px}
.sauce{height:16px;width:85%;background:#efe7d0;border-radius:50px}
.bottom{height:65px;border-radius:25px 25px 70px 70px}
.hero-card-text{text-align:center;margin-top:36px}
.hero-card-text span{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:#777}
.hero-card-text strong{display:block;font-size:24px;margin-top:3px}
.hero-card-text p{color:var(--muted);font-size:14px;margin-top:3px}

.highlights{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.highlight-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.highlight-grid article{padding:36px 30px;border-right:1px solid var(--line)}
.highlight-grid article:first-child{padding-left:0}
.highlight-grid article:last-child{border-right:0}
.highlight-grid span{font-size:11px;color:#aaa}
.highlight-grid h3{font-size:18px;margin:8px 0 5px}
.highlight-grid p{font-size:14px;color:var(--muted);max-width:300px}

.menu-section{padding:110px 0}
.section-heading{display:grid;grid-template-columns:1.2fr .8fr;gap:60px;align-items:end;margin-bottom:55px}
.section-heading h2,.story-copy h2,.cta h2{
  font-size:clamp(38px,5vw,64px);line-height:1.02;letter-spacing:-2.5px;
}
.section-heading p{color:var(--muted);font-size:15px;max-width:460px}
.menu-grid{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid var(--line)}
.menu-item{
  display:grid;grid-template-columns:55px 1fr;gap:20px;
  padding:32px 28px 32px 0;border-bottom:1px solid var(--line);
}
.menu-item:nth-child(odd){border-right:1px solid var(--line)}
.menu-item:nth-child(even){padding-left:28px}
.menu-number{font-size:12px;color:#aaa}
.menu-item h3{font-size:20px;margin-bottom:6px}
.menu-item p{color:var(--muted);font-size:14px;max-width:430px}

.story{padding:0 0 110px}
.story-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:center}
.story-panel{
  min-height:510px;border-radius:28px;background:#111;
  display:grid;place-items:center;overflow:hidden;
}
.big-letter{
  font-family:Georgia,serif;font-size:320px;line-height:1;color:#fff;
  transform:translateY(-8px);
}
.story-copy p{color:var(--muted);margin-top:24px;max-width:650px}

.cta{padding:0 0 70px}
.cta-box{
  background:var(--soft);border:1px solid #efefe9;border-radius:28px;
  padding:55px;display:flex;align-items:center;justify-content:space-between;gap:40px;
}
.cta h2{font-size:clamp(34px,4vw,54px)}

footer{border-top:1px solid var(--line)}
.footer-inner{
  min-height:100px;display:flex;align-items:center;justify-content:space-between;
  gap:20px;color:#888;font-size:12px;
}

@media(max-width:850px){
  .hero{padding-top:55px}
  .hero-grid,.section-heading,.story-grid{grid-template-columns:1fr}
  .hero-grid,.story-grid{gap:45px}
  .hero-card{min-height:430px}
  .highlight-grid{grid-template-columns:1fr}
  .highlight-grid article,.highlight-grid article:first-child{padding:26px 0;border-right:0;border-bottom:1px solid var(--line)}
  .highlight-grid article:last-child{border-bottom:0}
  .menu-grid{grid-template-columns:1fr}
  .menu-item:nth-child(odd){border-right:0}
  .menu-item:nth-child(even){padding-left:0}
  .story-panel{min-height:390px}
  .big-letter{font-size:240px}
  .cta-box{align-items:flex-start;flex-direction:column}
}
@media(max-width:650px){
  .container{width:min(100% - 28px,1180px)}
  .nav{height:68px}
  .menu-toggle{display:block}
  .nav-links{
    display:none;position:absolute;left:14px;right:14px;top:74px;
    flex-direction:column;gap:0;background:#fff;border:1px solid var(--line);
    border-radius:18px;padding:12px;box-shadow:0 18px 50px rgba(0,0,0,.08)
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:12px}
  .hero h1{letter-spacing:-2.5px}
  .hero-card{padding:28px;min-height:400px;border-radius:24px}
  .menu-section{padding:80px 0}
  .cta-box{padding:34px 25px}
  .footer-inner{padding:25px 0;flex-direction:column;align-items:flex-start}
}
