
:root{
  --bg:#e9e6e1;
  --surface:#f4f1ec;
  --surface-2:#ede9e4;
  --surface-3:#e1ddd7;
  --ink:#505453;
  --muted:#7d817f;
  --muted-2:#989b97;
  --line:rgba(80,84,83,.14);
  --line-strong:rgba(80,84,83,.22);
  --hero-ink:#f7f5f1;
  --accent:#868c8a;
  --accent-deep:#676d6b;
  --radius:24px;
  --radius-lg:34px;
  --shadow:0 20px 60px rgba(47,45,42,.08);
  --container:min(1400px, calc(100% - 56px));
  --header-h:72px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Manrope",system-ui,sans-serif;
  text-rendering:optimizeLegibility;
}
body.menu-open{overflow:hidden;}
a{color:inherit;text-decoration:none;}
img{display:block;max-width:100%;}
button,input,select,textarea{font:inherit;color:inherit;}
button{cursor:pointer;}
main{overflow:hidden;}
section{position:relative;}
.container{width:var(--container);margin-inline:auto;}
.section{padding:120px 0;}
.reveal{opacity:0;transform:translateY(26px);transition:opacity .75s ease,transform .75s ease;}
.reveal.is-visible{opacity:1;transform:none;}
.desktop-only{display:flex;}
.mobile-only{display:none!important;}

h1,h2,h3{margin:0;line-height:.96;font-family:"Cinzel",serif;font-weight:500;letter-spacing:-.02em;}
h1{font-size:clamp(42px,5.7vw,86px);max-width:11.5ch;}
h2{font-size:clamp(30px,4.2vw,66px);max-width:12ch;}
h3{font-size:clamp(26px,3.2vw,48px);}
p{margin:0;line-height:1.72;color:var(--muted);font-size:16px;}

.section-kicker{
  display:inline-flex;align-items:center;gap:16px;margin-bottom:18px;
  font-family:"Cinzel",serif;font-size:13px;letter-spacing:.24em;text-transform:uppercase;color:var(--muted-2);
}
.section-kicker::after{content:"";width:72px;height:1px;background:currentColor;opacity:.35;}
.section-kicker--light{color:rgba(255,255,255,.8);}

