:root{
  --bg:#fbf4ea;
  --paper:#ffffff;
  --text:#1f1a16;
  --muted:#6f635b;
  --accent:#8b1e2d;
  --accent2:#c8a25a;
  --border:rgba(31,26,22,.10);
  --shadow: 0 10px 30px rgba(31,26,22,.10);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  color:var(--text);
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(200,162,90,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(139,30,45,.16), transparent 55%),
    var(--bg);
}

.wrap{
  width:min(1040px, calc(100% - 32px));
  margin:0 auto;
}

.hero{padding:18px 0 0}
main{padding:14px 0 34px}

/* HERO BANNER */
.hero-banner{
  border-radius: 26px;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)),
    url("hero.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 340px at 20% 0%, rgba(200,162,90,.18), transparent 60%),
    radial-gradient(700px 340px at 80% 10%, rgba(139,30,45,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65));
}

.hero-content{
  position:relative;
  padding: 22px;
  color:#fff;
}

.brand-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

/* Logo area + fallback */
.logo-wrap{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.logo-img{
  width:64px;
  height:auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.5));
}
.logo-wrap.logo-fallback{
  border-radius:16px;
  background: rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.18);
  font-weight: 1000;
  letter-spacing:.6px;
  color:#fff;
  text-shadow: 0 4px 10px rgba(0,0,0,.55);
}

h1{
  margin:0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height:1.1;
}
.h1-sub{
  display:block;
  margin-top:6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.subtitle{
  margin:7px 0 6px;
  font-size: 15px;
  color: rgba(255,255,255,.88);
}
.meta{
  margin:0;
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
}

.primary-cta{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.muted{color:var(--muted)}
.small{font-size:12.5px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  text-decoration:none;
  font-weight:800;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  backdrop-filter: blur(6px);
  cursor:pointer;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #6d1320);
  border-color: rgba(0,0,0,0);
}
.btn-soft{
  background: rgba(255,255,255,.08);
}
.btn-cta{
  padding: 13px 16px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

/* Featured strip */
.featured-strip{
  margin-top:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  padding:12px;
}
.featured-title{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom:8px;
}
.featured-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.fchip{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  font-weight: 850;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

/* CONTACT (number once + icon actions) */
.contact-wrap{
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.contact-left{
  min-width: 240px;
}

.contact-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.contact-number{
  font-size: 20px;
  font-weight: 950;
  margin-top: 4px;
}

.contact-note{
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  margin-top: 2px;
}

.contact-actions{
  display:flex;
  gap:10px;
  flex: 0 0 auto;
}

/* Icon buttons */
.icon-btn{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  transition: transform .1s ease, background .15s ease, border-color .15s ease;
  backdrop-filter: blur(6px);
}
.icon-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}
.icon-btn svg{
  width:22px;
  height:22px;
  fill: rgba(255,255,255,.94);
}
.icon-btn.wa{
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: transparent;
}

/* Quick nav pills */
.quick-links{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  padding:9px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  backdrop-filter: blur(6px);
}
.pill:hover{border-color: rgba(255,255,255,.30)}

/* BODY CARDS */
.card{
  background: var(--paper);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding:18px;
  margin:14px 0;
}
.card h2{
  margin:0 0 10px;
  font-size:20px;
}

.steps{margin:0; padding-left:18px}
.steps li{margin:8px 0}

.note{
  margin-top:12px;
  background:#fff7ea;
  border:1px solid rgba(200,162,90,.45);
  border-left:5px solid var(--accent2);
  padding:12px;
  border-radius:14px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 860px){
  .grid-2{grid-template-columns:1fr}
}

/* Info grid for “What you get” */
.info-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 860px){
  .info-grid{grid-template-columns:1fr}
}
.info-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  position:relative;
}
.info-box:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  pointer-events:none;
  border:1px solid rgba(200,162,90,.22);
}
.info-box h3{
  margin:0 0 6px;
  font-size:16px;
}
.info-box p{margin:0}

.bullets{margin:0; padding-left:18px}
.bullets li{margin:8px 0}

.chips{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chips li{
  background:#fff7ea;
  border:1px solid rgba(200,162,90,.45);
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
  font-size:13px;
}

.price-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:12px;
}
@media (max-width: 860px){
  .price-grid{grid-template-columns:1fr}
}

.price-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  position:relative;
}
.price-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  pointer-events:none;
  border:1px solid rgba(200,162,90,.25);
}
.price-card h3{
  margin:0 0 6px;
  font-size:16px;
}
.price-card p{margin:6px 0}

.actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* PROMO SECTIONS */
.promo-card h3{
  margin:0 0 10px;
  font-size:16px;
}
.promo-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:#fff7ea;
  border:1px solid rgba(200,162,90,.55);
  font-weight:900;
  font-size:12.5px;
  color:#6d1320;
}
.price-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), #6d1320);
  color:#fff;
  font-weight:950;
  letter-spacing:.2px;
  box-shadow: 0 10px 22px rgba(31,26,22,.12);
}
.promo-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:12px;
}
@media (max-width: 860px){
  .promo-grid{grid-template-columns:1fr}
}
.promo-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  position:relative;
}
.promo-box:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  pointer-events:none;
  border:1px solid rgba(200,162,90,.22);
}

/* Dessert Bar layout */
.dessert-layout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  margin-top:12px;
}
@media (max-width: 860px){
  .dessert-layout{grid-template-columns:1fr}
}
.dessert-menu,
.dessert-details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  position:relative;
}
.dessert-menu:before,
.dessert-details:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  pointer-events:none;
  border:1px solid rgba(200,162,90,.22);
}
.dessert-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.dessert-item{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background:#fff7ea;
  border:1px solid rgba(200,162,90,.45);
  font-weight:850;
  font-size:13px;
  color:#2a211c;
}

/* Quick order template */
.template-wrap{
  margin-top:10px;
}
.template-box{
  width:100%;
  border-radius:16px;
  border:1px solid var(--border);
  padding:12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13.5px;
  line-height: 1.35;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31,26,22,.06);
  resize: vertical;
}
.template-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* simple gallery placeholders */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
@media (max-width: 860px){
  .gallery{grid-template-columns: repeat(2, 1fr)}
}
.ph{
  height:110px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(139,30,45,.08), rgba(200,162,90,.16));
  border:1px dashed rgba(139,30,45,.25);
  display:grid;
  place-items:center;
  font-weight:900;
  color:#6d1320;
}

.footer{
  padding:18px 0 28px;
  color: var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer a{color: var(--accent); text-decoration:underline}

/* Mobile */
@media (max-width: 780px){
  .brand-row{flex-direction:column}
  .contact-card{flex-direction:column; align-items:flex-start}
  .contact-actions{padding-top:6px}
}
