
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg:#d7d0c2; --card:#efe7d9; --text:#28241d; --muted:#857e6e;
  --accent:#3a5a40; --on-accent:#ffffff; --border:rgba(40,36,29,0.10);
  --soft:rgba(40,36,29,0.06); --rad:10px; --gap:16px;
}
html { scroll-behavior:smooth; }
body { margin:0; background:var(--bg); color:var(--text);
  font-family:'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif; line-height:1.55; -webkit-font-smoothing:antialiased; }
h1,h2,h3 { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; line-height:1.1; letter-spacing:-.015em; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }

.bento {
  display:grid; gap:var(--gap); max-width:1200px; margin:0 auto;
  padding:var(--gap); grid-template-columns:repeat(4,1fr);
  grid-auto-rows:minmax(150px,auto); grid-auto-flow:dense;
}
.tile {
  background:var(--card); border:1px solid var(--border);
  border-radius:var(--rad); padding:26px; position:relative; overflow:hidden;
  box-shadow:0 1px 2px rgba(40,36,29,0.05);
}

/* ---- top bar tile ---- */
.bar { grid-column:1 / -1; min-height:0; padding:14px 22px;
  display:flex; align-items:center; gap:20px; }
.brand { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-weight:800; font-size:20px; display:flex; align-items:center; gap:9px; }
.dot { width:12px; height:12px; border-radius:50%; background:var(--accent); display:inline-block; }
.nav { display:flex; gap:6px; margin-left:14px; }
.nav a { padding:8px 14px; border-radius:999px; font-size:15px; color:var(--muted); }
.nav a:hover { background:var(--soft); color:var(--text); }
.pill { margin-left:auto; background:var(--accent); color:var(--on-accent);
  padding:10px 20px; border-radius:999px; font-weight:600; font-size:15px; }
.pill:hover { filter:brightness(1.06); }
.burger { display:none; margin-left:auto; background:none; border:0; cursor:pointer;
  flex-direction:column; gap:4px; padding:6px; }
.burger span { width:22px; height:2px; background:var(--text); display:block; border-radius:2px; }
.mobilenav { display:none; grid-column:1 / -1; flex-direction:column; gap:4px; }
.mobilenav.open { display:flex; }
.mobilenav a { padding:12px 14px; border-radius:12px; color:var(--muted); }
.mobilenav a:hover { background:var(--soft); color:var(--text); }

/* ---- hero (2x2) ---- */
.hero { grid-column:span 2; grid-row:span 2; display:flex; flex-direction:column;
  justify-content:center; padding:40px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(58,90,64,0.14), transparent 60%),
    var(--card); }
.kicker { display:inline-block; align-self:flex-start; font-size:13px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; color:var(--accent);
  background:rgba(58,90,64,0.14); padding:6px 12px; border-radius:999px; margin-bottom:18px; }
