/* ============================================================
   PLOŠINA MOJKO — design tokens & styles
   ============================================================ */

:root {
  --accent: #D8232A;
  --accent-deep: #B31A22;
  --ink: #0E1620;
  --ink-2: #2A3540;
  --ink-3: #5B6772;
  --line: #E4E2DD;
  --line-2: #CFCCC4;
  --paper: #FBFAF6;
  --paper-2: #F2EFE8;
  --steel: #8A99A8;
  --steel-soft: #C9D1D9;
  --warm-white: #F6F4EF;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --section-y: clamp(72px, 9vw, 128px);
  --gutter: clamp(20px, 4vw, 56px);

  --f-display: "Manrope", system-ui, -apple-system, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

:root[data-density="compact"] {
  --section-y: clamp(56px, 6vw, 88px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================ */
/* TYPE */
/* ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
}
h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
}
h4 { font-size: 18px; line-height: 1.3; }
h5 { font-size: 13px; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 600; }

p { margin: 0; text-wrap: pretty; }
.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.hl { color: var(--accent); }
.hl.underline {
  display: inline-block;
  position: relative;
}
.hl.underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.16em;
  background: var(--accent);
  opacity: 0.18;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.eyebrow__bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow--light .eyebrow__bar { background: #fff; }

/* ============================================================ */
/* LAYOUT */
/* ============================================================ */

.page { min-height: 100vh; }

.section {
  padding: var(--section-y) var(--gutter);
  max-width: 1480px;
  margin: 0 auto;
}
.section--alt {
  background: var(--paper-2);
  max-width: none;
  margin: 0;
  padding-left: max(var(--gutter), calc(50% - 740px));
  padding-right: max(var(--gutter), calc(50% - 740px));
}
.section__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: end;
}
.section__head h2 {
  grid-column: 1;
  grid-row: 2;
}
.section__head .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.section__head .section__lede {
  grid-column: 2;
  grid-row: 2;
  max-width: 48ch;
  align-self: end;
}
.section__head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section__head--centered .eyebrow,
.section__head--centered h2 { grid-column: 1; }

@media (max-width: 760px) {
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .section__head .eyebrow,
  .section__head h2,
  .section__head .section__lede { grid-column: 1; grid-row: auto; }
}

/* ============================================================ */
/* NAV */
/* ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, padding 0.2s, background 0.2s;
}
.nav--scrolled {
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.nav__brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav__brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
  font-family: var(--f-display);
  font-weight: 800;
}
.nav__brand-text strong {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.nav__brand-text em {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
  font-style: normal;
  margin-top: 2px;
}
@media (min-width: 1100px) {
  .nav__brand-text { display: flex; }
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) { .nav__links { display: none; } }

.nav__cta { flex: 0 0 auto; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.18s, background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--lg { padding: 16px 24px; font-size: 16px; }
.btn--solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 16px -8px rgba(216,35,42,0.4);
}
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.22); }

.btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
}
.btn__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================ */
/* PLACEHOLDERS */
/* ============================================================ */

.placeholder {
  width: 100%;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.placeholder__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder__label {
  position: absolute;
  inset: 12px;
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: rgba(255,255,255,0.78);
  border-radius: 4px;
  align-self: flex-start;
  height: fit-content;
  width: fit-content;
  max-width: calc(100% - 24px);
  text-transform: lowercase;
}

/* ============================================================ */
/* HERO — SPLIT (default) */
/* ============================================================ */

.hero {
  padding: 64px var(--gutter) 96px;
  max-width: 1480px;
  margin: 0 auto;
}
.hero--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 100px);
}
@media (max-width: 980px) {
  .hero--split { grid-template-columns: 1fr; gap: 48px; min-height: 0; }
}
.hero__copy { max-width: 640px; }
.hero h1 { margin-bottom: 28px; }
.hero .lede { margin-bottom: 36px; max-width: 52ch; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
}
.hero__bullets li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-2);
}
.hero__bullets svg { color: var(--accent); flex-shrink: 0; }

