/* =========================================================
   THE GENTLE BUILD — MASTER STYLESHEET
   Do not override styles inline unless intentional.
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --bg:#F7F3EE;
  --ink:#1E2326;
  --muted:#5B646B;
  --line:rgba(30,35,38,.12);
  --accent:#5B7A6B;
  --accent2:#C9B7A6;
  --shadow:0 10px 30px rgba(30,35,38,.08);
  --radius:18px;
  --radius2:28px;
  --max:1120px;
}

/* ---------- Reset ---------- */
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* ---------- Base ---------- */
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  line-height:1.55;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(91,122,107,.14), transparent 60%),
    radial-gradient(1000px 520px at 85% 0%, rgba(201,183,166,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #FBF9F6 55%, var(--bg));
}

a{color:inherit;text-decoration:none}

/* ---------- Layout ---------- */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

section{margin-bottom:80px}

/* ---------- Header ---------- */
header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(247,243,238,.75);
  border-bottom:1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.mark{
  width:38px;
  height:38px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(91,122,107,.95), rgba(201,183,166,.95));
  box-shadow:0 10px 18px rgba(30,35,38,.10);
}

.brand b{
  font-family:"Playfair Display", Georgia, serif;
  font-weight:600;
}

.menu{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.menu a{
  color:var(--muted);
  padding:10px;
  border-radius:12px;
}

.menu a:hover{
  background:rgba(30,35,38,.05);
  color:var(--ink);
}

/* ---------- Typography ---------- */
h1,h2{
  font-family:"Playfair Display", Georgia, serif;
  font-weight:600;
}

h1{
  font-size:clamp(36px,5vw,58px);
  line-height:1.1;
  margin:0 0 16px;
}

h2{
  font-size:28px;
  margin:0 0 12px;
}

p{
  max-width:75ch;
}

.sub{
  color:var(--muted);
  font-size:1.1rem;
  margin-bottom:28px;
}

/* ---------- Components ---------- */
.panel{
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:36px;
  max-width:900px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(91,122,107,.35);
  background:rgba(91,122,107,.10);
  font-weight:600;
}

.btn.primary{
  border-color:rgba(30,35,38,.10);
  background:linear-gradient(180deg, rgba(30,35,38,.92), rgba(30,35,38,.82));
  color:#fff;
  box-shadow:var(--shadow);
}

/* ---------- Footer ---------- */
footer{
  padding:30px 0 40px;
  border-top:1px solid var(--line);
  color:rgba(30,35,38,.72);
}

/* ---------- Service Grid ---------- */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:rgba(255,255,255,.68);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:0 6px 18px rgba(30,35,38,.06);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.card h3{
  font-family:"Playfair Display", Georgia, serif;
  font-weight:600;
  margin:0;
}

.card p{
  color:var(--muted);
  margin:0;
}

.card a{
  margin-top:auto;
  font-weight:600;
}

@media (max-widt
