:root{
  --bg:#FFF7ED;
  --text:#1F2937;
  --accent:#C2410C;
  --secondary:#854D0E;
  --card:rgba(255,255,255,.65);
  --stroke:rgba(31,41,55,.16);
  --shadow:0 14px 40px rgba(31,41,55,.12);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji";
  line-height:1.35;
  letter-spacing:.2px;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; display:block}
iframe{border:0; width:100%}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:10px;
  z-index:9999;
}

.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(1.1) blur(10px);
  background:rgba(255,247,237,.72);
  border-bottom:1px solid var(--stroke);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
  color:var(--text);
}
.brand-title{
  font-size:18px;
  font-weight:800;
  letter-spacing:.3px;
}
.brand-sub{
  font-size:12px;
  opacity:.78;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color:var(--text);
  font-weight:700;
  font-size:16px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a[aria-current="page"]{
  background:rgba(194,65,12,.12);
  color:var(--secondary);
}

.burger{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.55);
  border:1px solid var(--stroke);
  box-shadow:0 8px 18px rgba(31,41,55,.08);
  cursor:pointer;
}
.burger-lines{
  width:22px;
  height:2px;
  background:var(--text);
  position:relative;
  display:block;
  border-radius:999px;
}
.burger-lines:before,
.burger-lines:after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:999px;
}
.burger-lines:before{top:-7px}
.burger-lines:after{top:7px}

.hero{
  padding:40px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.kicker{
  margin:0 0 10px;
  font-weight:900;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1.1px;
  color:var(--secondary);
}
h1{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  font-size:18px;
  opacity:.92;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  font-size:16px;
  border:1px solid rgba(194,65,12,.22);
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 26px rgba(194,65,12,.22);
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{text-decoration:none; filter:saturate(1.05) brightness(.98)}
.btn-ghost{
  background:rgba(255,255,255,.65);
  color:var(--secondary);
  border:1px solid var(--stroke);
  box-shadow:0 10px 24px rgba(31,41,55,.10);
}
.meta-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:18px;
}
.meta-box{
  background:rgba(255,255,255,.55);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px 12px;
}
.meta-label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
  opacity:.78;
}
.meta-value{
  font-size:16px;
  font-weight:800;
  margin-top:6px;
}

.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  min-height:360px;
}
.media-img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.section{
  padding:34px 0;
}
.section-head{
  margin-bottom:16px;
}
.section-head h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.4px;
}
.section-head .lead{margin:0}

.post{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.post-header h2{
  margin:0 0 10px;
  font-size:36px;
  line-height:1.1;
}
.post-meta{
  margin:0;
  font-size:14px;
  opacity:.82;
}
.post-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
  align-items:stretch;
}
.post-body h3{
  margin:14px 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}
.menu-list{
  list-style:none;
  padding:0;
  margin:0 0 10px;
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.55);
}
.menu-list li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-top:1px solid rgba(31,41,55,.10);
  font-size:16px;
}
.menu-list li:first-child{border-top:0}
.menu-list li span:last-child{
  font-weight:900;
  color:var(--secondary);
  white-space:nowrap;
}
.note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(133,77,14,.35);
  background:rgba(255,255,255,.50);
  font-size:14px;
  opacity:.88;
}

.post-media{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--stroke);
  min-height:320px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.55);
  box-shadow:0 14px 32px rgba(31,41,55,.10);
}
.card-img{
  height:210px;
  width:100%;
  object-fit:cover;
}
.card-body{
  padding:14px 14px 16px;
}
.card-body h3{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-.2px;
}
.card-body p{
  margin:0 0 10px;
  opacity:.9;
  font-size:16px;
}
.price{
  font-weight:950;
  color:var(--secondary);
  font-size:18px;
}

.story{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.story-copy{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.story-copy h2{
  margin:0 0 12px;
  font-size:36px;
  line-height:1.1;
}
.story-copy p{font-size:16px; opacity:.94}
.story-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.story-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.quote{
  margin:0;
  background:rgba(255,255,255,.55);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:18px 16px;
  box-shadow:0 10px 24px rgba(31,41,55,.08);
}
.quote blockquote{
  margin:0;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.15px;
  line-height:1.25;
}
.quote figcaption{
  margin-top:12px;
  font-size:14px;
  opacity:.78;
}

.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.info-box{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.info-box h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.12;
}
.hours{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.55);
}
.hours li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-top:1px solid rgba(31,41,55,.10);
  font-size:16px;
}
.hours li:first-child{border-top:0}
.hours li span:last-child{
  font-weight:900;
  color:var(--secondary);
  white-space:nowrap;
}
.muted{opacity:.75}
.map{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.55);
}
.map iframe{height:260px}
.map.big iframe{height:440px}

.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.contact-card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.contact-card h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.12;
}
.contact-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}
.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
label{
  display:grid;
  gap:8px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.5px;
}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,41,55,.18);
  background:rgba(255,255,255,.70);
  font-size:16px;
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{
  border-color:rgba(194,65,12,.55);
  box-shadow:0 0 0 4px rgba(194,65,12,.15);
}
.form-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}

.cookie-banner-wrap{
  padding-top:0;
}
.cookie-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(133,77,14,.22);
  background:rgba(255,255,255,.65);
  box-shadow:0 12px 28px rgba(31,41,55,.10);
}
.cookie-text{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:14px;
}
.cookie-text strong{
  font-size:14px;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.site-footer{
  border-top:1px solid var(--stroke);
  padding:22px 0;
  margin-top:18px;
  background:rgba(255,247,237,.70);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--text);
  font-weight:800;
  opacity:.88;
}

.page{
  padding:32px 0 22px;
}
.page-head{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  margin-bottom:16px;
}
.page-head h1{
  font-size:44px;
  margin:0 0 10px;
}
.mini{
  background:rgba(255,255,255,.50);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 24px rgba(31,41,55,.06);
  margin-bottom:16px;
}
.mini h2{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.15;
}
.wide-media{
  padding:0;
  overflow:hidden;
}
.wide-media .media-img{
  height:360px;
}

.info-slab{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-panel{
  background:rgba(255,255,255,.55);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:16px;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.contact-list li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(31,41,55,.12);
  border-radius:14px;
  font-size:16px;
}
.contact-list li span:first-child{
  font-weight:900;
  opacity:.78;
}
.legal p, .legal li{font-size:16px}
.bullets{margin:0; padding-left:18px}
.bullets li{margin:6px 0}

@media (max-width: 980px){
  .hero-grid, .post-grid, .story, .info-grid, .contact-grid{grid-template-columns:1fr}
  .hero-media{min-height:260px}
  .cards{grid-template-columns:1fr}
  .quotes{grid-template-columns:1fr}
  .wide-media .media-img{height:300px}
  .info-slab, .contact-split{grid-template-columns:1fr}
}

@media (max-width: 860px){
  .burger{display:inline-flex}
  .nav{
    position:absolute;
    right:20px;
    top:64px;
    width:min(420px, calc(100% - 40px));
    background:rgba(255,255,255,.80);
    border:1px solid var(--stroke);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav a{padding:12px 12px; font-size:18px}
  .nav.is-open{display:flex}
}

@media (max-width: 560px){
  h1{font-size:36px}
  .post-header h2{font-size:32px}
  .section-head h2{font-size:30px}
  .page-head h1{font-size:38px}
}
