:root{
  --bg:#f5f2ed;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#667085;
  --line:#e6ddd2;
  --accent:#6b1f2b;
  --shadow:0 12px 28px rgba(0,0,0,.08);
  --radius:16px;
  --max:1120px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.narrow{max-width:700px}
.section{padding:56px 0}
.section-sm{padding:36px 0}
.h2{margin:0 0 10px;font-size:clamp(26px,3vw,34px)}
.lead{margin:0 0 20px;color:var(--muted)}
.small{font-size:14px;color:var(--muted)}
.center{text-align:center}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#fff;
  font-weight:650;
}
.btn:hover{opacity:.92}
.btn-ghost{background:var(--accent);color:#fff}

.header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--line);
  background:rgba(245,242,237,.96);
  backdrop-filter:blur(10px);
}
.header-inner{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand img{height:90px;width:auto}

.menu-wrap{position:relative}
.nav-toggle{
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:46px;
  height:42px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{
  width:100%;
  height:2px;
  border-radius:2px;
  background:var(--text);
}
.nav{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:200px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.nav[hidden]{display:none !important}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{background:rgba(107,31,43,.08);color:var(--text)}

.hero-wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.hero-card,.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-size:14px;
}
.hero h1{margin:14px 0 10px;line-height:1.1;font-size:clamp(30px,4vw,46px)}
.hero p{color:var(--muted)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}
.service-tile{
  text-align:left;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:14px;
  font:inherit;
  font-weight:650;
  color:var(--text);
  cursor:pointer;
}
.service-tile:hover,
.service-tile.is-active{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(107,31,43,.1);
}
.service-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.service-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--line);
  background:#f1ece5;
}
.service-media-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.service-media-grid.is-pair{
  grid-template-columns:1fr 1fr;
}
.service-shot{margin:0}
.service-caption{
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
.service-copy h3{margin:0 0 8px}
.service-copy p{margin:0 0 8px;color:var(--muted)}
.service-copy ul{margin:0 0 14px;padding-left:18px}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.hr{height:1px;background:var(--line);margin:14px 0}

form{display:grid;gap:12px}
input,textarea,select{
  width:100%;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  font:inherit;
  background:#fff;
}
textarea{min-height:120px;resize:vertical}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:var(--muted);
  font-size:14px;
}
.row{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}

@media (max-width:900px){
  .hero-wrap,.split,.service-detail{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr 1fr}
  .header-inner{min-height:92px}
  .brand img{height:72px}
  .service-media-grid.is-pair{grid-template-columns:1fr}
}

@media (max-width:640px){
  .service-grid{grid-template-columns:1fr}
  .header-inner{min-height:84px}
  .brand img{height:64px}
}
#services{scroll-margin-top:130px}