.hero h1 { font-size:clamp(32px,4.4vw,52px); margin-bottom:16px; }
.hero p { font-size:18px; color:var(--muted); max-width:42ch; margin-bottom:26px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.avatars { display:flex; align-items:center; margin-top:30px; }
.avatars img { width:38px; height:38px; border-radius:50%; object-fit:cover;
  border:2px solid var(--card); margin-left:-10px; }
.avatars img:first-child { margin-left:0; }
.avatars span { margin-left:14px; font-size:14px; color:var(--muted); }

/* ---- buttons ---- */
.btn { display:inline-block; border-radius:999px; padding:12px 22px; font-weight:600;
  font-size:15px; cursor:pointer; border:1px solid transparent; transition:transform .12s, filter .12s; }
.btn:hover { transform:translateY(-2px); }
.primary { background:var(--accent); color:var(--on-accent); }
.ghost { background:transparent; color:var(--text); border-color:var(--border); }
.ghost:hover { background:var(--soft); }
.oncta { background:var(--on-accent); color:var(--accent); }

/* ---- image tiles ---- */
.img-tall { grid-column:span 2; grid-row:span 2; padding:0; }
.img-wide { grid-column:span 2; padding:0; }
.img-tall img, .img-wide img { width:100%; height:100%; object-fit:cover; }
.img-tall figcaption, .img-wide figcaption {
  position:absolute; left:14px; bottom:14px; background:rgba(229,221,206,0.7); color:#28241d;
  padding:6px 12px; border-radius:999px; font-size:13px; font-weight:600;
  backdrop-filter:blur(6px); }

/* ---- about ---- */
.about { grid-column:span 2; }
.about h2 { font-size:26px; margin-bottom:12px; }
.about p { color:var(--muted); font-size:16px; }

/* ---- stats strip (wide) ---- */
.stats { grid-column:1 / -1; display:grid; grid-template-columns:repeat(4,1fr);
  gap:14px; align-items:center; }
.stat { text-align:center; padding:8px; }
.stat b { display:block; font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-size:clamp(28px,3.4vw,40px);
  color:var(--accent); line-height:1; }
.stat span { font-size:14px; color:var(--muted); margin-top:6px; display:block; }

/* ---- service tiles ---- */
.svc { grid-column:span 2; display:flex; flex-direction:column; }
.svc .ico { width:44px; height:44px; border-radius:14px; background:rgba(58,90,64,0.14);
  color:var(--accent); display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:14px; }
.svc h3 { font-size:19px; margin-bottom:8px; }
.svc p { color:var(--muted); font-size:15px; }

/* ---- testimonial ---- */
.testi { grid-column:span 2; grid-row:span 2; display:flex; flex-direction:column;
  justify-content:center; }
.testi .quote { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-size:64px; line-height:.4; color:var(--accent); }
.testi blockquote { font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif; font-size:clamp(20px,2.6vw,28px);
  margin:10px 0 22px; line-height:1.25; }
.by { display:flex; align-items:center; gap:12px; }
.by img { width:46px; height:46px; border-radius:50%; object-fit:cover; }
.by cite { font-style:normal; font-weight:600; }

/* ---- accent CTA ---- */
.cta { grid-column:span 2; background:var(--accent); color:var(--on-accent);
  display:flex; flex-direction:column; justify-content:center; }
.cta h2 { font-size:26px; margin-bottom:10px; }
.cta p { opacity:.85; margin-bottom:20px; max-width:34ch; }

/* ---- contact ---- */
.contact { grid-column:span 2; grid-row:span 2; }
.contact h2 { font-size:26px; margin-bottom:16px; }
.ci { list-style:none; margin-bottom:18px; }
.ci li { display:flex; gap:12px; padding:9px 0; border-bottom:1px solid var(--border); font-size:15px; }
.ci li span { color:var(--muted); width:56px; flex:0 0 auto; }
.cf { display:flex; flex-direction:column; gap:10px; }
.cf input, .cf textarea { background:var(--bg); border:1px solid var(--border);
  border-radius:12px; padding:12px 14px; font:inherit; color:var(--text); resize:vertical; }
.cf input:focus, .cf textarea:focus { outline:none; border-color:var(--accent); }
.cf button { align-self:flex-start; margin-top:4px; }

/* ---- footer ---- */
.foot { grid-column:1 / -1; min-height:0; display:flex; justify-content:space-between;
  align-items:center; flex-wrap:wrap; gap:10px; font-size:14px; }
.fmuted { color:var(--muted); }

/* ---- responsive ---- */
@media (max-width:900px) {
  .bento { grid-template-columns:repeat(2,1fr); }
  .hero, .img-tall, .img-wide, .about, .svc, .testi, .cta, .contact { grid-column:span 2; }
  .hero, .img-tall, .testi, .contact { grid-row:auto; }
  .img-tall { min-height:320px; }
  .stats { grid-template-columns:repeat(2,1fr); gap:20px 14px; }
}
@media (max-width:560px) {
  .bento { grid-template-columns:1fr; }
  .hero, .img-tall, .img-wide, .about, .svc, .testi, .cta, .contact,
  .stats, .bar, .foot { grid-column:1 / -1; }
  .nav { display:none; }
  .burger { display:flex; }
  .pill { display:none; }
  .foot { flex-direction:column; text-align:center; }
}


.xq{box-sizing:border-box;font-family:'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;color:#28241d;padding:56px 24px;width:100%}
.xq *{box-sizing:border-box;margin:0}
.xq .xq-wrap{max-width:1060px;margin:0 auto}
.xq h2{font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif;font-size:1.7rem;line-height:1.2;margin-bottom:8px}
.xq .xq-kick{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#3a5a40;margin-bottom:10px;font-weight:700}

.xq-strip{padding-left:0;padding-right:0}
.xq-strip .xq-wrap{padding:0 24px}
.xq-striprail{list-style:none;display:flex;gap:12px;overflow-x:auto;padding:14px 24px;scroll-snap-type:x mandatory}
.xq-striprail li{flex:0 0 min(64vw,300px);scroll-snap-align:start}
.xq-striprail img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:2px;display:block}


/* =====================================================
   DESIGN DNA: brutal-ink
   Whole-page visual system applied over the layout
   archetype. Appended last so it wins the cascade.
   ===================================================== */
*{border-radius:0 !important}
h1,h2,h3{font-family:'Arial Black', 'Arial Bold', Arial, sans-serif !important;text-transform:uppercase !important;letter-spacing:-0.01em !important;font-weight:900 !important}
img{filter:grayscale(1) contrast(1.18);border:3px solid #28241d !important;box-shadow:8px 8px 0 #28241d !important}
a[class*="btn"],button,span[class*="btn"]{border-radius:0 !important;border:3px solid #28241d !important;box-shadow:5px 5px 0 #28241d !important;text-transform:uppercase;letter-spacing:.08em;font-weight:800}
div[class*="card"]:not([class*="cards"]),article[class*="card"],a[class*="card"],figure[class*="card"],li[class*="card"]{border:3px solid #28241d !important;box-shadow:8px 8px 0 #28241d !important}
html::after{content:'';position:fixed;inset:0;z-index:99990;pointer-events:none;border:6px solid #28241d;background:none;}
