
:root{
  --brand: #3E6B4C;
  --brand-dark:#2F523A;
  --accent:#C8A35D;
  --bg:#F7F3EA;
  --surface:#FFFFFF;
  --muted:#5A6B61;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1100px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#1f2a24;
  background: radial-gradient(1200px 900px at 20% -10%, rgba(62,107,76,.14), transparent 55%),
              radial-gradient(900px 700px at 100% 0%, rgba(200,163,93,.14), transparent 55%),
              var(--bg);
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
p{line-height:1.6; color:var(--muted)}
h1,h2,h3{font-family:"Playfair Display", Georgia, serif; margin:0 0 .4rem}
h2{font-size:2rem}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:100;
  background: rgba(247,243,234,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(62,107,76,.18);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:260px;
}
.brand-mark{
  width:52px; height:52px; border-radius:16px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(62,107,76,.20);
  display:grid; place-items:center;
  overflow:hidden;
}
.brand-mark img{width:100%; height:100%; object-fit:contain; padding:6px}
.brand-name{display:flex; flex-direction:column; line-height:1.1}
.brand-name .title{font-family:"Playfair Display", Georgia, serif; font-size:1.15rem; letter-spacing:.5px}
.brand-name .subtitle{font-size:.78rem; color:var(--muted)}
.navlinks{display:flex; flex-wrap:wrap; align-items:center; gap:18px}
.navlinks a{padding:9px 10px;border-radius:12px}
.navlinks a.active{background: rgba(62,107,76,.10);border:1px solid rgba(62,107,76,.18)}
.cta{display:flex; gap:10px; align-items:center; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(62,107,76,.24);
  background: rgba(255,255,255,.60);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  font-weight:600;
}
.btn.primary{
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  color:#fff;
  border-color: rgba(0,0,0,.0);
}
.btn.primary:hover{filter:brightness(1.02)}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(62,107,76,.20);
  background: rgba(255,255,255,.65);
  color:var(--muted);
}

.hero{padding:58px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.card{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(62,107,76,.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy{padding:34px}
.hero-copy h1{font-size:3rem}
.hero-copy .lead{font-size:1.05rem; max-width:52ch}
.hero-copy .actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-img{overflow:hidden; position:relative; min-height:340px}
.hero-img img{width:100%; height:100%; object-fit:cover; display:block}
.section{padding:34px 0}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:14px; margin-bottom:16px}
.grid3{display:grid; gap:16px; grid-template-columns: repeat(3, 1fr)}
.feature{padding:18px}
.feature h3{font-size:1.3rem}
.feature .icon{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(200,163,93,.14);
  border:1px solid rgba(200,163,93,.22);
  margin-bottom:12px;
}
.feature .icon span{
  width:18px; height:18px; display:block;
  border-radius:6px;
  background: linear-gradient(145deg, var(--accent), rgba(62,107,76,.35));
}
.split{display:grid; gap:18px; grid-template-columns: .95fr 1.05fr; align-items:stretch}
.split .media{overflow:hidden}
.split .media img{width:100%; height:100%; object-fit:cover; display:block}
.split .content{padding:20px}
.contact{padding:20px}
.contact .rows{display:grid; gap:10px; margin-top:10px}
.row{
  display:flex; align-items:flex-start; gap:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(62,107,76,.14);
  background: rgba(255,255,255,.6);
}
.row strong{display:block}
.row small{color:var(--muted)}
.footer{margin-top:30px; padding:22px 0; border-top:1px solid rgba(62,107,76,.18); color:var(--muted)}
.footer-grid{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer a{color:var(--brand-dark); font-weight:600}
.table{width:100%; border-collapse:collapse; margin-top:8px}
.table td{padding:10px 0; border-bottom:1px solid rgba(0,0,0,.08)}
.table td:last-child{text-align:right; font-weight:800; color:var(--brand-dark)}
/* Bigger vertical bullets */
.bullets{margin: 14px 0 0; padding: 0; list-style: none}
.bullets li{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 14px; margin:10px 0;
  border-radius:14px;
  border:1px solid rgba(62,107,76,.14);
  background: rgba(255,255,255,.6);
  font-size:1.05rem;
}
.bullets li .dot{
  width:12px; height:12px; margin-top:6px;
  border-radius:4px;
  background: linear-gradient(145deg, var(--accent), rgba(62,107,76,.35));
  flex:0 0 auto;
}
/* Gallery + lightbox */
.gallery-grid{display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:14px}
.gallery-grid a{display:block}
.gallery-grid img{
  width:100%; height:220px; object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(62,107,76,.14);
  background:#fff;
}
.lb-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  display:none; align-items:center; justify-content:center;
  z-index:9999; padding:18px;
}
.lb-backdrop.open{display:flex}
.lb-backdrop img{
  max-width:min(1100px, 96vw);
  max-height:92vh;
  border-radius:18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  background:#fff;
}
.lb-close{
  position:fixed; top:14px; right:16px;
  font-size:30px; color:#fff;
  cursor:pointer; user-select:none;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .hero-copy h1{font-size:2.4rem}
  .brand{min-width:auto}
}

/* Specials page */
.special-hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.special-hero .copy{padding:26px}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(200,163,93,.35);
  background: rgba(255,255,255,.65);
  font-weight:700;
  color: var(--brand-dark);
}
.big-price{
  font-family:"Playfair Display", Georgia, serif;
  font-size:3.1rem;
  margin:10px 0 0;
  color: var(--brand-dark);
}
.note{
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(62,107,76,.14);
  background: rgba(255,255,255,.6);
}
@media (max-width: 920px){
  .special-hero{grid-template-columns:1fr}
}
