@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

:root{
  --bg:#F7F2E7;
  --surface:#FFFFFF;
  --ink:#2B3320;
  --olive:#3B4F2A;
  --olive-deep:#26331A;
  --terracotta:#C75B39;
  --terracotta-deep:#8A3D26;
  --line:rgba(43,51,32,0.13);
  --font-display:'Fraunces', serif;
  --font-body:'Manrope', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
}
a{color:inherit; text-decoration:none;}
img,svg{display:block; max-width:100%;}
.wrap{max-width:1040px; margin:0 auto; padding:0 28px;}

/* nav */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(247,242,231,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
header.site .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:74px;
}
.logo{
  font-family:var(--font-display);
  font-weight:600;
  font-size:21px;
  color:var(--olive-deep);
}
.logo span{color:var(--terracotta); font-style:italic;}
nav.links{display:flex; gap:26px;}
nav.links a{font-size:14px; font-weight:500; opacity:0.75;}
nav.links a:hover{opacity:1;}
nav.links a.active{opacity:1; border-bottom:2px solid var(--terracotta);}
.call-btn{
  background:var(--olive-deep);
  color:#fff;
  font-size:13px; font-weight:600;
  padding:10px 18px;
  border-radius:5px;
  white-space:nowrap;
}
@media (max-width:680px){ nav.links{display:none;} }

/* hero */
.hero{padding:64px 0 56px;}
.eyebrow{
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--terracotta-deep); font-weight:600; margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.eyebrow::before{content:''; width:18px; height:1px; background:var(--terracotta-deep);}
.hero h1{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(32px,5vw,52px);
  line-height:1.08;
  max-width:680px;
  margin-bottom:18px;
}
.hero h1 em{font-style:italic; color:var(--terracotta);}
.hero p.lede{font-size:17px; max-width:480px; opacity:0.8; margin-bottom:28px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; padding:12px 22px; border-radius:5px;
}
.btn-primary{background:var(--terracotta); color:#fff;}
.btn-ghost{border:1px solid var(--line); color:var(--ink);}

.photo-slot{
  border-radius:10px;
  overflow:hidden;
  min-height:220px;
  background:var(--olive);
}
.photo-slot img{width:100%; height:100%; object-fit:cover; display:block;}
.photo-slot.placeholder{
  background:linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color:#F7F2E7;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  font-size:13px;
  letter-spacing:0.03em;
  padding:20px;
  opacity:0.92;
}
.photo-slot span{opacity:0.7; display:block; margin-top:6px; font-size:12px;}

/* sections */
section{padding:56px 0;}
section.alt{background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
h2.h{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(24px,3.5vw,34px);
  margin-bottom:10px;
}
p.sub{opacity:0.72; max-width:520px; margin-bottom:34px;}

/* info strip */
.info-strip{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
@media (max-width:680px){ .info-strip{grid-template-columns:1fr;} }
.info-card{
  background:var(--surface); border:1px solid var(--line); border-radius:8px; padding:18px 20px;
}
.info-card .label{font-size:11px; text-transform:uppercase; letter-spacing:0.06em; opacity:0.55; margin-bottom:6px; font-weight:600;}
.info-card .val{font-size:15px; font-weight:600;}

/* menu */
.menu-group{margin-bottom:34px;}
.menu-group h3{
  font-family:var(--font-display); font-weight:600; font-size:19px; color:var(--olive-deep);
  margin-bottom:14px; padding-bottom:8px; border-bottom:1px solid var(--line);
}
.menu-item{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
  padding:10px 0; border-bottom:1px dashed var(--line);
}
.menu-item:last-child{border-bottom:none;}
.menu-item .name{font-weight:600; font-size:15px;}
.menu-item .desc{font-size:13px; opacity:0.6; margin-top:2px;}
.menu-item .price{font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--terracotta-deep); white-space:nowrap;}

/* gallery grid */
.photo-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media (max-width:680px){ .photo-grid{grid-template-columns:1fr 1fr;} }
.photo-grid .photo-slot{min-height:140px; font-size:11px;}

/* contact form */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:36px;}
@media (max-width:680px){ .contact-grid{grid-template-columns:1fr;} }
form .field{margin-bottom:16px;}
form label{display:block; font-size:13px; font-weight:600; margin-bottom:6px;}
form input, form textarea{
  width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:6px;
  font-family:var(--font-body); font-size:14px; background:var(--surface); color:var(--ink);
}
form textarea{resize:vertical; min-height:100px;}
.contact-detail{display:flex; align-items:flex-start; gap:12px; margin-bottom:18px;}
.contact-detail .k{font-size:12px; text-transform:uppercase; letter-spacing:0.05em; opacity:0.55; width:80px; flex-shrink:0; padding-top:2px;}
.contact-detail .v{font-weight:600; font-size:15px;}

/* footer */
footer.site{
  background:var(--olive-deep); color:#F7F2E7; padding:36px 0; margin-top:40px;
}
footer.site .wrap{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
}
footer.site .biz{font-family:var(--font-display); font-weight:600; font-size:16px;}
footer.site .credit{font-size:12px; opacity:0.65;}
footer.site .credit a{text-decoration:underline;}