.button{
  display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 22px;border-radius:999px;
  border:1px solid var(--line-strong);background:rgba(245,243,239,.6);backdrop-filter:blur(12px);
  color:var(--ink);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  transition:transform .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.button:hover{transform:translateY(-2px);background:rgba(245,243,239,.85);}
.button--ghost{background:rgba(255,255,255,.16);color:#fff;border-color:rgba(255,255,255,.28);}
.button--ghost:hover{background:rgba(255,255,255,.24);}

.site-header{
  position:fixed;inset:0 0 auto;z-index:1000;height:var(--header-h);border-bottom:1px solid transparent;
  transition:background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled{
  background:rgba(233,230,225,.84);backdrop-filter:blur(18px);border-color:rgba(80,84,83,.08);
  box-shadow:0 16px 40px rgba(43,42,39,.06);
}
.header__inner{height:100%;display:grid;grid-template-columns:auto 1fr auto;gap:30px;align-items:center;}
.brand{display:inline-flex;align-items:center;min-width:190px;}
.brand__logo{width:auto;height:32px;}
.brand__logo--dark{display:none;}
.site-header.is-scrolled .brand__logo--light{display:none;}
.site-header.is-scrolled .brand__logo--dark{display:block;}
.site-nav{display:flex;align-items:center;justify-content:center;gap:28px;}
.site-nav a,.hero-link,.footer__label,.contact-form__head span,.contact-form__head strong,.contact__step span,.scope-item__number,
.scope-item__eyebrow,.scope-item__meta,.project-showcase__index,.project-showcase__meta span,.about__micro,.about__footerline span{
  font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
}
.site-nav a{position:relative;color:rgba(255,255,255,.92);}
.site-nav a::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:1px;background:currentColor;transform:scaleX(0);transform-origin:right;transition:transform .35s ease;}
.site-nav a:hover::after{transform:scaleX(1);transform-origin:left;}
.site-header.is-scrolled .site-nav a{color:var(--ink);}
.header__actions{display:flex;align-items:center;gap:18px;}
.social-links{display:flex;align-items:center;gap:16px;}
.social-links a{display:grid;place-items:center;width:28px;height:28px;color:rgba(255,255,255,.88);transition:opacity .3s ease, transform .3s ease;}
.social-links a:hover{opacity:.72;transform:translateY(-2px);}
.social-links svg{width:18px;fill:currentColor;}
.site-header.is-scrolled .social-links a{color:var(--ink);}
.site-header.is-scrolled .button--ghost{color:var(--ink);border-color:rgba(80,84,83,.2);background:rgba(255,255,255,.5);}

.menu-toggle{display:none;position:relative;z-index:1200;width:46px;height:46px;padding:0;border:0;background:transparent;}
.menu-toggle span{position:absolute;left:10px;right:10px;height:1.5px;background:#fff;transition:transform .3s ease, top .3s ease, opacity .3s ease;}
.menu-toggle span:nth-child(1){top:14px;}
.menu-toggle span:nth-child(2){top:22px;}
.menu-toggle span:nth-child(3){top:30px;}
.site-header.is-scrolled .menu-toggle span{background:var(--ink);}
body.menu-open .menu-toggle span:nth-child(1){top:22px;transform:rotate(45deg);}
body.menu-open .menu-toggle span:nth-child(2){opacity:0;}
body.menu-open .menu-toggle span:nth-child(3){top:22px;transform:rotate(-45deg);}

.hero{min-height:100svh;background:var(--surface-3);color:var(--hero-ink);}
.hero__slides,.hero__slide,.hero__overlay{position:absolute;inset:0;}
.hero__slide{background-size:cover;background-position:center 44%;transform:scale(1.02);}
.hero__overlay{background:linear-gradient(180deg, rgba(35,38,38,.2) 0%, rgba(35,38,38,.12) 28%, rgba(35,38,38,.34) 100%);}
.hero__content{position:relative;z-index:2;min-height:100svh;display:flex;flex-direction:column;justify-content:flex-end;padding:calc(var(--header-h) + 30px) 0 34px;}
.hero__copy{max-width:min(760px,84%);padding-top:40px;}
.hero__copy p{margin-top:22px;max-width:58ch;color:rgba(247,245,241,.82);font-size:17px;}
.hero__bottom{display:flex;flex-wrap:wrap;gap:14px 34px;align-items:flex-end;}
.hero-link{position:relative;display:inline-flex;align-items:center;gap:14px;padding-bottom:12px;color:rgba(255,255,255,.92);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;}
.hero-link::before{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:rgba(255,255,255,.46);}
.hero-link span{font-size:14px;}

.scope{background:var(--surface);}
.scope__heading{margin-bottom:36px;}
.scope__heading p{max-width:64ch;margin-top:8px;}
.scope-list{display:grid;gap:18px;}
.scope-item{background:rgba(255,255,255,.58);border:1px solid rgba(80,84,83,.08);border-radius:28px;overflow:hidden;box-shadow:var(--shadow);}
.scope-item__trigger{width:100%;display:grid;grid-template-columns:56px minmax(320px,42%) minmax(0,1fr) 180px 56px;align-items:center;gap:22px;padding:0 22px;border:0;background:transparent;min-height:210px;text-align:left;}
.scope-item__number{color:var(--muted-2);}
.scope-item__visual{height:100%;min-height:210px;border-radius:20px;position:relative;overflow:hidden;}
.scope-item__visual-inner{position:absolute;inset:0;background-image:var(--scope-image);background-size:cover;background-position:center;filter:grayscale(1) saturate(.24) brightness(1.02) contrast(1.03);transform:scale(1.03);}
.scope-item__main{display:flex;flex-direction:column;gap:12px;}
.scope-item__main h3{font-size:clamp(26px,3.4vw,52px);max-width:11ch;line-height:1.05;}
.scope-item__eyebrow,.scope-item__meta{color:var(--accent-deep);opacity:.92;}
.scope-item__meta{max-width:14ch;justify-self:start;text-align:left;line-height:1.7;}
.scope-item__plus{width:42px;height:42px;border-radius:50%;border:1px solid rgba(80,84,83,.16);display:grid;place-items:center;font-size:22px;color:var(--ink);transition:transform .3s ease, background .3s ease;}
.scope-item.is-open .scope-item__plus{transform:rotate(45deg);background:rgba(80,84,83,.06);}
.scope-item__panel{max-height:0;overflow:hidden;transition:max-height .45s ease;padding:0 22px;}
.scope-item__content{padding:0 0 28px 440px;max-width:980px;}
.scope-item__content ul{margin:14px 0 0;padding-left:18px;color:var(--muted);display:grid;gap:8px;}

.projects{background:var(--surface-2);}
.projects__intro{margin-bottom:28px;}
.projects__intro h2{max-width:16ch;}
.project-showcase{position:relative;min-height:82svh;border-radius:34px;overflow:hidden;margin-top:28px;}
.project-showcase::before{content:"";position:absolute;inset:0;background-image:var(--bg);background-size:cover;background-position:center;filter:brightness(.94) contrast(1.02) saturate(.95);transform:scale(1.02);}
.project-showcase__overlay{position:absolute;inset:0;background:linear-gradient(90deg, rgba(24,26,27,.42) 0%, rgba(24,26,27,.12) 55%, rgba(24,26,27,.16) 100%), linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(15,16,17,.24) 100%);}
.project-showcase__content{position:relative;z-index:2;display:grid;grid-template-columns:1fr;align-items:end;gap:18px;padding:52px 46px;min-height:82svh;color:#fff;}
.project-showcase__index{color:rgba(255,255,255,.72);align-self:start;padding-top:0;}
.project-showcase__content h3{max-width:12ch;text-align:left;}
.project-showcase__content p{max-width:56ch;color:rgba(255,255,255,.82);margin-top:16px;text-align:left;}
.project-showcase__meta{display:flex;flex-wrap:wrap;gap:10px;align-self:start;justify-self:start;order:-1;margin-bottom:auto;}
.project-showcase__meta span{padding:10px 16px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.10);backdrop-filter:blur(10px);}

.quote-band,.manifest{min-height:42svh;overflow:hidden;display:flex;align-items:center;}
.quote-band__bg,.quote-band__overlay,.manifest__bg,.manifest__overlay{position:absolute;inset:0;}
.quote-band__bg,.manifest__bg{background-size:cover;background-position:center;filter:grayscale(1) saturate(.15) brightness(1.02);transform:scale(1.04);}
.quote-band__overlay{background:linear-gradient(90deg, rgba(244,241,236,.76), rgba(244,241,236,.56));}
.manifest__overlay{background:linear-gradient(90deg, rgba(233,230,225,.78), rgba(233,230,225,.48));}
.quote-band__content,.manifest__content{position:relative;z-index:2;}
.quote-band__content{max-width:950px;padding:30px 0;}
.quote-band__content p{font-family:"Cinzel",serif;font-size:clamp(28px,4vw,58px);line-height:1.1;color:var(--ink);max-width:18ch;}
.manifest__content{padding:30px 0;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(260px,.75fr);gap:32px;align-items:end;}
.manifest__content h2{max-width:15ch;}
.manifest__content p{max-width:34ch;margin-top:0;}

.about{background:var(--surface);}
.about__layout{width:var(--container);margin-inline:auto;display:grid;grid-template-columns:minmax(320px,.9fr) 1.1fr;gap:42px;align-items:center;}
.about__media{position:relative;border-radius:32px;overflow:hidden;background:linear-gradient(180deg,#f4f1ec,#ece7e0);border:1px solid rgba(80,84,83,.08);box-shadow:var(--shadow);min-height:720px;}
.about__frame-lines{position:absolute;inset:26px;border:1px solid rgba(80,84,83,.12);border-radius:24px;pointer-events:none;}
.about__media img{width:100%;height:100%;object-fit:contain;padding:52px;filter:grayscale(.08);}
.about__photo-marker{position:absolute;left:32px;bottom:28px;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.68);backdrop-filter:blur(10px);border:1px solid rgba(80,84,83,.12);color:var(--accent-deep);}
.about__content{padding-right:4vw;}
.about__topline{display:flex;flex-wrap:wrap;justify-content:space-between;gap:14px;align-items:flex-end;margin-bottom:16px;}
.about__micro{color:var(--accent-deep);}
.about__eyebrow{font-family:"Cinzel",serif;letter-spacing:.18em;text-transform:uppercase;color:var(--muted-2);margin-bottom:14px;}
.about__dynamic-title{max-width:11ch;}
.about__rotating{display:inline-block;color:var(--accent-deep);transition:opacity .24s ease, transform .24s ease;}
.about__rotating.is-changing{opacity:0;transform:translateY(6px);}
.about__bio{display:grid;gap:16px;margin-top:22px;max-width:62ch;}
.about__footerline{display:flex;flex-wrap:wrap;gap:18px;margin-top:28px;padding-top:22px;border-top:1px solid var(--line);color:var(--muted-2);}

.social-faq{background:var(--surface-2);}
.social-faq.section{padding-top:96px;padding-bottom:96px;}
.social-faq__grid{width:min(100% - 24px, 1720px);margin-inline:auto;display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:stretch;}
.social-showcase,.faq{border-radius:32px;overflow:hidden;position:relative;box-shadow:var(--shadow);}
.social-showcase{background:var(--surface);padding:40px 42px;display:flex;flex-direction:column;justify-content:space-between;gap:24px;min-height:720px;}
.social-showcase__head{display:grid;grid-template-columns:1fr;gap:12px;align-items:start;}
.social-showcase__head h2{max-width:8ch;}
.devices.social-devices{position:relative;display:flex;align-items:flex-end;justify-content:center;min-height:360px;}
.device--laptop{width:min(100%,720px);}
.device--phone{position:absolute;right:24px;bottom:-4px;width:min(31%,228px);}
.device__screen{overflow:hidden;border-radius:26px;box-shadow:0 24px 48px rgba(35,34,31,.12);}
.device--laptop .device__screen{border-radius:26px;}
.device--phone .device__screen{border-radius:42px;}
.social-screen{width:100%;height:auto;display:block;filter:saturate(.88) contrast(1.01);}
.social-device-link{transition:transform .35s ease;}
.social-device-link:hover{transform:translateY(-4px);}

.faq{min-height:720px;background:#e0dbd5;}
.faq__bg,.faq__overlay{position:absolute;inset:0;}
.faq__bg{background-size:cover;background-position:center;filter:grayscale(1) saturate(.18) brightness(1.05);transform:scale(1.03);}
.faq__overlay{background:linear-gradient(180deg, rgba(244,241,236,.84) 0%, rgba(244,241,236,.88) 100%);}
.faq__content{position:relative;z-index:2;padding:40px 42px;height:100%;}
.faq__content h2{max-width:9ch;}
.faq-list{margin-top:28px;display:grid;gap:0;}
.faq-item{border-top:1px solid rgba(80,84,83,.12);}
.faq-item:last-child{border-bottom:1px solid rgba(80,84,83,.12);}
.faq-item__trigger{width:100%;display:grid;grid-template-columns:minmax(0,1fr) 48px;gap:16px;align-items:center;padding:20px 0;border:0;background:transparent;text-align:left;font-size:clamp(19px,1.6vw,24px);line-height:1.34;color:var(--ink);}
.faq-item__icon{width:40px;height:40px;border-radius:50%;border:1px solid rgba(80,84,83,.18);display:grid;place-items:center;font-size:24px;line-height:1;transition:transform .3s ease, background .3s ease;}
.faq-item.is-open .faq-item__icon{transform:rotate(45deg);background:rgba(80,84,83,.06);}
.faq-item__answer{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.faq-item__answer p{padding:0 0 24px;max-width:54ch;}

.contact{background:var(--surface);}
.contact__grid{width:var(--container);margin-inline:auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:44px;align-items:start;position:relative;z-index:2;}
.contact__content{padding-right:2vw;}
.contact__lead{max-width:58ch;margin-top:14px;}
.contact__steps{display:grid;gap:14px;margin-top:34px;}
.contact__step{display:grid;grid-template-columns:58px minmax(0,1fr);align-items:center;padding:20px 22px;border:1px solid rgba(80,84,83,.1);border-radius:22px;background:rgba(255,255,255,.44);} .contact__step p{line-height:1.55;}
.contact__step p{color:var(--ink);font-size:15px;}
.contact__info{display:flex;flex-wrap:wrap;gap:18px;margin-top:26px;}
.contact__info a{font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--accent-deep);}
.contact-form{background:rgba(255,255,255,.68);border:1px solid rgba(80,84,83,.08);border-radius:34px;padding:34px;box-shadow:var(--shadow);}
.contact-form__head{display:flex;justify-content:space-between;gap:18px;align-items:center;padding-bottom:18px;border-bottom:1px solid var(--line);margin-bottom:22px;color:var(--accent-deep);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.contact-form label{display:grid;gap:10px;margin-bottom:16px;}
.contact-form label span{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted-2);font-weight:700;}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;appearance:none;border:1px solid rgba(80,84,83,.12);background:rgba(244,241,236,.86);border-radius:18px;padding:16px 18px;outline:none;
}
.contact-form select{background-image:linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%),linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%);background-position:calc(100% - 24px) calc(50% - 3px),calc(100% - 18px) calc(50% - 3px);background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:44px;}
.contact-form textarea{min-height:210px;resize:vertical;}
.contact-form__footer{display:flex;flex-wrap:wrap;justify-content:space-between;gap:20px;align-items:center;margin-top:14px;}
.form-note{max-width:38ch;font-size:14px;}
.form-note.is-success{color:var(--accent-deep);}
.contact__deco{display:none;}

.site-footer{background:var(--surface-2);padding:34px 0 24px;border-top:1px solid rgba(80,84,83,.08);}
.footer__inner{display:grid;grid-template-columns:1.2fr repeat(3, .7fr);gap:26px;align-items:start;}
.footer__brand-block p{max-width:42ch;margin-top:14px;}
.footer__logo{width:auto;height:44px;}
.footer__column,address.footer__column{display:grid;gap:10px;font-style:normal;}
.footer__label{color:var(--muted-2);}
.footer__bottom{display:flex;justify-content:space-between;gap:18px;align-items:center;padding-top:26px;margin-top:28px;border-top:1px solid rgba(80,84,83,.08);font-size:14px;color:var(--muted);}

@media (max-width:1180px){
  :root{--container:min(1400px, calc(100% - 44px));}
  .about__layout,.social-faq__grid,.contact__grid,.social-showcase__head,.footer__inner{grid-template-columns:1fr;}
  .about__content{padding-right:0;}
  .project-showcase__content{grid-template-columns:1fr;align-items:end;gap:18px;}
  .project-showcase__index{align-self:auto;padding-top:0;}
  .project-showcase__meta{justify-self:start;}
  .scope-item__trigger{grid-template-columns:56px minmax(0,1fr) 54px;gap:22px;}
  .scope-item__visual,.scope-item__meta{display:none;}
  .scope-item__content{padding-left:78px;}
  .social-showcase{min-height:auto;}
  .faq{min-height:auto;}
  .device--phone{right:0;}
}

@media (max-width:980px){
  :root{--container:min(1400px, calc(100% - 28px));--header-h:82px;}
  .section,.social-faq.section{padding:92px 0;}
  h1{font-size:clamp(38px,11vw,68px);max-width:10ch;}
  h2{font-size:clamp(28px,8.2vw,52px);}
  .menu-toggle{display:block;justify-self:end;}
  .desktop-only{display:none!important;}
  .mobile-only{display:grid!important;}
  .header__inner{grid-template-columns:auto auto;justify-content:space-between;}
  .site-nav{
    position:fixed;inset:var(--header-h) 16px auto 16px;padding:24px;border-radius:24px;background:rgba(244,241,236,.96);box-shadow:var(--shadow);border:1px solid rgba(80,84,83,.08);
    display:grid;gap:18px;justify-items:start;transform:translateY(-18px);opacity:0;pointer-events:none;transition:opacity .3s ease, transform .3s ease;
  }
  .site-nav a{color:var(--ink);font-size:14px;}
  body.menu-open .site-nav{opacity:1;transform:none;pointer-events:auto;}
  .hero__content{padding:calc(var(--header-h) + 46px) 0 30px;}
  .hero__copy{max-width:100%;padding-top:0;}
  .hero__copy p{font-size:15px;}
  .hero__bottom{gap:14px 24px;}
  .scope-item__trigger{grid-template-columns:42px minmax(0,1fr) 44px;gap:16px;padding:0 18px;min-height:150px;}
  .scope-item__content{padding:0 0 22px 58px;}
  .project-showcase,.project-showcase__content{min-height:62svh;}
  .social-showcase{padding:36px 24px;}
  .devices.social-devices{min-height:350px;}
  .device--phone{width:34%;right:12px;bottom:-10px;}
  .faq__content{padding:40px 26px;}
  .contact-form{padding:24px;}
  .form-row{grid-template-columns:1fr;}
  .footer__bottom{flex-direction:column;align-items:flex-start;}
}

@media (max-width:680px){
  .section,.social-faq.section{padding:74px 0;}
  .brand__logo{height:38px;}
  .hero__content{min-height:100svh;justify-content:flex-end;gap:42px;}
  .hero__copy{max-width:92%;}
  .hero__copy p{max-width:40ch;}
  .hero-link{width:max-content;}
  .scope-list{gap:14px;}
  .scope-item{border-radius:22px;}
  .scope-item__main h3{font-size:clamp(26px,10vw,44px);}
  .scope-item__content{padding-left:0;}
  .project-showcase{border-radius:24px;}
  .project-showcase__content{padding:26px 0;}
  .quote-band,.manifest{min-height:46svh;}
  .quote-band__content p{max-width:11ch;}
  .about__media{min-height:460px;}
  .about__media img{padding:32px;}
  .social-showcase__head p{max-width:34ch;}
  .devices.social-devices{min-height:240px;justify-content:flex-start;padding-top:20px;}
  .device--laptop{width:100%;}
  .device--phone{position:absolute;width:39%;right:2px;bottom:-14px;}
  .faq__content{padding:28px 18px;}
  .faq-item__trigger{font-size:18px;grid-template-columns:minmax(0,1fr) 40px;padding:20px 0;}
  .contact__step{grid-template-columns:48px minmax(0,1fr);padding:16px;}
  .contact-form{border-radius:24px;padding:20px 18px;}
}

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

.hero__copy{display:none!important;}

.social-showcase__lead{max-width:36ch;font-size:15px;}


/* v6 refinement */
.site-header .header__inner{height:calc(var(--header-h) - 6px);}
.scope-item.is-open .scope-item__trigger{border-bottom:1px solid rgba(80,84,83,.08);}
.project-showcase__copy{align-self:end;}
.project-showcase__content > div:nth-child(2){align-self:end;}
.manifest__content > p{align-self:end;}
.about.section{padding-top:110px;padding-bottom:110px;}
.contact.section{padding-top:110px;padding-bottom:110px;}

@media (max-width:1180px){
  .scope-item__trigger{grid-template-columns:46px minmax(260px,38%) minmax(0,1fr) 44px;}
  .scope-item__meta{display:none;}
  .scope-item__content{padding-left:330px;}
  .social-faq__grid{width:min(100% - 20px, 1720px);grid-template-columns:1fr;}
  .social-showcase,.faq{min-height:auto;}
  .manifest__content{grid-template-columns:1fr;gap:12px;}
}

@media (max-width:980px){
  :root{--container:min(1400px, calc(100% - 24px));--header-h:66px;}
  .brand__logo{height:28px;}
  .site-nav{inset:var(--header-h) 12px auto 12px;}
  .hero__content{padding:calc(var(--header-h) + 24px) 0 24px;}
  .scope-item__trigger{grid-template-columns:40px 1fr 40px;gap:14px;min-height:unset;padding:18px;}
  .scope-item__visual{grid-column:1 / -1;min-height:220px;order:-1;}
  .scope-item__main{grid-column:2/3;}
  .scope-item__plus{grid-column:3/4;align-self:start;}
  .scope-item__content{padding:0 18px 22px 18px;max-width:unset;}
  .project-showcase{min-height:70svh;}
  .project-showcase__content{padding:28px 22px;min-height:70svh;}
  .project-showcase__content h3{max-width:10ch;}
  .social-showcase{padding:28px 20px;}
  .faq__content{padding:28px 20px;}
  .devices.social-devices{min-height:290px;}
  .manifest__content p{max-width:50ch;}
  .contact__grid{grid-template-columns:1fr;gap:28px;}
}

@media (max-width:680px){
  .hero__bottom{gap:14px 18px;}
  .hero-link{font-size:11px;}
  .projects__intro h2{max-width:9ch;}
  .project-showcase{min-height:58svh;border-radius:24px;}
  .project-showcase__content{min-height:58svh;padding:24px 18px;}
  .social-faq__grid{width:min(100% - 12px, 1720px);gap:12px;}
  .social-showcase,.faq{border-radius:24px;}
  .devices.social-devices{min-height:230px;}
  .device--phone{width:40%;right:0;}
  .about__layout{gap:26px;}
  .contact-form{padding:22px 18px;}
}


/* ============================================================
   V7 — flow, color and animation refinement
   Realizacje immediately after hero, horizontal text rhythm, scope as image bands.
   ============================================================ */

:root{
  --olive:#7b806f;
  --olive-soft:#9a9a86;
  --clay:#b6a28a;
  --warm:#d6c7b3;
  --cream:#f3eee7;
  --paper:#ebe7df;
  --ink-strong:#434846;
}

body{
  background:linear-gradient(180deg, #ede8df 0%, #e7e1d8 48%, #eee9e1 100%);
}

/* Smaller, cleaner top bar */
:root{--header-h:64px;}
.site-header{
  height:var(--header-h)!important;
  background:rgba(232,226,216,.72);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(67,72,70,.08);
}
.site-header:not(.is-scrolled){
  background:rgba(232,226,216,.46);
}
.header__inner{
  height:var(--header-h)!important;
}
.brand__logo{
  height:28px!important;
}
.site-nav{
  gap:26px!important;
}
.site-nav a{
  color:rgba(67,72,70,.88)!important;
  font-size:11px!important;
  letter-spacing:.20em!important;
}
.header__actions .button{
  min-height:42px!important;
  padding:0 20px!important;
  color:var(--ink-strong)!important;
  background:rgba(255,255,255,.42)!important;
  border-color:rgba(67,72,70,.14)!important;
}
.social-links a{
  color:var(--ink-strong)!important;
}

/* Hero: photo-only, but more premium, no big copy */
.hero{
  min-height:100svh;
  background:#171918;
}
.hero__slide{
  background-position:center 46%!important;
  filter:saturate(.92) contrast(1.04) brightness(.94);
  animation:heroBreathV7 12s ease-in-out infinite alternate;
}
@keyframes heroBreathV7{
  from{transform:scale(1.015);}
  to{transform:scale(1.055);}
}
.hero__overlay{
  background:
    radial-gradient(circle at 78% 35%, rgba(182,162,138,.20), transparent 28%),
    linear-gradient(180deg, rgba(20,22,21,.06), rgba(20,22,21,.38) 100%)!important;
}
.hero__content{
  justify-content:flex-end!important;
  padding:calc(var(--header-h) + 34px) 0 38px!important;
}
.hero__bottom{
  width:100%;
  display:flex!important;
  align-items:flex-end!important;
  gap:18px 42px!important;
}
.hero__accent-note{
  margin-right:auto;
  color:rgba(255,255,255,.64);
  font-size:11px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.hero-link{
  color:rgba(255,255,255,.92)!important;
}
.hero-link::before{
  background:rgba(255,255,255,.42)!important;
}

/* Sections: order has changed, so intro must breathe without huge empty dead zones */
.projects-v7{
  padding-top:110px!important;
  background:
    radial-gradient(circle at 90% 4%, rgba(182,162,138,.20), transparent 28%),
    linear-gradient(180deg, #ede8df, #e5dfd5)!important;
}
.projects__intro{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(260px,.55fr);
  gap:32px;
  align-items:end;
  margin-bottom:38px!important;
}
.projects__intro h2{
  max-width:12ch!important;
}
.projects__intro::after{
  content:"Kolor, faktura i detal zostają pokazane naturalnie — bez ciężkiego przyciemnienia i bez metraży.";
  max-width:34ch;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

/* Realizacje: bigger, natural color, text left-to-right */
.project-showcase{
  min-height:86svh!important;
  border-radius:38px!important;
  margin-top:32px!important;
  transform:translate3d(calc(var(--mx,0) * -8px), calc(var(--my,0) * -8px), 0);
  transition:transform .45s cubic-bezier(.16,.84,.22,1), box-shadow .45s ease;
}
.project-showcase:hover{
  box-shadow:0 34px 100px rgba(49,45,39,.18)!important;
}
.project-showcase::before{
  filter:saturate(.94) brightness(.96) contrast(1.025)!important;
  transform:scale(1.025);
  transition:transform 1.1s cubic-bezier(.16,.84,.22,1), filter .7s ease;
}
.project-showcase:hover::before{
  transform:scale(1.065);
  filter:saturate(1) brightness(.98) contrast(1.035)!important;
}
.project-showcase__overlay{
  background:
    linear-gradient(90deg, rgba(22,24,23,.42) 0%, rgba(22,24,23,.10) 46%, rgba(22,24,23,.18) 100%),
    linear-gradient(180deg, rgba(22,24,23,.08), rgba(22,24,23,.30))!important;
}
.project-showcase__content{
  padding:54px 54px!important;
  min-height:86svh!important;
  align-content:space-between;
}
.project-showcase__content > div:nth-child(2){
  align-self:end;
  max-width:640px;
}
.project-showcase__content h3{
  text-align:left!important;
  max-width:11ch!important;
}
.project-showcase__content p{
  text-align:left!important;
  font-size:16px;
}
.project-showcase__meta{
  order:0!important;
  position:absolute;
  top:42px;
  left:54px;
  margin:0!important;
}
.project-showcase__meta span{
  color:rgba(255,255,255,.80)!important;
  background:rgba(255,255,255,.11)!important;
  border-color:rgba(255,255,255,.20)!important;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.project-showcase__index{
  position:absolute;
  top:46px;
  right:54px;
  color:rgba(255,255,255,.62)!important;
}

/* Scope now after projects; each item is a full image strip under filter */
.scope-v7{
  padding-top:105px!important;
  background:
    radial-gradient(circle at 6% 14%, rgba(123,128,111,.13), transparent 28%),
    #f0ebe4!important;
}
.scope__heading{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(260px,.58fr);
  gap:28px;
  align-items:end;
  margin-bottom:42px!important;
}
.scope__heading h2{
  max-width:12ch;
}
.scope__heading p{
  max-width:38ch;
}
.scope-list{
  width:min(100% - 24px, 1720px);
  margin-inline:auto;
  display:grid!important;
  gap:18px!important;
}
.scope-item{
  position:relative;
  border-radius:30px!important;
  overflow:hidden;
  background:#d9d4ca!important;
  border:1px solid rgba(67,72,70,.10)!important;
  box-shadow:0 18px 70px rgba(65,59,52,.08)!important;
  transform:translate3d(calc(var(--mx,0) * -5px), calc(var(--my,0) * -5px), 0);
  transition:transform .4s cubic-bezier(.16,.84,.22,1), box-shadow .4s ease;
}
.scope-item:hover{
  box-shadow:0 30px 90px rgba(65,59,52,.15)!important;
}
.scope-item::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--scope-image);
  background-size:cover;
  background-position:center;
  filter:grayscale(.82) saturate(.45) brightness(.98) contrast(1.04);
  transform:scale(1.04);
  opacity:.64;
  transition:transform .8s cubic-bezier(.16,.84,.22,1), opacity .4s ease, filter .4s ease;
}
.scope-item:hover::before{
  transform:scale(1.08);
  opacity:.74;
  filter:grayscale(.65) saturate(.62) brightness(.98) contrast(1.04);
}
.scope-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(244,239,231,.90), rgba(244,239,231,.78) 48%, rgba(244,239,231,.62)),
    radial-gradient(circle at 90% 30%, rgba(182,162,138,.22), transparent 28%);
}
.scope-item__trigger{
  position:relative;
  z-index:2;
  min-height:210px!important;
  grid-template-columns:58px minmax(0,1fr) minmax(210px,.34fr) 54px!important;
  padding:34px 38px!important;
  gap:28px!important;
}
.scope-item__visual{
  display:none!important;
}
.scope-item__main{
  display:grid!important;
  gap:12px!important;
}
.scope-item__main h3{
  max-width:13ch!important;
}
.scope-item__meta{
  display:block!important;
  justify-self:end!important;
  max-width:16ch!important;
}
.scope-item__plus{
  background:rgba(255,255,255,.50)!important;
  backdrop-filter:blur(10px);
}
.scope-item__panel{
  position:relative;
  z-index:2;
}
.scope-item__content{
  padding:0 38px 34px 124px!important;
  max-width:880px!important;
}
.scope-item__content p,
.scope-item__content li{
  color:#656965!important;
}

/* Manifest / Podejście: small horizontal breaker, no giant full-screen vertical text */
.manifest-v7{
  min-height:auto!important;
  padding:62px 0!important;
  background:
    linear-gradient(90deg, rgba(244,239,231,.92), rgba(244,239,231,.78)),
    url('manifest-break.webp') center/cover!important;
}
.manifest-v7 .manifest__bg,
.manifest-v7 .manifest__overlay{
  display:none!important;
}
.manifest__content{
  display:grid!important;
  grid-template-columns:minmax(260px,.7fr) minmax(0,1fr)!important;
  gap:32px!important;
  align-items:center!important;
}
.manifest__content h2{
  max-width:none!important;
  font-size:clamp(24px,3vw,44px)!important;
  line-height:1.08!important;
}
.manifest__content p{
  max-width:52ch!important;
  margin:0!important;
}

/* Social + FAQ lower and edge-to-edge */
.social-faq.section{
  padding-top:86px!important;
  padding-bottom:86px!important;
}
.social-faq__grid{
  width:min(100% - 16px, 1780px)!important;
  grid-template-columns:1fr 1fr!important;
  gap:16px!important;
}
.social-showcase,
.faq{
  min-height:650px!important;
  border-radius:30px!important;
}
.social-showcase{
  padding:36px 38px!important;
}
.faq__content{
  padding:36px 38px!important;
}
.devices.social-devices{
  min-height:310px!important;
}
.faq-item__trigger{
  padding:18px 0!important;
}

/* Contact: more premium and less flat */
.contact-v7{
  background:
    radial-gradient(circle at 12% 10%, rgba(123,128,111,.12), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(182,162,138,.18), transparent 32%),
    #f0ebe4!important;
}
.contact__grid{
  grid-template-columns:.86fr 1.14fr!important;
  gap:54px!important;
}
.contact__content h2{
  max-width:11ch!important;
}
.contact-form{
  border-radius:34px!important;
  background:rgba(255,255,255,.74)!important;
  box-shadow:0 32px 100px rgba(65,59,52,.12)!important;
}
.contact__step{
  background:rgba(255,255,255,.54)!important;
  box-shadow:0 12px 36px rgba(65,59,52,.05);
}

/* Premium animation polish */
.reveal{
  opacity:0;
  transform:translateY(34px) scale(.985);
  filter:blur(8px);
  transition:
    opacity .9s cubic-bezier(.16,.84,.22,1),
    transform .9s cubic-bezier(.16,.84,.22,1),
    filter .9s cubic-bezier(.16,.84,.22,1);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  filter:blur(0);
}
.scope-item.reveal,
.project-showcase.reveal{
  transition:
    opacity .9s cubic-bezier(.16,.84,.22,1),
    transform .9s cubic-bezier(.16,.84,.22,1),
    filter .9s cubic-bezier(.16,.84,.22,1),
    box-shadow .45s ease;
}

@media(max-width:1180px){
  .projects__intro,
  .scope__heading,
  .manifest__content{
    grid-template-columns:1fr!important;
  }
  .scope-item__trigger{
    grid-template-columns:46px minmax(0,1fr) 44px!important;
  }
  .scope-item__meta{
    display:none!important;
  }
  .scope-item__content{
    padding-left:98px!important;
  }
  .social-faq__grid{
    grid-template-columns:1fr!important;
  }
  .social-showcase,
  .faq{
    min-height:auto!important;
  }
}

@media(max-width:760px){
  :root{--header-h:62px;}
  .brand__logo{height:27px!important;}
  .hero__accent-note{
    width:100%;
    font-size:9px;
    letter-spacing:.18em;
  }
  .projects-v7{
    padding-top:80px!important;
  }
  .project-showcase{
    min-height:64svh!important;
    border-radius:24px!important;
  }
  .project-showcase__content{
    min-height:64svh!important;
    padding:24px 18px!important;
  }
  .project-showcase__meta{
    top:22px;
    left:18px;
  }
  .project-showcase__index{
    top:26px;
    right:18px;
  }
  .scope-item__trigger{
    min-height:176px!important;
    padding:22px 18px!important;
  }
  .scope-item__content{
    padding:0 18px 24px 18px!important;
  }
  .manifest-v7{
    padding:44px 0!important;
  }
  .social-faq__grid{
    width:min(100% - 10px, 1780px)!important;
  }
  .social-showcase,
  .faq{
    border-radius:22px!important;
    padding:0!important;
  }
  .social-showcase{
    padding:26px 20px!important;
  }
  .faq__content{
    padding:26px 20px!important;
  }
  .contact__grid{
    grid-template-columns:1fr!important;
    gap:30px!important;
  }
}

/* ============================================================
   FINAL — wskazane poprawki wizualne
   ============================================================ */

/* Czytelniejsze logo na jasnym pasku nawigacji. */
.site-header .brand__logo--light{
  display:none!important;
}

.site-header .brand__logo--dark{
  display:block!important;
  width:auto!important;
  height:42px!important;
  opacity:1!important;
  filter:contrast(1.28) brightness(.72)!important;
}

/* Spokojny ruch hero: łagodny crossfade i bardzo wolne przesunięcie kadru. */
.hero__slide{
  opacity:0;
  background-position:center 46%;
  animation:heroDriftFinal 16s ease-in-out infinite alternate!important;
  transition:opacity 1.45s ease!important;
}

.hero__slide.is-active{
  opacity:1;
}

@keyframes heroDriftFinal{
  from{background-position:50% 46%;}
  to{background-position:53% 48%;}
}

/* Realistyczniejsze, ale lekkie obudowy urządzeń w sekcji social media. */
.device--laptop,
.device--phone{
  isolation:isolate;
  box-sizing:border-box;
}

.device--laptop{
  position:relative;
  padding:12px 12px 18px;
  border:1px solid #2c2d2e;
  border-radius:20px 20px 8px 8px;
  background:linear-gradient(145deg,#292a2b 0%,#090a0a 72%);
  box-shadow:0 32px 54px rgba(26,27,27,.22), inset 0 1px rgba(255,255,255,.14);
}

.device--laptop::before{
  content:"";
  position:absolute;
  z-index:3;
  top:5px;
  left:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:#56595a;
  box-shadow:0 0 0 1px #090a0a;
  transform:translateX(-50%);
}

.device--laptop::after{
  content:"";
  position:absolute;
  z-index:-1;
  left:-3.5%;
  right:-3.5%;
  bottom:-12px;
  height:14px;
  border-radius:2px 2px 14px 14px;
  background:linear-gradient(180deg,#353638,#121313);
  box-shadow:0 9px 16px rgba(26,27,27,.18);
}

.device--laptop .device__screen{
  border-radius:10px!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)!important;
}

.device--phone{
  padding:10px;
  border:2px solid #303234;
  border-radius:46px;
  background:linear-gradient(145deg,#303234 0%,#080909 68%);
  box-shadow:0 28px 48px rgba(26,27,27,.26), inset 0 1px rgba(255,255,255,.18);
}

.device--phone::before{
  content:"";
  position:absolute;
  z-index:4;
  top:17px;
  left:50%;
  width:34%;
  height:13px;
  border-radius:999px;
  background:#080909;
  transform:translateX(-50%);
  pointer-events:none;
}

.device--phone::after{
  content:"";
  position:absolute;
  z-index:4;
  left:50%;
  bottom:15px;
  width:30%;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  transform:translateX(-50%);
  pointer-events:none;
}

.device--phone .device__screen{
  border-radius:35px!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)!important;
}

/* Czarna stopka z zachowaniem pełnej czytelności. */
.site-footer{
  background:#080909!important;
  color:#f3f1ed!important;
  border-top-color:rgba(255,255,255,.12)!important;
}

.site-footer .footer__brand-block p,
.site-footer .footer__column p,
.site-footer .footer__bottom{
  color:rgba(243,241,237,.68)!important;
}

.site-footer .footer__label{
  color:rgba(243,241,237,.52)!important;
}

.site-footer a{
  color:#f3f1ed!important;
}

.site-footer .footer__bottom{
  border-top-color:rgba(255,255,255,.12)!important;
}

.site-footer .footer__logo{
  opacity:.94;
}

@media(max-width:760px){
  .site-header .brand__logo--dark{
    height:35px!important;
  }

  .device--laptop{
    padding:8px 8px 13px;
    border-radius:13px 13px 6px 6px;
  }

  .device--laptop::after{
    bottom:-8px;
    height:10px;
  }

  .device--phone{
    padding:6px;
    border-radius:30px;
  }

  .device--phone::before{
    top:10px;
    height:8px;
  }

  .device--phone::after{
    bottom:9px;
    height:3px;
  }

  .device--phone .device__screen{
    border-radius:23px!important;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero__slide{
    animation:none!important;
    transition:none!important;
  }
}

/* V28 FINAL OVERRIDES — zawsze ostatnia warstwa arkusza */
.hero__slide,
.hero__slide.is-active,
.motion-v9 .hero__slide,
.motion-v9.motion-v9-enter .hero__slide{
  opacity:1!important;
  animation:none!important;
  transition:none!important;
  transform:none!important;
  clip-path:none!important;
  filter:none!important;
  background-position:center 46%!important;
  will-change:auto!important;
}

.hero::after,
.motion-v9 .hero::after{
  display:none!important;
  content:none!important;
}

.reactive-card-v9,
.reactive-card-v9.is-reactive{
  transform:none!important;
  transition:none!important;
  will-change:auto!important;
}

.reactive-card-v9::after,
.reactive-card-v9.is-reactive::after{
  display:none!important;
  content:none!important;
  opacity:0!important;
  background:none!important;
}

.gallery-grid{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:24px!important;
}

.gallery-card,
.gallery-card--wide{
  grid-column:auto!important;
  width:100%!important;
  min-height:82svh!important;
  border-radius:0!important;
}

.gallery-card::after,
.gallery-card figcaption{
  display:none!important;
  content:none!important;
}

.gallery-card img,
.gallery-card:hover img{
  width:100%!important;
  height:82svh!important;
  object-fit:cover!important;
  transform:none!important;
  filter:none!important;
  transition:none!important;
}

.faq .section-kicker,
.faq .section-kicker--light,
.manifest-v7 .section-kicker,
.manifest-v7 .section-kicker--light{
  color:#737578!important;
  -webkit-text-fill-color:#737578!important;
  opacity:1!important;
}

.manifest-v7 .manifest__content,
.manifest__content{
  width:var(--container)!important;
  display:block!important;
  margin-inline:auto!important;
  padding:0!important;
  text-align:left!important;
}

.manifest-v7 .manifest__content .section-kicker{
  display:inline-flex!important;
  margin:0 0 22px!important;
}

.manifest-v7 .manifest__content h2,
.manifest__content h2{
  display:block!important;
  width:min(100%,1120px)!important;
  max-width:1120px!important;
  margin:0!important;
  padding:0!important;
  text-align:left!important;
}

.contact__grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  align-items:stretch!important;
  gap:32px!important;
}

.contact__content,
.contact-form{
  height:100%!important;
  box-sizing:border-box!important;
}

.contact__content{
  display:flex!important;
  flex-direction:column!important;
  padding:34px!important;
  border:1px solid rgba(115,117,120,.14)!important;
  border-radius:34px!important;
  background:rgba(255,255,255,.48)!important;
  box-shadow:0 22px 70px rgba(80,81,83,.07)!important;
}

.contact__content h2{
  max-width:12ch!important;
}

.contact__info{
  margin-top:auto!important;
  padding-top:26px!important;
}

@media(max-width:980px){
  .gallery-card,
  .gallery-card--wide,
  .gallery-card img,
  .gallery-card:hover img{
    min-height:62svh!important;
    height:62svh!important;
  }

  .contact__grid{
    grid-template-columns:1fr!important;
    gap:20px!important;
  }

  .contact__content{
    padding:26px 20px!important;
    border-radius:24px!important;
  }
}

/* Finalne porządki: sekcja o studio bez tymczasowego portretu. */
.about__layout{
  grid-template-columns:1fr!important;
}

.about__content{
  width:min(100%,1120px);
  padding-right:0!important;
}

.about__dynamic-title{
  max-width:13ch;
}

/* Mobilne menu jako jeden pasek połączony z nagłówkiem. */
@media(max-width:980px){
  body .site-nav{
    top:var(--header-h)!important;
    left:0!important;
    right:0!important;
    width:100vw!important;
    max-width:none!important;
    max-height:none!important;
    padding:18px 24px 22px!important;
    gap:0!important;
    overflow:hidden!important;
    justify-items:start!important;
    align-items:start!important;
    text-align:left!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translateY(-10px)!important;
    clip-path:inset(0 0 100% 0)!important;
    border:0!important;
    border-top:1px solid rgba(255,255,255,.10)!important;
    border-radius:0!important;
    background:#111212!important;
    box-shadow:0 18px 36px rgba(0,0,0,.16)!important;
    transition:clip-path .38s cubic-bezier(.22,1,.36,1),opacity .2s ease,transform .38s cubic-bezier(.22,1,.36,1),visibility 0s linear .38s!important;
  }

  body.menu-open .site-nav{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translateY(0)!important;
    clip-path:inset(0 0 0 0)!important;
    transition:clip-path .38s cubic-bezier(.22,1,.36,1),opacity .2s ease,transform .38s cubic-bezier(.22,1,.36,1),visibility 0s!important;
  }

  body .site-nav > a,
  body .site-nav__extras > a{
    display:block!important;
    width:100%!important;
    padding:14px 0!important;
    margin:0!important;
    text-align:left!important;
    border-bottom:1px solid rgba(255,255,255,.10)!important;
  }

  body .site-nav__extras{
    display:grid!important;
    width:100%!important;
    gap:0!important;
    justify-items:start!important;
    text-align:left!important;
  }

  body .site-nav__extras > a:last-child{
    border-bottom:0!important;
  }
}

@media(max-width:680px){
  :root{
    --header-h:62px!important;
  }
}


/* ============================================================
   V31 — rozbudowana galeria wizualizacji
   Naturalne proporcje zdjęć, brak efektów i lekkie ładowanie.
   ============================================================ */

body.gallery-page .gallery-grid{
  display:block!important;
  columns:2;
  column-gap:20px;
}

body.gallery-page .gallery-card,
body.gallery-page .gallery-card--wide{
  display:block;
  width:100%!important;
  min-height:0!important;
  height:auto!important;
  margin:0 0 20px;
  overflow:hidden;
  break-inside:avoid;
  border-radius:0!important;
  background:#d5d3cf!important;
  content-visibility:auto;
  contain-intrinsic-size:auto 680px;
}

body.gallery-page .gallery-card img,
body.gallery-page .gallery-card:hover img{
  display:block;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  object-fit:contain!important;
  transform:none!important;
  filter:none!important;
  transition:none!important;
}

@media(max-width:760px){
  body.gallery-page .gallery-grid{
    columns:1;
  }

  body.gallery-page .gallery-card,
  body.gallery-page .gallery-card--wide{
    margin-bottom:14px;
    contain-intrinsic-size:auto 520px;
  }
}

/* ============================================================
   V28 — statyczne hero, czysta galeria i końcowe wyrównania
   Ten blok celowo jest ostatni, żeby starsze warstwy go nie nadpisywały.
   ============================================================ */

/* Hero: jedno zdjęcie, bez zoomu, parallaxu, przejść i filtrów animowanych. */
.hero__slide,
.motion-v9 .hero__slide,
.motion-v9.motion-v9-enter .hero__slide{
  opacity:1!important;
  animation:none!important;
  transition:none!important;
  transform:none!important;
  clip-path:none!important;
  filter:saturate(.92) contrast(1.04) brightness(.94)!important;
  background-position:center 46%!important;
  will-change:auto!important;
}

.hero::after,
.motion-v9 .hero::after{
  display:none!important;
  content:none!important;
}

/* Usunięcie światła i przechylenia śledzącego kursor. */
.reactive-card-v9,
.reactive-card-v9.is-reactive{
  transform:none!important;
  transition:none!important;
  will-change:auto!important;
}

.reactive-card-v9::after,
.reactive-card-v9.is-reactive::after{
  display:none!important;
  content:none!important;
  opacity:0!important;
  background:none!important;
}

/* Pełna galeria: duże, spokojne kadry bez opisów i hoverów. */
.gallery-grid{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:24px!important;
}

.gallery-card,
.gallery-card--wide{
  grid-column:auto!important;
  width:100%!important;
  min-height:82svh!important;
  border-radius:0!important;
  background:#d5d3cf!important;
}

.gallery-card::after{
  display:none!important;
  content:none!important;
}

.gallery-card img,
.gallery-card:hover img{
  width:100%!important;
  height:82svh!important;
  object-fit:cover!important;
  transform:none!important;
  filter:none!important;
  transition:none!important;
}

.gallery-card figcaption{
  display:none!important;
}

/* Widoczne szare etykiety na jasnym tle FAQ i Podejścia. */
.faq .section-kicker,
.faq .section-kicker--light,
.manifest-v7 .section-kicker,
.manifest-v7 .section-kicker--light{
  color:#737578!important;
  -webkit-text-fill-color:#737578!important;
  opacity:1!important;
}

/* Podejście: cały blok konsekwentnie od lewej. */
.manifest-v7 .manifest__content,
.manifest__content{
  width:var(--container)!important;
  display:block!important;
  margin-inline:auto!important;
  padding:0!important;
  text-align:left!important;
}

.manifest-v7 .manifest__content .section-kicker{
  display:inline-flex!important;
  margin:0 0 22px!important;
}

.manifest-v7 .manifest__content h2,
.manifest__content h2{
  display:block!important;
  width:min(100%,1120px)!important;
  max-width:1120px!important;
  margin:0!important;
  padding:0!important;
  text-align:left!important;
}

/* Kontakt: równe kolumny, wspólna górna i dolna linia. */
.contact__grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  align-items:stretch!important;
  gap:32px!important;
}

.contact__content,
.contact-form{
  height:100%!important;
  box-sizing:border-box!important;
}

.contact__content{
  display:flex!important;
  flex-direction:column!important;
  padding:34px!important;
  border:1px solid rgba(115,117,120,.14)!important;
  border-radius:34px!important;
  background:rgba(255,255,255,.48)!important;
  box-shadow:0 22px 70px rgba(80,81,83,.07)!important;
}

.contact__content h2{
  max-width:12ch!important;
}

.contact__info{
  margin-top:auto!important;
  padding-top:26px!important;
}

@media(max-width:980px){
  .gallery-card,
  .gallery-card--wide,
  .gallery-card img,
  .gallery-card:hover img{
    min-height:62svh!important;
    height:62svh!important;
  }

  .contact__grid{
    grid-template-columns:1fr!important;
    gap:20px!important;
  }

  .contact__content{
    padding:26px 20px!important;
    border-radius:24px!important;
  }
}

/* ============================================================
   V27 — korekty treści i czytelności wskazanych sekcji
   ============================================================ */

.projects__intro{
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:32px!important;
}

.projects__intro h2{
  margin-top:12px!important;
}

.gallery-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  min-width:250px;
  padding:14px 0;
  border-bottom:1px solid rgba(66,68,70,.72);
  color:#424446;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:color .3s ease, border-color .3s ease;
}

.gallery-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:#424446;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .4s cubic-bezier(.16,.84,.22,1);
}

