/* ============================================================
   EFEKTA ENERGIA — style.css
   Design system: Fraunces (display) + Inter (body)
   Palette: indigo #241571 (text/headers) · green #6dd47e (accent) · white
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* color */
  --green:      #6dd47e;
  --green-600:  #45c05c;
  --green-050:  #eaf7ee;
  --indigo:     #241571;
  --indigo-700: #362a86;
  --ink:        #14102e;
  --white:      #ffffff;
  --paper:      #f7f7fb;
  --line:       #e7e6f0;
  --muted:      #6b6880;

  /* type */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --fs-display: clamp(2.6rem, 7vw, 6rem);
  --fs-h1:      clamp(2rem, 4.6vw, 3.6rem);
  --fs-h2:      clamp(1.7rem, 3.4vw, 2.75rem);
  --fs-h3:      clamp(1.15rem, 1.9vw, 1.45rem);
  --fs-lead:    clamp(1.08rem, 1.5vw, 1.32rem);
  --fs-body:    clamp(1rem, 1.05vw, 1.1rem);
  --fs-cap:     0.78rem;

  /* spacing */
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 12vw, 160px);
  --maxw: 1200px;

  /* motion */
  --e-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --e-inout: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 200ms;
  --t-med:  500ms;
  --t-slow: 900ms;

  /* radius */
  --r-card: 20px;
  --r-pill: 999px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--indigo);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--green-600); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--indigo); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-size: var(--fs-cap); font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-600);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-title {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--indigo);
}
.section-lead { margin-top: 24px; font-size: var(--fs-lead); color: var(--muted); max-width: 640px; }

