:root {
  --bg: #090b10;
  --panel: #10141d;
  --panel-2: #151a25;
  --ink: #f5f0e8;
  --muted: #b9bdc9;
  --soft: #798295;
  --line: rgba(255, 255, 255, .12);
  --gold: #f8b938;
  --orange: #ff6a1a;
  --cyan: #42d6ff;
  --concrete: #a8a59c;
  --danger: #e23b2f;
  --shadow: 0 22px 80px rgba(0, 0, 0, .42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 106, 26, .18), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(66, 214, 255, .12), transparent 34rem),
    linear-gradient(180deg, #090b10 0%, #0c0f16 44%, #0a0b0e 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; }

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

button,
input,
select,
textarea {
  font: inherit;
}

code {
  color: #ffe0a3;
  font-size: .92em;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #121212;
  font-weight: 900;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 10, 15, .78);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(8, 10, 15, .93);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 106, 26, .18));
}

.brand span {
  display: grid;
  gap: .08rem;
}

.brand strong {
  font-size: 1.22rem;
  letter-spacing: .09em;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  color: #d9deeb;
  padding: .72rem .88rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: .35rem;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold), #ff7a1a);
  box-shadow: 0 10px 30px rgba(255, 122, 26, .22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.8rem, 8vw, 6rem);
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 45%;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, .11), rgba(66, 214, 255, .08), rgba(248, 185, 56, .1)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.04) 42px 43px);
  transform: skewY(-4deg);
  transform-origin: left bottom;
  z-index: -2;
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .45;
  z-index: -1;
}

.hero-glow-one {
  left: -10rem;
  top: 4rem;
  background: rgba(255, 106, 26, .3);
}

.hero-glow-two {
  right: -8rem;
  bottom: 8rem;
  background: rgba(66, 214, 255, .18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  line-height: .91;
  letter-spacing: -.075em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.3vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

h3 {
  margin-bottom: .6rem;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.hero-lede,
.section-head p,
.concrete-panel p,
.quote-grid > div > p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 1.65rem;
}

.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 35px rgba(255, 106, 26, .26);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.proof-strip {
  margin-top: 1.35rem;
}

.proof-strip span {
  color: #dfe4ef;
  padding: .46rem .68rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-size: .82rem;
  font-weight: 900;
}

.hero-board {
  position: relative;
  min-height: 550px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    linear-gradient(180deg, rgba(20, 24, 34, .96), rgba(10, 12, 18, .96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-board:before,
.hero-board:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: .68;
}

.hero-board:before {
  width: 13rem;
  height: 13rem;
  background: rgba(255, 106, 26, .26);
  right: -4rem;
  top: 7rem;
}

.hero-board:after {
  width: 16rem;
  height: 16rem;
  background: rgba(66, 214, 255, .18);
  left: -5rem;
  bottom: -2rem;
}

.board-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .42rem;
  padding: .25rem .25rem 1rem;
}

.board-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--soft);
}

.board-toolbar span:first-child { background: var(--danger); }
.board-toolbar span:nth-child(2) { background: var(--gold); }
.board-toolbar span:nth-child(3) { background: #38dc7b; }

.board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.board-card {
  min-height: 116px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}

.board-card small,
.showcase-card span {
  display: inline-flex;
  margin-bottom: .8rem;
  color: #111;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: var(--gold);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.board-card strong {
  display: block;
  max-width: 22rem;
  font-size: 1.25rem;
  line-height: 1.14;
}

.board-card.web { background: linear-gradient(135deg, rgba(66,214,255,.17), rgba(255,255,255,.05)); }
.board-card.print { background: linear-gradient(135deg, rgba(255,106,26,.2), rgba(255,255,255,.05)); }
.board-card.concrete { background: linear-gradient(135deg, rgba(168,165,156,.22), rgba(255,255,255,.05)); }
.board-card.brand { background: linear-gradient(135deg, rgba(248,185,56,.18), rgba(255,255,255,.05)); }

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head.compact {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.process-grid article,
.contact-card,
.quote-form {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.service-card {
  min-height: 330px;
  padding: 1.35rem;
}

.service-card p,
.service-card li,
.process-grid p,
.showcase-card p,
.contact-card span,
.footer-grid p {
  color: var(--muted);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  color: #15110a;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 950;
}

.service-card ul {
  display: grid;
  gap: .42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  font-size: .95rem;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.split-section {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}

.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: .6rem;
  color: var(--gold);
  font-weight: 950;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 12%, rgba(255,255,255,.18), transparent 10rem),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}

.showcase-web { box-shadow: inset 0 0 90px rgba(66, 214, 255, .12); }
.showcase-shirt { box-shadow: inset 0 0 90px rgba(255, 106, 26, .14); }
.showcase-flyer { box-shadow: inset 0 0 90px rgba(248, 185, 56, .14); }
.showcase-concrete { box-shadow: inset 0 0 90px rgba(168, 165, 156, .16); }

.concrete-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(168,165,156,.14), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.concrete-list {
  display: grid;
  gap: .9rem;
}

.concrete-list div {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(10, 12, 18, .45);
}

.concrete-list strong,
.concrete-list span {
  display: block;
}

.concrete-list span {
  color: var(--muted);
  margin-top: .35rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  padding: 1.25rem;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  font-weight: 950;
}

.quote-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,106,26,.13), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.quote-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: .28rem;
  margin-top: 1.5rem;
  padding: 1.1rem;
}

.contact-card a {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 950;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.7rem);
}

.quote-form label {
  display: grid;
  gap: .42rem;
  color: #eef1f7;
  font-size: .88rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(8, 10, 15, .7);
  padding: .9rem .95rem;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  min-height: 150px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(248, 185, 56, .78);
  box-shadow: 0 0 0 4px rgba(248, 185, 56, .12);
}

.form-note {
  margin: -.35rem 0 0;
  color: var(--soft);
  font-size: .86rem;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: .8rem;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  justify-content: flex-end;
  font-weight: 850;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft);
  font-size: .9rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.error-page {
  width: min(620px, calc(100% - 40px));
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.error-page h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: .35rem;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(9, 11, 16, .97);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 14px;
    padding: .9rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .split-grid,
  .concrete-panel,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    font-size: .66rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero {
    padding-top: 3.7rem;
  }

  .service-grid,
  .showcase-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