.gallery-link:hover::after,
.gallery-link:focus-visible::after{
  transform:scaleX(1);
  transform-origin:left;
}

.projects__gallery-outro{
  display:flex;
  justify-content:flex-end;
  padding-top:38px;
  padding-bottom:12px;
}

.scope__heading{
  margin-bottom:32px!important;
}

.manifest__content{
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  justify-content:center!important;
  gap:22px!important;
}

.manifest__content h2{
  width:min(100%,1050px)!important;
  max-width:1050px!important;
  margin:0!important;
  text-align:left!important;
}

/* Cieńsze i spokojniejsze obudowy — więcej miejsca dla samych profili. */
.devices.social-devices{
  min-height:390px!important;
  padding:20px 10px 14px!important;
}

.device--laptop{
  width:min(96%,760px)!important;
  padding:6px 6px 11px!important;
  border:1px solid rgba(52,54,55,.72)!important;
  border-radius:15px 15px 6px 6px!important;
  background:linear-gradient(145deg,#4c4e4f 0%,#1c1d1e 72%)!important;
  box-shadow:0 24px 46px rgba(26,27,27,.14), inset 0 1px rgba(255,255,255,.18)!important;
}

.device--laptop::before{
  top:2px!important;
  width:3px!important;
  height:3px!important;
  opacity:.6;
}

.device--laptop::after{
  left:-2.2%!important;
  right:-2.2%!important;
  bottom:-9px!important;
  height:10px!important;
  background:linear-gradient(180deg,#6d6f70,#2b2c2d)!important;
  box-shadow:0 7px 13px rgba(26,27,27,.12)!important;
}

.device--phone{
  right:3%!important;
  bottom:0!important;
  width:min(27%,205px)!important;
  padding:6px!important;
  border:1px solid rgba(52,54,55,.78)!important;
  border-radius:34px!important;
  background:linear-gradient(145deg,#555758 0%,#171819 70%)!important;
  box-shadow:0 20px 40px rgba(26,27,27,.16), inset 0 1px rgba(255,255,255,.2)!important;
}

.device--phone::before{
  top:10px!important;
  height:9px!important;
}

.device--phone::after{
  bottom:10px!important;
  height:3px!important;
}

.device--phone .device__screen{
  border-radius:28px!important;
}

.social-screen{
  filter:saturate(.94) contrast(.97)!important;
  image-rendering:auto;
}

@media(max-width:760px){
  .projects__intro{
    align-items:flex-start!important;
    flex-direction:column!important;
    gap:24px!important;
  }

  .gallery-link{
    width:100%;
    min-width:0;
  }

  .projects__gallery-outro{
    padding-top:28px;
  }

  .manifest-v7{
    padding:48px 0!important;
  }

  .manifest__content{
    gap:16px!important;
  }

  .devices.social-devices{
    min-height:260px!important;
    padding:12px 0 8px!important;
  }

  .device--laptop{
    width:96%!important;
    padding:4px 4px 8px!important;
    border-radius:10px 10px 4px 4px!important;
  }

  .device--phone{
    right:1%!important;
    width:35%!important;
    padding:4px!important;
    border-radius:24px!important;
  }

  .device--phone .device__screen{
    border-radius:19px!important;
  }
}

/* Podstrona pełnej galerii. */
.gallery-page{
  background:#e6e5e2!important;
}

.gallery-page .site-header{
  position:fixed;
}

.gallery-hero{
  padding:calc(var(--header-h) + 110px) 0 76px;
  background:#cdccca;
  border-bottom:1px solid rgba(80,81,83,.16);
}

.gallery-hero__content{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:28px;
}

.gallery-hero__content .section-kicker{
  grid-column:1 / -1;
}

.gallery-hero h1{
  max-width:10ch;
  color:#424446;
  font-size:clamp(52px,8.2vw,132px);
  line-height:.9;
  letter-spacing:-.045em;
}

.gallery-back{
  padding-bottom:12px;
  border-bottom:1px solid rgba(66,68,70,.6);
  color:#424446;
  font-size:11px;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.gallery-grid-section{
  padding:36px 0 100px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.gallery-card{
  position:relative;
  min-height:62svh;
  overflow:hidden;
  border-radius:24px;
  background:#d5d3cf;
}

.gallery-card--wide{
  grid-column:1 / -1;
  min-height:78svh;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.16,.84,.22,1),filter .5s ease;
}

.gallery-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 58%,rgba(18,19,19,.46));
  pointer-events:none;
}

.gallery-card figcaption{
  position:absolute;
  z-index:2;
  left:28px;
  right:28px;
  bottom:26px;
  max-width:30ch;
  color:#fff;
  font-family:"Cinzel",serif;
  font-size:clamp(22px,2.3vw,38px);
  line-height:1.05;
}

.gallery-card:hover img{
  transform:scale(1.025);
  filter:saturate(1.03);
}

@media(max-width:760px){
  .gallery-hero{
    padding:calc(var(--header-h) + 72px) 0 48px;
  }

  .gallery-hero__content{
    grid-template-columns:1fr;
  }

  .gallery-hero h1{
    font-size:clamp(48px,15vw,76px);
  }

  .gallery-back{
    width:max-content;
  }

  .gallery-grid-section{
    padding:16px 0 64px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .gallery-card,
  .gallery-card--wide{
    grid-column:auto;
    min-height:56svh;
    border-radius:18px;
  }

  .gallery-card figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }
}


/* ============================================================
   V8 — PALETTE + REALIZACJE + SCOPE FIX
   Tylko kolory z identyfikacji + normalny kierunek czytania.
   ============================================================ */

:root{
  --bg:#CDCCCA!important;
  --surface:#F1F0ED!important;
  --surface-2:#E6E5E2!important;
  --surface-3:#DAD9D6!important;
  --ink:#505153!important;
  --ink-strong:#424446!important;
  --muted:#737578!important;
  --muted-2:#8C8E90!important;
  --accent:#737578!important;
  --accent-deep:#5F6163!important;
  --line:rgba(115,117,120,.18)!important;
  --line-strong:rgba(115,117,120,.28)!important;
  --warm:#CDCCCA!important;
  --olive:#737578!important;
  --olive-soft:#8C8E90!important;
  --clay:#737578!important;
  --cream:#F1F0ED!important;
  --paper:#E6E5E2!important;
  --header-h:62px!important;
}

body{
  background:#CDCCCA!important;
  color:#505153!important;
}

/* header ma być mały i spójny z paletą, bez mieszaniny kolorów */
.site-header,
.site-header:not(.is-scrolled),
.site-header.is-scrolled{
  height:62px!important;
  background:rgba(205,204,202,.88)!important;
  backdrop-filter:blur(18px)!important;
  border-bottom:1px solid rgba(115,117,120,.16)!important;
  box-shadow:none!important;
}

.header__inner{
  height:62px!important;
}

.brand__logo{
  height:27px!important;
}

.site-nav{
  gap:24px!important;
}

.site-nav a,
.site-header.is-scrolled .site-nav a{
  color:#505153!important;
  font-size:10px!important;
  letter-spacing:.22em!important;
}

.social-links a,
.site-header.is-scrolled .social-links a{
  color:#505153!important;
}

.header__actions .button,
.site-header.is-scrolled .button--ghost{
  min-height:38px!important;
  padding:0 18px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.38)!important;
  border:1px solid rgba(115,117,120,.22)!important;
  color:#505153!important;
}

/* hero zostaje bez tekstu, same linki */
.hero__copy,
.hero__accent-note{
  display:none!important;
}

.hero__content{
  justify-content:flex-end!important;
  padding:calc(var(--header-h) + 24px) 0 34px!important;
}

/* REALIZACJE — intro od lewej do prawej, bez prawych wielkich bloków */
.projects-v7,
.projects{
  background:#E6E5E2!important;
  padding-top:96px!important;
}

.projects__intro{
  width:var(--container)!important;
  display:block!important;
  margin:0 auto 44px!important;
  padding:0!important;
}

.projects__intro::after{
  display:none!important;
  content:none!important;
}

.projects__intro h2{
  max-width:880px!important;
  font-size:clamp(38px,5.6vw,86px)!important;
  line-height:.98!important;
  letter-spacing:-.035em!important;
  text-align:left!important;
  margin:0!important;
}

.projects__lead{
  max-width:560px!important;
  margin-top:22px!important;
  color:#737578!important;
  font-size:16px!important;
  line-height:1.7!important;
}

/* realizacje bez miasta, bez badga, tekst normalnie z lewej */
.project-showcase__meta{
  display:none!important;
}

.project-showcase{
  min-height:82svh!important;
  width:min(100% - 28px, 1720px)!important;
  margin:28px auto 0!important;
  border-radius:30px!important;
  box-shadow:0 28px 90px rgba(80,81,83,.12)!important;
}

.project-showcase::before{
  filter:saturate(.95) brightness(.96) contrast(1.02)!important;
  transform:scale(1.015)!important;
}

.project-showcase:hover::before{
  transform:scale(1.045)!important;
}

.project-showcase__overlay{
  background:
    linear-gradient(90deg, rgba(28,30,31,.50) 0%, rgba(28,30,31,.15) 48%, rgba(28,30,31,.10) 100%),
    linear-gradient(180deg, rgba(28,30,31,.02), rgba(28,30,31,.34))!important;
}

.project-showcase__content{
  min-height:82svh!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
  align-items:flex-start!important;
  padding:52px!important;
  gap:16px!important;
}

.project-showcase__index{
  position:static!important;
  order:-1!important;
  color:rgba(255,255,255,.66)!important;
  margin-bottom:auto!important;
}

.project-showcase__content > div:nth-child(2){
  max-width:760px!important;
  align-self:flex-start!important;
}

.project-showcase__content h3{
  max-width:12ch!important;
  text-align:left!important;
  font-size:clamp(36px,4.9vw,76px)!important;
  line-height:.98!important;
}

.project-showcase__content p{
  max-width:560px!important;
  text-align:left!important;
  font-size:16px!important;
  line-height:1.7!important;
  color:rgba(255,255,255,.80)!important;
}

/* ZAKRES — pełny pasek ze zdjęciem pod filtrem, ale czytelny i nie rozsypany */
.scope-v7,
.scope{
  background:#CDCCCA!important;
  padding-top:96px!important;
  padding-bottom:96px!important;
}

.scope__heading{
  width:var(--container)!important;
  display:block!important;
  margin:0 auto 42px!important;
}

.scope__heading h2{
  max-width:780px!important;
  font-size:clamp(38px,5.2vw,78px)!important;
  line-height:1!important;
  text-align:left!important;
}

.scope__heading p{
  max-width:580px!important;
  margin-top:18px!important;
  color:#737578!important;
  font-size:16px!important;
  line-height:1.7!important;
}

.scope-list{
  width:min(100% - 28px, 1720px)!important;
  gap:18px!important;
  margin-inline:auto!important;
}

.scope-item{
  position:relative!important;
  min-height:168px!important;
  border-radius:26px!important;
  overflow:hidden!important;
  background:#E6E5E2!important;
  border:1px solid rgba(115,117,120,.16)!important;
  box-shadow:0 18px 70px rgba(80,81,83,.08)!important;
}

.scope-item::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background-image:var(--scope-image)!important;
  background-size:cover!important;
  background-position:center!important;
  filter:grayscale(1) saturate(.2) brightness(1.03) contrast(1.02)!important;
  opacity:.44!important;
  transform:scale(1.03)!important;
  transition:transform .75s cubic-bezier(.16,.84,.22,1), opacity .35s ease!important;
}