/* ---------- BUTTONS ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out),
              color var(--t-fast) var(--e-out), box-shadow var(--t-med) var(--e-out);
  will-change: transform;
}
.btn .ic { transition: transform var(--t-fast) var(--e-out); }
.btn--primary { background: var(--green); color: var(--ink); box-shadow: 0 8px 24px rgba(109,212,126,0.28); }
.btn--primary:hover { background: var(--green-600); box-shadow: 0 14px 36px rgba(109,212,126,0.42); }
.btn--primary:hover .ic { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--indigo); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--indigo); background: var(--indigo); color: #fff; }
.btn--lg { --pad-y: 19px; --pad-x: 38px; font-size: 1.05rem; }
.btn--sm { --pad-y: 11px; --pad-x: 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--indigo-700); outline-offset: 3px; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--indigo); pointer-events: none; z-index: 300;
  transform: translate(-50%, -50%) scale(1); transition: width .25s var(--e-out),
    height .25s var(--e-out), background .25s var(--e-out), border-color .25s var(--e-out), opacity .25s;
  mix-blend-mode: multiply; opacity: 0;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 54px; height: 54px; background: rgba(109,212,126,0.18); border-color: var(--green-600); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out),
              transform var(--t-med) var(--e-out);
}
.nav__inner { display: flex; align-items: center; gap: 24px; padding-block: 18px; }
.nav.is-scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo { flex-shrink: 0; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: 0.96rem; position: relative; padding: 4px 0; color: var(--indigo); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform var(--t-fast) var(--e-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 8px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--indigo); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu { display: none; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 4px; padding: 12px var(--gutter) 28px;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); box-shadow: 0 12px 30px rgba(20,16,46,0.08);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 14px 4px; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 16px; border-bottom: none; justify-content: center; }
}

/* ============================================================
   A. HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(130px, 20vh, 200px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000 0%, transparent 75%);
}

.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.blob--1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -12%; right: -8%;
  background: radial-gradient(circle at 30% 30%, var(--green) 0%, rgba(109,212,126,0) 68%); animation: drift1 22s ease-in-out infinite alternate; }
.blob--2 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; bottom: -18%; left: -12%;
  background: radial-gradient(circle at 60% 40%, var(--indigo) 0%, rgba(36,21,113,0) 70%); opacity: 0.28; animation: drift2 26s ease-in-out infinite alternate; }
.blob--3 { width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; top: -30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(109,212,126,0.5) 0%, rgba(109,212,126,0) 68%); }
@keyframes drift1 { to { transform: translate(-40px, 40px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(50px, -30px) scale(1.1); } }

.hero__inner { display: grid; grid-template-columns: 1.55fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display);
  line-height: 1.02; letter-spacing: -0.03em; color: var(--indigo); margin-bottom: 30px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--green-600); font-style: italic; }
.hero__lead { font-size: var(--fs-lead); color: var(--muted); max-width: 560px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta { padding: 30px; border: 1px solid var(--line); border-radius: var(--r-card); background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.hero__meta-num { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 400; line-height: 1; color: var(--indigo); letter-spacing: -0.03em; display: block; }
.hero__meta-label { display: block; margin-top: 6px; font-size: 0.92rem; color: var(--muted); }
.hero__meta-divider { height: 1px; background: var(--line); margin: 24px 0; transform-origin: left; }
.hero__meta-note { font-size: 0.95rem; color: var(--indigo); font-weight: 500; }

.hero__scroll { position: absolute; left: var(--gutter); bottom: 28px; display: flex; align-items: center; gap: 12px; font-size: var(--fs-cap); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 46px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--green-600); transform: translateX(-100%); animation: scrollcue 2.2s var(--e-inout) infinite; }
@keyframes scrollcue { 0% { transform: translateX(-100%);} 50%{ transform: translateX(0);} 100%{ transform: translateX(100%);} }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__meta { display: none; }
  .hero__scroll { display: none; }
}

/* ---------- MARQUEE ---------- */
.marquee { border-block: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: var(--paper); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 400; color: var(--indigo); white-space: nowrap; letter-spacing: -0.01em; }
.marquee__track .dot { color: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   B. O NAS
   ============================================================ */
.about { padding-block: var(--section-y); }
.section-title em { font-style: italic; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); padding: clamp(32px,5vw,52px) 0; border-block: 1px solid var(--line); margin-bottom: clamp(48px, 7vw, 84px); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; line-height: 1; color: var(--indigo); letter-spacing: -0.03em; display: block; }
.stat__label { display: block; margin-top: 12px; font-size: 0.92rem; color: var(--muted); max-width: 180px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
.team__card { position: relative; }
.team__photo { position: relative; aspect-ratio: 4/5; border-radius: var(--r-card); overflow: hidden; background: var(--paper); }
.team__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: filter var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out); }
.team__card:hover .team__photo img { filter: grayscale(0); transform: scale(1.05); }
.team__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,21,113,0.45), transparent 55%); opacity: 0; transition: opacity var(--t-med); }
.team__card:hover .team__photo::after { opacity: 1; }
.team__card figcaption { margin-top: 16px; }
.team__name { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--indigo); }
.team__role { display: block; font-size: 0.86rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) { .team { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ============================================================
   C. BIAŁE CERTYFIKATY (bento)
   ============================================================ */
.certs { padding-block: var(--section-y); background: var(--paper); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 22px); grid-auto-rows: minmax(0, auto); }

.bento__cell {
  grid-column: span 2; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 20px;
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out);
  will-change: transform;
}
.bento__cell:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 22px 50px rgba(20,16,46,0.08); }
.bento__cell--wide { grid-column: span 3; }
.bento__cell--tall { grid-column: span 2; grid-row: span 2; }

.bento__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-050); color: var(--indigo); display: grid; place-items: center; flex-shrink: 0; }
.bento__icon svg { width: 26px; height: 26px; }
.bento__body { display: flex; flex-direction: column; gap: 10px; }
.bento__step { font-family: var(--font-display); font-size: 0.95rem; color: var(--green-600); font-weight: 500; }
.bento__cell h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); color: var(--indigo); line-height: 1.15; letter-spacing: -0.01em; }
.bento__cell p { color: var(--muted); font-size: 0.98rem; }

/* accent tile (TGE) */
.bento__cell--accent { background: linear-gradient(155deg, var(--indigo) 0%, var(--ink) 100%); border-color: transparent; }
.bento__cell--accent h3, .bento__cell--accent .bento__step { color: #fff; }
.bento__cell--accent .bento__step { color: var(--green); }
.bento__cell--accent p { color: rgba(255,255,255,0.72); }
.bento__cell--accent:hover { border-color: var(--green); }
.bento__icon--light { background: rgba(109,212,126,0.16); color: var(--green); }
.bento__mini { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); }
.bento__mini-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--green); display: block; line-height: 1; letter-spacing: -0.02em; }
.bento__mini-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__cell, .bento__cell--wide, .bento__cell--tall { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell, .bento__cell--wide, .bento__cell--tall { grid-column: span 1; }
}

