/* ====================================================================
   GROOTFORMAATDRUKKERIJ.BE — Editorial B2B design system
   Inspiration: Swiss grid, print-press metaphors, premium minimal
   ==================================================================== */

:root {
  --ink:        #0B1A2B;       /* navy black, body text */
  --ink-soft:   #475467;
  --ink-mute:   #8A94A4;
  --paper:      #FFFFFF;
  --cream:      #F7F5EF;       /* off-white "uncoated paper" */
  --line:       #E5E7EB;
  --line-soft:  #EFF1F4;
  --accent:     #FF6A00;       /* press orange */
  --accent-ink: #C24E00;
  --accent-soft: #FFEFE2;
  --cyan:       #00B7D4;
  --magenta:    #E5006B;
  --yellow:     #FFCD00;
  --shadow:     0 1px 2px rgba(11,26,43,.04), 0 8px 24px rgba(11,26,43,.06);
  --shadow-lg:  0 2px 4px rgba(11,26,43,.05), 0 24px 60px rgba(11,26,43,.10);

  --radius:     14px;
  --radius-sm:  8px;
  --radius-pill: 999px;

  --container:  1280px;
  --gutter:     clamp(20px, 4vw, 48px);

  --t-display: clamp(2.6rem, 6vw, 5.5rem);
  --t-h1:      clamp(2.2rem, 4.4vw, 3.8rem);
  --t-h2:      clamp(1.6rem, 2.6vw, 2.4rem);
  --t-h3:      1.25rem;
  --t-eyebrow: .76rem;

  --ease:      cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); letter-spacing: -.018em; }
h3 { font-size: var(--t-h3); letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

p { margin: 0 0 1em; }
.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.brand__mark::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto auto;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.brand__name { font-size: 1rem; }
.brand__tld { color: var(--ink-mute); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.nav__link:hover { background: var(--cream); }
.nav__link--active { background: var(--cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav__toggle { display: none; }

@media (max-width: 900px) {
  .nav__list { display: none; }
  .nav__toggle {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .nav__toggle span,
  .nav__toggle span::before,
  .nav__toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    position: relative;
  }
  .nav__toggle span::before { content: ""; position: absolute; top: -6px; left: 0; }
  .nav__toggle span::after { content: ""; position: absolute; top: 6px; left: 0; }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--paper);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__link { padding: 14px; border-radius: 12px; }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.005em;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--paper); }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--accent); transform: translateY(-1px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }

.btn .arrow { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 120px) 0 clamp(48px, 8vw, 96px);
  background: var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero__title {
  font-size: var(--t-display);
  line-height: .96;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 18px 0 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--accent-soft) 60%);
  padding: 0 .08em;
}
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__meta dt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.hero__meta dd { margin: 0; font-weight: 600; font-size: 1rem; color: var(--ink); }

/* Hero visual (print-press metaphor with CMYK overlapping shapes) */
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  mix-blend-mode: multiply;
  opacity: .85;
}
.hero__visual::before {
  width: 70%;
  aspect-ratio: 1;
  top: 8%;
  left: -8%;
  background: var(--cyan);
}
.hero__visual::after {
  width: 75%;
  aspect-ratio: 1;
  bottom: -10%;
  right: -10%;
  background: var(--magenta);
}
.hero__visual .blob-y {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  top: 30%;
  right: 10%;
  border-radius: 50%;
  background: var(--yellow);
  mix-blend-mode: multiply;
  opacity: .9;
}
.hero__visual .reg-mark {
  position: absolute;
  width: 36px;
  height: 36px;
  color: var(--ink);
}
.hero__visual .reg-mark--tl { top: 16px; left: 16px; }
.hero__visual .reg-mark--br { bottom: 16px; right: 16px; }
.hero__visual .label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============ SECTIONS ============ */

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .lead { color: rgba(255,255,255,.78); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; } }
.section__head .lead { margin-top: 0; }

.section__num {
  font-family: "Inter Tight", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ============ PRODUCT GRID (homepage) ============ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}
.product-card__icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  color: var(--ink);
  opacity: .85;
}
.product-card__cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.product-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 10px;
}
.product-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.product-card:hover .product-card__arrow { background: var(--accent); transform: translate(2px, -2px); }