.scope-item:hover::before{
  transform:scale(1.055)!important;
  opacity:.52!important;
}

.scope-item::after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:
    linear-gradient(90deg, rgba(241,240,237,.94) 0%, rgba(241,240,237,.86) 46%, rgba(241,240,237,.72) 100%)!important;
}

.scope-item__trigger{
  position:relative!important;
  z-index:2!important;
  min-height:168px!important;
  width:100%!important;
  display:grid!important;
  grid-template-columns:54px minmax(0,1fr) minmax(220px,330px) 46px!important;
  gap:28px!important;
  align-items:center!important;
  padding:26px 34px!important;
}

.scope-item__visual{
  display:none!important;
}

.scope-item__number{
  color:#737578!important;
}

.scope-item__main{
  display:block!important;
}

.scope-item__eyebrow{
  color:#737578!important;
  margin-bottom:10px!important;
  font-size:10px!important;
  letter-spacing:.24em!important;
}

.scope-item__main h3{
  max-width:none!important;
  font-size:clamp(32px,3.6vw,58px)!important;
  line-height:1.02!important;
  text-align:left!important;
  color:#505153!important;
}

.scope-item__meta{
  display:block!important;
  max-width:260px!important;
  justify-self:start!important;
  text-align:left!important;
  color:#737578!important;
  font-size:10px!important;
  letter-spacing:.22em!important;
  line-height:1.8!important;
}

.scope-item__plus{
  width:42px!important;
  height:42px!important;
  background:rgba(255,255,255,.54)!important;
  color:#505153!important;
  border:1px solid rgba(115,117,120,.22)!important;
  backdrop-filter:blur(10px)!important;
}

.scope-item__panel{
  position:relative!important;
  z-index:2!important;
  background:rgba(241,240,237,.82)!important;
  border-top:1px solid rgba(115,117,120,.12)!important;
}

.scope-item__content{
  padding:22px 34px 30px 116px!important;
  max-width:900px!important;
}

.scope-item__content p,
.scope-item__content li{
  color:#67696A!important;
}

/* USUNIĘCIE DODATKOWYCH CIEPŁYCH/OLIWKOWYCH AKCENTÓW Z V7 */
.projects-v7,
.scope-v7,
.contact-v7{
  background-image:none!important;
}

/* mała przebitka podejście: nadal poziomo, bez gigantycznego pionowego bloku */
.manifest-v7{
  background:#E6E5E2!important;
  padding:52px 0!important;
}

.manifest-v7 .manifest__content{
  width:var(--container)!important;
  display:grid!important;
  grid-template-columns:minmax(280px,.85fr) minmax(320px,1fr)!important;
  gap:34px!important;
  align-items:center!important;
  margin-inline:auto!important;
}

.manifest-v7 h2{
  max-width:none!important;
  font-size:clamp(28px,3.7vw,54px)!important;
  line-height:1.04!important;
  text-align:left!important;
}

.manifest-v7 p{
  max-width:600px!important;
  font-size:16px!important;
  line-height:1.75!important;
}

/* social/faq i kontakt trzymane w palecie */
.social-faq,
.social-showcase,
.faq,
.contact,
.contact-v7,
.site-footer{
  background:#E6E5E2!important;
}

