/* Digital Boost — Website styles (supplements colors-and-type.css) */

html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg-1); color: var(--fg-1); }
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* -------------------- NAV -------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: center;
  padding: 26px 40px;
  background: transparent;
  border-bottom: 0;
  color: var(--db-white);
  transition: color 280ms var(--ease-out);
}
.nav__burger { position: absolute; right: 32px; top: 50%; transform: translateY(-50%); }
.nav.nav--scrolled {
  background: transparent;
  border-bottom: 0;
  color: var(--db-white);
}
/* When user scrolls past the dark hero into a light section, invert nav colors
   so logo + burger remain readable. The .nav--inverted class is toggled by JS
   based on the colour of the section currently sitting under the header. */
.nav.nav--inverted { color: var(--db-black); }
.nav.nav--inverted .nav__burger span { background: var(--db-black) !important; }
.nav.nav--inverted .nav__logo .text-logo { color: var(--db-black) !important; }
.nav.nav--inverted .nav__logo .accent { color: var(--accent) !important; }

/* Overlay open beats inversion — overlay is dark, force white. */
body.is-overlay-open .nav,
body.is-overlay-open .nav.nav--inverted {
  color: var(--db-white) !important;
}
body.is-overlay-open .nav .text-logo,
body.is-overlay-open .nav.nav--inverted .text-logo { color: var(--db-white) !important; }
body.is-overlay-open .nav__burger span,
body.is-overlay-open .nav.nav--inverted .nav__burger span { background: var(--db-white) !important; }
.nav__logo {
  display: inline-flex; align-items: center; padding: 0;
  background: transparent; border: none; cursor: pointer; max-width: 240px;
  color: inherit; font-family: 'Archivo Black', sans-serif;
  font-size: 20px; letter-spacing: 0.005em; text-transform: lowercase;
}
.nav__logo img { height: 55px; max-height: 55px; width: auto; display: block; filter: invert(1) brightness(2); transition: filter .3s ease; }
.nav__logo .accent { color: var(--accent); }
.nav__burger {
  display: flex; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 32;
}
.nav__burger span {
  display: block; width: 56px; height: 2px; background: #ffffff;
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 25;
  background: #0F0F0F; color: var(--db-white);
  animation: fade-in 240ms ease-out;
  overflow: hidden; display: none;
}
.nav-overlay.is-open { display: block; }
.nav-overlay__logo { position: absolute; top: 28px; left: 40px; z-index: 3; background: transparent; border: none; cursor: pointer; padding: 0; display: inline-flex; align-items: center; max-width: 240px; color: var(--db-white); font-family: 'Archivo Black', sans-serif; font-size: 20px; text-transform: lowercase; letter-spacing: 0.005em; }
.nav-overlay__logo .accent { color: var(--accent); }
.nav-overlay__logo img { height: 28px; max-height: 28px; width: auto; display: block; }
.nav-overlay__close { position: absolute; top: 22px; right: 34px; z-index: 3; width: 48px; height: 48px; border-radius: 999px; background: transparent; border: none; color: var(--db-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 160ms; }
.nav-overlay__close:hover { color: var(--accent); }
.nav-overlay__grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1.15fr 1fr; padding: 120px 80px 80px; gap: 80px; align-items: stretch; }
.nav-overlay__grid::before { content: ""; position: absolute; top: 120px; bottom: 80px; left: 52%; width: 1px; background: rgba(255,255,255,0.12); }
.nav-overlay__left {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 24px;
  height: 100%;
  list-style: none;
}
.nav-overlay__left ul,
.nav-overlay__left li,
.nav-overlay__left .menu { list-style: none; padding: 0; margin: 0; }
.nav-overlay__link {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(19px, 3.28vw, 55px); line-height: 0.95; letter-spacing: -0.015em;
  text-transform: uppercase; color: var(--db-white);
  background: transparent; border: none; padding: 0; cursor: pointer;
  text-align: center; text-decoration: none;
  transition: color 160ms, transform 160ms var(--ease-out);
  display: block; width: 100%;
}
.nav-overlay__link:hover { color: var(--accent); transform: translateY(-2px); }
.nav-overlay__right { display: flex; flex-direction: column; justify-content: center; }
.nav-overlay__right { max-width: 360px; }
.nav-overlay__block { margin-bottom: 40px; }
.nav-overlay__block:last-child { margin-bottom: 0; }
.nav-overlay__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.nav-overlay__text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.nav-overlay__socials { display: flex; gap: 14px; }
.nav-overlay__socials a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); transition: color 160ms, border-color 160ms; }
.nav-overlay__socials a:hover { color: var(--accent); border-color: var(--accent); }