.hero__visual { position: relative; }
.hero__visual-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.hero__visual-frame .placeholder { border-radius: var(--r-lg); }
.hero__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.hero__badge-num {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.hero__badge-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.hero__chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: 0 6px 14px -8px rgba(0,0,0,0.15);
}
.hero__chip--tl { top: 24px; right: -16px; }
.hero__chip--br { bottom: 24px; right: -32px; }

@media (max-width: 980px) {
  .hero__badge { left: 16px; bottom: 16px; }
  .hero__chip--tl, .hero__chip--br { right: 16px; }
}

/* HERO — FULLBLEED */
.hero--full {
  position: relative;
  padding: 0;
  max-width: none;
  margin: 0;
  min-height: 86vh;
  display: flex;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg .placeholder {
  width: 100%; height: 100%;
  border-radius: 0; border: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(14,22,32,0.85) 0%, rgba(14,22,32,0.5) 60%, rgba(14,22,32,0.2) 100%);
}
.hero__overlay {
  position: relative; z-index: 1;
  align-self: center;
  padding: 80px var(--gutter);
  max-width: 980px;
  color: #fff;
}
.hero__overlay h1 { color: #fff; margin-bottom: 28px; }
.hero__overlay .lede { color: rgba(255,255,255,0.85); max-width: 52ch; margin-bottom: 36px; }
.hero--full .hl { color: var(--accent); }

/* HERO — EDITORIAL */
.hero--editorial { padding-top: 24px; padding-bottom: 120px; }
.hero__editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  min-height: 70vh;
}
@media (max-width: 980px) {
  .hero__editorial-grid { grid-template-columns: 1fr; gap: 40px; }
}
.display-no {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.hero__editorial-h1 {
  font-size: clamp(48px, 7.5vw, 116px) !important;
  line-height: 0.92 !important;
  margin-bottom: 32px;
}
.hero__editorial-stack { display: flex; flex-direction: column; gap: 20px; }
.hero__editorial-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero__editorial-meta > div { display: flex; justify-content: space-between; }
.meta-k { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.meta-v { color: var(--ink); font-weight: 600; }

/* ============================================================ */
/* MARQUEE */
/* ============================================================ */

.marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.marquee__item { display: inline-flex; align-items: center; gap: 48px; }
.marquee__dot { color: var(--accent); font-style: normal; font-size: 10px; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================ */
/* SERVICES */
/* ============================================================ */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

.service {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s, transform 0.25s;
  min-height: 280px;
}
.service:hover { background: #fff; }
.service__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.service__icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service h3 { margin-bottom: 12px; }
.service__short {
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 15px;
}
.service__long {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 24px;
  flex: 1;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}
.service__link svg { transition: transform 0.2s; }
.service__link:hover svg { transform: translateX(4px); }

.service--highlight {
  background: var(--ink);
  color: #fff;
}
.service--highlight h3, .service--highlight .service__num { color: #fff; }
.service--highlight .service__short { color: rgba(255,255,255,0.92); }
.service--highlight .service__long { color: rgba(255,255,255,0.65); }
.service--highlight:hover { background: #1a232f; }
.service--highlight .service__icon { color: var(--accent); }

/* ============================================================ */
/* WHY US */
/* ============================================================ */

.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .why { grid-template-columns: 1fr; } }
.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.why__num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.why__head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.why__tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.why__body p { color: var(--ink-2); font-size: 15px; }

/* ============================================================ */
/* PROCESS */
/* ============================================================ */

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.process__step {
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.process__step::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  height: 2px; width: 40px;
  background: var(--accent);
}
.process__n {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.process__step h4 { margin-bottom: 8px; }
.process__step p { font-size: 14px; color: var(--ink-2); }

/* ============================================================ */
/* GALLERY */
/* ============================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery .placeholder { border-radius: var(--r-md); }

.testimonial {
  margin-top: 64px;
  padding: 48px 40px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 800px;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================ */
/* PRICING */
/* ============================================================ */

.pricing { display: flex; flex-direction: column; }
.pricing__row {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
}
.pricing__label {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--ink);
}
.pricing__dots {
  flex: 1;
  border-bottom: 2px dotted var(--line-2);
  align-self: end;
  margin-bottom: 6px;
  min-width: 40px;
}
.pricing__from {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.pricing__note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 200px;
  text-align: right;
}
@media (max-width: 720px) {
  .pricing__row { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .pricing__dots { display: none; }
  .pricing__note { grid-column: 1 / -1; text-align: left; width: auto; }
}
.pricing__foot {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ============================================================ */
/* FAQ */
/* ============================================================ */

.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.faq__item.is-open .faq__plus { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ============================================================ */
/* CONTACT */
/* ============================================================ */

.section--contact {
  background: var(--ink);
  max-width: none;
  margin: 0;
  color: #fff;
  padding-left: max(var(--gutter), calc(50% - 740px));
  padding-right: max(var(--gutter), calc(50% - 740px));
}
.section--contact h2 { color: #fff; }
.section--contact .lede { color: rgba(255,255,255,0.78); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .contact { grid-template-columns: 1fr; gap: 48px; } }

.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 40px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.contact__channel {
  background: var(--ink);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__channel-k {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.contact__channel-v {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
a.contact__channel:hover .contact__channel-v { color: var(--accent); }

.contact__form {
  background: #fff;
  color: var(--ink);
  padding: 40px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__form h3 { font-size: 24px; margin-bottom: 4px; }
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.15s, background 0.15s;
}
.contact__form textarea { font-family: var(--f-body); resize: vertical; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.contact__legal {
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.contact__sent {
  padding: 40px 20px;
  text-align: center;
}
.contact__sent h3 { color: var(--accent); margin-bottom: 8px; }

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

.footer {
  background: var(--paper-2);
  padding: 64px var(--gutter) 32px;
  color: var(--ink-2);
  font-size: 14px;
}
.footer__cols {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand img { height: 56px; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--accent); }
.footer__bottom {
  max-width: 1480px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

/* ============================================================ */
/* TESTIMONIALS GRID */
/* ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 720px) { .testimonials { grid-template-columns: 1fr; } }

.testimonials .testimonial {
  margin: 0;
  max-width: none;
}

/* ============================================================ */
/* GDPR MODAL */
/* ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 32, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: overlay-in 0.18s ease-out;
}
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 760px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
  animation: modal-in 0.22s ease-out;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}
.modal__close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.modal__body {
  padding: 56px 48px 48px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.modal__body h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.6vw, 34px);
}
.modal__body h3 {
  margin: 32px 0 12px;
  font-size: 20px;
  color: var(--ink);
}
.modal__body h4 {
  margin: 20px 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-weight: 600;
}
.modal__body p { margin: 0 0 10px; }
.modal__body ul { margin: 0 0 12px; padding-left: 18px; }
.modal__body ul li { margin-bottom: 4px; }
.modal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.modal__updated {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .modal__body { padding: 56px 24px 32px; }
}

/* ============================================================ */
/* COOKIE BANNER */
/* ============================================================ */

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 45;
  max-width: 480px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.4);
  font-size: 13px;
  line-height: 1.5;
  animation: cookie-in 0.4s ease-out;
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cookie-banner p { margin: 0; flex: 1; color: rgba(255,255,255,0.85); }
.cookie-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 80px; }
}

/* ============================================================ */
/* FOOTER LEGAL LINKS */
/* ============================================================ */

.footer__legal-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__legal-links a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal-links a:hover { color: var(--accent); }

.sticky-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(216,35,42,0.55);
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 880px) { .sticky-call { display: inline-flex; } }