.social-showcase,
.faq,
.contact-form,
.contact__step{
  border:1px solid rgba(115,117,120,.14)!important;
  box-shadow:0 22px 70px rgba(80,81,83,.08)!important;
}

/* animacje premium, ale spokojne */
.reveal{
  transform:translateY(24px)!important;
  filter:blur(6px)!important;
  transition:
    opacity .8s cubic-bezier(.16,.84,.22,1),
    transform .8s cubic-bezier(.16,.84,.22,1),
    filter .8s cubic-bezier(.16,.84,.22,1)!important;
}
.reveal.is-visible{
  transform:none!important;
  filter:blur(0)!important;
}

@media(max-width:1180px){
  .scope-item__trigger{
    grid-template-columns:44px minmax(0,1fr) 42px!important;
  }
  .scope-item__meta{
    display:none!important;
  }
  .scope-item__content{
    padding-left:96px!important;
  }
  .manifest-v7 .manifest__content{
    grid-template-columns:1fr!important;
  }
}

@media(max-width:760px){
  :root{--header-h:58px!important;}
  .site-header,
  .site-header:not(.is-scrolled),
  .site-header.is-scrolled,
  .header__inner{
    height:58px!important;
  }
  .brand__logo{
    height:25px!important;
  }
  .projects-v7,
  .scope-v7,
  .scope{
    padding-top:72px!important;
    padding-bottom:72px!important;
  }
  .projects__intro h2,
  .scope__heading h2{
    font-size:clamp(32px,10vw,54px)!important;
  }
  .project-showcase{
    min-height:64svh!important;
    width:min(100% - 16px, 1720px)!important;
    border-radius:22px!important;
  }
  .project-showcase__content{
    min-height:64svh!important;
    padding:24px 20px!important;
  }
  .project-showcase__content h3{
    font-size:clamp(32px,10vw,56px)!important;
  }
  .scope-list{
    width:min(100% - 16px, 1720px)!important;
  }
  .scope-item{
    min-height:auto!important;
    border-radius:22px!important;
  }
  .scope-item__trigger{
    min-height:150px!important;
    grid-template-columns:38px minmax(0,1fr) 38px!important;
    gap:14px!important;
    padding:22px 18px!important;
  }
  .scope-item__main h3{
    font-size:clamp(28px,9vw,44px)!important;
  }
  .scope-item__content{
    padding:18px 18px 24px 18px!important;
  }
  .manifest-v7{
    padding:42px 0!important;
  }
}


/* ============================================================
   V9 — PREMIUM MOTION LAYER
   Animacje/interakcje bez przebudowy contentu i układu.
   ============================================================ */

.motion-v9{
  --v9-scroll:0;
  --hero-y:0px;
  --hero-scale:1;
}

/* page entrance */
.motion-v9::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:5000;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(180deg, #CDCCCA, #F1F0ED);
  opacity:1;
  transform:scale(1);
  transition:
    opacity .9s cubic-bezier(.16,.84,.22,1),
    transform .9s cubic-bezier(.16,.84,.22,1),
    visibility .9s ease;
}

.motion-v9.motion-v9-ready::before{
  opacity:0;
  transform:scale(1.035);
  visibility:hidden;
}

/* hero entrance and living image */
.motion-v9 .hero{
  overflow:hidden;
}

.motion-v9 .hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  z-index:3;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform 1.15s cubic-bezier(.16,.84,.22,1) .36s;
}

.motion-v9.motion-v9-enter .hero::after{
  transform:scaleX(1);
}

.motion-v9 .hero__slide{
  transform:translate3d(0, var(--hero-y), 0) scale(calc(var(--hero-scale) * 1.055))!important;
  filter:blur(12px) brightness(.86) saturate(.86);
  clip-path:inset(8% round 0);
  transition:
    clip-path 1.35s cubic-bezier(.16,.84,.22,1),
    filter 1.25s cubic-bezier(.16,.84,.22,1),
    transform .18s linear;
  will-change:transform, filter, clip-path;
}

.motion-v9.motion-v9-enter .hero__slide{
  filter:blur(0) brightness(.94) saturate(.94);
  clip-path:inset(0% round 0);
}

.motion-v9 .hero__overlay{
  opacity:0;
  transition:opacity 1s ease .36s;
}

.motion-v9.motion-v9-enter .hero__overlay{
  opacity:1;
}

.motion-v9 .hero__bottom{
  opacity:0;
  transform:translateY(26px);
  filter:blur(8px);
  transition:
    opacity .85s cubic-bezier(.16,.84,.22,1) .62s,
    transform .85s cubic-bezier(.16,.84,.22,1) .62s,
    filter .85s cubic-bezier(.16,.84,.22,1) .62s;
}

.motion-v9.motion-v9-enter .hero__bottom{
  opacity:1;
  transform:none;
  filter:blur(0);
}

/* global reveal: richer than the old plain fade */
.motion-reveal-v9{
  opacity:0;
  transform:translate3d(0,36px,0) scale(.985);
  filter:blur(10px);
  transition:
    opacity .95s cubic-bezier(.16,.84,.22,1) var(--motion-delay,0ms),
    transform .95s cubic-bezier(.16,.84,.22,1) var(--motion-delay,0ms),
    filter .95s cubic-bezier(.16,.84,.22,1) var(--motion-delay,0ms);
  will-change:opacity, transform, filter;
}

.motion-reveal-v9.is-visible-v9,
.motion-reveal-v9.is-visible{
  opacity:1!important;
  transform:none!important;
  filter:blur(0)!important;
}

/* Word-by-word premium headings */
.word-v9{
  display:inline-block;
  opacity:0;
  transform:translateY(.42em) rotateX(22deg);
  transform-origin:left bottom;
  filter:blur(8px);
  transition:
    opacity .85s cubic-bezier(.16,.84,.22,1) var(--word-delay,0ms),
    transform .85s cubic-bezier(.16,.84,.22,1) var(--word-delay,0ms),
    filter .85s cubic-bezier(.16,.84,.22,1) var(--word-delay,0ms);
}

.words-in-v9 .word-v9{
  opacity:1;
  transform:none;
  filter:blur(0);
}

/* Magnetic buttons/links */
.magnetic-v9{
  transform:
    translate3d(var(--mag-x,0), var(--mag-y,0), 0)
    rotateX(var(--mag-rx,0deg))
    rotateY(var(--mag-ry,0deg));
  transition:
    transform .42s cubic-bezier(.16,.84,.22,1),
    background .28s ease,
    border-color .28s ease,
    color .28s ease,
    opacity .28s ease;
  will-change:transform;
}

.magnetic-v9.is-magnetic{
  transition:
    transform .08s linear,
    background .28s ease,
    border-color .28s ease,
    color .28s ease,
    opacity .28s ease;
}

/* Premium link underline movement */
.hero-link,
.site-nav a,
.contact__info a,
.footer__column a{
  isolation:isolate;
}

.hero-link::after,
.contact__info a::after,
.footer__column a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  opacity:.55;
  transition:transform .42s cubic-bezier(.16,.84,.22,1);
}

.hero-link:hover::after,
.contact__info a:hover::after,
.footer__column a:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

/* Reactive light on cards */
.reactive-card-v9{
  position:relative;
  transform-style:preserve-3d;
  transform:
    perspective(1200px)
    rotateX(var(--rx,0deg))
    rotateY(var(--ry,0deg));
  transition:
    transform .5s cubic-bezier(.16,.84,.22,1),
    box-shadow .45s ease,
    border-color .35s ease;
  will-change:transform;
}

.reactive-card-v9::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  border-radius:inherit;
  background:
    radial-gradient(circle at var(--spot-x,50%) var(--spot-y,50%), rgba(255,255,255,.16), transparent 28%);
  opacity:0;
  transition:opacity .35s ease;
  mix-blend-mode:screen;
}

.reactive-card-v9.is-reactive::after{
  opacity:1;
}

/* Project image depth and polish */
.motion-v9 .project-showcase::before{
  transform:translate3d(0, var(--depth-y,0px), 0) scale(1.045)!important;
  transition:
    transform .2s linear,
    filter .45s ease!important;
  will-change:transform;
}

.motion-v9 .project-showcase:hover::before{
  filter:saturate(1.02) brightness(.99) contrast(1.04)!important;
}

.motion-v9 .project-showcase__content h3,
.motion-v9 .project-showcase__content p,
.motion-v9 .project-showcase__index{
  transform:translateY(0);
  transition:
    transform .55s cubic-bezier(.16,.84,.22,1),
    opacity .35s ease;
}

.motion-v9 .project-showcase:hover .project-showcase__content h3{
  transform:translateY(-6px);
}

.motion-v9 .project-showcase:hover .project-showcase__content p{
  transform:translateY(-3px);
}

/* Scope strips: premium opening and hover depth */
.motion-v9 .scope-item{
  isolation:isolate;
}

.motion-v9 .scope-item::before{
  transition:
    transform .95s cubic-bezier(.16,.84,.22,1),
    opacity .45s ease,
    filter .45s ease!important;
}

.motion-v9 .scope-item:hover::before{
  transform:scale(1.085)!important;
}

.motion-v9 .scope-item__plus,
.motion-v9 .faq-item__icon{
  transition:
    transform .38s cubic-bezier(.16,.84,.22,1),
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease!important;
}

.motion-v9 .scope-item:hover .scope-item__plus,
.motion-v9 .faq-item:hover .faq-item__icon{
  box-shadow:0 12px 30px rgba(80,81,83,.12);
}

/* FAQ: smoother interaction */
.motion-v9 .faq-item{
  transition:
    background .32s ease,
    padding-left .32s cubic-bezier(.16,.84,.22,1);
}

.motion-v9 .faq-item:hover{
  background:rgba(255,255,255,.20);
  padding-left:10px;
}

.motion-v9 .faq-item__trigger span:first-child,
.motion-v9 .faq-item__trigger{
  transition:color .3s ease, transform .35s cubic-bezier(.16,.84,.22,1);
}

.motion-v9 .faq-item:hover .faq-item__trigger{
  transform:translateX(4px);
}

/* Form micro-interactions */
.motion-v9 .contact-form input,
.motion-v9 .contact-form select,
.motion-v9 .contact-form textarea{
  transition:
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease,
    transform .28s cubic-bezier(.16,.84,.22,1);
}

.motion-v9 .contact-form input:focus,
.motion-v9 .contact-form select:focus,
.motion-v9 .contact-form textarea:focus{
  border-color:rgba(115,117,120,.50)!important;
  background:rgba(255,255,255,.72)!important;
  box-shadow:0 12px 32px rgba(80,81,83,.08);
  transform:translateY(-1px);
}

/* Header entrance */
.motion-v9 .site-header{
  transform:translateY(-100%);
  transition:
    transform .8s cubic-bezier(.16,.84,.22,1) .28s,
    background .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    backdrop-filter .35s ease;
}

.motion-v9.motion-v9-enter .site-header{
  transform:none;
}

/* Subtle scroll-responsive header line */
.motion-v9 .site-header::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:calc(var(--v9-scroll) * 100%);
  height:1px;
  background:rgba(115,117,120,.36);
  transform-origin:left;
}

/* Anchor feedback */
.motion-v9.motion-v9-anchor main{
  animation:anchorPulseV9 .62s cubic-bezier(.16,.84,.22,1);
}

@keyframes anchorPulseV9{
  0%{filter:none;}
  45%{filter:brightness(1.025);}
  100%{filter:none;}
}

/* A premium, tiny shimmer only on real CTA buttons */
.motion-v9 .button,
.motion-v9 .hero-link{
  overflow:hidden;
}

.motion-v9 .button::before{
  content:"";
  position:absolute;
  inset:-40% auto -40% -70%;
  width:45%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform:skewX(-18deg);
  opacity:0;
}

.motion-v9 .button:hover::before{
  animation:ctaShimmerV9 .82s cubic-bezier(.16,.84,.22,1);
}

@keyframes ctaShimmerV9{
  0%{left:-70%;opacity:0;}
  20%{opacity:1;}
  100%{left:125%;opacity:0;}
}

/* Gentle image polish */
.motion-v9 img{
  transition:
    transform .65s cubic-bezier(.16,.84,.22,1),
    filter .45s ease;
}

.motion-v9 .device__screen:hover img,
.motion-v9 .about__media:hover img{
  transform:scale(1.025);
}

/* reduced motion */
@media(prefers-reduced-motion:reduce){
  .motion-v9::before,
  .motion-v9 .hero__slide,
  .motion-v9 .site-header,
  .motion-reveal-v9,
  .word-v9,
  .magnetic-v9,
  .reactive-card-v9,
  .motion-v9 img,
  .motion-v9 *{
    animation:none!important;
    transition:none!important;
    transform:none!important;
    filter:none!important;
    clip-path:none!important;
  }
  .motion-v9::before{
    display:none!important;
  }
}


/* ============================================================
   V10 — SCOPE READABILITY FIX
   Fix: po rozwinięciu zakres współpracy był zbyt jasny i tekst ginął.
   ============================================================ */

.scope-item.is-open{
  background:#D8D7D4!important;
}

.scope-item.is-open::before{
  opacity:.38!important;
  filter:grayscale(1) saturate(.18) brightness(.84) contrast(1.08)!important;
}

.scope-item.is-open::after{
  background:
    linear-gradient(90deg,
      rgba(205,204,202,.96) 0%,
      rgba(218,217,214,.92) 46%,
      rgba(205,204,202,.86) 100%
    )!important;
}

.scope-item.is-open .scope-item__trigger{
  background:rgba(205,204,202,.34)!important;
  border-bottom:1px solid rgba(80,81,83,.16)!important;
}

.scope-item.is-open .scope-item__eyebrow,
.scope-item.is-open .scope-item__meta,
.scope-item.is-open .scope-item__number{
  color:#5F6163!important;
  opacity:1!important;
}

.scope-item.is-open .scope-item__main h3{
  color:#424446!important;
  opacity:1!important;
}

.scope-item.is-open .scope-item__panel{
  background:rgba(218,217,214,.96)!important;
  border-top:1px solid rgba(80,81,83,.14)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.30)!important;
}

.scope-item.is-open .scope-item__content p,
.scope-item.is-open .scope-item__content li{
  color:#4E5052!important;
  opacity:1!important;
}

.scope-item.is-open .scope-item__plus{
  background:rgba(241,240,237,.72)!important;
  color:#424446!important;
  border-color:rgba(80,81,83,.22)!important;
}

/* V9 reactive highlight był za mocny na jasnej sekcji zakresu. */
.scope-item.reactive-card-v9::after{
  background:
    radial-gradient(circle at var(--spot-x,50%) var(--spot-y,50%),
      rgba(255,255,255,.05),
      transparent 30%
    )!important;
  mix-blend-mode:normal!important;
}

.scope-item.reactive-card-v9.is-reactive::after{
  opacity:.65!important;
}

/* Delikatnie ciemniejszy hover, żeby tekst nie znikał. */
.scope-item:hover::after{
  background:
    linear-gradient(90deg,
      rgba(205,204,202,.94) 0%,
      rgba(218,217,214,.88) 46%,
      rgba(205,204,202,.78) 100%
    )!important;
}


/* ============================================================
   V13 — SAFE FINAL FIX
   Baza z V10. Bez intro. Zakres naprawiony bez przepalania.
   ============================================================ */

/* 1) Wywalenie KAŻDEGO intro / overlayu startowego.
   V9 miał pseudo-overlay na body::before — to właśnie wyglądało jak intro. */
.motion-v9::before,
.intro-v11,
.intro-v11__photo,
.intro-v11__veil,
.intro-v11__line,
.intro-v11__content{
  display:none!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  content:none!important;
}

body.intro-v11-active{
  overflow:auto!important;
}

.motion-v9 .site-header{
  transform:none!important;
  transition:
    background .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    backdrop-filter .35s ease!important;
}

.motion-v9 .hero__slide{
  clip-path:none!important;
  filter:saturate(.92) contrast(1.04) brightness(.94)!important;
}

.motion-v9 .hero__overlay,
.motion-v9 .hero__bottom{
  opacity:1!important;
  transform:none!important;
  filter:none!important;
}

/* 2) Zakres współpracy — stabilny, czytelny, bez rozjaśniania na biało. */
.scope-item{
  background:#CDCCCA!important;
  border:1px solid rgba(115,117,120,.18)!important;
  box-shadow:0 18px 70px rgba(80,81,83,.08)!important;
}

/* Zdjęcie dalej może delikatnie pracować, ale nie zmienia jasności tekstu. */
.scope-item::before{
  opacity:.34!important;
  filter:grayscale(1) saturate(.16) brightness(.80) contrast(1.10)!important;
  transform:scale(1.03)!important;
  transition:transform .75s cubic-bezier(.16,.84,.22,1)!important;
}

