/* Full-page smooth gradient background + tuned layout */
:root{
  --fg:#ffffff;
  --muted:#d7d7d7;
  --accent:#e1001c;
  --maxw: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
/* Use a fixed ::before layer so the gradient covers the whole page smoothly */
body{
  margin:0;
  color:var(--fg);
  background:#0a0a0a; /* fallback color */
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  line-height:1.65;
  min-height:100dvh;
  position:relative;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  /* Two large radials + subtle linear vignette to ensure full-page coverage */
  background:
    radial-gradient(1200px 900px at 12% 82%, rgba(210,22,36,.26), transparent 62%),
    radial-gradient(1100px 840px at 88% 14%, rgba(210,22,36,.28), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.22) 100%);
  background-repeat:no-repeat;
  background-attachment:fixed;
  pointer-events:none;
}

/* Page container */
.page{max-width:var(--maxw);margin:0 auto;padding:28px 16px 56px}

/* TOP */
.top{display:flex;flex-direction:column;align-items:center;margin-top:4px}
.rmark{height:70px;width:auto;object-fit:contain}
.brandtext{text-align:center;margin-top:4px}
.brand-name{font-weight:900;letter-spacing:.17rem;margin-bottom:2px}
.brand-sub{font-size:.76rem;opacity:.95;letter-spacing:.03rem}

/* Headline */
.hero{margin:32px 0 10px}
.hero h1{
  font-family:Anton, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform:uppercase;
  font-size:clamp(2.6rem, 9.4vw, 7.6rem);
  line-height:.92;
  margin:0;
  text-align:center;
  letter-spacing:.02rem;
}
.hero h1 span{display:block}

/* Dividers */
.center-divider{width:4px;background:var(--accent);margin:24px auto;border-radius:2px}
.s-56{height:56px}.s-64{height:64px}.s-72{height:72px}.s-84{height:84px}

/* About */
.about{text-align:center;max-width:720px;margin:0 auto 24px}
.about h3{margin:0 0 8px;text-transform:uppercase;font-weight:900;letter-spacing:.06rem}
.about p{color:var(--muted);font-size:.94rem}

/* What we do */
.what h3{text-align:center;text-transform:uppercase;margin:0 0 18px;font-weight:900;letter-spacing:.06rem}
.what-grid{
  display:grid;
  grid-template-columns:1fr 6px 1fr;
  gap:26px 80px;
  align-items:start;
  max-width:940px;
  margin:0 auto;
}
.mid-line{
  grid-row:1 / span 3;
  grid-column:2;
  width:4px;height:100%;background:var(--accent);border-radius:2px;margin:0 auto;
}
.what-grid article{max-width:430px;justify-self:end}
.what-grid article.right{justify-self:start}
.what-grid article h4{margin:.15rem 0 .35rem;font-weight:800}
.what-grid article p{color:#dcdcdc;margin:0;font-size:.93rem}

/* Responsive stack */
@media (max-width: 880px){
  .what-grid{grid-template-columns:1fr;gap:16px}
  .mid-line{display:none}
  .what-grid article{justify-self:center;max-width:640px}
}

/* Clients */
.clients{margin:34px auto 8px}
.clients h3{text-align:center;text-transform:uppercase;letter-spacing:.06rem;margin:0 0 18px}
.logo-grid{
  list-style:none;margin:0 auto;padding:0;
  display:grid;grid-template-columns:repeat(5,1fr);gap:34px;max-width:900px
}
.logo-grid li{display:grid;place-items:center;padding:4px}
.logo-grid img{max-width:150px;max-height:54px;width:auto;height:auto;filter:grayscale(100%) brightness(110%);opacity:.98}

@media (max-width: 980px){ .logo-grid{grid-template-columns:repeat(3,1fr)} }
@media (max-width: 560px){ .logo-grid{grid-template-columns:repeat(2,1fr)} }

/* Footer */
.foot{margin-top:28px;text-align:center}
.closing{color:#d0d0d0;max-width:820px;margin:10px auto 12px;font-size:.92rem}
.mail{display:inline-block;font-weight:900;color:#fff;text-decoration:none;margin-top:6px}
.underline{width:64px;height:6px;border-top:4px solid var(--accent);margin:10px auto 0;border-radius:3px}