/* -------------------- HERO -------------------- */
.hero {
  position: relative; padding: 0 40px;
  background: var(--db-charcoal); color: var(--db-white);
  overflow: hidden; text-align: center;
  min-height: 100vh; display: flex; flex-direction: column;
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 18vh;
  width: 100%;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 35% at 50% 50%, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0) 70%), linear-gradient(180deg, rgba(20,20,20,0.4) 0%, transparent 25%, transparent 75%, rgba(20,20,20,0.6) 100%); pointer-events: none; }
.hero-bg-arrow { position: absolute; bottom: -60px; font-family: 'Archivo Black', sans-serif; color: rgba(255,255,255,0.7); transform: rotate(-90deg) scaleX(1.6) scaleY(1.4); animation: heroArrowDrift linear infinite; line-height: 1; font-weight: 900; }
.hero-bg-arrow.is-accent { color: var(--accent); text-shadow: 0 0 18px rgba(255,106,31,0.6); }
@keyframes heroArrowDrift {
  0%   { transform: translateY(0) rotate(-90deg) scaleX(1.6) scaleY(1.4); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-115vh) rotate(-90deg) scaleX(1.6) scaleY(1.4); opacity: 0; }
}
.hero-bg--grid { background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 56px 56px; background-position: center; }
.hero-bg-grid-pulse { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,106,31,0.30), transparent 60%), radial-gradient(ellipse 50% 35% at 50% 0%, rgba(255,106,31,0.12), transparent 65%); animation: heroGridPulse 6s ease-in-out infinite alternate; }
@keyframes heroGridPulse { 0% { transform: translateY(40px); opacity: 0.65; } 100% { transform: translateY(-20px); opacity: 1; } }
.hero-bg--echo { display: flex; flex-direction: column; justify-content: center; gap: 40px; }
.hero-bg-echo-row { font-family: 'Archivo Black', sans-serif; font-size: clamp(80px, 13vw, 200px); line-height: 0.95; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.07); animation: heroEchoSlide 30s linear infinite; }
.hero-bg-echo-row--reverse { animation-direction: reverse; -webkit-text-stroke-color: rgba(255,106,31,0.18); }
@keyframes heroEchoSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero__eyebrow { font-family: 'Archivo Black', sans-serif; font-size: clamp(18px, 1.8vw, 26px); letter-spacing: 0.02em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.7); margin: 0 auto 40px; }
.hero__title { font-family: 'Archivo Black', sans-serif; font-size: clamp(48px, 7.13vw, 114px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; white-space: nowrap; }
.hero__title--outline { color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hero__sub { margin: 36px auto 0; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.75); max-width: 560px; }
.hero__ctarow { margin-top: 48px; display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }

.hero-buttons-row {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-top: 2.5rem;
}

.btn-pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background 140ms, color 140ms, border-color 140ms; text-decoration: none; }
.btn-pill:hover { background: var(--accent); color: var(--db-white); border-color: var(--accent); }
.btn-pill--primary { background: var(--accent); color: var(--db-white); border-color: var(--accent); }
.btn-pill--primary:hover { background: var(--db-orange-600); border-color: var(--db-orange-600); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: inherit; cursor: pointer; background: transparent; border: none; padding: 14px 4px; text-decoration: none; }
.btn-ghost:hover { color: var(--accent); }

/* ============================================================
   HERO BOTTOM CONTENT — buttons + animated logo marquee.
   1:1 z Media Nation theme, z !important na constraintach żeby
   żadne globalne reguły nie powiększały logotypów.
   ============================================================ */
.hero-trusted {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: auto auto 4vh !important; /* push to bottom of hero, horizontally centered */
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100% !important;
  max-width: 900px !important;
}
.hero-trusted-label {
  display: block;
  font-family: var(--font-mono), 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.hero-trusted-logos {
  position: relative;
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.hero-trusted-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 4rem;
  animation: db-marquee 30s linear infinite;
  width: max-content !important;
}
.hero-trusted-track img {
  height: 60px !important;
  width: auto !important;
  max-width: 250px !important;
  max-height: 60px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0 !important;
  display: block !important;
}
.hero-trusted-track img:hover { opacity: 1; }
.hero-trusted-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-trusted-logos:hover .hero-trusted-track { animation-play-state: paused; }
@keyframes db-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-trusted-track { animation: none; } }