.scope-item:hover::before,
.scope-item.is-open:hover::before{
  opacity:.34!important;
  filter:grayscale(1) saturate(.16) brightness(.80) contrast(1.10)!important;
  transform:scale(1.065)!important;
}

/* Stała warstwa czytelności — bez shine, bez hoverowego przepalania. */
.scope-item::after,
.scope-item:hover::after,
.scope-item.is-open::after,
.scope-item.is-open:hover::after,
.scope-item.scope-readable-v11::after,
.scope-item.scope-readable-v11:hover::after{
  content:""!important;
  display:block!important;
  opacity:1!important;
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  mix-blend-mode:normal!important;
  background:
    linear-gradient(90deg,
      rgba(205,204,202,.96) 0%,
      rgba(205,204,202,.92) 48%,
      rgba(205,204,202,.86) 100%
    )!important;
}

/* Wyłączamy reaktywną jasną plamę tylko na zakresie. */
.scope-item.reactive-card-v9::after,
.scope-item.reactive-card-v9.is-reactive::after{
  background:
    linear-gradient(90deg,
      rgba(205,204,202,.96) 0%,
      rgba(205,204,202,.92) 48%,
      rgba(205,204,202,.86) 100%
    )!important;
  opacity:1!important;
  mix-blend-mode:normal!important;
}

/* Karta nie ma się przyciemniać/rozjaśniać przy hoverze. */
.scope-item.reactive-card-v9{
  transform:none!important;
}

.scope-item .scope-item__trigger,
.scope-item:hover .scope-item__trigger,
.scope-item.is-open .scope-item__trigger{
  position:relative!important;
  z-index:2!important;
  background:transparent!important;
  opacity:1!important;
  filter:none!important;
}

.scope-item.is-open .scope-item__trigger{
  border-bottom:1px solid rgba(66,68,70,.16)!important;
}

.scope-item .scope-item__panel,
.scope-item.is-open .scope-item__panel{
  position:relative!important;
  z-index:2!important;
  background:#CDCCCA!important;
  border-top:1px solid rgba(66,68,70,.14)!important;
  opacity:1!important;
  filter:none!important;
}

/* Tekst zawsze ciemny i pełny — także w zamkniętych kartach. */
.scope-item .scope-item__main,
.scope-item .scope-item__content,
.scope-item .scope-item__main h3,
.scope-item .scope-item__content p,
.scope-item .scope-item__content li,
.scope-item .scope-item__eyebrow,
.scope-item .scope-item__meta,
.scope-item .scope-item__number{
  opacity:1!important;
  filter:none!important;
  mix-blend-mode:normal!important;
  text-shadow:none!important;
}

.scope-item .scope-item__main h3{
  color:#3F4243!important;
}

.scope-item .scope-item__content p,
.scope-item .scope-item__content li{
  color:#46484A!important;
  font-weight:500!important;
}

.scope-item .scope-item__eyebrow,
.scope-item .scope-item__meta,
.scope-item .scope-item__number{
  color:#505153!important;
}

/* Plusik bez shine/magnet/dziwnego przygaszania. */
.scope-item .scope-item__plus,
.scope-item:hover .scope-item__plus{
  background:rgba(241,240,237,.72)!important;
  color:#424446!important;
  border-color:rgba(80,81,83,.22)!important;
  box-shadow:none!important;
  transform:none!important;
}

.scope-item.is-open .scope-item__plus{
  transform:rotate(45deg)!important;
}

/* Zostawiamy animacje strony, ale bez wpływu na kontrast zakresu. */
.motion-v9 .scope-item:hover .scope-item__plus{
  box-shadow:none!important;
}

.motion-v9 .scope-item:hover::before{
  transform:scale(1.065)!important;
}

@media(max-width:760px){
  .motion-v9 .hero__slide{
    filter:saturate(.92) contrast(1.04) brightness(.94)!important;
  }
}


/* ============================================================
   V14 — SCOPE NO FOG FIX
   Zakres współpracy: zero mgły, zero shine, zero przygaszania.
   ============================================================ */

.scope,
.scope-v7{
  background:#CDCCCA!important;
}

.scope__heading,
.scope__heading.reveal,
.scope__heading.motion-reveal-v9{
  opacity:1!important;
  filter:none!important;
}

.scope-item,
.scope-item.reveal,
.scope-item.motion-reveal-v9,
.scope-item.motion-reveal-v9.is-visible-v9,
.scope-item.reactive-card-v9{
  opacity:1!important;
  filter:none!important;
  transform:none!important;
  background:#F1F0ED!important;
  border:1px solid rgba(80,81,83,.16)!important;
  box-shadow:0 18px 55px rgba(80,81,83,.08)!important;
}

/* Wywalamy mgłę kompletnie */
.scope-item::before,
.scope-item::after,
.scope-item:hover::after,
.scope-item.is-open::after,
.scope-item.reactive-card-v9::after,
.scope-item.reactive-card-v9.is-reactive::after{
  display:none!important;
  opacity:0!important;
  content:none!important;
  background:none!important;
}

/* Zostaje tylko małe zdjęcie/pasek w środku, żeby nie było pustki */
.scope-item__visual{
  display:block!important;
  height:100%!important;
  min-height:150px!important;
  border-radius:20px!important;
  overflow:hidden!important;
  background:#DAD9D6!important;
}

.scope-item__visual-inner{
  display:block!important;
  width:100%!important;
  height:100%!important;
  background-image:var(--scope-image)!important;
  background-size:cover!important;
  background-position:center!important;
  filter:grayscale(1) saturate(.15) brightness(.88) contrast(1.05)!important;
  opacity:.65!important;
  transform:scale(1.03)!important;
  transition:transform .6s cubic-bezier(.16,.84,.22,1)!important;
}

.scope-item:hover .scope-item__visual-inner{
  transform:scale(1.07)!important;
}

.scope-item__trigger{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  grid-template-columns:54px minmax(280px,38%) minmax(0,1fr) minmax(190px,260px) 46px!important;
  gap:26px!important;
  align-items:center!important;
  min-height:170px!important;
  padding:24px 32px!important;
  background:transparent!important;
  opacity:1!important;
  filter:none!important;
}

.scope-item__main,
.scope-item__main h3,
.scope-item__eyebrow,
.scope-item__meta,
.scope-item__number,
.scope-item__content,
.scope-item__content p,
.scope-item__content li{
  opacity:1!important;
  filter:none!important;
  color:#424446!important;
  text-shadow:none!important;
  mix-blend-mode:normal!important;
}

.scope-item__main h3{
  font-size:clamp(32px,3.6vw,58px)!important;
  line-height:1.02!important;
}

.scope-item__eyebrow,
.scope-item__meta,
.scope-item__number{
  color:#737578!important;
}

.scope-item__panel,
.scope-item.is-open .scope-item__panel{
  position:relative!important;
  z-index:2!important;
  background:#F1F0ED!important;
  border-top:1px solid rgba(80,81,83,.14)!important;
  opacity:1!important;
  filter:none!important;
}

.scope-item__content{
  padding:22px 32px 30px 112px!important;
  max-width:900px!important;
}

.scope-item__content p,
.scope-item__content li{
  color:#505153!important;
  font-weight:500!important;
}

.scope-item__plus,
.scope-item:hover .scope-item__plus,
.scope-item.is-open .scope-item__plus{
  opacity:1!important;
  filter:none!important;
  background:#FFFFFF!important;
  color:#424446!important;
  border:1px solid rgba(80,81,83,.18)!important;
  box-shadow:none!important;
}

.scope-item.is-open .scope-item__plus{
  transform:rotate(45deg)!important;
}

@media(max-width:1180px){
  .scope-item__trigger{
    grid-template-columns:44px minmax(240px,38%) minmax(0,1fr) 42px!important;
  }
  .scope-item__meta{
    display:none!important;
  }
}

@media(max-width:760px){
  .scope-item__trigger{
    grid-template-columns:38px minmax(0,1fr) 38px!important;
    gap:14px!important;
    padding:20px 18px!important;
  }
  .scope-item__visual{
    grid-column:1 / -1!important;
    order:-1!important;
    min-height:170px!important;
  }
  .scope-item__main{
    grid-column:2 / 3!important;
  }
  .scope-item__plus{
    grid-column:3 / 4!important;
  }
  .scope-item__content{
    padding:18px 18px 24px!important;
  }
}


/* ============================================================
   V15 — pełny pasek w zakresie + mocniejsze logo
   ============================================================ */

/* Logo w lewym górnym rogu — bardziej widoczne */
.brand__logo{
  height:34px!important;
  opacity:1!important;
}

.brand__logo--light,
.site-header:not(.is-scrolled) .brand__logo--light,
.site-header.is-scrolled .brand__logo--light{
  display:none!important;
}

.brand__logo--dark,
.site-header:not(.is-scrolled) .brand__logo--dark,
.site-header.is-scrolled .brand__logo--dark{
  display:block!important;
  opacity:1!important;
  filter:none!important;
}

.brand{
  display:flex!important;
  align-items:center!important;
}

/* Zakres współpracy — zdjęcie ma iść na cały pasek */
.scope-item{
  position:relative!important;
  overflow:hidden!important;
  background:#F1F0ED!important;
}

.scope-item::before,
.scope-list .scope-item::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  display:block!important;
  background-image:var(--scope-image)!important;
  background-size:cover!important;
  background-position:center center!important;
  opacity:.20!important;
  filter:grayscale(1) saturate(.18) brightness(.98) contrast(1.02)!important;
  transform:scale(1.02)!important;
  transition:transform .7s cubic-bezier(.16,.84,.22,1)!important;
  pointer-events:none!important;
}

.scope-item:hover::before,
.scope-item.is-open::before{
  transform:scale(1.05)!important;
}

.scope-item::after,
.scope-list .scope-item::after,
.scope-item:hover::after,
.scope-item.is-open::after{
  display:none!important;
  content:none!important;
}

.scope-item__visual,
.scope-item__visual-inner{
  display:none!important;
}

.scope-item__trigger{
  position:relative!important;
  z-index:2!important;
  grid-template-columns:54px minmax(0,1fr) minmax(210px,280px) 46px!important;
  gap:28px!important;
  min-height:196px!important;
  padding:26px 32px!important;
  background:transparent!important;
}

.scope-item__main{
  max-width:960px!important;
}

.scope-item__main h3{
  font-size:clamp(36px,4.2vw,70px)!important;
  line-height:.98!important;
  letter-spacing:-0.02em!important;
}

.scope-item__meta{
  justify-self:end!important;
  align-self:center!important;
  text-align:left!important;
  max-width:280px!important;
  line-height:1.7!important;
}

.scope-item__number,
.scope-item__eyebrow,
.scope-item__meta{
  color:#66686b!important;
}

.scope-item__main,
.scope-item__main h3,
.scope-item__content,
.scope-item__content p,
.scope-item__content li,
.scope-item__plus{
  color:#424446!important;
}

.scope-item__panel,
.scope-item.is-open .scope-item__panel{
  position:relative!important;
  z-index:2!important;
  background:rgba(241,240,237,.92)!important;
  backdrop-filter:blur(2px)!important;
}

.scope-item__content{
  max-width:860px!important;
}

.scope-item__plus,
.scope-item:hover .scope-item__plus,
.scope-item.is-open .scope-item__plus{
  background:rgba(255,255,255,.86)!important;
}

@media(max-width:1180px){
  .brand__logo{height:31px!important;}
  .scope-item__trigger{
    grid-template-columns:44px minmax(0,1fr) 42px!important;
    gap:18px!important;
    min-height:178px!important;
  }
  .scope-item__meta{
    display:none!important;
  }
}

@media(max-width:760px){
  .brand__logo{height:28px!important;}
  .scope-item__trigger{
    grid-template-columns:34px minmax(0,1fr) 36px!important;
    gap:14px!important;
    min-height:152px!important;
    padding:18px 18px!important;
  }
  .scope-item__main h3{
    font-size:clamp(26px,8.5vw,42px)!important;
  }
  .scope-item__content{
    padding:18px 18px 22px 52px!important;
  }
}

/* ============================================================
   V16 — MOBILE SCOPE EMERGENCY FIX
   Telefon: zakres współpracy ma być w 100% czytelny, bez szarej mgły.
   ============================================================ */

.scope-item,
.scope-item *,
.scope__heading,
.scope__heading *{
  -webkit-text-fill-color: currentColor;
}

@media(max-width:760px){
  .scope,
  .scope-v7,
  .scope-list,
  .scope-item,
  .scope-item.reveal,
  .scope-item.motion-reveal-v9,
  .scope-item.motion-reveal-v9.is-visible-v9,
  .scope-item.reactive-card-v9,
  .scope-item.is-open{
    opacity:1!important;
    filter:none!important;
    transform:none!important;
    background:#F1F0ED!important;
    box-shadow:0 14px 34px rgba(80,81,83,.08)!important;
  }

  .scope-item::after,
  .scope-item:hover::after,
  .scope-item.is-open::after,
  .scope-item.reactive-card-v9::after,
  .scope-item.reactive-card-v9.is-reactive::after{
    display:none!important;
    content:none!important;
    opacity:0!important;
    background:none!important;
  }

  .scope-item::before,
  .scope-item:hover::before,
  .scope-item.is-open::before{
    content:""!important;
    display:block!important;
    position:absolute!important;
    inset:0!important;
    background-image:var(--scope-image)!important;
    background-size:cover!important;
    background-position:center center!important;
    opacity:.16!important;
    filter:grayscale(1) saturate(.12) brightness(.96) contrast(1.02)!important;
    transform:scale(1.02)!important;
    pointer-events:none!important;
  }

  .scope-item__visual,
  .scope-item__visual-inner{
    display:none!important;
  }

  .scope-item__trigger,
  .scope-item:hover .scope-item__trigger,
  .scope-item.is-open .scope-item__trigger{
    position:relative!important;
    z-index:2!important;
    display:grid!important;
    grid-template-columns:34px minmax(0,1fr) 36px!important;
    gap:14px!important;
    align-items:center!important;
    min-height:152px!important;
    padding:20px 18px!important;
    background:transparent!important;
    opacity:1!important;
    filter:none!important;
  }

  .scope-item__main,
  .scope-item__main h3,
  .scope-item__eyebrow,
  .scope-item__meta,
  .scope-item__number,
  .scope-item__content,
  .scope-item__content p,
  .scope-item__content li,
  .scope-item__plus,
  .scope-item__panel{
    opacity:1!important;
    filter:none!important;
    text-shadow:none!important;
    mix-blend-mode:normal!important;
  }

  .scope-item__number,
  .scope-item__eyebrow,
  .scope-item__meta{
    color:#66686B!important;
  }

  .scope-item__main h3,
  .scope-item__content p,
  .scope-item__content li,
  .scope-item__plus{
    color:#424446!important;
  }

  .scope-item__main{
    grid-column:2 / 3!important;
  }

  .scope-item__meta{
    display:none!important;
  }

  .scope-item__plus{
    grid-column:3 / 4!important;
    width:36px!important;
    height:36px!important;
    background:rgba(255,255,255,.92)!important;
    border:1px solid rgba(80,81,83,.16)!important;
  }

  .scope-item__panel,
  .scope-item.is-open .scope-item__panel{
    position:relative!important;
    z-index:2!important;
    background:rgba(241,240,237,.96)!important;
    border-top:1px solid rgba(80,81,83,.12)!important;
  }

  .scope-item__content{
    padding:18px 18px 24px 52px!important;
    max-width:none!important;
  }
}

/* Końcowa kolejność kaskady — te reguły nie mogą zostać nadpisane
   przez starsze warstwy kompatybilności znajdujące się wyżej. */
