* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #201c18;
  color: #d8ccb8;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: none;
}
img { max-width: 100%; display: block; }
::selection { background: rgba(176,106,36,0.30); color: #d8ccb8; }
:focus-visible { outline: 2px solid #b06a24; outline-offset: 2px; }
a { color: #b06a24; text-decoration: none; }
a:hover { color: #d8ccb8; background: rgba(176,106,36,0.14); }

/* ---- CRT scanline + flicker overlay (subtle) ---- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom, rgba(216,204,184,0.06) 0, rgba(216,204,184,0.06) 1px, transparent 1px, transparent 3px);
  opacity: 0.55;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9997;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%,
    transparent 60%, rgba(0,0,0,0.28) 100%);
}

/* ---- menu bar ---- */
.menubar {
  position: sticky; top: 0; z-index: 50;
  background: #372f28;
  border-bottom: 2px solid rgba(216,204,184,0.22);
}
.menubar-in {
  max-width: 68rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.63rem;
  padding: 0.5rem 1.26rem;
}
.logo {
  font-weight: bold; text-transform: uppercase;
  letter-spacing: 0.08em; color: #b06a24;
  text-shadow: 0 0 8px rgba(176,106,36,0.55);
}
.menu { display: flex; flex-wrap: wrap; gap: 0.35rem 0.75rem; }
.menu a {
  color: #d8ccb8; text-transform: uppercase;
  font-size: 0.76rem; letter-spacing: 0.1em;
}
.menu a:hover { color: #b06a24; background: transparent; text-shadow: 0 0 6px rgba(176,106,36,0.55); }

/* ---- crt main ---- */
.crt { max-width: 68rem; margin: 0 auto; padding: 2.16rem 1.26rem; }

/* ---- window chrome ---- */
.win {
  background: #211a14;
  border: 2px solid rgba(216,204,184,0.22);
  border-radius: 3px;
  margin-bottom: 2.16rem;
  box-shadow: 0 0 0 1px #201c18, 6px 6px 0 0 rgba(0,0,0,0.35);
  overflow: hidden;
}
.win-bar {
  display: flex; align-items: center; gap: 0.6rem;
  background: #372f28;
  border-bottom: 2px solid rgba(216,204,184,0.22);
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem; letter-spacing: 0.05em;
}
.dots { display: inline-flex; gap: 0.32rem; }
.dot {
  width: 0.72rem; height: 0.72rem; border-radius: 50%;
  background: #726757; border: 1px solid rgba(216,204,184,0.22); display: inline-block;
}
.dots .dot:first-child { background: #b06a24; }
.win-title { flex: 1; color: #726757; text-transform: lowercase; }
.win-btns { color: #726757; letter-spacing: 0.15em; font-size: 0.72rem; }
.win-body { padding: 1.26rem 1.26rem 2.16rem; }
.win-h {
  font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif; font-size: 1.35rem; line-height: 1.15;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #d8ccb8; margin-bottom: 0.63rem;
}
.win-h::before { content: "// "; color: #b06a24; }
.readout { color: #726757; margin-bottom: 1.26rem; max-width: 42rem; }

/* ---- ascii divider ---- */
.ascii-rule {
  color: #726757; opacity: 0.6; font-size: 0.8rem;
  white-space: nowrap; overflow: hidden;
  margin: 1.26rem 0; letter-spacing: -0.5px;
}

/* ---- hero window ---- */
.win.hero { background: #1c1612; }
.win.hero .win-body { padding: 2.16rem 1.26rem 3.24rem; }
.boot {
  display: flex; flex-direction: column;
  font-size: 0.82rem; color: #726757;
  margin-bottom: 1.26rem;
}
.boot-line {
  white-space: pre-wrap; opacity: 0;
  animation: bootin 0.01s forwards;
}
@keyframes bootin { to { opacity: 1; } }
.boot-line:last-child { color: #b06a24; }
.hero-kick {
  text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.72rem; color: #b06a24; margin-bottom: 0.4rem;
}
.hero-title {
  font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif; font-weight: bold;
  font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: #d8ccb8; text-shadow: 0 0 12px rgba(176,106,36,0.14);
}
.hero-sub {
  color: #726757; margin: 0.6rem 0 1.26rem; max-width: 40rem;
  font-size: 1rem;
}
.cursor {
  display: inline-block; width: 0.62em; height: 1.05em;
  background: #b06a24; margin-left: 0.12em; vertical-align: -0.1em;
  box-shadow: 0 0 10px rgba(176,106,36,0.55);
  animation: blink 1.05s steps(1) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.run { display: flex; flex-wrap: wrap; gap: 0.63rem; }

/* ---- buttons ---- */
.btn {
  display: inline-block; cursor: pointer;
  font-family: 'Courier New', Courier, monospace; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.7em 1.6em;
  background: #b06a24; color: #ffffff;
  border: 2px solid #b06a24; border-radius: 0;
  box-shadow: 3px 3px 0 0 rgba(216,204,184,0.22);
  transition: transform 0.08s steps(2), box-shadow 0.08s steps(2),
              background 0.12s ease, color 0.12s ease;
}
.btn:hover {
  background: #211a14; color: #b06a24;
  box-shadow: 0 0 12px rgba(176,106,36,0.55); transform: translate(1px, 1px);
}
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 0 rgba(216,204,184,0.22); }
.btn.ghost {
  background: transparent; color: #b06a24;
  box-shadow: 3px 3px 0 0 rgba(216,204,184,0.22);
}
.btn.ghost:hover { background: rgba(176,106,36,0.14); }

/* ---- about stats ---- */
.stats {
  font-family: 'Courier New', Courier, monospace; font-size: 0.9rem;
  color: #b06a24; background: #1c1612;
  border: 1px dashed rgba(216,204,184,0.22); border-radius: 3px;
  padding: 1.26rem; margin-top: 1.26rem; line-height: 1.8;
  overflow-x: auto;
}

/* ---- services grid ---- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.63rem;
}
.svc {
  border: 1px solid rgba(216,204,184,0.22); border-left: 3px solid #b06a24;
  border-radius: 3px; background: #1c1612;
  padding: 1.26rem;
  transition: box-shadow 0.12s ease, transform 0.12s ease;
}
.svc:hover { box-shadow: 0 0 14px rgba(176,106,36,0.14); transform: translateY(-2px); }
.svc-id { color: #b06a24; font-size: 0.8rem; letter-spacing: 0.1em; }
.svc h3 {
  font-family: 'Courier New', Courier, monospace; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.04em; margin: 0.3rem 0; color: #d8ccb8;
}
.svc p { color: #726757; font-size: 0.88rem; }

/* ---- work tiles ---- */
.tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.26rem;
}
.tile {
  border: 2px solid rgba(216,204,184,0.22); border-radius: 3px;
  background: #1c1612; overflow: hidden;
}
.tile-bar {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.5rem; background: #372f28;
  border-bottom: 1px solid rgba(216,204,184,0.22);
  font-size: 0.68rem; color: #726757;
}
.tile-bar .dot { width: 0.5rem; height: 0.5rem; }
.tile-bar span { margin-left: auto; }
.tile img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.tile figcaption {
  padding: 0.4rem 0.55rem; font-size: 0.72rem; color: #b06a24;
  border-top: 1px solid rgba(216,204,184,0.22); background: #211a14;
}

/* ---- log stream ---- */
.log {
  font-size: 0.86rem; padding: 0.35rem 0;
  border-bottom: 1px dotted rgba(216,204,184,0.22);
}
.ts { color: #726757; }
.ok {
  color: #ffffff; background: #b06a24;
  padding: 0 0.35em; font-size: 0.72rem; letter-spacing: 0.06em;
}
.usr { color: #b06a24; }

/* ---- contact terminal form ---- */
.term-form { display: flex; flex-direction: column; gap: 0.63rem; max-width: 34rem; }
.term-form label { display: flex; align-items: flex-start; gap: 0.6rem; }
.pr { color: #b06a24; padding-top: 0.6rem; white-space: nowrap; }
.term-form input, .term-form textarea {
  flex: 1; font: inherit; color: #d8ccb8;
  background: #1c1612; border: 1px solid rgba(216,204,184,0.22); border-radius: 3px;
  padding: 0.55rem 0.7rem; resize: vertical;
}
.term-form input:focus, .term-form textarea:focus {
  outline: none; border-color: #b06a24; box-shadow: 0 0 0 2px rgba(176,106,36,0.14);
}
.term-form .btn { align-self: flex-start; margin-top: 0.3rem; }
.dir {
  margin-top: 1.26rem; padding: 1.26rem; background: #1c1612;
  border: 1px dashed rgba(216,204,184,0.22); border-radius: 3px;
  color: #726757; font-size: 0.88rem; line-height: 1.8; overflow-x: auto;
}

/* ---- status bar footer ---- */
.statusbar {
  position: sticky; bottom: 0; z-index: 40;
  background: #372f28; border-top: 2px solid rgba(216,204,184,0.22);
}
.statusbar-in {
  max-width: 68rem; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding: 0.4rem 1.26rem; font-size: 0.76rem; color: #726757;
  letter-spacing: 0.05em;
}
.blink-ok { color: #b06a24; animation: blink 1.6s steps(1) infinite; }

@media (prefers-reduced-motion: reduce) {
  .boot-line, .cursor, .blink-ok, .btn { animation: none !important; opacity: 1 !important; }
}

@media (max-width: 820px) {
  .svc-grid, .tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid, .tiles { grid-template-columns: 1fr; }
  .menubar-in { justify-content: center; text-align: center; }
  .win-body { padding: 1.26rem 0.63rem 2.16rem; }
  .ascii-rule { font-size: 0.6rem; }
}


.xq{box-sizing:border-box;font-family:'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;color:#d8ccb8;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:Impact, Haettenschweiler, 'Arial Black', sans-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:#b06a24;margin-bottom:10px;font-weight:700}

.xq-promo{padding:34px 24px}
.xq-promo-card{border:2px dashed #b06a24;border-radius:1px;padding:26px;display:flex;flex-wrap:wrap;align-items:center;gap:12px 22px;background:rgba(216,204,184,0.05)}
.xq-promo-tag{background:#b06a24;color:#ffffff;font-family:Impact, Haettenschweiler, 'Arial Black', sans-serif;font-weight:800;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;padding:8px 14px;border-radius:999px}
.xq-promo-card p{flex:1 1 260px;font-size:1.02rem}
.xq-promo-card a{color:#b06a24;font-weight:700;text-decoration:none;white-space:nowrap}
.xq-promo-card a:hover{text-decoration:underline}


/* =====================================================
   DESIGN DNA: terminal-green
   Whole-page visual system applied over the layout
   archetype. Appended last so it wins the cascade.
   ===================================================== */
body,p,li,a,td,th,dt,dd,input,textarea{font-family:'Courier New', Courier, monospace !important}
h1,h2,h3{font-family:'Courier New', Courier, monospace !important;text-transform:uppercase !important;letter-spacing:.06em !important}
h1::after{content:'\2588';margin-left:.15em;color:#b06a24}
@media (prefers-reduced-motion: no-preference){@keyframes dnablink{50%{opacity:0}}h1::after{animation:dnablink 1.1s steps(1) infinite}}
html::before{content:'';position:fixed;inset:0;z-index:99980;pointer-events:none;background:repeating-linear-gradient(0deg,rgba(0,0,0,.5) 0 1px,transparent 1px 3px);opacity:.18;}
img{filter:grayscale(1) contrast(1.25) brightness(.92);border-radius:0 !important;border:1px solid rgba(176,106,36,.6) !important}
a[class*="btn"],button,span[class*="btn"]{border-radius:0 !important;border:1px solid #b06a24 !important;font-family:'Courier New', Courier, monospace !important;text-transform:uppercase;box-shadow:none !important}
div[class*="card"]:not([class*="cards"]),article[class*="card"],a[class*="card"],figure[class*="card"],li[class*="card"]{border-radius:0 !important;border:1px solid rgba(176,106,36,.45) !important;box-shadow:none !important}
::selection{background:#b06a24;color:#161310}
