:root{
  --bg:#f7f1e7;
  --bg-soft:#fcf8f1;
  --card:#ffffff;
  --ink:#151515;
  --muted:#666666;
  --gold:#efbc35;
  --gold-deep:#cf9310;
  --line:#e7d6b7;
  --dark:#141414;
  --radius:28px;
  --radius-lg:40px;
  --shadow:0 20px 56px rgba(0,0,0,0.08);
  --max:1260px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,"PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top right, rgba(239,188,53,0.18), transparent 22%),
    radial-gradient(circle at 10% 18%, rgba(239,188,53,0.08), transparent 18%),
    var(--bg);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(247,241,231,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(20,20,20,0.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:16px;
  background:#f4c619;
  padding:4px;
  box-shadow:0 10px 26px rgba(207,147,16,0.18);
}

.brand .title{
  font-size:18px;
  font-weight:950;
  letter-spacing:0.2px;
}

.brand .sub{
  font-size:12px;
  color:#7b6844;
  margin-top:2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.nav-links a{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.45px;
  opacity:0.82;
}

.nav-links a:hover,
.nav-links a.active{
  opacity:1;
  color:var(--gold-deep);
}

.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.4px;
  transition:0.18s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-dark{
  background:var(--dark);
  color:#fff;
}

.btn-gold{
  background:var(--gold);
  color:#111;
}

.btn-light{
  background:#fff;
  color:#111;
  border-color:rgba(20,20,20,0.08);
}

.btn-outline{
  background:transparent;
  border-color:rgba(20,20,20,0.12);
  color:#111;
}

/* MAIN */
main{
  min-height:60vh;
}

/* HERO */
.hero-store{
  position:relative;
  min-height:86vh;
  display:flex;
  align-items:center;
  background:url('img/westend-store.webp') center/cover no-repeat;
}

.hero-store::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.48) 40%, rgba(0,0,0,0.28));
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:60px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 0.6fr;
  gap:20px;
  align-items:end;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(239,188,53,0.16);
  border:1px solid rgba(239,188,53,0.38);
  font-size:12px;
  font-weight:900;
  letter-spacing:0.35px;
  color:#f5d26b;
}

.hero-title{
  margin:18px 0 14px;
  font-size:clamp(44px,7vw,84px);
  line-height:0.93;
  letter-spacing:-3px;
  font-weight:950;
}

.hero-title span{
  display:block;
  color:#f3c94a;
}

.hero-lead{
  max-width:660px;
  margin:0;
  color:rgba(255,255,255,0.85);
  font-size:17px;
  line-height:1.9;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.statline{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.statpill{
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  font-size:12px;
  font-weight:800;
  color:#fff;
}

.floating-card{
  background:rgba(20,20,20,0.72);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  border-radius:30px;
  padding:22px;
  box-shadow:var(--shadow);
}

.floating-card h3{
  margin:0;
  font-size:26px;
  letter-spacing:-1px;
}

.floating-card .price{
  font-size:38px;
  font-weight:950;
  color:#f3c94a;
  margin-top:8px;
}

.floating-card p{
  margin:10px 0 0;
  color:rgba(255,255,255,0.82);
  line-height:1.8;
}

/* COMMON SECTION */
.section{
  padding:30px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:end;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:40px;
  line-height:1.02;
  letter-spacing:-1.7px;
}

.section-head p{
  margin:0;
  max-width:650px;
  color:var(--muted);
  line-height:1.85;
}

.page-hero{
  padding:40px 0 16px;
}

.page-hero h1{
  margin:0;
  font-size:56px;
  letter-spacing:-2px;
}

.page-hero p{
  max-width:760px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:12px 0 0;
}

/* GRIDS */
.feature-grid,
.grid-3,
.grid-4,
.dual-grid,
.stores-grid,
.contact-grid,
.footer-grid{
  display:grid;
  gap:16px;
}

.grid-3{
  grid-template-columns:repeat(3, 1fr);
}

.grid-4,
.feature-grid{
  grid-template-columns:repeat(4, 1fr);
}

.dual-grid,
.stores-grid,
.contact-grid{
  grid-template-columns:repeat(2, 1fr);
}

/* GENERIC CARD */
.card,
.photo-card,
.menu-card,
.contact-card,
.review-card,
.hours-card,
.quote-card{
  background:#fff;
  border:1px solid rgba(20,20,20,0.08);
  border-radius:32px;
  box-shadow:var(--shadow);
}

/* FEATURE CARDS */
.feature{
  padding:24px;
}

.feature .icon{
  width:58px;
  height:58px;
  border-radius:20px;
  background:#171717;
  color:var(--gold);
  display:grid;
  place-items:center;
  font-size:25px;
}

.feature h3{
  margin:18px 0 8px;
  font-size:23px;
  letter-spacing:-0.8px;
}

.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}

/* PHOTO CARDS */
.photo-card{
  overflow:hidden;
}

.photo-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.photo-card .body{
  padding:18px;
  min-height:110px;
}

.photo-card .body h3{
  margin:0;
  font-size:24px;
  letter-spacing:-0.8px;
}

.photo-card .body p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

/* MENU CARDS */
.menu-card{
  overflow:hidden;
}

.menu-cover{
  position:relative;
}

.menu-cover img{
  width:100%;
  height:260px;
  object-fit:cover;
  background:#f3e8d1;
}

.chips{
  position:absolute;
  top:14px;
  left:14px;
  display:flex;
  gap:8px;
}

.chip{
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:0.28px;
}

.chip.dark{
  background:rgba(20,20,20,0.8);
  color:#f3d36b;
}

.chip.light{
  background:rgba(255,255,255,0.92);
  color:#111;
}

.menu-body{
  padding:18px;
  min-height:110px;
}

.menu-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
}