@media(max-width:760px){
  /* Prosty, stabilny pasek mobilny. */
  body .site-header,
  body .site-header:not(.is-scrolled),
  body .site-header.is-scrolled,
  body .header__inner{
    height:64px!important;
  }

  body .site-header,
  body .site-header:not(.is-scrolled),
  body .site-header.is-scrolled{
    background:#080909!important;
    border-bottom:1px solid rgba(255,255,255,.12)!important;
    -webkit-backdrop-filter:none!important;
    backdrop-filter:none!important;
    box-shadow:none!important;
  }

  body .header__inner{
    width:calc(100% - 28px)!important;
    padding:0!important;
  }

  body .site-header .brand__logo--light,
  body .site-header:not(.is-scrolled) .brand__logo--light,
  body .site-header.is-scrolled .brand__logo--light{
    display:block!important;
    width:auto!important;
    height:34px!important;
    opacity:1!important;
    filter:none!important;
  }

  body .site-header .brand__logo--dark,
  body .site-header:not(.is-scrolled) .brand__logo--dark,
  body .site-header.is-scrolled .brand__logo--dark{
    display:none!important;
  }

  body .menu-toggle{
    width:44px!important;
    height:44px!important;
  }

  body .menu-toggle span,
  body .site-header.is-scrolled .menu-toggle span{
    left:9px!important;
    right:9px!important;
    height:1px!important;
    background:#f3f1ed!important;
  }

  body .site-nav{
    top:64px!important;
    left:12px!important;
    right:12px!important;
    width:auto!important;
    padding:24px!important;
    gap:18px!important;
    border:1px solid rgba(255,255,255,.12)!important;
    border-radius:0 0 20px 20px!important;
    background:#111212!important;
    box-shadow:0 20px 44px rgba(0,0,0,.22)!important;
  }

  body .site-nav a,
  body .site-header.is-scrolled .site-nav a{
    color:#f3f1ed!important;
    font-size:12px!important;
    line-height:1.4!important;
    letter-spacing:.18em!important;
  }

  /* Galeria mobilna bez wymuszonych wysokości i poziomego overflow. */
  body.gallery-page{
    overflow-x:hidden!important;
  }

  body.gallery-page .gallery-hero{
    padding:calc(64px + 52px) 0 42px!important;
  }

  body.gallery-page .gallery-hero__content{
    width:calc(100% - 32px)!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr)!important;
    gap:20px!important;
  }

  body.gallery-page .gallery-hero h1{
    width:100%!important;
    max-width:100%!important;
    font-size:clamp(42px,13vw,66px)!important;
    line-height:.94!important;
    overflow-wrap:anywhere;
  }

  body.gallery-page .gallery-grid-section{
    padding:12px 0 56px!important;
  }

  body.gallery-page .gallery-grid{
    width:calc(100% - 24px)!important;
    max-width:none!important;
    margin-inline:auto!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr)!important;
    gap:12px!important;
  }

  body.gallery-page .gallery-card,
  body.gallery-page .gallery-card--wide{
    grid-column:auto!important;
    width:100%!important;
    min-width:0!important;
    height:auto!important;
    min-height:0!important;
    margin:0!important;
    border-radius:14px!important;
    overflow:hidden!important;
  }

  body.gallery-page .gallery-card img,
  body.gallery-page .gallery-card:hover img{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    min-height:0!important;
    object-fit:contain!important;
  }

  /* Jednolity, czysty sposób otwierania zakresu i FAQ. */
  body .scope-list{
    width:calc(100% - 20px)!important;
    gap:10px!important;
  }

  body .scope-item{
    min-height:0!important;
    border-radius:16px!important;
    overflow:hidden!important;
  }

  body .scope-item__trigger,
  body .scope-item:hover .scope-item__trigger,
  body .scope-item.is-open .scope-item__trigger{
    min-height:112px!important;
    grid-template-columns:28px minmax(0,1fr) 34px!important;
    gap:12px!important;
    padding:16px!important;
    align-items:center!important;
  }

  body .scope-item__main h3{
    font-size:clamp(25px,8vw,34px)!important;
    line-height:1.02!important;
  }

  body .scope-item__eyebrow{
    font-size:9px!important;
    line-height:1.4!important;
  }

  body .scope-item__number{
    font-size:10px!important;
  }

  body .scope-item__plus{
    width:34px!important;
    height:34px!important;
  }

  body .scope-item__panel,
  body .faq-item__answer{
    opacity:0!important;
    transition:max-height .38s cubic-bezier(.16,.84,.22,1),opacity .22s ease!important;
  }

  body .scope-item.is-open .scope-item__panel,
  body .faq-item.is-open .faq-item__answer{
    opacity:1!important;
  }

  body .scope-item__content{
    padding:16px 16px 22px 56px!important;
  }

  body .faq-item__trigger{
    grid-template-columns:minmax(0,1fr) 34px!important;
    gap:14px!important;
    padding:17px 0!important;
    font-size:17px!important;
    line-height:1.35!important;
    transform:none!important;
  }

  body .faq-item__icon{
    width:34px!important;
    height:34px!important;
  }

  body .faq-item__answer p{
    padding:0 46px 20px 0!important;
    font-size:14px!important;
    line-height:1.65!important;
  }
}

@media(max-width:980px), (pointer:coarse){
  html{
    scroll-behavior:auto!important;
  }

  body.performance-lite .reveal,
  body.performance-lite .motion-reveal-v9,
  body.performance-lite .word-v9{
    opacity:1!important;
    transform:none!important;
    filter:none!important;
    transition:none!important;
    animation:none!important;
  }

  .site-header,
  .site-nav,
  .scope-item__panel,
  .social-showcase,
  .faq,
  .contact-form,
  .contact__content{
    -webkit-backdrop-filter:none!important;
    backdrop-filter:none!important;
  }

  .project-showcase,
  .scope-item,
  .social-showcase,
  .faq,
  .contact-form,
  .about__media,
  .project-showcase::before{
    will-change:auto!important;
  }

  .project-showcase,
  .scope-item,
  .magnetic-v9,
  .magnetic-v9.is-magnetic{
    transform:none!important;
  }

  .project-showcase::before,
  .project-showcase:hover::before,
  .scope-item::before,
  .scope-item:hover::before,
  .magnetic-v9,
  .magnetic-v9.is-magnetic{
    transition:none!important;
  }
}

.site-header .brand__logo--light{
  display:none!important;
}

.site-header .brand__logo--dark{
  display:block!important;
  width:auto!important;
  height:42px!important;
  opacity:1!important;
  filter:contrast(1.28) brightness(.72)!important;
}

.hero__slide,
.hero__slide.is-active,
.motion-v9 .hero__slide,
.motion-v9.motion-v9-enter .hero__slide{
  opacity:1!important;
  animation:none!important;
  transition:none!important;
  transform:none!important;
  clip-path:none!important;
  filter:none!important;
  background-position:center 46%!important;
  will-change:auto!important;
}

.site-footer{
  background:#080909!important;
  color:#f3f1ed!important;
  border-top-color:rgba(255,255,255,.12)!important;
}

@media(max-width:760px){
  .site-header .brand__logo--dark{
    height:35px!important;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero__slide{
    animation:none!important;
    transition:none!important;
  }
}

.hero::after,
.motion-v9 .hero::after{
  display:none!important;
  content:none!important;
}

.reactive-card-v9,
.reactive-card-v9.is-reactive{
  transform:none!important;
  transition:none!important;
  will-change:auto!important;
}

.reactive-card-v9::after,
.reactive-card-v9.is-reactive::after{
  display:none!important;
  content:none!important;
  opacity:0!important;
  background:none!important;
}

.gallery-grid{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:24px!important;
}

.gallery-card,
.gallery-card--wide{
  grid-column:auto!important;
  width:100%!important;
  min-height:82svh!important;
  border-radius:0!important;
}

.gallery-card::after,
.gallery-card figcaption{
  display:none!important;
  content:none!important;
}

.gallery-card img,
.gallery-card:hover img{
  width:100%!important;
  height:82svh!important;
  object-fit:cover!important;
  transform:none!important;
  filter:none!important;
  transition:none!important;
}

.faq .section-kicker,
.faq .section-kicker--light,
.manifest-v7 .section-kicker,
.manifest-v7 .section-kicker--light{
  color:#737578!important;
  -webkit-text-fill-color:#737578!important;
  opacity:1!important;
}

.manifest-v7 .manifest__content,
.manifest__content{
  width:var(--container)!important;
  display:block!important;
  margin-inline:auto!important;
  padding:0!important;
  text-align:left!important;
}

.manifest-v7 .manifest__content .section-kicker{
  display:inline-flex!important;
  margin:0 0 22px!important;
}

.manifest-v7 .manifest__content h2,
.manifest__content h2{
  display:block!important;
  width:min(100%,1120px)!important;
  max-width:1120px!important;
  margin:0!important;
  padding:0!important;
  text-align:left!important;
}

.contact__grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  align-items:stretch!important;
  gap:32px!important;
}

.contact__content,
.contact-form{
  height:100%!important;
  box-sizing:border-box!important;
}

.contact__content{
  display:flex!important;
  flex-direction:column!important;
  padding:34px!important;
  border:1px solid rgba(115,117,120,.14)!important;
  border-radius:34px!important;
  background:rgba(255,255,255,.48)!important;
  box-shadow:0 22px 70px rgba(80,81,83,.07)!important;
}

.contact__content h2{
  max-width:12ch!important;
}

.contact__info{
  margin-top:auto!important;
  padding-top:26px!important;
}

@media(max-width:980px){
  .gallery-card,
  .gallery-card--wide,
  .gallery-card img,
  .gallery-card:hover img{
    min-height:62svh!important;
    height:62svh!important;
  }

  .contact__grid{
    grid-template-columns:1fr!important;
    gap:20px!important;
  }

  .contact__content{
    padding:26px 20px!important;
    border-radius:24px!important;
  }
}


/* V34 — realizacje uporządkowane projektami */
.gallery-hero__lead{
  grid-column:1 / -1;
  max-width:620px;
  margin-top:4px;
  color:rgba(66,68,70,.72);
  font-size:15px;
  line-height:1.75;
}

.gallery-projects{
  display:grid;
  gap:clamp(76px,10vw,150px);
}

.gallery-project{
  display:grid;
  gap:24px;
}

.gallery-project__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-top:24px;
  border-top:1px solid rgba(66,68,70,.22);
}

.gallery-project__head span{
  color:#737578;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
}

