:root{
  --slate:#4A4E51;
  --slate-dark:#3E4245;
  --crimson:#6E1F25;
  --crimson-dark:#5E1A20;
  --gold:#C3964A;
  --gold-dark:#A67B32;
  --ink:#141414;
  --offwhite:#F3F0EC;
  --paper:#FFFFFF;
  --muted:#E7E2DD;
  --shadow: 0 18px 35px rgba(0,0,0,.18);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --max: 1050px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--offwhite);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.45;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.header-shell{
  margin:26px auto 18px;
  background:var(--slate);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow: var(--shadow);
}
.header{
  display:flex;
  align-items:center;
  gap:18px;
}
.logo-box{
  background:var(--paper);
  border-radius:var(--radius-lg);
  padding:14px;
  width:190px;
  height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-box img{max-width:100%; max-height:100%; display:block}
.nav{
  margin-left:auto;
  display:flex;
  gap:12px;
}
.nav a{
  padding:10px 16px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight:600;
  letter-spacing:.2px;
}
.nav a:hover{background: rgba(255,255,255,.14)}
.nav a.active{
  background: var(--gold);
  color:#111;
}
.hero{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:18px;
  margin:18px auto 18px;
}
.card{
  border-radius:var(--radius-xl);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-left{
  background:var(--crimson);
  color:#fff;
  padding:26px 26px 22px;
  position:relative;
}
.kicker{
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  opacity:.85;
  text-transform:uppercase;
}
.h1{
  font-family:var(--serif);
  font-size:44px;
  line-height:1.02;
  margin:10px 0 10px;
  letter-spacing:.2px;
}
.sub{
  font-size:15px;
  opacity:.95;
  margin:0 0 18px;
  max-width:46ch;
}
.contact{
  font-size:14px;
  opacity:.95;
  margin: 14px 0 18px;
}
.cta-row{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.2px;
}
.btn-primary{background:var(--gold); color:#111}
.btn-primary:hover{filter:brightness(.96)}
.btn-secondary{background:rgba(255,255,255,.14); color:#fff}
.btn-secondary:hover{background:rgba(255,255,255,.18)}
.hero-right{
  background:var(--slate-dark);
  padding:18px;
  display:flex;
  align-items:stretch;
}
.hero-media{
  width:100%;
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#2a2d30;
  position:relative;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.92;
}
.section-title-row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin:22px 0 12px;
}
.section-title{
  font-family:var(--sans);
  font-size:24px;
  font-weight:800;
  margin:0;
}
.section-note{
  font-size:12px;
  opacity:.65;
  margin:0;
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.service-card{
  padding:18px 18px 16px;
  border-radius:var(--radius-xl);
  color:#fff;
  box-shadow: var(--shadow);
  min-height:210px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.service-card.slate{background:var(--slate)}
.service-card.crimson{background:var(--crimson)}
.service-card.gold{background:var(--gold); color:#111}
.icon-chip{
  width:54px; height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.1);
}
.service-card.gold .icon-chip{background: rgba(0,0,0,.08)}
.icon-chip img{width:30px; height:30px; object-fit:contain}
.service-title{
  font-size:20px;
  font-weight:900;
  margin:0;
}
.service-desc{
  font-size:13px;
  opacity:.92;
  margin:0;
}
.service-card.gold .service-desc{opacity:.85}
.service-link{
  margin-top:auto;
  display:inline-flex;
  width:max-content;
  padding:9px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  background: rgba(255,255,255,.12);
}
.service-card.gold .service-link{background: rgba(0,0,0,.09)}
.service-link:hover{filter:brightness(.98)}
.cta-strip{
  margin:18px 0 18px;
  background:var(--slate);
  color:#fff;
  border-radius:var(--radius-xl);
  padding:16px 18px;
  box-shadow:var(--shadow);
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
}
.cta-strip p{margin:0; font-weight:700}
.quote{
  margin:18px 0 18px;
  background:var(--crimson);
  color:#fff;
  border-radius:var(--radius-xl);
  padding:22px 22px;
  box-shadow:var(--shadow);
  text-align:center;
}
.quote .marks{
  font-family:var(--serif);
  font-size:46px;
  line-height:1;
  opacity:.9;
}
.quote p{
  margin:8px auto 0;
  max-width:80ch;
  font-size:15px;
  opacity:.95;
}
.blog{
  margin:18px 0 30px;
}
.blog-card{
  background:var(--muted);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow: var(--shadow);
}
.blog-card h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
}
.blog-card p{margin:0; opacity:.9}
.page-title{
  font-family:var(--sans);
  font-size:28px;
  font-weight:900;
  margin: 22px 0 6px;
}
.page-sub{
  margin:0 0 12px;
  font-size:13px;
  opacity:.7;
}
.content-card{
  background:var(--muted);
  border-radius:var(--radius-xl);
  padding:18px 20px;
  box-shadow: var(--shadow);
}
.content-card h2{
  font-family:var(--sans);
  font-size:18px;
  font-weight:900;
  margin: 18px 0 8px;
}
.content-card h2:first-child{margin-top:0}
.content-card ul{margin:8px 0 0 20px}
.content-card li{margin:6px 0}
.small-contact{
  font-weight:800;
  margin:0 0 12px;
}
.footer{
  margin:26px 0 26px;
  color: rgba(0,0,0,.75);
  font-size:12px;
}
.footer .disclaimer{
  background:rgba(0,0,0,.06);
  border-radius:16px;
  padding:14px 16px;
}
@media (max-width: 900px){
  .hero{grid-template-columns: 1fr; }
  .services-grid{grid-template-columns: 1fr}
  .logo-box{width:160px;height:160px}
  .h1{font-size:38px}
}