/* ============================================================
   D. REFERENCJE
   ============================================================ */
.work { padding-block: var(--section-y); }
.pullquote { max-width: 900px; margin: 0 0 clamp(48px, 7vw, 80px); }
.pullquote p { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.24; letter-spacing: -0.02em; color: var(--indigo); }
.pullquote em { font-style: italic; }
.pullquote cite { display: block; margin-top: 22px; font-style: normal; font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter { padding: 10px 20px; border-radius: var(--r-pill); font-size: 0.92rem; font-weight: 500; color: var(--indigo); box-shadow: inset 0 0 0 1px var(--line); transition: all var(--t-fast) var(--e-out); }
.filter:hover { box-shadow: inset 0 0 0 1px var(--indigo); }
.filter.is-active { background: var(--indigo); color: #fff; box-shadow: none; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out), opacity var(--t-med), scale var(--t-med);
}
.case:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 20px 44px rgba(20,16,46,0.08); }
.case__logo { height: 42px; display: flex; align-items: center; }
.case__logo img { height: 100%; width: auto; }
.case__title { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; color: var(--indigo); line-height: 1.2; }
.case__desc { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.case__result { display: flex; flex-direction: column; padding-top: 16px; border-top: 1px solid var(--line); }
.case__result span { font-family: var(--font-display); font-size: 2rem; color: var(--green-600); line-height: 1; letter-spacing: -0.02em; }
.case__result small { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.case__tag { position: absolute; }
.case { position: relative; }
.case__tag { top: 20px; right: 20px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--paper); padding: 5px 12px; border-radius: var(--r-pill); }
.case.is-hidden { display: none; }
@media (max-width: 900px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cases { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; padding-block: clamp(64px, 10vw, 130px); background: var(--indigo); overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); color: #fff; letter-spacing: -0.02em; line-height: 1.08; }
.cta-band p { color: rgba(255,255,255,0.76); font-size: var(--fs-lead); margin: 22px auto 36px; max-width: 560px; }

/* ============================================================
   E. KONTAKT
   ============================================================ */
.contact { padding-block: var(--section-y); }
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 80px); align-items: start; }

.form { margin-top: 36px; display: flex; flex-direction: column; gap: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }

.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--line);
  padding: 12px 2px; font: inherit; color: var(--indigo); transition: border-color var(--t-fast);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 90px; }
.field label {
  position: absolute; left: 2px; top: 12px; color: var(--muted); pointer-events: none;
  transition: transform var(--t-fast) var(--e-out), font-size var(--t-fast), color var(--t-fast);
  transform-origin: left;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--green); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-26px) scale(0.82); color: var(--green-600); font-weight: 500;
}
.field__error { display: block; color: #d23b3b; font-size: 0.8rem; margin-top: 6px; min-height: 1em; }
.field.has-error input, .field.has-error textarea { border-bottom-color: #d23b3b; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green-600); flex-shrink: 0; }
.consent a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }

.form__status { font-size: 0.92rem; font-weight: 500; min-height: 1.2em; }
.form__status.is-ok { color: var(--green-600); }
.form__status.is-err { color: #d23b3b; }

/* info */
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px, 3vw, 38px); }
.contact__card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--indigo); margin-bottom: 22px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; color: var(--indigo); font-size: 0.98rem; }
.contact__list svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.contact__list a:hover { color: var(--green-600); }
.contact__actions { display: flex; gap: 12px; margin-top: 26px; }
.contact__map { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); height: 260px; }
.contact__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2); }

@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============================================================
   F. FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(56px, 8vw, 96px); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer__brand img { margin-bottom: 20px; }
.footer__brand p { max-width: 320px; font-size: 0.95rem; }
.footer__col h4 { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col span { font-size: 0.94rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 26px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }
@media (max-width: 780px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__inner { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL (JS-driven) + REDUCED MOTION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.js-ready [data-reveal] { will-change: opacity, transform; }
[data-hero-line] { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .blob { animation: none !important; }
  .marquee__track { animation: none !important; }
  .cursor { display: none !important; }
}

/* no-JS fallback: show everything */
.no-js [data-reveal] { opacity: 1; transform: none; }