/* Hero CTA buttons — Media Nation 1:1 */
.hero__btn,
.hero-buttons-row .hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem;
  padding: 1.1rem 2.75rem !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: rgba(0,0,0,0.35) !important;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  margin-top: 0;
}
.hero__btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}
.hero__btn:hover { color: #1a1a2e !important; background: transparent !important; border-color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.hero__btn:hover::before { left: 0; }

/* -------------------- ABOUT (Kim jesteśmy) -------------------- */
.db-about { padding: 100px 40px; }
.db-about__inner { max-width: 1080px; margin: 0 auto; }
.db-about__eyebrow { margin-bottom: 32px; color: var(--fg-3); }
.db-about__text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0;
}
/* Highlights are INERT by default — text reads as plain black.
   On scroll past 75% the .is-active class flips them to orange-on-black,
   slowly with a small stagger between the two highlight blocks. */
.db-about .db-highlight,
.db-about__text .db-highlight {
  background: transparent !important;
  color: inherit !important;
  padding: 0.06em 0.28em 0.14em;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: inherit;
  transition: background 1800ms var(--ease-out), color 1800ms var(--ease-out);
  transition-delay: 0ms;
}
.db-about__text .db-highlight ~ .db-highlight,
.db-about__text .db-highlight + * .db-highlight {
  /* Second (and later) highlight blocks get a small delay for sequential reveal. */
  transition-delay: 500ms;
}
.db-about.is-active .db-highlight,
.db-about.is-active .db-about__text .db-highlight {
  background: var(--db-black) !important;
  color: var(--accent) !important;
}
.db-about__cta { margin-top: 40px; }

@media (prefers-reduced-motion: reduce) {
  .db-about .db-highlight { transition: none !important; transition-delay: 0 !important; }
}

/* -------------------- SECTIONS -------------------- */
.section { padding: 120px 40px; }
.section--paper { background: var(--bg-1); }
.section--bone { background: var(--bg-2); }
.section--dark { background: var(--db-black); color: var(--db-white); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; margin-bottom: 56px; flex-wrap: wrap; }
.section__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 14px; }
.section--dark .section__eyebrow { color: rgba(255,255,255,0.5); }
.section__title { font-family: var(--font-title); font-weight: 500; font-size: 48px; line-height: 1.08; letter-spacing: -0.015em; max-width: 680px; margin: 0; }
.section__desc { max-width: 400px; font-size: 15px; line-height: 1.55; color: var(--fg-3); }
.section--dark .section__desc { color: rgba(255,255,255,0.6); }