/* tinted variants per product */
.product-card[data-tone="cyan"]    { background: linear-gradient(135deg, #DCF6FA 0%, #FFF 70%); }
.product-card[data-tone="magenta"] { background: linear-gradient(135deg, #FCE0EC 0%, #FFF 70%); }
.product-card[data-tone="yellow"]  { background: linear-gradient(135deg, #FFF7D0 0%, #FFF 70%); }
.product-card[data-tone="ink"]     { background: linear-gradient(135deg, #E6E9EF 0%, #FFF 70%); }
.product-card[data-tone="orange"]  { background: linear-gradient(135deg, #FFE4D0 0%, #FFF 70%); }
.product-card[data-tone="green"]   { background: linear-gradient(135deg, #DEF1E2 0%, #FFF 70%); }

/* ============ WHY US (sec 3) ============ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.why-item__num {
  display: inline-block;
  font-family: "Inter Tight", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-item h3 { font-size: 1.2rem; margin: 0 0 8px; }
.why-item p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ============ AUDIENCE chips (sec 4) ============ */

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
}
.audience__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.audience__chip:hover { border-color: var(--ink); background: var(--cream); }
.audience__chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============ REALISATIES gallery ============ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__cell {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .3s var(--ease);
}
.gallery__cell:hover { transform: scale(1.01); }
.gallery__cell--wide { grid-column: span 2; }
.gallery__cell--tall { grid-row: span 2; }

/* CMYK overlay placeholders (will be replaced by real photos) */
.gallery__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, var(--cyan) 0, transparent 35%),
    radial-gradient(circle at 75% 35%, var(--magenta) 0, transparent 35%),
    radial-gradient(circle at 55% 75%, var(--yellow) 0, transparent 35%);
  mix-blend-mode: multiply;
  opacity: .5;
}
.gallery__cell span { position: relative; z-index: 1; }

/* ============ CTA BANNER ============ */

.cta-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  opacity: .9;
  filter: blur(0);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--paper); margin: 0 0 12px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0; max-width: 50ch; }
.cta-banner__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__actions { justify-content: flex-start; }
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 64px 0 32px;
  font-size: .94rem;
}
.site-footer h4 {
  color: var(--paper);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,.72); transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ============ PRODUCT PAGE ============ */

.product-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: .88rem;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink-mute); }

.product-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .product-hero__grid { grid-template-columns: 1fr; } }

.product-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  margin: 8px 0 20px;
  letter-spacing: -.03em;
}
.product-hero__intro { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }
.product-hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.product-hero__visual {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--cyan) 0, transparent 36%),
    radial-gradient(circle at 70% 70%, var(--magenta) 0, transparent 36%);
  mix-blend-mode: multiply;
  opacity: .6;
}
.product-hero__visual span {
  position: relative;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  opacity: .92;
}

/* feature rows */
.feature-block { padding: clamp(48px, 7vw, 96px) 0; }
.feature-block + .feature-block { border-top: 1px solid var(--line); }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
@media (max-width: 700px) { .bullet-list { grid-template-columns: 1fr; } }
.bullet-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  line-height: 1.5;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.material-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.material-table > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.material-table > div:last-child { border-bottom: none; }
@media (max-width: 700px) {
  .material-table > div { grid-template-columns: 1fr; gap: 6px; }
}
.material-table h4 { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.material-table p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(0); }
.faq-item__body {
  padding: 0 28px 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ QUOTE FORM ============ */

.quote-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 112px) 0;
}
.quote-section h2, .quote-section .lead { color: var(--paper); }
.quote-section .lead { color: rgba(255,255,255,.78); }

.quote-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .quote-form-wrap { grid-template-columns: 1fr; } }

.quote-form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 20px;
  display: grid;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.field-files {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field-files:hover { border-color: var(--ink); }
.field-files input { display: none; }
.field-files__hint { font-size: .88rem; color: var(--ink-soft); margin-top: 4px; }
.field-files.has-files { border-color: var(--accent); background: var(--accent-soft); }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status {
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}
.form-status.is-success { display: block; background: #E8F8EE; color: #1F6B3D; }
.form-status.is-error { display: block; background: #FCE8E8; color: #8A1F1F; }

.form-side h3 { color: var(--paper); margin-bottom: 16px; }
.form-side ul { list-style: none; padding: 0; margin: 0 0 24px; }
.form-side ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.84);
}
.form-side ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.form-side__contact a { color: var(--accent); font-weight: 600; }

/* ============ 404 ============ */

.error-page {
  display: grid;
  place-items: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 24px;
}
.error-page h1 { font-size: clamp(3rem, 8vw, 6rem); margin: 0 0 16px; }
.error-page p { color: var(--ink-soft); margin: 0 0 24px; max-width: 40ch; }

/* ============ PRINT-MARK helpers ============ */

.print-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
}
.print-mark::before, .print-mark::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.print-mark::before { left: -6px; right: -6px; top: 50%; height: 2px; transform: translateY(-50%); }
.print-mark::after { top: -6px; bottom: -6px; left: 50%; width: 2px; transform: translateX(-50%); }