.gallery-project__head h2{
  margin:0;
  color:#424446;
  font-family:"Cinzel",serif;
  font-size:clamp(30px,4.4vw,64px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-.035em;
}

.gallery-project__grid{
  columns:2;
  column-gap:20px;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide{
  display:block!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  margin:0 0 20px!important;
  break-inside:avoid;
  border-radius:0!important;
  background:#d5d3cf!important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  object-fit:contain!important;
  transform:none!important;
  filter:none!important;
}

@media(max-width:760px){
  .gallery-hero__lead{
    font-size:14px;
  }

  .gallery-projects{
    gap:72px;
  }

  .gallery-project{
    gap:16px;
  }

  .gallery-project__head{
    width:calc(100% - 24px)!important;
    padding-top:18px;
  }

  .gallery-project__head h2{
    font-size:clamp(28px,9vw,42px);
  }

  .gallery-project__grid{
    width:calc(100% - 24px)!important;
    columns:1;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    margin-bottom:12px!important;
  }
}


/* V38 — mobile text safety + homepage realization order */
@media (max-width: 760px) {
  .project-showcase {
    width: calc(100% - 16px) !important;
    min-height: clamp(420px, 72svh, 560px) !important;
    aspect-ratio: auto !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .project-showcase::before,
  .project-showcase:hover::before {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    transform: none !important;
    filter: brightness(.78) contrast(1.02) saturate(.96) !important;
  }

  .project-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(16,18,20,.08) 0%, rgba(16,18,20,.14) 30%, rgba(16,18,20,.54) 100%) !important,
      linear-gradient(90deg, rgba(16,18,20,.24) 0%, rgba(16,18,20,.06) 55%, rgba(16,18,20,.18) 100%) !important;
  }

  .project-showcase__content {
    min-height: clamp(420px, 72svh, 560px) !important;
    height: auto !important;
    align-content: end !important;
    padding: 22px 18px 20px !important;
    gap: 14px !important;
  }

  .project-showcase__content > div:nth-child(2) {
    max-width: min(100%, 30rem) !important;
    align-self: end !important;
  }

  .project-showcase__index {
    align-self: start !important;
  }

  .project-showcase__content h3 {
    max-width: 100% !important;
    font-size: clamp(28px, 8.3vw, 42px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em !important;
    text-wrap: balance !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
    margin: 0 !important;
  }

  .project-showcase__content p {
    max-width: 100% !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    overflow-wrap: anywhere !important;
  }

  .projects__intro h2,
  .gallery-hero h1,
  .gallery-project__head h2,
  .hero h1,
  .scope h2,
  .about h2,
  .contact h2,
  h2,
  h3 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
  }

  .gallery-project__head {
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .gallery-project__head h2 {
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 390px) {
  .project-showcase {
    width: calc(100% - 12px) !important;
    min-height: clamp(400px, 70svh, 520px) !important;
  }

  .project-showcase__content {
    min-height: clamp(400px, 70svh, 520px) !important;
    padding: 18px 14px 18px !important;
  }

  .project-showcase__content h3 {
    font-size: clamp(25px, 8.7vw, 36px) !important;
  }
}


/* V39 — pełne wyrazy na mobile + menu pełną szerokością */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  /* Menu: pełna szerokość do krawędzi, nie pełny ekran w pionie, linki od lewej. */
  body .site-nav {
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: min(72svh, 560px) !important;
    padding: 26px 24px 28px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    justify-items: stretch !important;
    align-content: start !important;
    gap: 0 !important;
    text-align: left !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border: 0 !important;
    border-top: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 0 0 26px 26px !important;
    background: #111212 !important;
    box-shadow: 0 26px 54px rgba(0,0,0,.24) !important;
  }

  body .site-nav > a,
  body .site-header.is-scrolled .site-nav > a {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 56px !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #f3f1ed !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    letter-spacing: .22em !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }

  body .site-nav > a::after,
  body .site-nav__extras > a::after {
    display: none !important;
  }

  body .site-nav__extras,
  body .site-nav__extras.mobile-only {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    justify-items: start !important;
    gap: 12px !important;
    padding-top: 20px !important;
    text-align: left !important;
  }

  body .site-nav__extras > a,
  body .site-header.is-scrolled .site-nav__extras > a,
  body .site-nav__social {
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    flex: 0 0 44px !important;
    color: #f3f1ed !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.055) !important;
  }

  body .site-nav__social svg,
  body .site-nav__extras svg {
    width: 19px !important;
    height: 19px !important;
    display: block !important;
    fill: currentColor !important;
  }

  /* Pełne wyrazy — wyłączamy automatyczne dzielenie typu NAJLEP-SZYM. */
  body :is(h1, h2, h3, .hero-title, .section-title, .about__dynamic-title, .quote-band__content p, .manifest__content h2, .social-showcase__head h2, .faq__content h2, .contact__content h2, .scope__heading h2, .project-showcase__content h3, .gallery-project__head h2, .gallery-hero h1) {
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    text-wrap: balance !important;
  }

  .manifest__content h2,
  .social-showcase__head h2,
  .faq__content h2,
  .contact__content h2,
  .scope__heading h2,
  .about__dynamic-title {
    font-size: clamp(31px, 8.8vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.052em !important;
  }

  .contact__content h2,
  .social-showcase__head h2,
  .faq__content h2 {
    max-width: 11.5em !important;
  }

  .manifest__content h2,
  .quote-band__content p {
    font-size: clamp(32px, 9vw, 43px) !important;
    line-height: 1.08 !important;
    max-width: 13.5em !important;
  }

  .project-showcase__content h3 {
    font-size: clamp(27px, 7.8vw, 39px) !important;
    line-height: 1.06 !important;
    max-width: 12em !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .gallery-project__head h2,
  .gallery-hero h1 {
    font-size: clamp(29px, 8.4vw, 40px) !important;
    line-height: 1.08 !important;
  }

  .social-showcase,
  .faq,
  .contact__content,
  .manifest__content,
  .quote-band__content,
  .scope__heading {
    overflow: visible !important;
  }

  .social-showcase__head,
  .faq__content,
  .contact__content,
  .manifest__content {
    min-width: 0 !important;
  }
}

@media (max-width: 390px) {
  body .site-nav {
    top: 64px !important;
    padding: 24px 20px 26px !important;
    border-radius: 0 0 22px 22px !important;
  }

  body .site-nav > a,
  body .site-header.is-scrolled .site-nav > a {
    min-height: 52px !important;
    font-size: 12px !important;
    letter-spacing: .20em !important;
  }

  .manifest__content h2,
  .social-showcase__head h2,
  .faq__content h2,
  .contact__content h2,
  .scope__heading h2,
  .about__dynamic-title {
    font-size: clamp(28px, 8.4vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .quote-band__content p {
    font-size: clamp(29px, 8.4vw, 35px) !important;
    line-height: 1.1 !important;
  }
}


/* V42 — poprawa galerii realizacji na mobile */
body.gallery-page .gallery-grid-section,
body.gallery-page .gallery-projects,
body.gallery-page .gallery-project,
body.gallery-page .gallery-project__grid,
body.gallery-page .gallery-card,
body.gallery-page .gallery-card img{
  box-sizing:border-box;
}

body.gallery-page .gallery-project__grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px !important;
  columns:unset !important;
  width:100% !important;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide{
  margin:0 !important;
  width:100% !important;
  min-width:0 !important;
  height:auto !important;
  min-height:0 !important;
  overflow:hidden !important;
  border-radius:20px !important;
  background:transparent !important;
  break-inside:auto !important;
  box-shadow:none !important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  object-fit:cover !important;
  object-position:center !important;
  background:transparent !important;
  transform:none !important;
  filter:none !important;
}

@media (max-width:760px){
  body.gallery-page .gallery-grid-section{
    padding-inline:0 !important;
    overflow:visible !important;
  }

  body.gallery-page .gallery-projects{
    gap:56px !important;
    width:100% !important;
  }

  body.gallery-page .gallery-project{
    gap:14px !important;
    width:100% !important;
  }

  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 24px) !important;
    max-width:none !important;
    margin-inline:auto !important;
  }

  body.gallery-page .gallery-project__head{
    padding-top:18px !important;
    align-items:flex-start !important;
    gap:10px !important;
  }

  body.gallery-page .gallery-project__head h2{
    font-size:clamp(26px,8.2vw,36px) !important;
    line-height:1.08 !important;
    max-width:100% !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    hyphens:none !important;
  }

  body.gallery-page .gallery-project__grid{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:12px !important;
    columns:unset !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    border-radius:18px !important;
    background:transparent !important;
    margin:0 !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card img,
  body.gallery-page .gallery-project__grid .gallery-card:hover img{
    width:100% !important;
    height:auto !important;
    object-fit:cover !important;
    background:transparent !important;
  }
}

@media (max-width:390px){
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 18px) !important;
  }

  body.gallery-page .gallery-project__grid{
    gap:10px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    border-radius:16px !important;
  }
}


/* V43 — podpisy zdjęć realizacji */
.project-showcase__credit{
  position:absolute;
  right:22px;
  bottom:18px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(17,18,18,.44);
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  font-family:"Manrope",sans-serif;
  font-size:11px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.08em;
}

body.gallery-page .gallery-card{
  position:relative;
}

body.gallery-page .gallery-card figcaption{
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:2;
  max-width:calc(100% - 24px);
  padding:7px 10px;
  border-radius:999px;
  background:rgba(17,18,18,.46);
  color:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  font-family:"Manrope",sans-serif;
  font-size:10px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.08em;
  pointer-events:none;
}

@media (max-width:760px){
  .project-showcase__credit{
    right:16px;
    bottom:16px;
    padding:7px 10px;
    font-size:10px;
    letter-spacing:.07em;
    max-width:calc(100% - 32px);
    text-align:right;
  }

  body.gallery-page .gallery-card figcaption{
    right:10px;
    bottom:10px;
    max-width:calc(100% - 20px);
    font-size:9px;
    padding:6px 9px;
    letter-spacing:.06em;
  }
}


/* V43 — finalna naprawa galerii + podpisy zdjęć */
body.gallery-page .gallery-projects{
  display:grid !important;
  gap:64px !important;
}

body.gallery-page .gallery-project{
  display:grid !important;
  gap:18px !important;
}

body.gallery-page .gallery-project__head{
  width:min(100% - 40px, var(--container)) !important;
  margin-inline:auto !important;
  padding-top:22px !important;
  align-items:flex-end !important;
  justify-content:space-between !important;
  gap:20px !important;
}

body.gallery-page .gallery-project__grid{
  width:min(100% - 40px, var(--container)) !important;
  margin-inline:auto !important;
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:18px !important;
  columns:unset !important;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide{
  position:relative !important;
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  border-radius:18px !important;
  background:transparent !important;
  box-shadow:none !important;
  break-inside:auto !important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img,
body.gallery-page .gallery-project__grid .gallery-card--wide img,
body.gallery-page .gallery-project__grid .gallery-card--wide:hover img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  object-fit:cover !important;
  object-position:center !important;
  transform:none !important;
  filter:none !important;
  background:transparent !important;
  border-radius:inherit !important;
}

body.gallery-page .gallery-card figcaption,
body.gallery-page .gallery-card--wide figcaption{
  display:inline-flex !important;
  position:absolute !important;
  right:12px !important;
  bottom:12px !important;
  z-index:3 !important;
  max-width:calc(100% - 24px) !important;
  padding:7px 10px !important;
  border-radius:999px !important;
  background:rgba(17,18,18,.54) !important;
  color:rgba(255,255,255,.96) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;
  font-family:"Manrope",sans-serif !important;
  font-size:10px !important;
  font-weight:600 !important;
  line-height:1.2 !important;
  letter-spacing:.06em !important;
  white-space:normal !important;
  pointer-events:none !important;
}

@media (max-width: 760px){
  body.gallery-page .gallery-projects{
    gap:52px !important;
  }

  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 24px) !important;
    max-width:none !important;
  }

  body.gallery-page .gallery-project__head{
    padding-top:18px !important;
    gap:10px !important;
    align-items:flex-start !important;
  }

  body.gallery-page .gallery-project__head h2{
    font-size:clamp(24px, 7.8vw, 34px) !important;
    line-height:1.1 !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    hyphens:none !important;
  }

  body.gallery-page .gallery-project__grid{
    grid-template-columns:minmax(0, 1fr) !important;
    gap:12px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    border-radius:16px !important;
  }

  body.gallery-page .gallery-card figcaption,
  body.gallery-page .gallery-card--wide figcaption{
    right:10px !important;
    bottom:10px !important;
    max-width:calc(100% - 20px) !important;
    font-size:9px !important;
    padding:6px 9px !important;
    letter-spacing:.05em !important;
  }
}

@media (max-width: 390px){
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 18px) !important;
  }

  body.gallery-page .gallery-project__grid{
    gap:10px !important;
  }
}


/* V44 — cleanup podpisów, nazwa Oaza i większe odstępy w realizacjach */
body:not(.gallery-page) .faq .project-showcase__credit,
body:not(.gallery-page) .scope-item .project-showcase__credit,
body:not(.gallery-page) .social-showcase .project-showcase__credit,
body:not(.gallery-page) .contact .project-showcase__credit,
body:not(.gallery-page) .manifest .project-showcase__credit,
body:not(.gallery-page) .quote-band .project-showcase__credit {
  display: none !important;
}

body.gallery-page .gallery-projects {
  gap: 84px !important;
}

body.gallery-page .gallery-project {
  gap: 24px !important;
}

body.gallery-page .gallery-project__head {
  padding-top: 28px !important;
}

body.gallery-page .gallery-project__head h2 {
  font-size: clamp(32px, 4.6vw, 66px) !important;
  line-height: 0.98 !important;
}

@media (max-width: 760px) {
  body.gallery-page .gallery-projects {
    gap: 64px !important;
  }

  body.gallery-page .gallery-project {
    gap: 16px !important;
  }

  body.gallery-page .gallery-project__head {
    padding-top: 20px !important;
  }

  body.gallery-page .gallery-project__head h2 {
    font-size: clamp(25px, 7.4vw, 36px) !important;
  }
}


/* V45 — powrót bez Oazy, czysty FAQ, podpisy jako opis i równa galeria */
.project-showcase__credit,
body.gallery-page .gallery-card figcaption,
body.gallery-page .gallery-card--wide figcaption{
  display:none !important;
}

.projects__credit-note,
.gallery-project__credit-note{
  margin:12px 0 0;
  color:rgba(66,68,70,.66);
  font-family:"Manrope",sans-serif;
  font-size:12px;
  font-weight:600;
  line-height:1.55;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.projects__intro{
  align-items:end;
  gap:24px;
}

body.gallery-page .gallery-projects{
  display:grid !important;
  gap:96px !important;
}

body.gallery-page .gallery-project{
  display:grid !important;
  gap:28px !important;
}

body.gallery-page .gallery-project__head{
  width:min(100% - 48px, var(--container)) !important;
  margin-inline:auto !important;
  display:grid !important;
  grid-template-columns:auto minmax(0, 1fr) !important;
  align-items:end !important;
  justify-content:start !important;
  gap:22px !important;
  padding-top:30px !important;
  border-top:1px solid rgba(66,68,70,.22) !important;
}

body.gallery-page .gallery-project__title-wrap{
  min-width:0 !important;
}

body.gallery-page .gallery-project__head h2{
  margin:0 !important;
  max-width:100% !important;
  font-size:clamp(30px,4.2vw,58px) !important;
  line-height:1.02 !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
  hyphens:none !important;
}

body.gallery-page .gallery-project__grid{
  width:min(100% - 48px, var(--container)) !important;
  margin-inline:auto !important;
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:18px !important;
  columns:unset !important;
  grid-auto-flow:row dense !important;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide{
  position:relative !important;
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-width:0 !important;
  min-height:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  border-radius:18px !important;
  background:#ebe9e5 !important;
  box-shadow:none !important;
  break-inside:auto !important;
  aspect-ratio:4 / 3 !important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img,
body.gallery-page .gallery-project__grid .gallery-card--wide img,
body.gallery-page .gallery-project__grid .gallery-card--wide:hover img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  min-height:0 !important;
  object-fit:cover !important;
  object-position:center !important;
  transform:none !important;
  filter:none !important;
  border-radius:inherit !important;
  background:#ebe9e5 !important;
}

@media (max-width: 980px){
  body.gallery-page .gallery-project__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px){
  .projects__intro{
    align-items:start !important;
  }

  .projects__credit-note,
  .gallery-project__credit-note{
    margin-top:10px !important;
    font-size:10px !important;
    line-height:1.5 !important;
    letter-spacing:.07em !important;
  }

  body.gallery-page .gallery-projects{
    gap:72px !important;
  }

  body.gallery-page .gallery-project{
    gap:18px !important;
  }

  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 24px) !important;
    max-width:none !important;
  }

  body.gallery-page .gallery-project__head{
    grid-template-columns:auto minmax(0,1fr) !important;
    align-items:start !important;
    gap:12px !important;
    padding-top:22px !important;
  }

  body.gallery-page .gallery-project__head h2{
    font-size:clamp(25px,7.6vw,34px) !important;
    line-height:1.08 !important;
  }

  body.gallery-page .gallery-project__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:10px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    border-radius:14px !important;
    aspect-ratio:1 / 1 !important;
  }
}

@media (max-width: 430px){
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid{
    width:calc(100% - 18px) !important;
  }

  body.gallery-page .gallery-project__grid{
    gap:9px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide{
    border-radius:12px !important;
  }
}


/* V46 — galeria: 2 duże zdjęcia w rzędzie, równe kafle, podpis na każdym zdjęciu */
body.gallery-page .gallery-projects {
  display: grid !important;
  gap: 92px !important;
}

body.gallery-page .gallery-project {
  display: grid !important;
  gap: 24px !important;
}

body.gallery-page .gallery-project__head {
  width: min(100% - 40px, var(--container)) !important;
  margin-inline: auto !important;
  padding-top: 28px !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

body.gallery-page .gallery-project__grid {
  width: min(100% - 40px, var(--container)) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  columns: unset !important;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #f3f0ec !important;
  box-shadow: none !important;
  break-inside: auto !important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img,
body.gallery-page .gallery-project__grid .gallery-card--wide img,
body.gallery-page .gallery-project__grid .gallery-card--wide:hover img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  background: transparent !important;
  border-radius: inherit !important;
}

body.gallery-page .gallery-project__grid .gallery-card::after,
body.gallery-page .gallery-project__grid .gallery-card--wide::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  height: 34% !important;
  background: linear-gradient(180deg, rgba(14,14,14,0) 0%, rgba(14,14,14,.56) 100%) !important;
  pointer-events: none !important;
}

body.gallery-page .gallery-card figcaption,
body.gallery-page .gallery-card--wide figcaption {
  display: inline-flex !important;
  position: absolute !important;
  left: 14px !important;
  bottom: 14px !important;
  z-index: 3 !important;
  max-width: calc(100% - 28px) !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(20,20,20,.52) !important;
  color: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: .05em !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid {
    width: calc(100% - 28px) !important;
  }

  body.gallery-page .gallery-project__grid {
    gap: 14px !important;
  }
}

@media (max-width: 680px) {
  body.gallery-page .gallery-projects {
    gap: 62px !important;
  }

  body.gallery-page .gallery-project {
    gap: 16px !important;
  }

  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid {
    width: calc(100% - 18px) !important;
  }

  body.gallery-page .gallery-project__head {
    padding-top: 18px !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  body.gallery-page .gallery-project__head h2 {
    font-size: clamp(24px, 7.6vw, 34px) !important;
    line-height: 1.08 !important;
  }

  body.gallery-page .gallery-project__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card,
  body.gallery-page .gallery-project__grid .gallery-card--wide {
    aspect-ratio: 4 / 3 !important;
    border-radius: 16px !important;
  }

  body.gallery-page .gallery-card figcaption,
  body.gallery-page .gallery-card--wide figcaption {
    left: 10px !important;
    bottom: 10px !important;
    max-width: calc(100% - 20px) !important;
    font-size: 9px !important;
    padding: 7px 10px !important;
  }
}


/* V47 — większe realizacje, usunięte 04 i 05, podpis pod każdym zdjęciem */
body.gallery-page .gallery-projects {
  display: grid !important;
  gap: 88px !important;
}

body.gallery-page .gallery-project {
  display: grid !important;
  gap: 24px !important;
}

body.gallery-page .gallery-project__head {
  width: min(100% - 24px, 1480px) !important;
  margin-inline: auto !important;
  padding-top: 26px !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

body.gallery-page .gallery-project__head h2 {
  font-size: clamp(34px, 4.8vw, 72px) !important;
  line-height: 0.98 !important;
}

body.gallery-page .gallery-project__grid {
  width: min(100% - 24px, 1480px) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  columns: unset !important;
}

body.gallery-page .gallery-project__grid .gallery-card,
body.gallery-page .gallery-project__grid .gallery-card--wide {
  position: relative !important;
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  align-content: start !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  break-inside: auto !important;
  aspect-ratio: auto !important;
}

body.gallery-page .gallery-project__grid .gallery-card::after,
body.gallery-page .gallery-project__grid .gallery-card--wide::after {
  display: none !important;
  content: none !important;
}

body.gallery-page .gallery-project__grid .gallery-card img,
body.gallery-page .gallery-project__grid .gallery-card:hover img,
body.gallery-page .gallery-project__grid .gallery-card--wide img,
body.gallery-page .gallery-project__grid .gallery-card--wide:hover img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  background: transparent !important;
  border-radius: 18px !important;
}

body.gallery-page .gallery-card figcaption,
body.gallery-page .gallery-card--wide figcaption {
  position: static !important;
  display: block !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: rgba(67, 61, 58, 0.82) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em !important;
  white-space: normal !important;
  text-align: left !important;
  pointer-events: none !important;
}

@media (max-width: 920px) {
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid {
    width: calc(100% - 18px) !important;
  }

  body.gallery-page .gallery-project__grid {
    gap: 16px !important;
  }
}

@media (max-width: 680px) {
  body.gallery-page .gallery-projects {
    gap: 56px !important;
  }

  body.gallery-page .gallery-project {
    gap: 16px !important;
  }

  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid {
    width: calc(100% - 14px) !important;
  }

  body.gallery-page .gallery-project__head {
    padding-top: 18px !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  body.gallery-page .gallery-project__head h2 {
    font-size: clamp(24px, 7.6vw, 34px) !important;
    line-height: 1.08 !important;
  }

  body.gallery-page .gallery-project__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card img,
  body.gallery-page .gallery-project__grid .gallery-card:hover img,
  body.gallery-page .gallery-project__grid .gallery-card--wide img,
  body.gallery-page .gallery-project__grid .gallery-card--wide:hover img {
    border-radius: 14px !important;
  }

  body.gallery-page .gallery-card figcaption,
  body.gallery-page .gallery-card--wide figcaption {
    margin-top: 7px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
  }
}


/* V48 — większe realizacje na telefonie */
@media (max-width: 680px) {
  body.gallery-page .gallery-project__head,
  body.gallery-page .gallery-project__grid {
    width: calc(100% - 12px) !important;
  }

  body.gallery-page .gallery-project__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  body.gallery-page .gallery-project__grid .gallery-card img,
  body.gallery-page .gallery-project__grid .gallery-card:hover img,
  body.gallery-page .gallery-project__grid .gallery-card--wide img,
  body.gallery-page .gallery-project__grid .gallery-card--wide:hover img {
    aspect-ratio: 4 / 3 !important;
    border-radius: 18px !important;
  }

  body.gallery-page .gallery-card figcaption,
  body.gallery-page .gallery-card--wide figcaption {
    margin-top: 8px !important;
    font-size: 11px !important;
  }
}


/* V49 — podpis jasno informuje, że chodzi o zdjęcia */
body.gallery-page .gallery-card figcaption,
body.gallery-page .gallery-card--wide figcaption {
  color: rgba(67, 61, 58, 0.82) !important;
  font-size: 12px !important;
  letter-spacing: 0.01em !important;
}

@media (max-width: 680px) {
  body.gallery-page .gallery-card figcaption,
  body.gallery-page .gallery-card--wide figcaption {
    font-size: 10px !important;
    line-height: 1.35 !important;
  }
}
