:root {
  --ink: #08090a;
  --panel: #101214;
  --panel-2: #17191c;
  --line: #2b2e31;
  --paper: #f2efe9;
  --muted: #a9aaac;
  --orange: #f36b13;
  --orange-2: #ff8734;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 112px;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(90deg, rgba(5,6,7,.98), rgba(12,13,14,.88));
}
.brand { display: block; width: 270px; overflow: hidden; }
.brand img, .footer-brand img { width: 100%; height: auto; display: block; }
nav { display: flex; justify-content: flex-end; gap: clamp(24px, 3vw, 52px); }
nav a { color: #ddd; font-size: 15px; transition: color .2s; }
nav a:hover { color: var(--orange-2); }
.header-cta { border: 1px solid var(--orange); padding: 13px 18px; font-size: 14px; font-weight: 700; }

.hero {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image { position: absolute; inset: 0; background: #151719 url("assets/hero-workshop.png") center/cover no-repeat; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.98) 0%, rgba(5,6,7,.91) 31%, rgba(5,6,7,.35) 60%, rgba(5,6,7,.08) 100%),
    linear-gradient(0deg, rgba(5,6,7,.7), transparent 44%);
}
.hero-content { position: relative; z-index: 2; width: min(650px, 86vw); margin: 116px 0 0 clamp(24px, 5vw, 76px); }
.eyebrow { margin: 0 0 22px; color: var(--orange-2); font-size: 14px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero h1, h2 {
  margin: 0;
  font-family: "Arial Black", Impact, "Arial Narrow", sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .96;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(62px, 6.2vw, 88px); max-width: 690px; }
.hero-copy { max-width: 540px; margin: 28px 0; color: #d2d2d2; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 26px; font-weight: 800; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--orange); color: white; box-shadow: 0 10px 30px rgba(243,107,19,.18); }
.text-link { font-weight: 700; border-bottom: 2px solid var(--orange); padding: 11px 0; }
.text-link span { color: var(--orange); padding-left: 8px; }
.trust-row { display: flex; gap: 0; margin-top: 40px; color: #e7e7e7; }
.trust-row span { padding: 0 26px; border-left: 1px solid #444; }
.trust-row span:first-child { padding-left: 0; border-left: 0; }
.trust-row b { color: var(--orange); font-size: 20px; margin-right: 9px; }

.section { padding: 120px clamp(24px, 6vw, 92px); }
.section-heading { display: grid; grid-template-columns: 1.1fr .8fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.section-heading h2, .showcase h2, .about h2, .quote h2 { font-size: clamp(50px, 6vw, 84px); }
.section-heading > p { color: var(--muted); line-height: 1.8; font-size: 17px; max-width: 560px; }
.services { background: #0c0d0f; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.16);
  background: #17191c center/cover no-repeat;
  color: white;
  transition: transform .25s;
}
.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,5,6,.35) 0%, rgba(4,5,6,.42) 28%, rgba(4,5,6,.94) 100%),
    linear-gradient(120deg, rgba(243,107,19,.25), transparent 55%);
  transition: background .25s;
}
.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 42%;
  background: var(--orange);
}
.service-card-1 { background-image: url("assets/hero-workshop.png"); }
.service-card-2 { background-image: url("assets/gallery-dekaler.webp"); }
.service-card-3 { background-image: url("assets/gallery-skyltar.webp"); }
.service-card-4 { background-image: url("assets/gallery-design.webp"); }
.service-card:last-child { border-right: 0; }
.service-card:hover { transform: translateY(-5px); }
.service-card:hover::before { background: linear-gradient(180deg, rgba(4,5,6,.22), rgba(4,5,6,.92)); }
.service-card h3, .process-grid h3 { margin: 115px 0 16px; font-size: 25px; }
.service-card h3 { text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.service-card p { color: #ededed; line-height: 1.7; font-size: 15px; text-shadow: 0 1px 7px rgba(0,0,0,.8); }
.process-grid p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.service-card a { display: inline-block; margin-top: 22px; padding-bottom: 4px; border-bottom: 2px solid var(--orange); font-weight: 700; font-size: 14px; }
.service-card a b { color: var(--orange-2); margin-left: 6px; }

.showcase { min-height: 650px; display: grid; grid-template-columns: .85fr 1.4fr; background: #181a1d; overflow: hidden; }
.showcase-copy { padding: 100px clamp(24px, 6vw, 92px); align-self: center; }
.showcase-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; max-width: 480px; margin: 26px 0 32px; }
.outline { border: 1px solid var(--orange); color: var(--paper); }
.sample-board { position: relative; min-height: 650px; overflow: hidden; background: radial-gradient(circle at 70% 50%, #32363a, #141618 65%); }
.sample { position: absolute; display: grid; place-items: center; color: white; font-family: Impact, sans-serif; letter-spacing: .08em; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.sample-one { width: 72%; height: 230px; right: -3%; top: 62px; background: repeating-linear-gradient(150deg, #111 0 42px, #f36b13 43px 72px, #272a2d 73px 115px); transform: rotate(-4deg); }
.sample-two { width: 47%; height: 180px; left: 8%; bottom: 58px; background: #eeeee8; color: #111; transform: rotate(4deg); }
.sample-three { width: 38%; height: 170px; right: 6%; bottom: 24px; background: var(--orange); transform: rotate(-6deg); }

.gallery { background: #090a0b; }
.gallery-heading { align-items: end; }
.gallery-groups { display: grid; gap: 64px; }
.gallery-group { min-width: 0; }
.gallery-group-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.gallery-group-heading h3 { margin: 0; color: var(--paper); font-family: "Arial Black", Impact, sans-serif; font-size: clamp(26px, 3vw, 40px); letter-spacing: -.025em; text-transform: uppercase; }
.gallery-group-heading p { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.6; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card { position: relative; min-width: 0; padding: 0; overflow: hidden; background: #141619; border: 1px solid var(--line); color: inherit; text-align: left; cursor: pointer; }
.gallery-image-wrap { position: relative; height: 310px; overflow: hidden; background: #171a1d; }
.gallery-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,8,.82), transparent 66%); }
.gallery-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, filter .4s ease; }
.gallery-zoom { position: absolute; z-index: 2; left: 24px; bottom: 20px; color: white; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.gallery-card:hover .gallery-image-wrap img, .gallery-card:focus-visible .gallery-image-wrap img { transform: scale(1.07); filter: brightness(1.08); }
.gallery-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.product-card { display: flex; min-width: 0; flex-direction: column; }
.product-card .gallery-card { width: 100%; flex: 1; }
.product-buy-button { width: 100%; margin-top: 12px; }
.gallery-caption { padding: 22px 24px 25px; }
.gallery-caption h3 { margin: 0 0 8px; font-size: 21px; }
.gallery-caption p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.gallery-action { display: flex; justify-content: center; margin-top: 38px; }
body.gallery-open { overflow: hidden; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 64px 90px; background: rgba(3,4,5,.94); backdrop-filter: blur(8px); }
.lightbox[hidden] { display: none; }
.lightbox figure { width: min(1100px, 88vw); margin: 0; }
.lightbox figure img { display: block; width: 100%; max-height: 72vh; object-fit: contain; background: #111; border: 1px solid #34373a; }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 18px 2px; color: white; }
.lightbox figcaption strong { font-size: 22px; }
.lightbox figcaption span { color: var(--muted); }
.lightbox-close, .lightbox-arrow { position: fixed; z-index: 101; border: 0; color: white; background: transparent; cursor: pointer; }
.lightbox-close { right: 28px; top: 18px; font-size: 48px; line-height: 1; }
.lightbox-arrow { top: 50%; width: 56px; height: 72px; transform: translateY(-50%); background: rgba(255,255,255,.08); font-size: 56px; line-height: .8; }
.lightbox-arrow:hover, .lightbox-close:hover { color: var(--orange-2); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; background: var(--paper); color: #111; align-items: center; }
.about-mark { display: flex; align-items: center; justify-content: center; }
.about-mark img { display: block; width: 100%; max-width: 720px; height: auto; }
.about-copy > p:not(.eyebrow) { color: #545454; line-height: 1.8; font-size: 17px; max-width: 650px; }
.about-copy h2 { margin-bottom: 32px; }

.process { background: #0d0e10; }
.section-heading.compact { grid-template-columns: 1fr; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-grid article { background: #111315; padding: 34px; min-height: 250px; }
.process-grid h3 { margin-top: 44px; }

.quote { padding: 120px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .9fr 1fr; gap: 9vw; background: linear-gradient(120deg, #111315, #090a0b); border-top: 1px solid var(--line); }
.quote h2 em { color: var(--orange); font-style: normal; }
.quote-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; max-width: 560px; }
.quote-note { display: flex; gap: 16px; align-items: center; margin-top: 34px; }
.quote-note > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); font-weight: 900; }
.quote-note p { color: var(--muted); line-height: 1.6; }
.quote-note b { color: white; }
.quote-form { padding: 38px; background: #17191c; border: 1px solid #2f3236; display: flex; flex-direction: column; gap: 22px; }
.quote-form label { display: flex; flex-direction: column; gap: 9px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #ddd; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; color: white; background: #0f1012; border: 1px solid #34373a; padding: 15px; outline: none; text-transform: none; letter-spacing: normal; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-button { width: 100%; }
.quote-form small { color: var(--muted); text-align: center; }

footer { padding: 68px clamp(24px, 6vw, 92px) 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; background: #050607; border-top: 1px solid var(--line); }
.footer-brand { max-width: 360px; }
.footer-brand img { width: 280px; }
footer h3 { color: var(--orange); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
footer a, footer span { display: block; color: var(--muted); margin: 10px 0; }
footer a:hover { color: white; }
.footer-brand p { color: var(--muted); line-height: 1.6; }
.copyright { grid-column: 1/-1; color: #6d6f72; border-top: 1px solid #202224; padding-top: 22px; margin-top: 20px; font-size: 13px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 90px; }
  .brand { width: 220px; }
  nav { display: none; }
  .hero { min-height: 820px; }
  .hero-content { margin-top: 90px; }
  .hero h1 { font-size: clamp(58px, 8.5vw, 78px); }
  .service-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card { border-bottom: 1px solid var(--line); }
  .section-heading, .showcase, .about, .quote { grid-template-columns: 1fr; }
  .sample-board { min-height: 520px; }
  .about-mark { padding: 0 5vw; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 18px; height: 76px; }
  .brand { width: 175px; }
  .header-cta { padding: 10px 12px; font-size: 12px; }
  .hero { min-height: 760px; align-items: flex-end; padding-bottom: 58px; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,6,7,.99) 12%, rgba(5,6,7,.72) 70%, rgba(5,6,7,.45)); }
  .hero-content { margin: 0 20px; width: auto; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { gap: 16px; }
  .button { width: 100%; }
  .text-link { margin: auto; }
  .trust-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .trust-row span, .trust-row span:first-child { border: 0; padding: 0; }
  .section { padding: 82px 20px; }
  .section-heading { gap: 26px; }
  .section-heading h2, .showcase h2, .about h2, .quote h2 { font-size: 48px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-groups { gap: 50px; }
  .gallery-group-heading { display: block; margin-bottom: 16px; }
  .gallery-group-heading h3 { margin-bottom: 10px; font-size: 25px; }
  .gallery-group-heading p { font-size: 13px; }
  .gallery-image-wrap { height: 180px; }
  .gallery-zoom { left: 12px; bottom: 12px; font-size: 9px; }
  .gallery-caption { padding: 14px 12px 16px; }
  .gallery-caption h3 { font-size: 16px; }
  .gallery-caption p { font-size: 12px; }
  .lightbox { padding: 60px 18px; }
  .lightbox figure { width: 100%; }
  .lightbox figcaption { flex-direction: column; gap: 5px; }
  .lightbox-arrow { top: auto; bottom: 16px; }
  .service-card { border-right: 0; min-height: auto; }
  .service-card h3 { margin-top: 38px; }
  .showcase-copy { padding: 80px 20px; }
  .sample-board { min-height: 430px; }
  .sample-one { width: 88%; height: 180px; }
  .sample-two { width: 55%; height: 130px; }
  .sample-three { height: 120px; }
  .about { padding: 84px 20px; }
  .quote { padding: 84px 20px; }
  .quote-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 58px 20px 22px; }
}

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