:root{
  --bg:#f6f1ec;
  --card:#ffffff;
  --ink:#2f2a26;
  --muted:#6f665f;
  --brand:#c9a37a;
  --brand2:#b9d3da;
  --radius:16px;
  --shadow:0 12px 28px rgba(20,16,12,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1000px 500px at 10% 0%, rgba(201,163,122,.18), transparent 55%),
              radial-gradient(900px 450px at 90% 0%, rgba(185,211,218,.18), transparent 55%),
              var(--bg);
  color:var(--ink);
}
a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 20px;}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background: rgba(246,241,236,.78);
  border-bottom:1px solid rgba(47,42,38,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:4px 0;
}
.brand{
  display:flex; gap:14px; align-items:center;
}
.brand img{height:150px; width:auto}
.brand .title{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand .title strong{font-size:15px; letter-spacing:.2px}
.brand .title span{font-size:11px; color:var(--muted)}
.menu{display:flex; gap:18px; align-items:center; font-weight:600; color:var(--muted)}
.menu a{padding:8px 10px; border-radius:10px}
.menu a:hover{background:rgba(47,42,38,.06); color:var(--ink)}
.cta{
  background:var(--brand);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 10px 18px rgba(201,163,122,.28);
}
.cta:hover{filter:brightness(0.98)}
.hero{
  padding:22px 0 6px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(47,42,38,.06);
  color:var(--muted);
  font-weight:600;
  width:fit-content;
}
h1{font-size:44px; margin:14px 0 10px; letter-spacing:-.02em}
@media (max-width: 520px){ h1{font-size:36px} }
.lead{font-size:18px; color:var(--muted); line-height:1.6; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  border:1px solid rgba(47,42,38,.12);
  background:#fff;
}
.btn.primary{background:var(--brand); border-color:transparent; color:#fff}
.btn.primary:hover{filter:brightness(.98)}
.btn:hover{background:rgba(255,255,255,.75)}
.hero-card{
  border-radius:24px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
  border:1px solid rgba(47,42,38,.08);
}
.hero-card img{width:100%; height:auto; display:block}
.strip{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:12px;
  margin-top:18px;
}
@media (max-width: 900px){ .strip{grid-template-columns:repeat(2,1fr)} }
.badge{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(47,42,38,.08);
  border-radius:14px;
  padding:12px 12px;
  display:flex; flex-direction:column; gap:4px;
}
.badge strong{font-size:14px}
.badge span{font-size:12px; color:var(--muted); line-height:1.35}
.section{padding:48px 0}
.section h2{font-size:28px; margin:0 0 10px}
.section p{color:var(--muted); line-height:1.7; margin:0}
.cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
@media (max-width: 900px){ .cards{grid-template-columns:1fr} }
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border:1px solid rgba(47,42,38,.08);
  display:flex; flex-direction:column;
}
.card img{width:100%; height:220px; object-fit:cover; display:block}
.card .body{padding:16px}
.card .body h3{margin:0 0 6px; font-size:18px}
.card .body .meta{font-size:13px; color:var(--muted); margin-bottom:12px}
.card .body .row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  font-size:12px; font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(201,163,122,.16);
  color:#6a4d2e;
}
.form-wrap{
  margin-top:18px;
  background:var(--card);
  border-radius:24px;
  border:1px solid rgba(47,42,38,.08);
  box-shadow: var(--shadow);
  padding:22px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){ .grid2{grid-template-columns:1fr} }
label{display:block; font-weight:700; font-size:13px; margin:10px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(47,42,38,.14);
  background:rgba(255,255,255,.85);
  font-size:14px;
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color:rgba(201,163,122,.9); box-shadow:0 0 0 4px rgba(201,163,122,.18)}
.small{font-size:12px; color:var(--muted); line-height:1.55}
.notice{
  background:rgba(185,211,218,.22);
  border:1px solid rgba(185,211,218,.55);
  padding:12px 14px;
  border-radius:14px;
  margin-top:14px;
  color:#2c4a52;
  font-size:13px;
  line-height:1.55;
}
.checkbox{
  display:flex; gap:10px; align-items:flex-start;
  margin-top:12px;
}
.checkbox input{width:18px; height:18px; margin-top:3px}
.footer{
  padding:26px 0;
  border-top:1px solid rgba(47,42,38,.08);
  background:rgba(255,255,255,.35);
}
.footer .links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:600}
.gallery{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 900px){ .gallery{grid-template-columns:repeat(2,1fr)} }
.gallery img{width:100%; height:180px; object-fit:cover; border-radius:14px; border:1px solid rgba(47,42,38,.08)}
.hr{height:1px; background:rgba(47,42,38,.08); margin:18px 0}

@media (max-width: 520px){
  .brand img{height:95px}
  .brand .title strong{font-size:14px}
  .brand .title span{font-size:10.5px}
}



/* Hero image: keep above-the-fold tighter */
.hero-card img{
  max-height: 380px;
  object-fit: cover;
}
@media (max-width: 900px){
  .hero-card img{max-height: 320px}
}