.menu-row h3{
  margin:0;
  font-size:22px;
  letter-spacing:-0.8px;
}

.price{
  font-size:22px;
  white-space:nowrap;
  color:var(--gold-deep);
  font-weight:950;
}

.menu-body p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

/* STORE CARDS */
.store-card{
  background:#171717;
  color:#fff;
  border-radius:36px;
  padding:28px;
  box-shadow:0 20px 56px rgba(0,0,0,0.16);
}

.store-top{
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:14px;
}

.store-loc{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.38px;
  color:#f3cf64;
}

.store-card h3{
  margin:10px 0 0;
  font-size:34px;
  letter-spacing:-1.2px;
}

.store-meta{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.store-meta div{
  font-size:14px;
  color:rgba(255,255,255,0.83);
  line-height:1.82;
}

.store-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

/* CONTACT / HOURS */
.contact-card,
.hours-card,
.review-card{
  padding:28px;
}

.contact-card h3,
.hours-card h3{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-1px;
}

.contact-card p,
.hours-card p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}

.notice{
  margin-top:16px;
  padding:16px 18px;
  border-radius:22px;
  background:#fff4cf;
  border:1px solid #ecd791;
  color:#5f4f22;
  font-size:14px;
  line-height:1.75;
}

.map-links{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px dashed var(--line);
}

.hours-row:last-child{
  border-bottom:none;
}

.hours-row strong{
  font-size:15px;
}

.hours-row span{
  white-space:nowrap;
  color:var(--gold-deep);
  font-weight:900;
}

/* REVIEW / QUOTE */
.review-card .stars{
  color:var(--gold-deep);
  font-weight:950;
  letter-spacing:1px;
  margin-bottom:8px;
}

.review-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.review-card strong{
  display:block;
  margin-top:10px;
}

.quote-card{
  padding:28px;
  background:#171717;
  color:#fff;
}

.quote-card h3{
  margin:0;
  font-size:30px;
  letter-spacing:-1px;
}

.quote-card p{
  margin:12px 0 0;
  color:rgba(255,255,255,0.8);
  line-height:1.9;
}

/* MENU IMAGE */
.full-menu{
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(20,20,20,0.08);
  box-shadow:var(--shadow);
}

.full-menu img{
  width:100%;
  height:auto;
}

/* GALLERY */
.gallery-masonry{
  display:grid;
  grid-template-columns:1.05fr 0.95fr 0.95fr;
  gap:16px;
}

.gallery-masonry .tall{
  grid-row:span 2;
}

.gallery-masonry img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--shadow);
  min-height:250px;
}

/* TABLE */
.table-wrap{
  background:#fff;
  border:1px solid rgba(20,20,20,0.08);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.table{
  width:100%;
  border-collapse:collapse;
}

.table th,
.table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(20,20,20,0.08);
  text-align:left;
  font-size:14px;
  vertical-align:top;
}

.table th{
  font-size:12px;
  letter-spacing:0.3px;
  color:var(--muted);
}

/* FOOTER */
.footer{
  margin-top:30px;
  background:#151515;
  color:#fff;
  padding:38px 0 16px;
}

.footer-grid{
  grid-template-columns:1.12fr 0.88fr 0.8fr;
}

.footer h4{
  margin:0 0 12px;
  font-size:13px;
  color:#f1c755;
  letter-spacing:0.35px;
}

.footer .brand-title{
  font-size:31px;
  font-weight:950;
  letter-spacing:-1px;
}

.footer p,
.footer a,
.footer div{
  font-size:14px;
  line-height:1.92;
  color:#d4d4d4;
}

.subnote{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:12px;
  color:#b8b8b8;
}

/* RESPONSIVE */
@media (max-width:1080px){
  .nav-links{
    display:none;
  }

  .hero-grid,
  .grid-4,
  .feature-grid,
  .grid-3,
  .dual-grid,
  .stores-grid,
  .contact-grid,
  .footer-grid,
  .gallery-masonry{
    grid-template-columns:1fr 1fr;
  }

  .gallery-masonry .tall{
    grid-row:auto;
  }
}

@media (max-width:760px){
  .hero-store{
    min-height:78vh;
  }

  .hero-grid,
  .grid-4,
  .feature-grid,
  .grid-3,
  .dual-grid,
  .stores-grid,
  .contact-grid,
  .footer-grid,
  .gallery-masonry{
    grid-template-columns:1fr;
  }

  .nav-cta .btn-outline{
    display:none;
  }

  .hero-title{
    font-size:44px;
  }

  .page-hero h1,
  .section-head h2{
    font-size:32px;
  }

  .section-head{
    display:block;
  }

  .section-head h2{
    margin-bottom:10px;
  }

  .brand img{
    width:50px;
    height:50px;
  }

  .btn{
    padding:12px 18px;
  }
}