/* -------------------- SERVICES -------------------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--db-line-light); border: 1px solid var(--db-line-light); }
.service-card { background: var(--bg-1); padding: 36px 28px; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; transition: background 160ms; }
.service-card:hover { background: var(--db-black); color: var(--db-white); }
.service-card:hover .service-card__num { color: var(--accent); }
.service-card__num { font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); letter-spacing: 0.08em; }
.service-card__title { font-family: var(--font-title); font-weight: 500; font-size: 22px; line-height: 1.2; margin: 32px 0 12px; letter-spacing: -0.01em; }
.service-card__desc { font-size: 13px; line-height: 1.5; color: var(--fg-3); }
.service-card:hover .service-card__desc { color: rgba(255,255,255,0.7); }

/* -------------------- WORK GRID -------------------- */
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; grid-auto-rows: 360px; }
.work-card { position: relative; display: block; text-decoration: none; color: inherit; grid-column: span 1; cursor: pointer; }
.work-card--feat { grid-column: span 2; }
.work-card--static { cursor: default; }
.work-card--static .work-card__subs { max-width: calc(100% - 36px); }
.work-card__frame { position: relative; border-radius: 14px; overflow: hidden; background: var(--bg-card); height: 100%; isolation: isolate; }
.work-card__img { position: absolute; inset: -3%; background-size: cover; background-position: center; transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease; filter: saturate(0.92); will-change: transform; }
.work-card__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  display: block;
}
/* Slideshow — multiple images cross-faded by JS-toggled .is-active class. */
.work-card__slides { position: absolute; inset: 0; z-index: 1; }
.work-card__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.92);
}
.work-card__slide.is-active { opacity: 1; }
.work-card:hover .work-card__slide { filter: saturate(1.1); }
.work-card:hover .work-card__img { transform: scale(1.07) translateY(-1.2%); filter: saturate(1.1); }
.work-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.55) 100%); opacity: 0.85; transition: opacity 480ms ease; }
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__cta { position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--db-white); padding: 8px 12px 8px 14px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0; transform: translateY(-6px); transition: opacity 320ms ease, transform 320ms cubic-bezier(0.22,1,0.36,1); }
.work-card:hover .work-card__cta { opacity: 1; transform: translateY(0); }
.work-card__chip { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(12,12,12,0.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--db-white); padding: 11px 14px 11px 11px; border-radius: 12px; display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,0.08); max-width: max-content; transform: translateY(0); transition: transform 480ms cubic-bezier(0.22,1,0.36,1), background 320ms ease; }
.work-card:hover .work-card__chip { transform: translateY(-4px); background: rgba(12,12,12,0.92); }
.work-card__chip-mark { width: 28px; height: 28px; border-radius: 6px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Archivo Black', sans-serif; font-size: 11px; color: var(--db-white); flex-shrink: 0; letter-spacing: 0.02em; }
.work-card__chip-text { line-height: 1.2; }
.work-card__title { font-family: var(--font-title); font-weight: 500; font-size: 14px; letter-spacing: -0.005em; line-height: 1.2; }
.work-card__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 3px; }
/* Sub-entities pill stack — top-left of card. Reserve room on the right for VIEW CASE button. */
.work-card__subs {
  position: absolute; top: 18px; left: 18px;
  max-width: calc(100% - 170px); /* keeps chips clear of the VIEW CASE pill (right:18 + ~140px wide) */
  display: flex; flex-wrap: wrap; gap: 6px;
  z-index: 3;
}
.work-card__sub {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(255,255,255,0.92); color: var(--db-black);
  padding: 5px 9px; border-radius: 4px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0; transform: translateY(-4px);
  transition: opacity 360ms cubic-bezier(0.22,1,0.36,1), transform 360ms cubic-bezier(0.22,1,0.36,1);
}
.work-card:hover .work-card__sub { opacity: 1; transform: translateY(0); }
.work-card__sub:nth-child(1) { transition-delay: 0ms; }
.work-card__sub:nth-child(2) { transition-delay: 60ms; }
.work-card__sub:nth-child(3) { transition-delay: 120ms; }
.work-card__sub:nth-child(4) { transition-delay: 180ms; }
.work-card__sub:nth-child(5) { transition-delay: 240ms; }
.work-card__sub:nth-child(n+6) { transition-delay: 300ms; }
/* Always show the first one as a subtle hint even without hover */
.work-card__sub:nth-child(1) { opacity: 0.85; transform: translateY(0); }
.work-card__sub:nth-child(1)::after {
  content: ""; /* hint we have more */
}
.work__footer { display: flex; justify-content: flex-end; margin-top: 32px; }
.work__footer a { color: var(--fg-1); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* -------------------- PROCESS -------------------- */
.process-row { display: grid; grid-template-columns: 80px 1fr 1fr 1fr; gap: 40px; padding: 36px 0; border-bottom: 1px solid var(--db-line-light); align-items: start; transition: padding 240ms; }
.process-row:hover { padding-left: 12px; }
.process-row__num { font-family: 'Archivo Black', sans-serif; font-size: 48px; color: var(--accent); line-height: 1; }
.process-row__title { font-family: var(--font-title); font-weight: 500; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; }
.process-row__desc { font-size: 14px; color: var(--fg-3); line-height: 1.6; }
.process-row__list { font-size: 13px; color: var(--fg-2); line-height: 1.8; padding: 0; list-style: none; margin: 0; }
.process-row__list li::before { content: "→ "; color: var(--accent); }

/* -------------------- TESTIMONIALS -------------------- */
.testi-stack { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.testi-card { background: #F1EFE9; border-radius: 16px; padding: 22px 24px; cursor: pointer; transition: background 160ms; }
.testi-card:hover { background: #EBE8E1; }
.testi-card__row { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 999px; background-size: cover; background-position: center; flex-shrink: 0; background-color: #D4D1C9; }
.testi-card__name { font-family: var(--font-title); font-weight: 600; font-size: 15px; color: var(--fg-1); }
.testi-card__role { font-size: 13px; color: var(--fg-3); margin-top: 1px; }
.testi-card__grow { flex: 1; }
.testi-card__logo { width: 44px; height: 44px; border-radius: 10px; background: var(--db-black); color: var(--db-white); display: flex; align-items: center; justify-content: center; font-family: 'Archivo Black', sans-serif; font-size: 14px; flex-shrink: 0; }
.testi-card__logo--orange { background: var(--accent); }
.testi-card__logo--bone { background: #F2F1EC; color: var(--fg-1); border: 1px solid var(--db-line-light); }
.testi-card.is-open .testi-card__quote { display: block; }
.testi-card__quote { display: none; margin-top: 22px; padding-top: 4px; font-family: var(--font-title); font-weight: 400; font-size: 19px; line-height: 1.45; color: var(--fg-1); }

/* -------------------- FOOTER -------------------- */
.foot { padding: 80px 40px 36px; background: var(--db-black); color: var(--db-white); }
.foot__mark { margin: 20px 0 60px; }
.foot__mark img { height: 60px; max-height: 60px; width: auto; display: block; }
.foot__mark .text-logo { font-family: 'Archivo Black', sans-serif; font-size: 42px; letter-spacing: -0.01em; text-transform: lowercase; color: var(--db-white); }
.foot__mark .text-logo .accent { color: var(--accent); }
.foot__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.foot__title { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.foot__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.foot__list a { color: inherit; }
.foot__list a:hover { color: var(--accent); }
.foot__socials { display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; list-style: none; }
.foot__socials a { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); transition: color 160ms; }
.foot__socials a:hover { color: var(--accent); }
.foot__socials svg { flex-shrink: 0; }
.foot__social-name { font-size: 14px; }
.foot__bottom { display: flex; justify-content: space-between; padding-top: 26px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; flex-wrap: wrap; gap: 16px; }

/* Container */
.container { max-width: 1360px; margin: 0 auto; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(10,10,10,0.72); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; animation: fade-in 200ms ease-out; }
.modal-overlay.is-open { display: flex; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--bg-1); border-radius: 14px; padding: 48px; max-width: 480px; width: 100%; margin: 20px; animation: pop-in 300ms cubic-bezier(0.22,1,0.36,1); }
@keyframes pop-in { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal__title { font-family: var(--font-title); font-weight: 600; font-size: 28px; margin: 0 0 8px; }
.modal__desc { color: var(--fg-3); font-size: 14px; line-height: 1.55; margin: 0 0 28px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.field input, .field textarea, .field select { font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--db-line-light); border-radius: 6px; background: var(--db-white); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--db-black); }
.success-card { text-align: center; padding: 24px 0; }
.success-card__icon { font-family: 'Archivo Black',sans-serif; font-size: 80px; color: var(--accent); line-height: 1; }

/* CONTACT */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__title { font-family: var(--font-title); font-weight: 600; font-size: clamp(38px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 8px 0 16px; color: var(--fg-1); }
.contact__lead { font-size: 15px; line-height: 1.55; color: var(--fg-3); max-width: 420px; margin: 0 0 40px; }
.contact__schedule-label { font-size: 13px; color: var(--fg-3); margin-bottom: 10px; }
.contact__schedule-card { display: flex; align-items: center; gap: 14px; background: var(--db-white); border: 1px solid var(--db-line-light); border-radius: 12px; padding: 12px 12px 12px 16px; max-width: 380px; box-shadow: 0 1px 0 0 rgba(10,10,10,0.02); }
.contact__avatar { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, #D4D1C9, #A8A49A); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 600; color: var(--db-white); font-size: 15px; flex-shrink: 0; }
.contact__avatar--sm { width: 36px; height: 36px; font-size: 13px; }
.contact__who { flex: 1; }
.contact__who-name { font-family: var(--font-title); font-weight: 500; font-size: 15px; color: var(--fg-1); }
.contact__who-role { font-size: 12px; color: var(--fg-3); margin-top: 1px; }
.contact__arrow {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--db-black); color: var(--db-white);
  border: none; cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: background 160ms, transform 160ms;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0;
}
.contact__arrow:hover { background: var(--accent); transform: translateX(2px); }
.contact__quote { margin: 56px 0 48px; padding: 0; font-size: 15px; line-height: 1.55; color: var(--fg-1); max-width: 480px; }
.contact__quote-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.contact__trusted-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 14px; }
.contact__trusted { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--db-line-light); border-radius: 10px; overflow: hidden; }
.contact__trusted-cell { padding: 22px 14px; display: flex; align-items: center; justify-content: center; font-family: 'Archivo Black', sans-serif; font-size: 14px; color: var(--fg-2); letter-spacing: 0.02em; border-right: 1px solid var(--db-line-light); background: var(--db-white); }
.contact__trusted-cell:last-child { border-right: none; }
.contact__trusted-cell img { max-width: 100%; max-height: 36px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.85; transition: opacity 160ms, filter 160ms; }
.contact__trusted-cell:hover img { filter: none; opacity: 1; }

.contact__form { background: #0A0A0A; color: var(--db-white); border-radius: 16px; padding: 36px; }
.contact__form-title { font-family: var(--font-title); font-weight: 500; font-size: 28px; letter-spacing: -0.01em; margin: 0 0 24px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--dark label { color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 13px; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.field--dark input, .field--dark textarea, .field--dark select { background: #151515; border: 1px solid rgba(255,255,255,0.14); color: var(--db-white); padding: 12px 14px; border-radius: 8px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 160ms; }
.field--dark input:focus, .field--dark textarea:focus, .field--dark select:focus { border-color: var(--accent); }
.field--dark textarea { min-height: 96px; resize: vertical; }
.contact__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact__tag { padding: 8px 14px; border-radius: 999px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); font-size: 12px; cursor: pointer; transition: all 140ms; font-family: inherit; }
.contact__tag:hover { border-color: rgba(255,255,255,0.5); }
.contact__tag.is-on { background: var(--db-white); color: var(--db-black); border-color: var(--db-white); }
.contact__fine { font-size: 11px; line-height: 1.5; color: rgba(255,255,255,0.5); margin: 18px 0 14px; }
.contact__fine a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 2px; }
.contact__submit { width: 100%; padding: 16px; border-radius: 10px; background: var(--db-white); color: var(--db-black); border: none; cursor: pointer; font-family: var(--font-title); font-weight: 500; font-size: 14px; letter-spacing: 0.02em; transition: background 160ms, color 160ms; }
.contact__submit:hover { background: var(--accent); color: var(--db-white); }
.contact__success { text-align: center; }
.contact__success-mark { width: 64px; height: 64px; border-radius: 999px; background: var(--accent); color: var(--db-white); font-family: 'Archivo Black', sans-serif; font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }

/* BOOKING PAGE */
.booking-grid { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.booking-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 110px; }
.booking-meta { display: flex; flex-direction: column; gap: 14px; padding: 20px 0; border-top: 1px solid var(--db-line-light); border-bottom: 1px solid var(--db-line-light); }
.booking-meta > div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.booking-meta__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.booking-meta__val { font-family: var(--font-title); font-weight: 500; font-size: 15px; color: var(--fg-1); }
.booking-contact-fallback { font-size: 14px; line-height: 1.6; color: var(--fg-2); }
.booking-contact-fallback a { color: var(--fg-1); border-bottom: 1px solid var(--db-line-light); text-decoration: none; }
.booking-contact-fallback a:hover { color: var(--accent); border-color: var(--accent); }
.booking-frame-wrap { background: var(--db-white); border: 1px solid var(--db-line-light); border-radius: 14px; overflow: hidden; min-height: 720px; }
.booking-frame { width: 100%; min-height: 720px; height: 720px; border: 0; display: block; }
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-side { position: static; }
  .booking-frame-wrap, .booking-frame { min-height: 600px; height: 600px; }
}

/* TESTIMONIAL DARK SECTION */
.testimonial { font-family: var(--font-title); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4; max-width: 24ch; margin: 0 auto; color: var(--db-white); text-align: center; }
.testimonial__author { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .work { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .work-card--feat { grid-column: span 1; }
  .process-row { grid-template-columns: 1fr; gap: 16px; }
  .nav-overlay__grid { grid-template-columns: 1fr; padding: 110px 28px 40px; gap: 40px; }
  .nav-overlay__grid::before { display: none; }
  .contact__grid, .foot__cols { grid-template-columns: 1fr; }
  .hero__logos-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav, .hero, .section, .foot { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
}
