:root {
    --ink: #101010;
    --muted-ink: #5d594f;
    --line: rgba(16, 16, 16, .13);
    --paper: #f5f0e7;
    --paper-2: #ebe3d5;
    --gold: #c68b17;
    --gold-bright: #fcb603;
    --gold-dark: #9a6a10;
    --white: #fffaf0;
    --black: #0e0d0b;
    --shadow: 0 22px 70px rgba(16, 16, 16, .10);
    --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 22px clamp(24px, 5vw, 72px);
    background: transparent;
    transform: translateZ(0);
    transition: background .25s ease, min-height .25s ease, padding .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled,
body.menu-open .site-header {
    min-height: 78px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: rgba(245, 240, 231, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(16,16,16,.08);
}
.brand, .footer-brand {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    letter-spacing: .18em;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.brand-logo {
    width: 34px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
}
.footer .brand-logo { width: 31px; height: 44px; }
.brand-text strong { font-weight: 600; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(16,16,16,.74);
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }
.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    padding: 9px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}
.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 7px 0;
    background: var(--ink);
    transition: transform .25s ease, opacity .25s ease;
}
body.menu-open .menu-button span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .menu-button span:nth-child(2) { opacity: 0; }
body.menu-open .menu-button span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(17, 17, 17, .18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 100px 20px 28px;
    overflow-y: auto;
}
body.menu-open .mobile-panel,
.mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-panel-card {
    width: min(720px, 100%);
    min-height: calc(100svh - 128px);
    margin: 0 auto;
    background: #f6f5f2;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(16,16,16,.14);
    padding: clamp(34px, 6vw, 56px) clamp(26px, 6vw, 42px) 112px;
    position: relative;
}
.mobile-panel-inner {
    display: grid;
    align-content: start;
    gap: 10px;
    transition: transform .62s cubic-bezier(.22, 1, .36, 1), opacity .35s ease, visibility .35s ease;
}
.mobile-panel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    color: var(--ink);
    text-transform: none;
    letter-spacing: -.03em;
    font-size: clamp(34px, 7vw, 62px);
    line-height: .98;
    font-weight: 700;
    border-bottom: 0;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: calc(var(--item-index, 0) * 0.1s);
}
.mobile-panel-link span {
    flex: 0 0 auto;
    font-size: .9em;
    line-height: 1;
    transform: translateX(-8px);
    opacity: .96;
}
body.menu-open .mobile-panel-link,
.mobile-panel.is-open .mobile-panel-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-panel-close {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 2px solid rgba(16,16,16,.72);
    background: transparent;
    color: var(--ink);
    font-size: 42px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.mobile-panel-close:hover {
    transform: scale(1.04);
    background: rgba(16,16,16,.04);
}

.hero {

    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
}
.hero-bg, .subhero-bg, .image-band::before {
    position: absolute;
    inset: 0;
    background-image: url('../img/header.png');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
.hero-bg { background-position: 66% center; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(245,240,231,.98) 0%, rgba(245,240,231,.97) 47%, rgba(245,240,231,.36) 60%, rgba(245,240,231,.03) 100%),
        linear-gradient(0deg, rgba(15,13,10,.16), rgba(15,13,10,0) 46%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    max-width: none;
}
.hero-copy {
    width: min(560px, calc(52vw - 48px));
    min-width: 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin: 0 0 40px;
    max-width: 100%;
}
.eyebrow span {
    display: inline-block;
    width: 56px;
    height: 2px;
    background: var(--gold);
    flex: 0 0 auto;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: .015em;
}
h1 {
    max-width: 620px;
    font-size: clamp(44px, 4.6vw, 68px);
    text-transform: uppercase;
    margin-bottom: 30px;
    overflow-wrap: normal;
}
.hero-copy h1 { max-width: 100%; }
h1 em { color: var(--gold); font-style: normal; }
h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 22px; }
h3 { font-size: 20px; line-height: 1.35; margin-bottom: 12px; }
.hero-lead {
    max-width: 100%;
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.7;
    margin-bottom: 70px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--gold);
}
.text-link span { font-size: 28px; line-height: 1; font-weight: 400; }
.text-link.big { font-size: 14px; gap: 38px; min-width: 260px; }

.section { padding: 112px 0; }
.section-tight { padding-top: 104px; }
.muted { background: var(--paper-2); }
.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 54px;
}
.align-start { align-items: start; }
.section-lead { max-width: 560px; font-size: 20px; color: var(--muted-ink); }
.button-outline, .button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button-outline { border: 1px solid var(--ink); }
.button-dark { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.button-outline:hover, .button-dark:hover { transform: translateY(-2px); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
    min-height: 280px;
    padding: 30px;
    background: rgba(255,250,240,.52);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.service-card span, .service-row > span, .process-list span, .process-page span {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 44px;
}
.service-card p, .project-card p, .process-list p, .process-page p, .rich-text p { color: var(--muted-ink); }

.image-band {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}
.image-band::before { content: ""; background-position: 72% center; transform: scale(1.02); }
.image-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,12,11,.66), rgba(12,12,11,.25), rgba(12,12,11,.02));
}
.image-band-content { position: relative; z-index: 1; padding: 70px 0; }
.image-band h2 { max-width: 560px; font-size: clamp(36px, 5vw, 70px); text-transform: uppercase; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
    padding: 20px;
    background: rgba(255,250,240,.54);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.project-image {
    min-height: 340px;
    display: flex;
    align-items: end;
    padding: 28px;
    margin-bottom: 24px;
    background:
        linear-gradient(180deg, rgba(12,12,11,.02), rgba(12,12,11,.72)),
        url('../img/header.png') center/cover;
    color: var(--white);
}
.project-card:nth-child(2) .project-image { background-position: 80% center; }
.project-card:nth-child(3) .project-image { background-position: 45% center; filter: grayscale(.45) brightness(.85); }
.project-image span { text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.project-card > p:first-of-type { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.project-card-large h2 { font-size: 34px; }
.project-copy { min-height: 72px; }

.process-list { width: min(610px, 100%); display: grid; gap: 28px; }
.process-list article, .process-page article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    border-left: 1px solid rgba(198,139,23,.35);
    padding-left: 28px;
}
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: clamp(34px, 6vw, 72px);
    background: rgba(235,227,213,.86);
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.cta-card p:last-child { color: var(--muted-ink); font-size: 18px; }

.subhero {
    position: relative;
    min-height: 66svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 160px 0 96px;
}
.subhero-bg { background-position: 72% center; }
.subhero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(245,240,231,.98) 0%, rgba(245,240,231,.92) 44%, rgba(245,240,231,.36) 60%, rgba(245,240,231,.08) 100%),
        linear-gradient(0deg, rgba(245,240,231,.92), rgba(245,240,231,.05));
    z-index: 1;
}
.subhero-content { position: relative; z-index: 2; max-width: min(620px, calc(100% - 48px)); }
.subhero h1 { margin-bottom: 20px; }
.subhero p:not(.eyebrow) { max-width: 620px; font-size: 21px; color: var(--muted-ink); }
.services-page-grid { display: grid; gap: 0; }
.service-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 34px;
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}
.service-row h2 { font-size: clamp(30px, 3vw, 44px); margin-bottom: 8px; }
.service-row p { max-width: 620px; font-size: 18px; }
.feature-grid, .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-grid article, .stats-grid article {
    padding: 34px;
    background: rgba(255,250,240,.48);
    border: 1px solid var(--line);
}
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.rich-text { font-size: 20px; }
.rich-text .button-dark { margin-top: 24px; }
.stats-grid strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 12px;
}
.stats-grid span { color: var(--muted-ink); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 700; }
.process-page { display: grid; gap: 36px; max-width: 820px; }
.process-page article { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.faq-list { max-width: 900px; display: grid; gap: 14px; }
details {
    background: rgba(255,250,240,.55);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0 28px;
}
summary {
    cursor: pointer;
    list-style: none;
    padding: 28px 0;
    font-size: 20px;
    font-weight: 700;
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted-ink); margin-bottom: 28px; }
.error-hero { min-height: 100svh; }

.footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 54px clamp(24px, 5vw, 72px) 34px;
    background: var(--black);
    color: var(--white);
}
.footer p { color: rgba(255,250,240,.72); max-width: 320px; }
.footer nav { display: grid; gap: 10px; }
.footer nav a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    color: rgba(255,250,240,.78);
}
.footer small { grid-column: 1 / -1; color: rgba(255,250,240,.55); }

@media (max-width: 1100px) {
    .desktop-nav { gap: 18px; }
    .desktop-nav a { font-size: 11px; letter-spacing: .1em; }
    .hero-copy { width: min(520px, calc(54vw - 48px)); }
    h1 { font-size: clamp(42px, 5.4vw, 62px); }
}

@media (max-width: 980px) {
    :root { --header-height: 84px; }
    .desktop-nav { display: none; }
    .menu-button { display: block; }
    .site-header { padding: 18px 26px; min-height: 84px; }
    .site-header.is-scrolled,
    body.menu-open .site-header { min-height: 72px; padding-top: 12px; padding-bottom: 12px; }
    .brand { gap: 14px; }
    .brand-text { font-size: 12px; letter-spacing: .15em; }
    .brand-logo { width: 28px; height: 40px; }
    .hero { min-height: 820px; align-items: start; }
    .hero-content { padding-top: 150px; }
    .hero-copy { width: min(440px, 55vw); }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(245,240,231,.98) 0%, rgba(245,240,231,.92) 48%, rgba(245,240,231,.35) 64%, rgba(245,240,231,.04) 100%),
            linear-gradient(0deg, rgba(245,240,231,.95) 0%, rgba(245,240,231,0) 28%);
    }
    h1 { font-size: clamp(40px, 7vw, 56px); }
    .hero-lead { font-size: 18px; margin-bottom: 50px; }
    .split, .cta-card, .footer { display: grid; }
    .services-grid, .portfolio-grid, .feature-grid, .stats-grid, .two-column { grid-template-columns: 1fr; }
    .section { padding: 82px 0; }
    .service-card { min-height: auto; }
    .service-row { grid-template-columns: 1fr; gap: 16px; }
    .process-list article, .process-page article { grid-template-columns: 52px 1fr; padding-left: 18px; }
    .footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 32px, 1120px); }
    .mobile-panel { padding: 94px 16px 20px; }
    .mobile-panel-card { min-height: calc(100svh - 114px); border-radius: 24px; padding: 28px 20px 100px; }
    .mobile-panel-link { font-size: clamp(28px, 11vw, 48px); }
    .mobile-panel-close { width: 68px; height: 68px; font-size: 36px; right: 18px; bottom: 18px; }
    .hero { min-height: 740px; }
    .hero-bg { background-position: 68% center; }
    .hero-content { padding-top: 125px; }
    .hero-copy { width: min(340px, 100%); }
    .eyebrow { gap: 14px; margin-bottom: 28px; font-size: 10px; line-height: 1.5; }
    .eyebrow span { width: 38px; }
    h1 { font-size: clamp(33px, 9.8vw, 40px); line-height: 1.18; }
    h2 { font-size: 36px; }
    .text-link.big { min-width: 0; font-size: 12px; gap: 22px; }
    .hero-lead { font-size: 16px; line-height: 1.7; margin-bottom: 42px; }
    .subhero { min-height: 540px; padding: 120px 0 64px; }
    .subhero-content { max-width: min(100% - 32px, 520px); }
    .subhero p:not(.eyebrow) { font-size: 17px; }
    .project-image { min-height: 280px; }
    .footer-brand .brand-text { font-size: 11px; }
    .cta-card { border-radius: 20px; }
}

@media (max-width: 390px) {
    .brand-text { font-size: 10.5px; letter-spacing: .12em; }
    .brand-logo { width: 24px; height: 36px; }
    h1 { font-size: 32px; }
    .hero-copy { width: min(300px, 100%); }
}

/* Homepage portfolio section with the supplied transparent iPhone mockups */
.portfolio-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 10vw, 145px) 0 clamp(84px, 11vw, 150px);
    background:
        linear-gradient(180deg, rgba(245, 240, 231, .52) 0%, var(--paper) 18%, var(--paper) 100%);
}
.portfolio-showcase::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 240, 231, 0), rgba(245, 240, 231, .96));
}
.portfolio-showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: start;
}
.portfolio-showcase-copy {
    position: sticky;
    top: calc(var(--header-height) + 42px);
    padding-top: 10px;
}
.portfolio-showcase-copy h2 {
    margin-bottom: 34px;
    text-transform: uppercase;
    font-size: clamp(42px, 5vw, 74px);
}
.phone-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 32px);
    align-items: start;
}
.phone-card {
    min-width: 0;
    will-change: transform, opacity;
}
.phone-card:nth-child(2) { margin-top: 72px; }
.phone-card:nth-child(3) { margin-top: 144px; }
.phone-frame {
    display: block;
    filter: drop-shadow(0 26px 30px rgba(16,16,16,.18));
    transform: translateZ(0);
}
.phone-frame img {
    width: 100%;
    height: auto;
    transform-origin: 50% 60%;
}
.phone-card.is-visible .phone-frame img {
    animation: phoneFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * .42s + .65s);
}
.phone-caption {
    margin-top: 18px;
    padding-left: 6px;
}
.phone-caption h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
}
.phone-caption p {
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-ink);
}

.project-phone {
    display: grid;
    place-items: center;
    min-height: 420px;
    margin-bottom: 26px;
    padding: 18px 22px 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(198,139,23,.12), rgba(255,250,240,.42) 46%, rgba(235,227,213,.72) 100%);
    overflow: hidden;
}
.project-phone img {
    width: min(250px, 88%);
    height: auto;
    filter: drop-shadow(0 28px 28px rgba(16,16,16,.18));
    transition: transform .45s ease;
}
.project-card:hover .project-phone img { transform: translateY(-10px) scale(1.02); }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(.45deg); }
}

.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .78s ease,
        transform .78s cubic-bezier(.2, .72, .18, 1);
    transition-delay: calc(var(--i, 0) * 95ms);
}
.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .portfolio-showcase-grid {
        grid-template-columns: .55fr 1fr;
        gap: 44px;
    }
    .phone-card:nth-child(2) { margin-top: 50px; }
    .phone-card:nth-child(3) { margin-top: 100px; }
}

@media (max-width: 980px) {
    .hero-copy { width: min(410px, 50vw); }
    .hero-copy h1 { font-size: clamp(38px, 6vw, 50px); line-height: 1.16; }
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .portfolio-showcase-copy {
        position: relative;
        top: auto;
        max-width: 560px;
    }
    .phone-stack {
        width: min(560px, 100%);
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .phone-card {
        max-width: 390px;
    }
    .phone-card:nth-child(2),
    .phone-card:nth-child(3) {
        margin-top: 0;
    }
    .phone-card:nth-child(even) {
        justify-self: end;
    }
    .project-phone { min-height: 390px; }
}

@media (max-width: 640px) {
    .hero-copy { width: min(320px, 100%); }
    .hero-copy h1 { font-size: clamp(31px, 9.2vw, 38px); line-height: 1.18; }
    .portfolio-showcase {
        padding-top: 70px;
        padding-bottom: 86px;
    }
    .portfolio-showcase-copy h2 {
        font-size: clamp(34px, 12vw, 48px);
        margin-bottom: 26px;
    }
    .phone-stack {
        gap: 30px;
        padding-top: 4px;
    }
    .phone-card,
    .phone-card:nth-child(even) {
        width: min(330px, 94%);
        max-width: none;
        justify-self: start;
    }
    .phone-caption { margin-top: 12px; }
    .project-phone {
        min-height: 360px;
        border-radius: 22px;
    }
    .project-phone img { width: min(220px, 82%); }
}

@media (max-width: 390px) {
    .hero-copy { width: min(292px, 100%); }
    .phone-card,
    .phone-card:nth-child(even) { width: min(300px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .phone-card.is-visible .phone-frame img {
        animation: none;
    }
}

/* Portfolio phone alignment fix: centered devices with balanced mobile spacing */
.phone-stack {
    justify-items: center;
}
.phone-card {
    justify-self: center;
}
.phone-frame {
    width: 100%;
}

@media (max-width: 980px) {
    .phone-stack {
        width: 100%;
        max-width: 640px;
        margin-inline: auto;
        justify-items: center;
        padding-inline: 0;
    }
    .phone-card,
    .phone-card:nth-child(even) {
        justify-self: center;
        margin-inline: auto;
        width: min(330px, 78vw);
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .portfolio-showcase-grid {
        justify-items: stretch;
    }
    .phone-stack {
        width: 100%;
        gap: 34px;
        padding-top: 8px;
    }
    .phone-card,
    .phone-card:nth-child(even) {
        width: min(310px, 78vw);
        max-width: 100%;
        justify-self: center;
    }
    .phone-caption {
        width: 100%;
        padding-left: 0;
        text-align: left;
    }
}

@media (max-width: 390px) {
    .phone-card,
    .phone-card:nth-child(even) {
        width: min(292px, 78vw);
    }
}


/* Services page visual header — matches the supplied dark architectural reference */
.services-visual-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: var(--white);
    background: #18140d;
}
.services-visual-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../img/services-header.png');
    background-size: cover;
    background-position: 70% center;
    transform: scale(1.01);
}
.services-visual-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 11, 8, .42) 0%, rgba(12, 11, 8, .28) 42%, rgba(12, 11, 8, .02) 78%),
        linear-gradient(0deg, rgba(12, 11, 8, .24), rgba(12, 11, 8, .04) 45%, rgba(12, 11, 8, .20));
}
.services-visual-content {
    position: relative;
    z-index: 2;
    width: min(740px, calc(100% - 96px));
    margin-left: clamp(32px, 6vw, 92px);
    padding-top: 110px;
    transform: translateY(7vh);
}
.services-visual-kicker {
    margin: 0 0 28px;
    color: #d5a856;
    font-size: clamp(14px, 1.4vw, 22px);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .46em;
    word-spacing: .5em;
}
.services-visual-content h1 {
    margin: 0;
    max-width: 860px;
    color: rgba(255, 250, 240, .88);
    font-size: clamp(70px, 10.4vw, 168px);
    line-height: .86;
    letter-spacing: .012em;
    text-transform: uppercase;
    text-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.services-visual-line {
    display: block;
    width: 118px;
    height: 4px;
    margin: clamp(34px, 4vw, 62px) 0 clamp(34px, 4vw, 58px);
    background: var(--gold);
}
.services-visual-content p:not(.services-visual-kicker) {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 250, 240, .82);
    font-size: clamp(26px, 3.1vw, 46px);
    line-height: 1.52;
    letter-spacing: .04em;
    font-weight: 400;
}
.services-intro-section {
    background: var(--paper);
}

body.page-uslugi .site-header:not(.is-scrolled):not(.menu-open) {
    color: var(--white);
}
body.page-uslugi:not(.menu-open) .site-header:not(.is-scrolled) .brand-text,
body.page-uslugi:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a {
    color: rgba(255, 250, 240, .88);
}
body.page-uslugi:not(.menu-open) .site-header:not(.is-scrolled) .menu-button span {
    background: rgba(255, 250, 240, .90);
}
body.page-uslugi:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a::after {
    background: var(--gold);
}

@media (max-width: 980px) {
    .services-visual-hero { min-height: 880px; align-items: center; }
    .services-visual-bg { background-position: 72% center; }
    .services-visual-shade {
        background:
            linear-gradient(90deg, rgba(12, 11, 8, .56) 0%, rgba(12, 11, 8, .24) 62%, rgba(12, 11, 8, .04) 100%),
            linear-gradient(0deg, rgba(12, 11, 8, .40), rgba(12, 11, 8, .05) 40%, rgba(12, 11, 8, .22));
    }
    .services-visual-content {
        width: min(620px, calc(100% - 56px));
        margin-left: 28px;
        padding-top: 110px;
        transform: translateY(3vh);
    }
    .services-visual-content h1 {
        font-size: clamp(64px, 15vw, 118px);
    }
    .services-visual-content p:not(.services-visual-kicker) {
        max-width: 520px;
        font-size: clamp(24px, 5vw, 38px);
        line-height: 1.52;
    }
}

@media (max-width: 640px) {
    .services-visual-hero {
        min-height: 760px;
    }
    .services-visual-bg {
        background-position: 72% center;
    }
    .services-visual-shade {
        background:
            linear-gradient(90deg, rgba(12, 11, 8, .72) 0%, rgba(12, 11, 8, .52) 45%, rgba(12, 11, 8, .05) 100%),
            linear-gradient(0deg, rgba(12, 11, 8, .56), rgba(12, 11, 8, .10) 46%, rgba(12, 11, 8, .28));
    }
    .services-visual-content {
        width: min(100% - 38px, 430px);
        margin-left: 19px;
        padding-top: 94px;
        transform: translateY(1vh);
    }
    .services-visual-kicker {
        margin-bottom: 22px;
        font-size: 12px;
        letter-spacing: .34em;
        word-spacing: .22em;
    }
    .services-visual-content h1 {
        font-size: clamp(54px, 18vw, 84px);
        line-height: .92;
    }
    .services-visual-line {
        width: 74px;
        height: 3px;
        margin: 30px 0 30px;
    }
    .services-visual-content p:not(.services-visual-kicker) {
        max-width: 340px;
        font-size: clamp(20px, 6.3vw, 28px);
        line-height: 1.55;
        letter-spacing: .03em;
    }
    .services-intro-section .split {
        gap: 24px;
    }
}

@media (max-width: 390px) {
    .services-visual-hero { min-height: 700px; }
    .services-visual-content h1 { font-size: clamp(48px, 17vw, 68px); }
    .services-visual-content p:not(.services-visual-kicker) { font-size: 19px; }
}

/* Portfolio and About visual page headers — supplied architectural backgrounds + live HTML text */
.visual-page-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: var(--white);
    background: #15120d;
}
.visual-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.01);
}
.visual-page-hero-portfolio .visual-page-bg {
    background-image: url('../img/portfolio-header.jpg');
    background-position: 64% center;
}
.visual-page-hero-about .visual-page-bg {
    background-image: url('../img/about-header.jpg');
    background-position: 64% center;
}
.visual-page-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 11, 8, .70) 0%, rgba(12, 11, 8, .48) 36%, rgba(12, 11, 8, .12) 68%, rgba(12, 11, 8, .28) 100%),
        linear-gradient(0deg, rgba(12, 11, 8, .34), rgba(12, 11, 8, .02) 42%, rgba(12, 11, 8, .18));
}
.visual-page-content {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 96px));
    margin-left: clamp(32px, 6vw, 92px);
    padding-top: 112px;
    transform: translateY(3.5vh);
}
.visual-page-kicker {
    margin: 0 0 28px;
    color: #d5a856;
    font-size: clamp(14px, 1.35vw, 20px);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .44em;
}
.visual-page-line {
    display: block;
    width: 96px;
    height: 2px;
    margin: 0 0 clamp(34px, 4vw, 58px);
    background: var(--gold);
}
.visual-page-content h1 {
    margin: 0 0 clamp(36px, 4vw, 58px);
    max-width: 760px;
    color: rgba(255, 250, 240, .90);
    font-size: clamp(56px, 7.6vw, 112px);
    line-height: .98;
    letter-spacing: .018em;
    text-transform: uppercase;
    text-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.visual-page-content h1 em {
    color: #d5a856;
    font-style: normal;
}
.visual-page-content p:not(.visual-page-kicker) {
    max-width: 560px;
    margin: 0 0 clamp(44px, 5vw, 72px);
    color: rgba(255, 250, 240, .86);
    font-size: clamp(18px, 2.15vw, 30px);
    line-height: 1.66;
    letter-spacing: .025em;
    font-weight: 400;
}
.visual-page-cta {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    min-width: 300px;
    padding: 0 0 16px;
    border-bottom: 2px solid #d5a856;
    color: #e0b45c;
    font-size: clamp(13px, 1.15vw, 18px);
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.visual-page-cta span {
    font-size: 36px;
    line-height: .7;
    font-weight: 400;
    letter-spacing: 0;
}
body.page-portfolio .site-header:not(.is-scrolled):not(.menu-open),
body.page-o-nas .site-header:not(.is-scrolled):not(.menu-open) {
    color: var(--white);
}
body.page-portfolio:not(.menu-open) .site-header:not(.is-scrolled) .brand-text,
body.page-portfolio:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .brand-text,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a {
    color: rgba(255, 250, 240, .90);
}
body.page-portfolio:not(.menu-open) .site-header:not(.is-scrolled) .menu-button span,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .menu-button span {
    background: rgba(255, 250, 240, .92);
}
body.page-portfolio:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a::after,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a::after {
    background: var(--gold);
}

@media (max-width: 980px) {
    .visual-page-hero { min-height: 880px; }
    .visual-page-content {
        width: min(610px, calc(100% - 56px));
        margin-left: 28px;
        padding-top: 108px;
        transform: translateY(2vh);
    }
    .visual-page-content h1 {
        font-size: clamp(52px, 11vw, 86px);
        line-height: 1.02;
    }
    .visual-page-content p:not(.visual-page-kicker) {
        max-width: 520px;
        font-size: clamp(17px, 3vw, 24px);
    }
}

@media (max-width: 640px) {
    .visual-page-hero { min-height: 760px; }
    .visual-page-hero-portfolio .visual-page-bg { background-position: 62% center; }
    .visual-page-hero-about .visual-page-bg { background-position: 62% center; }
    .visual-page-shade {
        background:
            linear-gradient(90deg, rgba(12, 11, 8, .78) 0%, rgba(12, 11, 8, .56) 48%, rgba(12, 11, 8, .12) 100%),
            linear-gradient(0deg, rgba(12, 11, 8, .46), rgba(12, 11, 8, .05) 42%, rgba(12, 11, 8, .25));
    }
    .visual-page-content {
        width: min(100% - 38px, 430px);
        margin-left: 19px;
        padding-top: 92px;
        transform: translateY(1vh);
    }
    .visual-page-kicker {
        margin-bottom: 22px;
        font-size: 12px;
        letter-spacing: .34em;
    }
    .visual-page-line {
        width: 74px;
        margin-bottom: 28px;
    }
    .visual-page-content h1 {
        margin-bottom: 30px;
        font-size: clamp(42px, 12.8vw, 62px);
        line-height: 1.02;
    }
    .visual-page-content p:not(.visual-page-kicker) {
        max-width: 340px;
        margin-bottom: 38px;
        font-size: clamp(16px, 4.9vw, 21px);
        line-height: 1.62;
    }
    .visual-page-cta {
        min-width: min(304px, 100%);
        gap: 24px;
        font-size: 12px;
        letter-spacing: .18em;
        padding-bottom: 12px;
    }
}

@media (max-width: 390px) {
    .visual-page-hero { min-height: 710px; }
    .visual-page-content h1 { font-size: clamp(38px, 12vw, 50px); }
    .visual-page-content p:not(.visual-page-kicker) { font-size: 15.5px; }
    .visual-page-cta { font-size: 11px; }
}

/* Final responsive hero typography fix: keep text inside the visual header on tablets and phones */
.visual-page-content,
.services-visual-content {
    max-width: calc(100vw - 64px);
}
.visual-page-content h1,
.services-visual-content h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 1180px) {
    .visual-page-content {
        width: min(590px, calc(100% - 72px));
        margin-left: clamp(28px, 5vw, 64px);
    }
    .visual-page-content h1 {
        font-size: clamp(50px, 6.1vw, 76px);
        line-height: 1.02;
    }
    body.page-o-nas .visual-page-content h1 {
        font-size: clamp(48px, 5.75vw, 72px);
    }
    .visual-page-content p:not(.visual-page-kicker) {
        max-width: 500px;
        font-size: clamp(17px, 1.85vw, 24px);
        line-height: 1.58;
    }
}

@media (max-width: 820px) {
    .visual-page-hero {
        min-height: 820px;
        align-items: center;
    }
    .visual-page-content {
        width: min(520px, calc(100% - 52px));
        max-width: calc(100vw - 52px);
        margin-left: 26px;
        padding-top: 104px;
        transform: translateY(1vh);
    }
    .visual-page-kicker {
        margin-bottom: 22px;
        font-size: 12px;
        letter-spacing: .32em;
    }
    .visual-page-line {
        width: 78px;
        margin-bottom: 30px;
    }
    .visual-page-content h1,
    body.page-o-nas .visual-page-content h1,
    body.page-portfolio .visual-page-content h1 {
        font-size: clamp(40px, 6.55vw, 54px);
        line-height: 1.05;
        letter-spacing: .01em;
        margin-bottom: 28px;
    }
    .visual-page-content p:not(.visual-page-kicker) {
        max-width: min(100%, 430px);
        margin-bottom: 38px;
        font-size: clamp(16px, 2.45vw, 19px);
        line-height: 1.58;
        letter-spacing: .01em;
    }
    .visual-page-cta {
        min-width: min(310px, 100%);
        gap: 24px;
        font-size: 12px;
        letter-spacing: .18em;
        padding-bottom: 12px;
    }
}

@media (max-width: 640px) {
    .visual-page-hero {
        min-height: 760px;
    }
    .visual-page-content {
        width: min(100% - 38px, 430px);
        max-width: calc(100vw - 38px);
        margin-left: 19px;
        padding-top: 92px;
    }
    .visual-page-content h1,
    body.page-o-nas .visual-page-content h1,
    body.page-portfolio .visual-page-content h1 {
        font-size: clamp(35px, 9.35vw, 46px);
        line-height: 1.06;
    }
    .visual-page-content p:not(.visual-page-kicker) {
        max-width: min(100%, 330px);
        font-size: clamp(15px, 4.15vw, 18px);
        line-height: 1.55;
    }
}

@media (max-width: 390px) {
    .visual-page-hero { min-height: 700px; }
    .visual-page-content h1,
    body.page-o-nas .visual-page-content h1,
    body.page-portfolio .visual-page-content h1 {
        font-size: clamp(30px, 8.8vw, 35px);
        line-height: 1.08;
    }
    .visual-page-content p:not(.visual-page-kicker) {
        font-size: 14.5px;
        max-width: 292px;
    }
    .visual-page-cta {
        min-width: min(280px, 100%);
        gap: 18px;
        font-size: 10.5px;
        letter-spacing: .15em;
    }
}


/* Services cards section — coded from the supplied white reference */
.services-light-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 11vw, 150px) 0 clamp(110px, 13vw, 178px);
    background:
        radial-gradient(circle at 30% 0%, rgba(255,255,255,.96), rgba(255,255,255,.72) 34%, rgba(248,244,235,.92) 74%),
        linear-gradient(180deg, #fffdfa 0%, #f5efe4 100%);
    color: var(--ink);
}
.services-light-showcase::before {
    content: "";
    position: absolute;
    left: min(-21vw, -170px);
    bottom: -23vw;
    width: min(72vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(198,139,23,.18);
    border-radius: 50%;
    box-shadow: inset 0 0 0 18px rgba(235,224,205,.28), inset 0 0 0 42px rgba(255,255,255,.22);
    pointer-events: none;
}
.services-light-showcase::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -8px;
    width: min(44vw, 470px);
    height: min(47vw, 520px);
    opacity: .68;
    background:
        repeating-linear-gradient(90deg, transparent 0 12px, rgba(158,128,79,.20) 12px 16px, transparent 16px 28px) right 0 top 0 / 126px 60% no-repeat,
        radial-gradient(130% 80% at 100% 100%, rgba(205,185,145,.44), rgba(205,185,145,0) 54%),
        linear-gradient(164deg, transparent 0 55%, rgba(208,190,155,.42) 56% 62%, transparent 63%),
        linear-gradient(172deg, transparent 0 64%, rgba(214,198,164,.52) 65% 70%, transparent 71%);
    pointer-events: none;
}
.services-light-ornament {
    position: absolute;
    inset: auto 0 0 auto;
    width: min(58vw, 680px);
    height: min(34vw, 390px);
    background:
        linear-gradient(170deg, transparent 0 42%, rgba(218,205,178,.38) 43% 48%, transparent 49%),
        linear-gradient(170deg, transparent 0 55%, rgba(218,205,178,.32) 56% 61%, transparent 62%),
        linear-gradient(170deg, transparent 0 68%, rgba(218,205,178,.26) 69% 74%, transparent 75%);
    opacity: .72;
    pointer-events: none;
}
.services-light-container {
    position: relative;
    z-index: 1;
    width: min(1060px, calc(100% - 48px));
    margin: 0 auto;
}
.services-light-head {
    text-align: center;
    margin: 0 auto;
}
.services-light-eyebrow {
    margin: 0;
    color: var(--gold-dark);
    font-size: clamp(13px, 1.25vw, 17px);
    font-weight: 600;
    letter-spacing: .48em;
    line-height: 1;
    text-transform: uppercase;
}
.services-light-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 28px auto 46px;
    color: var(--gold-dark);
}
.services-light-divider span {
    display: block;
    width: 108px;
    height: 1px;
    background: currentColor;
    opacity: .68;
}
.services-light-divider i {
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
    background: transparent;
}
.services-light-head h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(54px, 8vw, 108px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.services-light-lead {
    margin: clamp(32px, 4vw, 48px) auto 0;
    max-width: 760px;
    color: #32302c;
    font-size: clamp(18px, 2.15vw, 31px);
    line-height: 1.5;
    letter-spacing: .03em;
}
.services-light-list {
    display: grid;
    gap: 24px;
    width: min(100%, 980px);
    margin: clamp(56px, 7vw, 82px) auto 0;
}
.services-light-card {
    display: grid;
    grid-template-columns: 185px 1px 1fr;
    gap: clamp(28px, 4vw, 66px);
    align-items: center;
    min-height: 178px;
    padding: clamp(28px, 4.3vw, 48px) clamp(28px, 5vw, 58px);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(16,16,16,.08);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(28, 23, 14, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.services-light-icon {
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    justify-self: center;
    border: 1px solid rgba(198,139,23,.20);
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}
.services-light-icon svg {
    width: 62px;
    height: 62px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.services-light-icon.has-image {
    border: none;
    background: transparent;
}
.services-light-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.services-light-rule {
    align-self: stretch;
    width: 1px;
    min-height: 118px;
    background: rgba(198,139,23,.48);
}
.services-light-copy h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: .02em;
}
.services-light-copy p {
    max-width: 650px;
    margin: 0;
    color: #2f2d29;
    font-size: clamp(16px, 1.7vw, 23px);
    line-height: 1.5;
    letter-spacing: .018em;
}

@media (max-width: 760px) {
    .services-light-showcase {
        padding: 78px 0 112px;
    }
    .services-light-showcase::before {
        left: -280px;
        bottom: -210px;
        width: 560px;
    }
    .services-light-showcase::after,
    .services-light-ornament {
        width: 360px;
        height: 300px;
        opacity: .42;
    }
    .services-light-container {
        width: min(100% - 34px, 540px);
    }
    .services-light-eyebrow {
        font-size: 12px;
        letter-spacing: .34em;
    }
    .services-light-divider {
        gap: 18px;
        margin: 24px auto 34px;
    }
    .services-light-divider span { width: 76px; }
    .services-light-divider i { width: 13px; height: 13px; }
    .services-light-head h2 {
        font-size: clamp(46px, 15vw, 74px);
        letter-spacing: .16em;
        transform: translateX(.08em);
    }
    .services-light-lead {
        margin-top: 28px;
        font-size: clamp(17px, 5vw, 24px);
    }
    .services-light-lead br { display: none; }
    .services-light-list {
        gap: 18px;
        margin-top: 44px;
    }
    .services-light-card {
        grid-template-columns: 88px 1px 1fr;
        gap: 20px;
        min-height: 142px;
        padding: 24px 20px;
    }
    .services-light-icon {
        width: 72px;
        height: 72px;
    }
    .services-light-icon svg {
        width: 40px;
        height: 40px;
        stroke-width: 2;
    }
    .services-light-icon img {
        width: 100%;
        height: 100%;
    }
    .services-light-rule {
        min-height: 92px;
    }
    .services-light-copy h3 {
        margin-bottom: 8px;
        font-size: clamp(23px, 7vw, 31px);
    }
    .services-light-copy p {
        font-size: clamp(14px, 4.2vw, 17px);
        line-height: 1.48;
    }
}

@media (max-width: 430px) {
    .services-light-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
        padding: 26px 22px 28px;
    }
    .services-light-rule {
        width: 112px;
        height: 1px;
        min-height: 1px;
        justify-self: center;
    }
    .services-light-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* About editorial section */
.about-editorial {
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(72px, 9vw, 110px);
    background: #f6f3ee;
}
.about-editorial-shell {
    width: min(1000px, calc(100% - 56px));
    margin: 0 auto;
}
.about-editorial-head {
    max-width: 900px;
    padding-right: clamp(12px, 3vw, 34px);
}
.about-editorial-head h2 {
    max-width: 92%;
}
.about-editorial-kicker {
    margin: 0;
    color: #b59652;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
}
.about-editorial-kicker-line,
.about-editorial-separator {
    display: block;
    width: 64px;
    height: 1.5px;
    background: rgba(181,150,82,.9);
}
.about-editorial-kicker-line { margin: 18px 0 36px; }
.about-editorial-separator { margin: 34px 0 32px; }
.about-editorial-head h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(56px, 7.6vw, 84px);
    line-height: .96;
    font-weight: 500;
    letter-spacing: .015em;
    color: #11100f;
}
.about-editorial-lead {
    max-width: 760px;
    margin: 0;
    color: #36332d;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
    letter-spacing: .01em;
}
.about-editorial-visual {
    margin-top: clamp(36px, 5vw, 52px);
}
.about-editorial-visual img {
    width: 100%;
    aspect-ratio: 16 / 6.9;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 18px 52px rgba(53, 42, 20, .08);
}
.about-editorial-list {
    margin-top: clamp(34px, 4.5vw, 48px);
    border-top: 1px solid rgba(181,150,82,.18);
}
.about-editorial-item {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 26px;
    align-items: center;
    padding: 24px 8px;
    border-bottom: 1px solid rgba(181,150,82,.18);
}
.about-editorial-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
}
.about-editorial-icon-image img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}
.about-editorial-copy h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3.3vw, 42px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: .03em;
    color: #1a1816;
}
.about-editorial-copy p {
    margin: 0;
    max-width: 760px;
    color: #4b473f;
    font-size: clamp(16px, 1.85vw, 20px);
    line-height: 1.55;
}
.about-editorial-stats {
    margin-top: clamp(34px, 4.8vw, 48px);
    padding: clamp(24px, 3vw, 28px) 0 0;
    border-top: 1px solid rgba(181,150,82,.45);
    background: transparent;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}
.about-editorial-stats article {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(181,150,82,.45);
}
.about-editorial-stats article:last-child { border-right: 0; }
.about-editorial-stats strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(52px, 6vw, 74px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.02em;
    color: #13110f;
}
.about-editorial-stats strong small {
    margin-left: 8px;
    font-family: "Inter", sans-serif;
    font-size: .28em;
    font-weight: 600;
    letter-spacing: .2em;
    color: #b59652;
}
.about-editorial-stats span {
    display: block;
    margin-top: 12px;
    color: #b59652;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .28em;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .about-editorial-shell {
        width: min(1000px, calc(100% - 40px));
    }
    .about-editorial-head {
        padding-right: 20px;
    }
    .about-editorial-head h2 {
        font-size: clamp(44px, 10vw, 64px);
        max-width: 94%;
    }
    .about-editorial-visual img {
        aspect-ratio: 4 / 2.8;
        border-radius: 22px;
    }
    .about-editorial-item {
        grid-template-columns: 96px 1fr;
        gap: 18px;
        align-items: center;
    }
    .about-editorial-icon,
    .about-editorial-icon-image img {
        width: 68px;
        height: 68px;
    }
    .about-editorial-stats {
        padding-left: 0;
        padding-right: 0;
    }
    .about-editorial-stats strong {
        font-size: clamp(42px, 8vw, 60px);
    }
    .about-editorial-stats span {
        font-size: 12px;
        letter-spacing: .22em;
    }
}

@media (max-width: 640px) {
    .about-editorial {
        padding-top: 18px;
        padding-bottom: 78px;
    }
    .about-editorial-shell {
        width: calc(100% - 32px);
    }
    .about-editorial-head {
        padding-right: 24px;
    }
    .about-editorial-kicker {
        font-size: 12px;
        letter-spacing: .28em;
    }
    .about-editorial-kicker-line { margin: 14px 0 24px; width: 56px; }
    .about-editorial-separator { margin: 26px 0 24px; width: 56px; }
    .about-editorial-head h2 {
        font-size: clamp(34px, 11.3vw, 52px);
        line-height: .98;
        max-width: 95%;
    }
    .about-editorial-lead {
        font-size: 16px;
        line-height: 1.65;
    }
    .about-editorial-visual {
        margin-top: 28px;
    }
    .about-editorial-visual img {
        aspect-ratio: 1.7 / 1;
        border-radius: 20px;
    }
    .about-editorial-item {
        grid-template-columns: 78px 1fr;
        gap: 14px;
        align-items: center;
        padding: 20px 2px;
    }
    .about-editorial-icon,
    .about-editorial-icon-image img {
        width: 54px;
        height: 54px;
    }
    .about-editorial-copy h3 {
        font-size: 24px;
        margin-bottom: 7px;
    }
    .about-editorial-copy p {
        font-size: 15px;
        line-height: 1.5;
    }
    .about-editorial-stats {
        margin-top: 28px;
        padding: 16px 0 0;
        border-radius: 0;
        background: transparent;
    }
    .about-editorial-stats article {
        padding: 0 4px;
    }
    .about-editorial-stats strong {
        font-size: clamp(30px, 9vw, 44px);
    }
    .about-editorial-stats strong small {
        margin-left: 4px;
        letter-spacing: .12em;
    }
    .about-editorial-stats span {
        margin-top: 8px;
        font-size: 10px;
        letter-spacing: .16em;
        line-height: 1.4;
    }
    .about-editorial-stats article:last-child { border-right: 0; }
}


/* Portfolio editorial page */
.portfolio-editorial {
    padding: clamp(68px, 8vw, 112px) 0 96px;
    background: #f7f4ef;
}
.portfolio-editorial-shell {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}
.portfolio-editorial-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 32px 54px;
    align-items: end;
    margin-bottom: 32px;
}
.portfolio-editorial-intro {
    max-width: 720px;
}
.portfolio-editorial-kicker {
    margin: 0;
    color: #c48a18;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.portfolio-editorial-line {
    display: block;
    width: 44px;
    height: 2px;
    margin: 16px 0 26px;
    background: #c48a18;
}
.portfolio-editorial h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(52px, 6vw, 84px);
    line-height: .94;
    font-weight: 500;
    letter-spacing: -.02em;
    text-transform: uppercase;
    max-width: 700px;
}
.portfolio-editorial-all {
    align-self: center;
    justify-self: end;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(100%, 390px);
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(196,138,24,.82);
    color: #171513;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.portfolio-editorial-all span,
.portfolio-editorial-link span,
.portfolio-editorial-cta-button span {
    font-size: 30px;
    line-height: .75;
    font-weight: 400;
}
.portfolio-editorial-all span {
    margin-left: auto;
}
.portfolio-editorial-list {
    border-top: 1px solid rgba(130, 100, 44, .14);
}
.portfolio-editorial-item {
    display: grid;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 86px);
    align-items: center;
    padding: 12px 0 26px;
    border-bottom: 1px solid rgba(130, 100, 44, .14);
}
.portfolio-editorial-phone-wrap {
    padding: 14px 0;
    justify-self: start;
}
.portfolio-editorial-phone {
    width: min(330px, 100%);
    margin: 0;
    filter: drop-shadow(0 12px 28px rgba(31, 22, 10, .18));
}
.portfolio-editorial-copy {
    max-width: 640px;
    justify-self: start;
}
.portfolio-editorial-number {
    display: inline-block;
    margin-bottom: 14px;
    color: #c48a18;
    font-size: 15px;
    letter-spacing: .03em;
}
.portfolio-editorial-copy h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.02em;
}
.portfolio-editorial-category {
    margin: 12px 0 0;
    color: #c48a18;
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: .02em;
    text-transform: uppercase;
}
.portfolio-editorial-copy-line {
    display: block;
    width: 60px;
    height: 2px;
    margin: 26px 0 24px;
    background: rgba(196,138,24,.7);
}
.portfolio-editorial-copy p {
    margin: 0 0 10px;
    color: #2f2b27;
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.65;
}
.portfolio-editorial-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 320px;
    max-width: 100%;
    margin-top: 26px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(196,138,24,.72);
    color: #171513;
    font-size: clamp(15px, 1.08vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
}
.portfolio-editorial-cta {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 26px;
    padding: 28px 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(251,248,243,.96), rgba(244,239,231,.96));
}
.portfolio-editorial-cta-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
}
.portfolio-editorial-cta-icon svg {
    width: 92px;
    height: 92px;
    fill: none;
    stroke: #cf9d37;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.portfolio-editorial-cta-copy h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1;
    font-weight: 500;
}
.portfolio-editorial-cta-copy p {
    margin: 0;
    color: #39352f;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.5;
    max-width: 520px;
}
.portfolio-editorial-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 290px;
    padding: 22px 30px;
    border-radius: 999px;
    background: #efe4d4;
    color: #c48a18;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .portfolio-editorial-shell {
        width: min(1180px, calc(100% - 40px));
    }
    .portfolio-editorial-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .portfolio-editorial-all {
        justify-self: start;
        width: min(100%, 390px);
    }
    .portfolio-editorial-item {
        grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
        gap: clamp(28px, 5vw, 56px);
    }
    .portfolio-editorial-cta {
        grid-template-columns: 100px 1fr;
    }
    .portfolio-editorial-cta-button {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 100px;
    }
}

@media (max-width: 760px) {
    .portfolio-editorial {
        padding: 56px 0 72px;
    }
    .portfolio-editorial-shell {
        width: calc(100% - 32px);
    }
    .portfolio-editorial-line {
        margin: 14px 0 18px;
    }
    .portfolio-editorial h1 {
        font-size: clamp(40px, 10.6vw, 62px);
        max-width: 92%;
    }
    .portfolio-editorial-all {
        width: min(100%, 360px);
        gap: 18px;
        font-size: 13px;
        padding-bottom: 10px;
        border-bottom-width: 1px;
    }
    .portfolio-editorial-item {
        grid-template-columns: minmax(135px, 38%) minmax(0, 1fr);
        gap: clamp(16px, 4.8vw, 28px);
        align-items: center;
        padding: 16px 0 22px;
    }
    .portfolio-editorial-phone-wrap {
        padding: 6px 0;
        justify-self: start;
    }
    .portfolio-editorial-phone {
        width: 100%;
        max-width: 245px;
        margin: 0;
    }
    .portfolio-editorial-copy {
        max-width: none;
    }
    .portfolio-editorial-number {
        margin-bottom: 8px;
        font-size: 13px;
    }
    .portfolio-editorial-copy h2 {
        font-size: clamp(30px, 8.2vw, 48px);
    }
    .portfolio-editorial-category {
        font-size: clamp(12px, 3.3vw, 16px);
        margin-top: 8px;
    }
    .portfolio-editorial-copy-line {
        width: 42px;
        margin: 14px 0 14px;
    }
    .portfolio-editorial-copy p {
        font-size: clamp(13px, 3.45vw, 16px);
        line-height: 1.48;
        margin-bottom: 6px;
    }
    .portfolio-editorial-link {
        min-width: 0;
        width: 100%;
        margin-top: 14px;
        font-size: clamp(11px, 3.1vw, 13px);
        gap: 10px;
        padding-bottom: 9px;
    }
    .portfolio-editorial-link span {
        font-size: 24px;
    }
    .portfolio-editorial-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 18px;
        border-radius: 20px;
    }
    .portfolio-editorial-cta-icon {
        width: 72px;
        height: 72px;
    }
    .portfolio-editorial-cta-icon svg {
        width: 72px;
        height: 72px;
    }
    .portfolio-editorial-cta-copy h3 {
        font-size: 28px;
    }
    .portfolio-editorial-cta-copy p {
        font-size: 16px;
    }
    .portfolio-editorial-cta-button {
        min-width: 0;
        width: 100%;
        padding: 18px 22px;
        justify-self: stretch;
        margin-left: 0;
    }
}

@media (max-width: 420px) {
    .portfolio-editorial-item {
        grid-template-columns: 122px minmax(0, 1fr);
        gap: 14px;
    }
    .portfolio-editorial-copy h2 {
        font-size: clamp(27px, 8vw, 34px);
    }
    .portfolio-editorial-copy p {
        font-size: 12.5px;
    }
    .portfolio-editorial-link {
        font-size: 10.5px;
    }
}


/* Fixed bottom contact bar */
.contact-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 8px clamp(16px, 4vw, 42px) calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 250, 240, .97);
    border-top: 1px solid rgba(16, 16, 16, .08);
    box-shadow: 0 -10px 28px rgba(16, 16, 16, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.contact-dock-logo {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(16,16,16,.06);
}
.contact-dock-logo img {
    width: 24px;
    height: 32px;
    object-fit: contain;
}
.contact-dock-info {
    min-width: 0;
    display: grid;
    gap: 1px;
    line-height: 1.15;
}
.contact-dock-info strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ink);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 800;
    letter-spacing: .02em;
}
.contact-dock-info span {
    display: block;
    color: rgba(16,16,16,.62);
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 600;
    letter-spacing: .03em;
}
.contact-dock-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 136px;
    min-height: 38px;
    padding: 7px 12px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: linear-gradient(180deg, #efe4d4 0%, #eadbc8 100%);
    color: #b78418;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}
.contact-dock-whatsapp img {
    width: 51px;
    height: 51px;
    object-fit: contain;
    flex: 0 0 auto;
    display: block;
}
body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
}
body.menu-open .contact-dock {
    z-index: 998;
}

@media (min-width: 900px) {
    .contact-dock {
        left: 50%;
        right: auto;
        bottom: 18px;
        width: min(700px, calc(100% - 48px));
        transform: translateX(-50%);
        border: 1px solid rgba(16, 16, 16, .08);
        border-radius: 22px;
        padding: 10px 16px;
    }
    body {
        padding-bottom: 104px;
    }
}

@media (max-width: 560px) {
    .contact-dock {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 66px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .contact-dock-logo {
        width: 40px;
        height: 40px;
    }
    .contact-dock-logo img {
        width: 20px;
        height: 28px;
    }
    .contact-dock-info strong {
        font-size: 15px;
    }
    .contact-dock-info span {
        font-size: 13px;
    }
    .contact-dock-whatsapp {
        min-width: 108px;
        min-height: 34px;
        padding: 6px 8px;
        border-radius: 12px;
        font-size: 12px;
        gap: 6px;
    }
    .contact-dock-whatsapp img {
        width: 42px;
        height: 42px;
    }
    body {
        padding-bottom: calc(66px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {
    .contact-dock {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 8px;
    }
    .contact-dock-logo {
        width: 36px;
        height: 36px;
    }
    .contact-dock-info strong {
        font-size: 13px;
    }
    .contact-dock-info span {
        font-size: 11px;
    }
    .contact-dock-whatsapp {
        width: auto;
        min-width: 96px;
        padding-left: 6px;
        padding-right: 8px;
        font-size: 11px;
    }
}

/* Contact page */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page {
    background: #efefef;
    padding-top: clamp(64px, 10vw, 110px);
    padding-bottom: clamp(88px, 12vw, 140px);
}

.contact-shell {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    padding: clamp(24px, 4vw, 30px) 0 clamp(24px, 4vw, 34px);
}

.contact-hero h1 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.05em;
    color: #111;
    white-space: nowrap;
}

.contact-intro {
    width: min(760px, calc(100% - 24px));
    margin: 20px auto 0;
    color: rgba(16,16,16,.8);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.52;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, calc(100% - 24px));
    margin: 0 auto;
    color: #2b78e4;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.03em;
    text-decoration: none;
    word-break: break-word;
    text-align: center;
}

.contact-email:hover {
    opacity: .84;
}

.contact-email-icon {
    color: #111;
    font-size: .8em;
    transform: translateY(-1px);
}

.contact-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    margin: clamp(36px, 6vw, 56px) 0 clamp(38px, 6vw, 54px);
}

.contact-divider span {
    height: 1px;
    background: rgba(16,16,16,.16);
}

.contact-divider em {
    color: rgba(16,16,16,.26);
    font-style: normal;
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -.03em;
}

.contact-form-block {
    width: min(760px, 100%);
    margin: 0 auto;
}

.contact-form-block h2 {
    margin: 0 0 26px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -.04em;
    color: #111;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-radius: 26px;
    background: rgba(255,255,255,.42);
    padding: 26px 30px;
    color: #111;
    font: inherit;
    font-size: clamp(18px, 2.3vw, 22px);
    line-height: 1.35;
    box-shadow: inset 0 0 0 1px rgba(16,16,16,.03);
    transition: box-shadow .25s ease, background .25s ease;
}

.contact-form textarea {
    min-height: 240px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(16,16,16,.32);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,.66);
    box-shadow: inset 0 0 0 1px rgba(16,16,16,.11);
}

.contact-form-note {
    margin: 2px auto 0;
    max-width: 620px;
    text-align: center;
    color: rgba(16,16,16,.66);
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.42;
}

.contact-submit {
    justify-self: center;
    min-width: min(100%, 620px);
    border: none;
    border-radius: 999px;
    background: #dedede;
    color: rgba(16,16,16,.62);
    padding: 28px 34px;
    font-family: "Inter", sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: -.03em;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.contact-submit:hover {
    transform: translateY(-1px);
    background: #d7d7d7;
    color: #111;
}

.contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 38px;
    padding: clamp(32px, 5vw, 46px) 0 22px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    color: #111;
    text-decoration: none;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: -.02em;
}

.contact-links a span {
    margin-left: 10px;
}

.contact-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(16,16,16,.12);
    margin-top: 8px;
    padding-top: 8px;
}

.contact-detail-card {
    padding: 22px 24px 6px;
    text-align: center;
}

.contact-detail-card + .contact-detail-card {
    border-top: 1px solid rgba(16,16,16,.08);
}

.contact-detail-card p {
    margin: 0 0 14px;
    color: rgba(16,16,16,.52);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-detail-card a {
    color: #111;
    text-decoration: none;
    font-size: clamp(22px, 2.7vw, 34px);
    line-height: 1.35;
    letter-spacing: -.02em;
    word-break: break-word;
}

@media (max-width: 900px) {
    .contact-shell {
        width: min(860px, calc(100% - 28px));
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 22px;
        padding: 22px 24px;
    }

    .contact-submit {
        min-width: 100%;
        padding: 24px 28px;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding-top: 72px;
        padding-bottom: 96px;
    }

    .contact-shell {
        width: calc(100% - 16px);
    }

    .contact-hero {
        padding-top: 10px;
    }

    .contact-hero h1 {
        font-size: clamp(26px, 7.5vw, 38px);
        white-space: nowrap;
    }

    .contact-intro {
        width: 100%;
        max-width: none;
        margin-top: 16px;
        padding: 0 8px;
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-email {
        justify-content: center;
        width: 100%;
        padding: 0 8px;
        font-size: 18px;
        line-height: 1.18;
        text-align: center;
    }

    .contact-divider {
        gap: 14px;
        margin: 28px 0 32px;
    }

    .contact-form-block h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 20px;
        padding: 18px 20px;
        font-size: 17px;
    }

    .contact-form textarea {
        min-height: 190px;
    }

    .contact-form-note {
        font-size: 15px;
    }

    .contact-submit {
        font-size: 22px;
        padding: 20px 24px;
    }

    .contact-links {
        justify-content: center;
        gap: 14px 28px;
        padding: 28px 0 18px;
    }

    .contact-links a {
        font-size: 17px;
    }

    .contact-footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-detail-card {
        padding: 20px 8px 0;
    }

    .contact-detail-card + .contact-detail-card {
        border-left: none;
        border-top: 1px solid rgba(16,16,16,.08);
        margin-top: 14px;
        padding-top: 18px;
    }

    .contact-detail-card a {
        font-size: 18px;
    }
}

/* =========================
   Homepage rebuild v20260523_home_rebuild_01
   ========================= */

body.page-home {
    background: #f3f3f1;
}

.page-home .footer {
    margin-top: 52px;
}

.site-header.home-header {
    min-height: 84px;
    padding: 18px clamp(24px, 4vw, 46px);
    background: rgba(243,243,241,.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(16,16,16,.08);
    box-shadow: none;
}

.site-header.home-header .brand {
    gap: 0;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 700;
}

.site-header.home-header .brand-logo,
.site-header.home-header .desktop-nav {
    display: none !important;
}

.site-header.home-header .brand-text {
    display: inline-block;
}

.site-header.home-header .menu-button {
    display: inline-flex !important;
}

.circle-menu {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 2px solid rgba(16,16,16,.74);
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.circle-menu span {
    display: block;
    width: 24px;
    max-width: 24px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--ink);
}

.home-hero-section {
    padding: 150px 0 28px;
}

.home-hero-wrap {
    text-align: center;
    max-width: 920px;
}

.home-hero-title {
    margin: 0 auto;
    max-width: 760px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.055em;
    text-transform: none;
    font-size: clamp(46px, 10vw, 104px);
}

.home-hero-lead {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.55;
    color: rgba(16,16,16,.8);
}

.home-projects-section {
    padding: 10px 0 18px;
}

.home-pill-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 10px;
    margin-bottom: 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-pill-scroller::-webkit-scrollbar {
    display: none;
}

.home-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    background: #e5e5e3;
    color: #191919;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.home-pill.is-active {
    background: #2f74f5;
    color: #fff;
}

.home-project-feed {
    display: grid;
    gap: 34px;
}

.home-project-card {
    background: transparent;
}

.home-project-image-wrap {
    border-radius: 32px;
    overflow: hidden;
    background: #ececec;
    box-shadow: 0 18px 45px rgba(16,16,16,.06);
}

.home-project-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.home-project-image-wrap:not(.wide) {
    background: linear-gradient(180deg, #f2f2f2 0%, #e9e9e9 100%);
    padding: 22px 22px 0;
}

.home-project-image-wrap:not(.wide) img {
    width: min(420px, 100%);
    margin: 0 auto;
}

.home-project-copy {
    padding: 22px 6px 0;
}

.home-project-copy h2 {
    margin-bottom: 12px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(28px, 5.6vw, 64px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.04em;
}

.home-project-copy p {
    margin: 0;
    max-width: 760px;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.55;
    color: rgba(16,16,16,.8);
}

.ramotion-menu-card {
    width: min(720px, calc(100% - 20px));
    min-height: calc(100svh - 122px);
    padding: clamp(40px, 7vw, 56px) clamp(28px, 7vw, 48px) 120px;
    border-radius: 28px;
    background: #f5f5f3;
}

.ramotion-menu {
    gap: 12px;
}

.ramotion-menu .mobile-panel-link {
    justify-content: flex-start;
    gap: 18px;
    font-size: clamp(36px, 7.6vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.05em;
    transition-duration: .7s;
    transition-delay: calc(var(--item-index, 0) * 0.08s);
}

.ramotion-menu .mobile-panel-link.has-arrow span {
    transform: none;
    font-size: .86em;
    margin-left: 8px;
}

.ramotion-menu .mobile-panel-link:not(.has-arrow) span {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: calc(var(--i, 0) * .08s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 901px) {
    .site-header.home-header {
        padding-left: 54px;
        padding-right: 54px;
    }

    .home-hero-section {
        padding-top: 176px;
    }

    .home-project-feed {
        gap: 46px;
    }

    .home-project-card {
        max-width: 1120px;
    }
}

@media (max-width: 900px) {
    .site-header.home-header {
        min-height: 78px;
        padding: 16px 24px;
    }

    .circle-menu {
        width: 52px;
        height: 52px;
        padding: 0 10px;
    }

    .circle-menu span {
        width: 22px;
        max-width: 22px;
        margin: 3px auto;
    }

    .home-hero-section {
        padding-top: 132px;
    }

    .home-hero-title {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 30px);
    }

    .site-header.home-header {
        min-height: 74px;
        padding: 14px 18px;
    }

    .site-header.home-header .brand {
        font-size: 11px;
        letter-spacing: .16em;
    }

    .home-hero-section {
        padding: 122px 0 20px;
    }

    .home-hero-title {
        font-size: clamp(44px, 10.4vw, 72px);
        max-width: 340px;
    }

    .home-hero-lead {
        font-size: 15px;
        max-width: 330px;
        margin-top: 18px;
    }

    .home-pill-scroller {
        gap: 12px;
        margin-bottom: 22px;
    }

    .home-pill {
        min-height: 52px;
        padding: 0 20px;
        font-size: 16px;
    }

    .home-project-feed {
        gap: 28px;
    }

    .home-project-image-wrap {
        border-radius: 22px;
    }

    .home-project-image-wrap:not(.wide) {
        padding: 16px 16px 0;
    }

    .home-project-copy {
        padding: 18px 2px 0;
    }

    .home-project-copy h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .home-project-copy p {
        font-size: 14px;
        line-height: 1.62;
        max-width: 100%;
    }

    .ramotion-menu-card {
        width: calc(100% - 16px);
        min-height: calc(100svh - 100px);
        padding: 36px 24px 110px;
        border-radius: 24px;
    }

    .ramotion-menu .mobile-panel-link {
        font-size: 28px;
    }

    .mobile-panel-close {
        width: 68px;
        height: 68px;
        right: 18px;
        bottom: 18px;
        font-size: 38px;
    }
}


/* Client case studies added v20260523_clients_01 */
.home-project-image-wrap.photo,
.home-project-image-wrap.logo {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    padding: 0 !important;
    background: #ecebea;
}

.home-project-image-wrap.photo img,
.home-project-image-wrap.logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
}

.home-project-image-wrap.logo.dark {
    background: #080808;
}

.home-project-image-wrap.is-poniedzialek-banner {
    border-radius: 32px;
    overflow: hidden;
}

.home-project-image-wrap.is-poniedzialek-banner img {
    object-fit: contain;
    object-position: center center;
    background: #ecebea;
    border-radius: 32px;
    clip-path: inset(0 round 32px);
}

.home-project-card {
    border-bottom: 1px solid rgba(16,16,16,.08);
    padding-bottom: clamp(22px, 4vw, 38px);
}

.home-project-card:last-child {
    border-bottom: 0;
}

.home-project-copy h2 {
    text-transform: none;
}

@media (max-width: 640px) {
    .home-project-image-wrap.photo,
    .home-project-image-wrap.logo {
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .home-project-copy p {
        max-width: 36ch;
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-bottom-cta-section {
    padding: 10px 0 34px;
}

.home-talk-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 720px);
    margin: 0 auto 34px;
    min-height: 112px;
    padding: 0 34px 0 40px;
    border-radius: 999px;
    background: #202022;
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    letter-spacing: -.03em;
    box-shadow: 0 16px 40px rgba(16,16,16,.12);
}

.home-talk-pill strong {
    font-size: clamp(44px, 6vw, 58px);
    line-height: 1;
    font-weight: 400;
}

.home-newsletter-card {
    display: grid;
    gap: 26px;
    padding: clamp(30px, 4vw, 54px);
    border-radius: 32px;
    background: #efefed;
}

.home-newsletter-copy h2 {
    margin: 0 0 14px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
    font-size: clamp(34px, 5vw, 58px);
}

.home-newsletter-copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(16,16,16,.82);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.55;
}

.home-newsletter-form {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.home-newsletter-form input {
    flex: 1 1 280px;
    min-height: 78px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(16,16,16,.14);
    background: #fafaf8;
    font: inherit;
    font-size: 18px;
    color: var(--ink);
    outline: none;
}

.home-newsletter-form input::placeholder {
    color: rgba(16,16,16,.46);
}

.home-newsletter-form input:focus {
    border-color: rgba(16,16,16,.36);
}

.home-newsletter-form button {
    min-height: 78px;
    padding: 0 36px;
    border-radius: 999px;
    border: 2px solid rgba(16,16,16,.72);
    background: transparent;
    color: #222;
    font: inherit;
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: -.02em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.home-newsletter-form button:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.55);
}

@media (max-width: 640px) {
    .home-bottom-cta-section {
        padding-bottom: 22px;
    }

    .home-talk-pill {
        width: 100%;
        min-height: 88px;
        margin-bottom: 22px;
        padding: 0 24px 0 28px;
        font-size: 24px;
    }

    .home-talk-pill strong {
        font-size: 40px;
    }

    .home-newsletter-card {
        gap: 20px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .home-newsletter-copy h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .home-newsletter-copy p {
        font-size: 15px;
        line-height: 1.6;
    }

    .home-newsletter-form {
        gap: 14px;
    }

    .home-newsletter-form input,
    .home-newsletter-form button {
        width: 100%;
        min-height: 62px;
        font-size: 17px;
    }

    .home-newsletter-form input {
        padding: 0 20px;
    }
}


/* Header/footer cleanup v20260523_header_footer_fix_03 */
.site-header {
    will-change: transform;
    transition: transform .28s ease, background .25s ease, min-height .25s ease, padding .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-hidden:not(.menu-open),
.site-header.is-hidden {
    transform: translateY(-112%);
}
body.menu-open .site-header {
    transform: translateY(0) !important;
}

.circle-menu {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
}
.circle-menu span {
    display: block !important;
    flex: 0 0 auto !important;
    width: 24px !important;
    max-width: 24px !important;
    min-width: 24px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    opacity: 1;
    transform-origin: center;
}
body:not(.menu-open) .circle-menu span:nth-child(1),
body:not(.menu-open) .circle-menu span:nth-child(2),
body:not(.menu-open) .circle-menu span:nth-child(3) {
    transform: none !important;
}
body.menu-open .circle-menu span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .circle-menu span:nth-child(2) { opacity: 0; }
body.menu-open .circle-menu span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body {
    padding-bottom: 0 !important;
}
.contact-dock {
    display: none !important;
}

.footer {
    background: #f3f3f1 !important;
    color: #101010 !important;
    border-top: 1px solid rgba(16,16,16,.10);
    box-shadow: none !important;
}
.footer p {
    color: rgba(16,16,16,.72) !important;
}
.footer nav a {
    color: rgba(16,16,16,.82) !important;
}
.footer small {
    color: rgba(16,16,16,.58) !important;
}
.footer .brand-text {
    color: #101010 !important;
}

@media (max-width: 900px) {
    .site-header.home-header {
        min-height: 72px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
    .circle-menu {
        width: 52px !important;
        height: 52px !important;
    }
    .circle-menu span {
        width: 22px !important;
        max-width: 22px !important;
        min-width: 22px !important;
    }
}


.services-light-card[id] {
    scroll-margin-top: 96px;
}

/* Services submenu v20260523_services_submenu_02 */
.mobile-panel-card {
    overflow: hidden;
    position: relative;
}

.mobile-panel-button {
    width: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}

.mobile-subpanel {
    position: absolute;
    inset: 0;
    z-index: 7;
    display: flex;
    flex-direction: column;
    background: #f5f5f3;
    border-radius: inherit;
    padding: clamp(46px, 8vw, 72px) clamp(28px, 7vw, 48px) 122px;
    transform: translateX(108%);
    opacity: 0;
    pointer-events: none;
    transition: transform .62s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
    box-shadow: -22px 0 44px rgba(16,16,16,.08);
}

.mobile-panel-card.submenu-open .mobile-subpanel.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel-card.submenu-open .ramotion-menu {
    transform: translateX(-72px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-submenu-list {
    display: grid;
    gap: 0;
    margin-top: clamp(32px, 7vw, 64px);
}

.mobile-submenu-list a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(16,16,16,.17);
    color: #1c1c1f;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(21px, 4.7vw, 34px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -.03em;
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
    transition-delay: calc(var(--sub-index, 0) * .08s + .22s);
}

.mobile-panel-card.submenu-open .mobile-subpanel.is-open .mobile-submenu-list a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-subpanel-back {
    position: absolute;
    left: clamp(24px, 6vw, 48px);
    bottom: 24px;
    width: 76px;
    height: 76px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 66px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-subpanel-close {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 2px solid rgba(16,16,16,.72);
    background: transparent;
    color: #111;
    font-size: 42px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-subpanel-back:hover,
.mobile-subpanel-close:hover {
    background: rgba(16,16,16,.04);
}

@media (max-width: 640px) {
    .mobile-subpanel {
        padding: 38px 22px 108px;
        transform: translateX(110%);
    }

    .mobile-panel-card.submenu-open .mobile-subpanel.is-open {
        transform: translateX(0);
    }

    .mobile-panel-card.submenu-open .ramotion-menu {
        transform: translateX(-56px);
        opacity: 0;
        visibility: hidden;
    }

    .mobile-submenu-list {
        margin-top: 34px;
    }

    .mobile-submenu-list a {
        font-size: 24px;
        padding: 14px 0;
    }

    .mobile-subpanel-back {
        left: 20px;
        bottom: 18px;
        width: 68px;
        height: 68px;
        font-size: 56px;
    }

    .mobile-subpanel-close {
        right: 18px;
        bottom: 18px;
        width: 68px;
        height: 68px;
        font-size: 38px;
    }
}


/* Strony WWW page v20260523_strony_www_04 */
.websites-hero-section {
    padding: 128px 0 34px;
    background: #f3f3f1;
}

.websites-hero-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(330px, 53vw, 610px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
}

.websites-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/strony-www-hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.websites-hero-card h1,
.websites-hero-title {
    margin: 0;
    width: 100%;
    max-width: 980px;
    padding: clamp(24px, 4vw, 52px);
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(48px, 8.1vw, 104px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 800;
    color: #161618;
    text-transform: uppercase;
}

.websites-hero-title span {
    display: block;
    white-space: nowrap;
}

.websites-content-section {
    background: #f3f3f1;
    padding: 34px 0 0;
}

.websites-content {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.websites-content p {
    margin: 0;
    color: rgba(16,16,16,.86);
    font-size: clamp(27px, 3.35vw, 40px);
    line-height: 1.42;
    letter-spacing: -.035em;
}

.websites-lead-lines span {
    display: block;
}

.websites-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(100%, 340px);
    min-height: 76px;
    margin-top: 44px;
    padding: 0 25px 0 34px;
    border: 2px solid rgba(16,16,16,.76);
    border-radius: 999px;
    color: #151515;
    background: transparent;
    text-decoration: none;
    font-size: clamp(22px, 2.8vw, 31px);
    font-weight: 400;
    letter-spacing: -.03em;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.websites-cta strong {
    font-size: 1.55em;
    line-height: 1;
    font-weight: 400;
}

.websites-cta:hover {
    transform: translateY(-1px);
    background: #1d1d1f;
    color: #fff;
}

.websites-stats-section {
    background: #f3f3f1;
    padding: clamp(118px, 15vw, 176px) 0 clamp(110px, 14vw, 170px);
}

.websites-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(42px, 7vw, 72px) clamp(34px, 7vw, 70px);
}

.websites-stats div {
    min-height: clamp(132px, 17vw, 178px);
    padding: 0 0 clamp(24px, 4vw, 34px);
    border-bottom: 1px solid rgba(16,16,16,.18);
}

.websites-stats strong {
    display: block;
    margin: 0 0 clamp(18px, 2.6vw, 28px);
    color: #111;
    font-size: clamp(18px, 2.15vw, 27px);
    line-height: 1.18;
    letter-spacing: -.025em;
    font-weight: 800;
}

.websites-stats span {
    display: block;
    color: #111;
    font-size: clamp(58px, 9vw, 90px);
    line-height: .86;
    letter-spacing: -.065em;
    font-weight: 500;
}

.websites-clients-section {
    background: #fff;
    padding: 0 0 clamp(54px, 7vw, 82px);
}

.websites-clients h2 {
    margin: 0 0 clamp(74px, 10vw, 118px);
    color: #111;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(40px, 8.4vw, 86px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 800;
    white-space: nowrap;
}

.websites-clients p {
    max-width: 650px;
    margin: 0 clamp(24px, 8vw, 90px) 0 clamp(72px, 18vw, 190px);
    text-align: left;
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 4.2vw, 38px);
    line-height: 1.45;
    letter-spacing: .035em;
}

.client-logo-rotator {
    position: relative;
    margin-top: clamp(56px, 8vw, 84px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(18px, 2.4vw, 26px) clamp(16px, 2.2vw, 24px);
}

.client-logo-item {
    position: relative;
    flex: 0 0 calc(33.333% - 18px);
    max-width: calc(33.333% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(88px, 9.5vw, 114px);
    padding: 6px 0;
    overflow: visible;
}

.client-circle-logo,
.client-wordmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: opacity .42s ease, transform .42s ease;
    transition-delay: var(--logo-delay, 0ms);
    will-change: opacity, transform;
}

.client-circle-logo {
    width: clamp(72px, 8.8vw, 108px);
    height: clamp(72px, 8.8vw, 108px);
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(16,16,16,.07));
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
}

.client-wordmark {
    display: inline-block;
    max-width: 100%;
    color: #111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 2.3vw, 27px);
    font-weight: 400;
    font-style: normal;
    line-height: .95;
    letter-spacing: -.055em;
    text-align: center;
    white-space: nowrap;
    text-rendering: geometricPrecision;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.97);
}

.client-logo-item.is-circle .client-circle-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.client-logo-item.is-circle .client-wordmark {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.96);
}

.client-logo-item.is-text .client-wordmark,
.client-logo-item[data-has-circle="false"] .client-wordmark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.client-logo-item.is-text .client-circle-logo {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
}
@media (max-width: 640px) {
    .websites-hero-section {
        padding: 104px 0 22px;
    }

    .websites-hero-card {
        min-height: 382px;
        border-radius: 22px;
    }

    .websites-hero-card h1,
    .websites-hero-title {
        font-size: clamp(47px, 12.1vw, 58px);
        line-height: 1;
        letter-spacing: -.06em;
        padding: 22px 16px;
    }

    .websites-content-section {
        padding: 28px 0 0;
    }

    .websites-content p {
        font-size: clamp(24px, 6.15vw, 28px);
        line-height: 1.55;
        letter-spacing: -.035em;
    }

    .websites-cta {
        width: min(100%, 300px);
        min-height: 68px;
        margin-top: 38px;
        padding: 0 22px 0 27px;
        font-size: 25px;
    }

    .websites-stats-section {
        padding: 118px 0 122px;
    }

    .websites-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 38px;
    }

    .websites-stats div {
        min-height: 132px;
        padding-bottom: 28px;
        border-bottom-color: rgba(16,16,16,.18);
    }

    .websites-stats strong {
        font-size: 15px;
        line-height: 1.17;
        margin-bottom: 22px;
        letter-spacing: -.025em;
    }

    .websites-stats span {
        font-size: 54px;
        line-height: .86;
        letter-spacing: -.06em;
        font-weight: 500;
    }

    .websites-clients-section {
        padding-bottom: 58px;
        background: #fff;
    }

    .websites-clients h2 {
        font-size: clamp(28px, 7.45vw, 34px);
        margin-bottom: 64px;
        white-space: nowrap;
        letter-spacing: -.045em;
    }

    .websites-clients p {
        max-width: none;
        margin-left: clamp(68px, 18vw, 84px);
        margin-right: 24px;
        text-align: left;
        font-size: 24px;
        line-height: 1.45;
        letter-spacing: .055em;
    }

    .client-logo-rotator {
        margin-top: 46px;
        gap: 18px 10px;
    }

    .client-logo-item {
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-height: 92px;
        padding: 8px 0;
    }

    .client-circle-logo {
        width: 82px;
        height: 82px;
    }

    .client-wordmark {
        font-size: 18px;
        line-height: 1;
        letter-spacing: -.05em;
    }
}


@media (prefers-reduced-motion: reduce) {
    .client-circle-logo,
    .client-wordmark {
        transition: none;
    }
}

@media (max-width: 380px) {
    .websites-stats {
        gap: 36px 24px;
    }

    .websites-stats strong {
        font-size: 14px;
    }

    .websites-stats span {
        font-size: 48px;
    }
}


.websites-cases-section {
    padding: clamp(38px, 5.5vw, 66px) 0 clamp(56px, 8vw, 96px);
    background: #fff;
}

.websites-cases-heading {
    margin-bottom: clamp(44px, 7vw, 76px);
}

.websites-cases-heading h2 {
    margin: 0 0 20px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(38px, 7vw, 72px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.055em;
    color: #181818;
}

.websites-cases-heading a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(16,16,16,.82);
    font-size: clamp(17px, 2.1vw, 21px);
    line-height: 1.2;
    letter-spacing: .015em;
}

.websites-cases-heading a span {
    font-size: 1.35em;
    line-height: 1;
}

.websites-case-list {
    display: grid;
    gap: clamp(58px, 8.6vw, 104px);
}

.websites-case-card figure {
    margin: 0 0 clamp(24px, 4vw, 34px);
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
}

.websites-case-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    object-position: center center;
    border-radius: inherit;
    background: transparent;
}

.websites-case-card h3 {
    margin: 0 0 12px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(32px, 5.4vw, 58px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.052em;
    color: #181818;
}

.websites-case-card p {
    margin: 0;
    max-width: 820px;
    color: rgba(16,16,16,.78);
    font-size: clamp(18px, 2.75vw, 28px);
    line-height: 1.45;
    letter-spacing: .018em;
}

@media (max-width: 640px) {
    .websites-cases-section {
        padding: 42px 0 46px;
        background: #fff;
    }

    .websites-cases-heading {
        margin-bottom: 42px;
    }

    .websites-cases-heading h2 {
        font-size: 34px;
        margin-bottom: 16px;
        letter-spacing: -.045em;
    }

    .websites-cases-heading a {
        font-size: 15px;
    }

    .websites-case-list {
        gap: 58px;
    }

    .websites-case-card figure {
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .websites-case-card h3 {
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: -.047em;
    }

    .websites-case-card p {
        max-width: 96%;
        font-size: 19px;
        line-height: 1.5;
        letter-spacing: .035em;
    }
}


.websites-testimonials-section {
    padding: clamp(76px, 11vw, 128px) 0 clamp(34px, 5.5vw, 68px);
    background: #f7f7f5;
}

.websites-testimonials-heading {
    margin-bottom: clamp(40px, 6vw, 56px);
}

.websites-testimonials-heading h2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 18px;
    color: #181818;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(42px, 6.8vw, 72px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.055em;
}

.websites-testimonials-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(16,16,16,.82);
    font-size: clamp(17px, 2.1vw, 21px);
    line-height: 1.2;
    letter-spacing: .015em;
}

.websites-testimonials-slider {
    max-width: 900px;
}

.websites-testimonials-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.websites-testimonial-company {
    min-height: 38px;
    color: #5bc8f2;
    font-size: clamp(24px, 3.1vw, 30px);
    line-height: 1.05;
    letter-spacing: .02em;
    font-weight: 600;
}

.websites-testimonials-controls {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.websites-testimonials-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #181818;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.websites-testimonials-arrow:hover {
    transform: translateY(-1px);
    opacity: .72;
}

.websites-testimonials-count {
    min-width: 58px;
    text-align: center;
    color: #181818;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1;
    letter-spacing: -.02em;
}

.websites-testimonials-list {
    position: relative;
    min-height: 0;
}

.websites-testimonial-slide {
    display: none;
}

.websites-testimonial-slide.is-active {
    display: block;
    animation: testimonialFade .34s ease;
}

@keyframes testimonialFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.websites-testimonial-quote {
    max-width: 740px;
    margin: 0;
    color: rgba(16,16,16,.84);
    font-size: clamp(24px, 3.35vw, 37px);
    line-height: 1.52;
    letter-spacing: -.02em;
}

.websites-testimonial-person {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: clamp(44px, 6vw, 56px);
}

.websites-testimonial-person img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.websites-testimonial-person strong {
    display: block;
    margin: 0 0 6px;
    color: #181818;
    font-size: clamp(24px, 2.8vw, 30px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.03em;
}

.websites-testimonial-person span {
    display: block;
    max-width: 560px;
    color: rgba(16,16,16,.78);
    font-size: clamp(20px, 2.45vw, 28px);
    line-height: 1.42;
    letter-spacing: -.01em;
}

@media (max-width: 640px) {
    .websites-testimonials-section {
        padding: 70px 0 24px;
    }

    .websites-testimonials-heading {
        margin-bottom: 34px;
    }

    .websites-testimonials-heading h2 {
        font-size: 32px;
        gap: 2px;
        margin-bottom: 14px;
        letter-spacing: -.045em;
    }

    .websites-testimonials-kicker {
        font-size: 15px;
    }

    .websites-testimonials-topbar {
        margin-bottom: 24px;
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .websites-testimonial-company {
        min-height: 30px;
        font-size: 18px;
    }

    .websites-testimonials-controls {
        align-self: flex-end;
        gap: 10px;
    }

    .websites-testimonials-arrow {
        width: 34px;
        height: 34px;
        font-size: 28px;
    }

    .websites-testimonials-count {
        min-width: 52px;
        font-size: 17px;
    }

    .websites-testimonials-list {
        min-height: 0;
    }

    .websites-testimonial-quote {
        font-size: 19px;
        line-height: 1.48;
        letter-spacing: .005em;
    }

    .websites-testimonial-person {
        margin-top: 36px;
        gap: 14px;
        align-items: flex-start;
    }

    .websites-testimonial-person img {
        width: 52px;
        height: 52px;
    }

    .websites-testimonial-person strong {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .websites-testimonial-person span {
        font-size: 14px;
        line-height: 1.45;
        max-width: 240px;
    }
}


.websites-founder-section {
    padding: clamp(28px, 5vw, 54px) 0 clamp(92px, 12vw, 150px);
    background: #f7f7f5;
}

.websites-founder {
    max-width: 980px;
}

.websites-founder-intro {
    margin-bottom: clamp(42px, 6vw, 70px);
}

.websites-founder-intro h2 {
    margin: 0 0 clamp(32px, 5vw, 52px);
    color: #181818;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(38px, 5.7vw, 64px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.045em;
}

.websites-founder-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(16, 16, 16, .84);
    font-size: clamp(22px, 2.65vw, 30px);
    line-height: 1.48;
    letter-spacing: -.015em;
}

.websites-founder-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 4vw, 42px);
    min-height: 136px;
    padding: 20px clamp(28px, 5vw, 54px) 20px 26px;
    border: 1px solid rgba(24, 24, 24, .15);
    border-radius: 999px;
    color: #181818;
    background: rgba(255, 255, 255, .18);
    text-decoration: none;
    transition: border-color .24s ease, transform .24s ease, background .24s ease;
}

.websites-founder-card:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 24, 24, .28);
    background: rgba(255, 255, 255, .34);
}

.websites-founder-person {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 30px);
    min-width: 0;
}

.websites-founder-person img {
    width: clamp(78px, 10vw, 104px);
    height: clamp(78px, 10vw, 104px);
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    filter: grayscale(1);
}

.websites-founder-person strong {
    display: block;
    margin: 0 0 8px;
    color: #181818;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.08;
    font-weight: 760;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.websites-founder-person span {
    display: block;
    color: rgba(16, 16, 16, .72);
    font-size: clamp(19px, 2.45vw, 25px);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.websites-founder-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    color: #181818;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.015em;
}

.websites-founder-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(34px, 4.2vw, 46px);
    height: clamp(34px, 4.2vw, 46px);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
}

.websites-founder-whatsapp svg {
    width: 62%;
    height: 62%;
    display: block;
}

.websites-founder-arrow {
    color: rgba(16, 16, 16, .72);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .websites-founder-section {
        padding: 28px 0 96px;
    }

    .websites-founder-intro {
        margin-bottom: 38px;
    }

    .websites-founder-intro h2 {
        margin-bottom: 26px;
        font-size: 31px;
        letter-spacing: -.035em;
    }

    .websites-founder-intro p {
        margin-left: 68px;
        margin-right: 0;
        max-width: none;
        font-size: 17px;
        line-height: 1.48;
        letter-spacing: .002em;
    }

    .websites-founder-card {
        min-height: 96px;
        padding: 14px 18px 14px 14px;
        gap: 12px;
        border-radius: 999px;
    }

    .websites-founder-person {
        gap: 14px;
    }

    .websites-founder-person img {
        width: 64px;
        height: 64px;
    }

    .websites-founder-person strong {
        margin-bottom: 5px;
        font-size: 17px;
        letter-spacing: -.02em;
        white-space: normal;
    }

    .websites-founder-person span {
        font-size: 14px;
    }

    .websites-founder-contact {
        gap: 8px;
    }

    .websites-founder-phone {
        display: none;
    }

    .websites-founder-whatsapp {
        width: 36px;
        height: 36px;
    }

    .websites-founder-arrow {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .websites-founder-intro p {
        margin-left: 0;
    }
}


/* Subscribe page v20260523_subscribe_01 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.page-subskrypcja {
    background: #f7f7f5;
    color: #171717;
}

body.page-subskrypcja .site-header {
    background: rgba(247,247,245,.86);
    border-bottom: 1px solid rgba(16,16,16,.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.page-subskrypcja .footer {
    display: none !important;
}

.subscribe-page {
    min-height: 100svh;
    padding: clamp(118px, 13vh, 148px) 0 clamp(74px, 10vw, 112px);
    background: #f7f7f5;
}

.subscribe-container {
    width: min(980px, calc(100% - 64px));
    margin: 0 auto;
}

.subscribe-hero {
    max-width: 860px;
    margin: 0 auto clamp(74px, 9vw, 92px);
    text-align: center;
}

.subscribe-kicker {
    display: none;
}

.subscribe-hero h1 {
    margin: 0 0 28px;
    color: #151515;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(48px, 5.6vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.055em;
    text-align: center;
}

.subscribe-lead {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(18,18,18,.84);
    font-size: clamp(19px, 1.9vw, 24px);
    line-height: 1.55;
    letter-spacing: .005em;
    text-align: center;
    text-wrap: balance;
}

.subscribe-form {
    width: min(760px, 100%);
    margin: 0 auto clamp(96px, 13vw, 132px);
    display: grid;
    gap: clamp(18px, 2.2vw, 22px);
}

.subscribe-form label {
    display: block;
}

.subscribe-form input {
    width: 100%;
    min-height: clamp(76px, 10vw, 94px);
    border: 0;
    border-radius: 12px;
    background: #f1f1ef;
    color: #151515;
    padding: 0 clamp(28px, 5vw, 46px);
    font: inherit;
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: .07em;
    outline: none;
    box-shadow: none;
    transition: background .18s ease, box-shadow .18s ease;
}

.subscribe-form input::placeholder {
    color: rgba(16,16,16,.33);
}

.subscribe-form input:focus {
    background: #eeeeec;
    box-shadow: inset 0 0 0 1px rgba(16,16,16,.12);
}

.subscribe-submit {
    justify-self: center;
    width: min(620px, 82%);
    min-height: clamp(82px, 11vw, 106px);
    margin-top: clamp(44px, 7vw, 76px);
    border: 0;
    border-radius: 999px;
    background: #dedede;
    color: rgba(18,18,18,.78);
    font: inherit;
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1;
    letter-spacing: .005em;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}

.subscribe-submit:hover {
    transform: translateY(-2px);
    background: #171717;
    color: #fff;
}

.subscribe-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(54px, 12vw, 210px);
    padding-top: clamp(44px, 7vw, 70px);
    border-top: 1px solid rgba(16,16,16,.11);
}

.subscribe-links h2 {
    margin: 0 0 28px;
    color: rgba(36,45,56,.58);
    font-size: clamp(20px, 2.4vw, 31px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .08em;
}

.subscribe-links a {
    display: block;
    margin: 0 0 21px;
    color: rgba(16,16,16,.82);
    font-size: clamp(19px, 2.35vw, 29px);
    line-height: 1.24;
    letter-spacing: .035em;
}

.subscribe-links a:hover {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

@media (max-width: 760px) {
    .subscribe-page {
        padding: 116px 0 72px;
    }

    .subscribe-container {
        width: min(100% - 46px, 680px);
    }

    .subscribe-hero {
        margin-bottom: 86px;
        text-align: center;
    }

    .subscribe-kicker {
        display: none;
    }

    .subscribe-hero h1 {
        font-size: clamp(34px, 8vw, 44px);
        line-height: 1.02;
        letter-spacing: -.05em;
        margin-bottom: 24px;
        white-space: normal;
    }

    .subscribe-lead {
        margin: 0 auto;
        max-width: 100%;
        font-size: clamp(18px, 4.35vw, 21px);
        line-height: 1.5;
        letter-spacing: .02em;
        text-align: center;
    }

    .subscribe-form {
        margin-bottom: 82px;
        gap: 12px;
    }

    .subscribe-form input {
        min-height: 64px;
        border-radius: 8px;
        padding: 0 25px;
        font-size: 18px;
        letter-spacing: .05em;
    }

    .subscribe-submit {
        width: min(342px, 82%);
        min-height: 74px;
        margin-top: 66px;
        font-size: 25px;
    }

    .subscribe-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 48px;
    }

    .subscribe-links h2 {
        margin-bottom: 28px;
        font-size: 16px;
        letter-spacing: .055em;
    }

    .subscribe-links a {
        margin-bottom: 17px;
        font-size: 16px;
        letter-spacing: .035em;
    }
}

@media (max-width: 380px) {
    .subscribe-container {
        width: calc(100% - 36px);
    }

    .subscribe-links {
        gap: 26px;
    }
}


.websites-testimonials-section {
    padding-bottom: clamp(44px, 7vw, 78px);
}

.websites-founder-section {
    padding-top: clamp(38px, 6vw, 66px);
}

@media (max-width: 760px) {
    .websites-testimonials-section {
        padding-bottom: 38px;
    }
    .websites-founder-section {
        padding-top: 38px;
    }
}


/* SEO tabs section v20260523_seo_tabs_01 */
.websites-seo-section {
    padding: clamp(86px, 12vw, 150px) 0 clamp(96px, 13vw, 160px);
    background: #f7f7f5;
    color: #181818;
}

.websites-seo {
    max-width: 1060px;
}

.websites-seo-main-tabs {
    display: flex;
    align-items: center;
    gap: clamp(36px, 8vw, 94px);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin: 0 0 clamp(58px, 9vw, 86px);
    padding: 0 0 4px;
    scrollbar-width: none;
}

.websites-seo-main-tabs::-webkit-scrollbar,
.websites-seo-pill-row::-webkit-scrollbar {
    display: none;
}

.websites-seo-main-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 0;
    background: transparent;
    color: rgba(24, 24, 24, .30);
    font: inherit;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.055em;
    padding: 0;
    cursor: pointer;
    transition: color .22s ease, opacity .22s ease;
}

.websites-seo-main-tab.is-active {
    color: #181818;
}

.websites-seo-main-tab:hover {
    color: rgba(24, 24, 24, .72);
}

.websites-seo-panel {
    display: none;
}

.websites-seo-panel.is-active {
    display: block;
    animation: seoPanelIn .28s ease both;
}

@keyframes seoPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.websites-seo-pill-row {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    width: 100%;
    margin: 0 0 clamp(52px, 8vw, 78px);
    padding: 0 0 4px;
    scrollbar-width: none;
}

.websites-seo-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: clamp(42px, 5.2vw, 54px);
    border: 1px solid rgba(24,24,24,.20);
    border-radius: 999px;
    background: transparent;
    color: rgba(24,24,24,.86);
    padding: 0 clamp(20px, 3.6vw, 34px);
    font: inherit;
    font-size: clamp(18px, 2.6vw, 25px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.025em;
    white-space: nowrap;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .2s ease;
}

.websites-seo-pill.is-active {
    background: #1d1d1d;
    border-color: #1d1d1d;
    color: #fff;
}

.websites-seo-pill:hover {
    transform: translateY(-1px);
}

.websites-seo-copy {
    display: none;
    max-width: 860px;
    color: rgba(24,24,24,.86);
}

.websites-seo-copy.is-active {
    display: block;
    animation: seoCopyIn .28s ease both;
}

@keyframes seoCopyIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.websites-seo-copy p {
    margin: 0 0 clamp(22px, 3.4vw, 36px);
    font-size: clamp(24px, 3.45vw, 38px);
    line-height: 1.5;
    letter-spacing: -.015em;
}

.websites-seo-copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .websites-seo-section {
        padding: 72px 0 96px;
    }

    .websites-seo-main-tabs {
        gap: 40px;
        margin-bottom: 48px;
        padding-left: 0;
        padding-right: 20px;
    }

    .websites-seo-main-tab {
        font-size: 34px;
        letter-spacing: -.045em;
    }

    .websites-seo-pill-row {
        gap: 12px;
        margin-bottom: 40px;
        padding-right: 28px;
    }

    .websites-seo-pill {
        min-height: 42px;
        padding: 0 20px;
        font-size: 20px;
        letter-spacing: -.025em;
    }

    .websites-seo-copy p {
        font-size: 22px;
        line-height: 1.44;
        letter-spacing: .015em;
        margin-bottom: 18px;
    }
}

@media (max-width: 420px) {
    .websites-seo-main-tab {
        font-size: 31px;
    }

    .websites-seo-main-tabs {
        gap: 32px;
    }

    .websites-seo-pill {
        font-size: 18px;
    }

    .websites-seo-copy p {
        font-size: 20px;
        line-height: 1.48;
    }
}


/* Fix v20260523_clients_white_static_realizacje */
.websites-clients-section {
    background: #fff !important;
    padding-bottom: clamp(54px, 7vw, 82px) !important;
}
.websites-cases-section {
    background: #fff !important;
    padding-top: clamp(38px, 5.5vw, 66px) !important;
}
.websites-cases,
.websites-cases-heading {
    opacity: 1 !important;
    transform: none !important;
}
.websites-cases-heading {
    visibility: visible !important;
}
@media (max-width: 640px) {
    .websites-clients-section {
        padding-bottom: 58px !important;
        background: #fff !important;
    }
    .websites-cases-section {
        padding-top: 42px !important;
        background: #fff !important;
    }
}

/* About page rebuild v20260524_about_01 */
.page-o-nas main {
    background: #f7f7f5;
}

.about-page {
    background: #f7f7f5;
    color: #181818;
}

.about-hero-section {
    padding: clamp(128px, 18vw, 210px) 0 clamp(82px, 13vw, 146px);
}

.about-hero-wrap,
.about-values-wrap,
.about-capabilities-wrap,
.about-leadership-wrap {
    max-width: 980px;
}

.about-eyebrow {
    margin: 0 0 30px;
    color: rgba(24, 24, 24, .58);
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-hero-wrap h1 {
    margin: 0 0 clamp(30px, 5vw, 54px);
    text-align: center;
    color: #181818;
    font-size: clamp(54px, 9vw, 96px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.06em;
}

.about-hero-lead {
    max-width: 770px;
    margin: 0 auto clamp(104px, 16vw, 170px);
    text-align: center;
    color: rgba(24, 24, 24, .86);
    font-size: clamp(24px, 3.3vw, 36px);
    line-height: 1.45;
    letter-spacing: -.025em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-stats article {
    border-bottom: 1px solid rgba(24, 24, 24, .14);
    padding-bottom: 22px;
}

.about-stats span {
    display: block;
    min-height: 42px;
    margin: 0 0 12px;
    color: #181818;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.02em;
}

.about-stats strong {
    display: block;
    color: #111;
    font-size: clamp(62px, 8vw, 92px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.06em;
}

.about-values-section {
    padding: clamp(16px, 3vw, 34px) 0 clamp(76px, 10vw, 120px);
}

.about-values-wrap h2,
.about-capabilities-wrap h2,
.about-leadership-wrap h2 {
    margin: 0 0 clamp(42px, 6vw, 68px);
    color: #181818;
    font-size: clamp(42px, 6.6vw, 70px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -.055em;
}

.about-values-list {
    display: grid;
    gap: 0;
}

.about-value-item {
    border-bottom: 1px solid rgba(24, 24, 24, .12);
    padding: clamp(34px, 5vw, 50px) 0;
}

.about-value-item:first-child {
    border-top: 1px solid rgba(24, 24, 24, .12);
}

.about-value-item h3 {
    margin: 0 0 20px;
    color: #181818;
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.05em;
}

.about-value-item p {
    max-width: 850px;
    margin: 0;
    color: rgba(24, 24, 24, .82);
    font-size: clamp(20px, 2.7vw, 30px);
    line-height: 1.42;
    letter-spacing: -.015em;
}

.about-capabilities-section {
    padding: clamp(48px, 8vw, 92px) 0 clamp(84px, 12vw, 132px);
}

.about-capabilities {
    display: grid;
    gap: 16px;
}

.about-capability {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, .46);
}

.about-capability-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 0;
    background: transparent;
    padding: clamp(24px, 4vw, 34px) clamp(28px, 4.8vw, 48px);
    color: #181818;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.about-capability-toggle span:first-child {
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.05em;
}

.about-capability-symbol {
    flex: 0 0 auto;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1;
    font-weight: 300;
}

.about-capability-panel {
    display: none;
    padding: 0 clamp(28px, 4.8vw, 48px) clamp(30px, 5vw, 44px);
}

.about-capability.is-open .about-capability-panel {
    display: block;
}

.about-capability-panel p {
    max-width: 790px;
    margin: 0 0 28px;
    color: rgba(24, 24, 24, .82);
    font-size: clamp(20px, 2.7vw, 30px);
    line-height: 1.45;
    letter-spacing: -.015em;
}

.about-capability-panel ul {
    margin: 0;
    padding-left: 28px;
    color: rgba(24, 24, 24, .84);
    font-size: clamp(18px, 2.5vw, 27px);
    line-height: 1.55;
    letter-spacing: -.01em;
}

.about-leadership-section {
    padding: clamp(56px, 8vw, 92px) 0 clamp(120px, 16vw, 180px);
}

.about-leadership-copy {
    max-width: 820px;
    margin: calc(clamp(42px, 6vw, 68px) * -0.3) 0 clamp(48px, 7vw, 72px);
    color: rgba(24, 24, 24, .84);
    font-size: clamp(21px, 2.9vw, 32px);
    line-height: 1.46;
    letter-spacing: -.02em;
}

.about-leadership-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    padding: clamp(18px, 2.5vw, 22px) clamp(28px, 4.3vw, 46px) clamp(18px, 2.5vw, 22px) clamp(18px, 2.6vw, 28px);
    border: 1px solid rgba(24, 24, 24, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
    color: #181818;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.about-leadership-card:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 24, 24, .32);
    background: rgba(255, 255, 255, .58);
}

.about-leadership-person {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 32px);
    min-width: 0;
}

.about-leadership-person img {
    width: clamp(76px, 10vw, 112px);
    height: clamp(76px, 10vw, 112px);
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-leadership-person strong {
    display: block;
    margin-bottom: 8px;
    color: #181818;
    font-size: clamp(24px, 3.3vw, 36px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.04em;
}

.about-leadership-person em {
    display: block;
    color: rgba(24, 24, 24, .72);
    font-style: normal;
    font-size: clamp(18px, 2.4vw, 27px);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.about-leadership-contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    color: #181818;
}

.about-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(42px, 5.2vw, 54px);
    height: clamp(42px, 5.2vw, 54px);
    border-radius: 13px;
    background: #25D366;
    color: #fff;
}

.about-whatsapp-icon svg {
    width: 62%;
    height: 62%;
}

.about-contact-number {
    color: rgba(24, 24, 24, .82);
    font-size: clamp(17px, 2.1vw, 22px);
    line-height: 1;
    letter-spacing: -.01em;
}

.about-contact-arrow {
    color: #181818;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1;
}

@media (max-width: 740px) {
    .about-hero-section {
        padding: 116px 0 74px;
    }

    .about-hero-wrap h1 {
        margin-bottom: 24px;
        font-size: 54px;
        text-align: center;
    }

    .about-hero-lead {
        margin-bottom: 96px;
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: -.01em;
    }

    .about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .about-stats article {
        padding-bottom: 16px;
    }

    .about-stats span {
        min-height: 36px;
        font-size: 12px;
        line-height: 1.18;
    }

    .about-stats strong {
        font-size: 42px;
        letter-spacing: -.05em;
    }

    .about-values-section {
        padding-bottom: 70px;
    }

    .about-values-wrap h2,
    .about-capabilities-wrap h2,
    .about-leadership-wrap h2 {
        margin-bottom: 36px;
        font-size: 34px;
        letter-spacing: -.045em;
    }

    .about-value-item {
        padding: 28px 0;
    }

    .about-value-item h3 {
        margin-bottom: 16px;
        font-size: 26px;
    }

    .about-value-item p {
        font-size: 17px;
        line-height: 1.52;
    }

    .about-capabilities-section {
        padding: 54px 0 74px;
    }

    .about-capabilities {
        gap: 10px;
    }

    .about-capability {
        border-radius: 9px;
    }

    .about-capability-toggle {
        padding: 22px 20px;
        gap: 16px;
    }

    .about-capability-toggle span:first-child {
        font-size: 24px;
        line-height: 1.08;
    }

    .about-capability-symbol {
        font-size: 31px;
    }

    .about-capability-panel {
        padding: 0 20px 24px;
    }

    .about-capability-panel p {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.5;
    }

    .about-capability-panel ul {
        padding-left: 21px;
        font-size: 16px;
        line-height: 1.55;
    }

    .about-leadership-section {
        padding: 54px 0 94px;
    }

    .about-leadership-copy {
        margin-top: -12px;
        margin-bottom: 36px;
        font-size: 17px;
        line-height: 1.5;
    }

    .about-leadership-card {
        align-items: center;
        gap: 14px;
        padding: 14px 16px 14px 14px;
    }

    .about-leadership-person {
        gap: 14px;
    }

    .about-leadership-person img {
        width: 58px;
        height: 58px;
    }

    .about-leadership-person strong {
        margin-bottom: 4px;
        font-size: 15px;
        letter-spacing: -.015em;
    }

    .about-leadership-person em {
        font-size: 13px;
    }

    .about-leadership-contact {
        gap: 8px;
    }

    .about-whatsapp-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .about-contact-number {
        display: none;
    }

    .about-contact-arrow {
        font-size: 22px;
    }
}


/* Fix v20260524_about_header_stats_02 */
body.page-o-nas .site-header:not(.is-scrolled):not(.menu-open),
body.page-o-nas .site-header,
body.page-o-nas .site-header.home-header {
    color: #181818 !important;
}

body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .brand-text,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .desktop-nav a,
body.page-o-nas .site-header .brand-text,
body.page-o-nas .site-header .desktop-nav a {
    color: #181818 !important;
}

body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .menu-button span,
body.page-o-nas:not(.menu-open) .site-header:not(.is-scrolled) .circle-menu span,
body.page-o-nas .site-header .menu-button span,
body.page-o-nas .site-header .circle-menu span {
    background: #181818 !important;
}

body.page-o-nas .site-header .menu-button,
body.page-o-nas .site-header .circle-menu {
    border-color: rgba(24,24,24,.72) !important;
}

.about-stats article > span {
    display: block;
    min-height: 42px;
    margin: 0 0 12px;
    color: #181818;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.02em;
}

.about-stats strong,
.about-stats strong .stats-counter {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: #111 !important;
    font-size: clamp(62px, 8vw, 92px) !important;
    line-height: .9 !important;
    font-weight: 500 !important;
    letter-spacing: -.06em !important;
}

@media (max-width: 740px) {
    .about-stats article > span {
        min-height: 42px !important;
        font-size: 15px !important;
        line-height: 1.18 !important;
        font-weight: 800 !important;
        margin-bottom: 12px !important;
    }

    .about-stats strong,
    .about-stats strong .stats-counter {
        font-size: 50px !important;
        line-height: .92 !important;
        letter-spacing: -.055em !important;
    }
}

@media (max-width: 430px) {
    .about-stats {
        gap: 18px !important;
    }
    .about-stats article > span {
        font-size: 13px !important;
        min-height: 38px !important;
    }
    .about-stats strong,
    .about-stats strong .stats-counter {
        font-size: 44px !important;
    }
}


/* About reviews + heading cleanup v20260524_about_reviews_01 */
body.page-o-nas,
body.page-o-nas .about-page,
body.page-o-nas .about-page h1,
body.page-o-nas .about-page h2,
body.page-o-nas .about-page h3,
body.page-o-nas .about-page p,
body.page-o-nas .about-page strong,
body.page-o-nas .about-page span,
body.page-o-nas .about-page button,
body.page-o-nas .about-page a,
body.page-o-nas .websites-testimonials-section,
body.page-o-nas .websites-testimonials-section h2,
body.page-o-nas .websites-testimonials-section p,
body.page-o-nas .websites-testimonials-section strong,
body.page-o-nas .websites-testimonials-section span,
body.page-o-nas .websites-testimonials-section button {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body.page-o-nas .about-hero-wrap h1,
body.page-o-nas .about-values-wrap h2,
body.page-o-nas .about-capabilities-wrap h2,
body.page-o-nas .about-leadership-wrap h2,
body.page-o-nas .about-testimonials-heading h2 {
    font-family: "Inter", system-ui, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -.055em !important;
}

body.page-o-nas .about-testimonials-section {
    padding: clamp(66px, 10vw, 116px) 0 clamp(72px, 10vw, 124px) !important;
    background: #f7f7f5 !important;
}

body.page-o-nas .about-testimonials {
    max-width: 980px;
}

body.page-o-nas .about-testimonials-heading h2 {
    color: #181818 !important;
    font-size: clamp(42px, 6.6vw, 70px) !important;
    line-height: .96 !important;
}

body.page-o-nas .about-testimonials .websites-testimonial-company {
    color: #181818 !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
}

body.page-o-nas .about-testimonials .websites-testimonial-quote {
    max-width: 820px;
    color: rgba(24,24,24,.86);
}

body.page-o-nas .about-leadership-section {
    padding-top: clamp(38px, 6vw, 70px) !important;
}

@media (max-width: 740px) {
    body.page-o-nas .about-testimonials-section {
        padding: 58px 0 64px !important;
    }

    body.page-o-nas .about-testimonials-heading h2 {
        font-size: 34px !important;
        letter-spacing: -.045em !important;
    }

    body.page-o-nas .about-testimonials .websites-testimonial-company {
        font-size: 18px !important;
    }

    body.page-o-nas .about-leadership-section {
        padding-top: 46px !important;
    }
}


/* About static clients/brands v20260524_about_brands_01 */
.about-brands-section {
    padding: clamp(8px, 2vw, 24px) 0 clamp(46px, 7vw, 76px);
    background: #f7f7f5;
}

.about-brands-wrap {
    max-width: 980px;
}

.about-brands-wrap h2 {
    margin: 0 0 clamp(20px, 3vw, 28px);
    text-align: center;
    color: #181818;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(42px, 6.4vw, 68px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.055em;
}

.about-brands-lead {
    max-width: 760px;
    margin: 0 auto clamp(42px, 6vw, 62px);
    text-align: center;
    color: rgba(24, 24, 24, .82);
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(20px, 2.8vw, 30px);
    line-height: 1.45;
    letter-spacing: -.015em;
}

.about-brands-pills {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 clamp(54px, 7vw, 76px);
    margin: 0 calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.about-brands-pills::-webkit-scrollbar {
    display: none;
}

.about-brands-pills span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: rgba(24, 24, 24, .06);
    color: rgba(24, 24, 24, .78);
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.about-brands-pills span.is-active {
    background: #2f7df6;
    color: #fff;
}

.about-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(18px, 5vw, 72px);
    row-gap: clamp(42px, 7vw, 78px);
    align-items: center;
}

.about-brand-item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #181818;
}

.about-brand-wordmark {
    min-height: 42px;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -.045em;
    white-space: normal;
}

.about-brand-wordmark:not(.about-brand-serif) {
    font-size: clamp(20px, 2.55vw, 29px);
}

body.page-o-nas .about-brands-section,
body.page-o-nas .about-brands-section h2,
body.page-o-nas .about-brands-section p,
body.page-o-nas .about-brands-section span,
body.page-o-nas .about-brands-section article {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.page-o-nas .about-brand-wordmark {
    font-family: "Playfair Display", Georgia, serif !important;
}

@media (max-width: 740px) {
    .about-brands-section {
        padding: 8px 0 48px;
    }

    .about-brands-wrap h2 {
        margin-bottom: 16px;
        font-size: 34px;
        letter-spacing: -.045em;
    }

    .about-brands-lead {
        margin-bottom: 36px;
        font-size: 17px;
        line-height: 1.5;
        letter-spacing: .002em;
    }

    .about-brands-pills {
        gap: 10px;
        padding-bottom: 52px;
    }

    .about-brands-pills span {
        min-height: 42px;
        padding: 0 18px;
        font-size: 14px;
    }

    .about-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 56px;
    }

    .about-brand-wordmark {
        min-height: 36px;
        font-size: 22px;
        letter-spacing: -.04em;
    }

    .about-brand-wordmark:not(.about-brand-serif) {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .about-brand-grid {
        column-gap: 12px;
        row-gap: 46px;
    }

    .about-brand-wordmark {
        font-size: 20px;
    }

    .about-brand-wordmark:not(.about-brand-serif) {
        font-size: 14px;
    }
}


/* About CTA + newsletter after brands v20260524_about_newsletter_01 */
.about-after-brands-section {
    padding: 0 0 clamp(84px, 12vw, 138px);
    background: #f7f7f5;
}

.about-after-brands-wrap {
    max-width: 980px;
}

.about-talk-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 690px);
    min-height: 98px;
    margin: 0 auto clamp(74px, 10vw, 118px);
    padding: 0 42px 0 52px;
    border-radius: 999px;
    background: #202022;
    color: #fff;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(30px, 4.2vw, 42px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.035em;
    box-shadow: 0 18px 42px rgba(16,16,16,.14);
    transition: transform .22s ease, box-shadow .22s ease;
}

.about-talk-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(16,16,16,.18);
}

.about-talk-pill strong {
    font-size: clamp(46px, 5.8vw, 60px);
    line-height: 1;
    font-weight: 400;
    transform: translateY(-1px);
}

.about-newsletter-card {
    display: grid;
    gap: clamp(28px, 4vw, 38px);
    padding: clamp(30px, 5vw, 58px);
    border-radius: 32px;
    background: #eeeeec;
}

.about-newsletter-copy h2 {
    margin: 0 0 16px;
    color: #181818;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(34px, 5.4vw, 62px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -.05em;
}

.about-newsletter-copy p {
    max-width: 780px;
    margin: 0;
    color: rgba(24,24,24,.78);
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(19px, 2.45vw, 28px);
    line-height: 1.48;
    letter-spacing: -.015em;
}

.about-newsletter-form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-newsletter-form input {
    flex: 1 1 300px;
    min-height: 76px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #f8f8f6;
    color: #181818;
    font: inherit;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(17px, 2vw, 21px);
    letter-spacing: .01em;
    outline: none;
}

.about-newsletter-form input::placeholder {
    color: rgba(24,24,24,.42);
}

.about-newsletter-form input:focus {
    box-shadow: inset 0 0 0 1.5px rgba(24,24,24,.24);
}

.about-newsletter-form button {
    flex: 0 0 auto;
    min-height: 76px;
    padding: 0 38px;
    border-radius: 999px;
    border: 1.5px solid rgba(24,24,24,.78);
    background: transparent;
    color: #202022;
    font: inherit;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1;
    letter-spacing: -.025em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.about-newsletter-form button:hover {
    background: #202022;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 740px) {
    .about-after-brands-section {
        padding-bottom: 86px;
    }

    .about-talk-pill {
        width: calc(100% - 28px);
        min-height: 82px;
        margin-bottom: 72px;
        padding: 0 26px 0 32px;
        font-size: 25px;
    }

    .about-talk-pill strong {
        font-size: 40px;
    }

    .about-newsletter-card {
        gap: 24px;
        padding: 28px 24px 32px;
        border-radius: 26px;
    }

    .about-newsletter-copy h2 {
        margin-bottom: 12px;
        font-size: 27px;
        letter-spacing: -.035em;
    }

    .about-newsletter-copy p {
        font-size: 17px;
        line-height: 1.48;
        letter-spacing: .002em;
    }

    .about-newsletter-form {
        gap: 14px;
    }

    .about-newsletter-form input,
    .about-newsletter-form button {
        width: 100%;
        min-height: 64px;
    }

    .about-newsletter-form input {
        padding: 0 22px;
        font-size: 16px;
    }

    .about-newsletter-form button {
        justify-content: center;
        font-size: 20px;
    }
}


.blog-placeholder-page {
    min-height: 72vh;
    padding: clamp(118px, 18vw, 190px) 0 clamp(90px, 14vw, 150px);
    background: #f7f7f5;
}

.blog-placeholder {
    text-align: center;
    max-width: 880px;
}

.blog-placeholder-kicker {
    margin: 0 0 24px;
    color: rgba(16,16,16,.56);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 700;
}

.blog-placeholder h1 {
    margin: 0 0 26px;
    color: #181818;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(54px, 9vw, 104px);
    line-height: .95;
    letter-spacing: -.07em;
    font-weight: 800;
}

.blog-placeholder p {
    margin: 0 auto;
    max-width: 680px;
    color: rgba(16,16,16,.78);
    font-size: clamp(18px, 2.6vw, 28px);
    line-height: 1.45;
    letter-spacing: -.015em;
}

@media (max-width: 640px) {
    .blog-placeholder-page {
        padding: 108px 0 88px;
    }
    .blog-placeholder {
        text-align: left;
    }
    .blog-placeholder h1 {
        font-size: 50px;
    }
    .blog-placeholder p {
        font-size: 17px;
    }
}


/* Combined services menu/pages */
.service-detail-page {
    padding: clamp(128px, 18vw, 190px) 0 clamp(76px, 10vw, 120px);
    background: #f7f7f5;
}

.service-detail {
    max-width: 980px;
}

.service-detail-kicker {
    margin: 0 0 28px;
    color: rgba(16,16,16,.54);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 800;
    font-size: 14px;
}

.service-detail h1 {
    max-width: 900px;
    margin: 0 0 30px;
    color: #181818;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(56px, 9vw, 116px);
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 800;
}

.service-detail-lead {
    max-width: 760px;
    margin: 0 0 44px;
    color: rgba(16,16,16,.78);
    font-size: clamp(22px, 3.1vw, 34px);
    line-height: 1.42;
    letter-spacing: -.02em;
}

.service-detail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-width: min(430px, 100%);
    min-height: 86px;
    padding: 0 36px;
    border: 2px solid #181818;
    border-radius: 999px;
    color: #181818;
    text-decoration: none;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1;
    letter-spacing: -.03em;
    transition: background .28s ease, color .28s ease, transform .28s ease;
}

.service-detail-cta:hover {
    background: #181818;
    color: #fff;
    transform: translateY(-2px);
}

.service-detail-grid-section {
    padding: 0 0 clamp(90px, 13vw, 160px);
    background: #f7f7f5;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(16,16,16,.12);
}

.service-detail-grid article {
    padding: 38px 28px 34px 0;
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.service-detail-grid article:not(:last-child) {
    border-right: 1px solid rgba(16,16,16,.12);
    padding-left: 0;
    padding-right: 28px;
}

.service-detail-grid article + article {
    padding-left: 28px;
}

.service-detail-grid span {
    display: block;
    margin-bottom: 18px;
    color: #a6792e;
    font-size: 14px;
    letter-spacing: .18em;
    font-weight: 800;
}

.service-detail-grid h2 {
    margin: 0 0 16px;
    color: #181818;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 800;
}

.service-detail-grid p {
    margin: 0;
    color: rgba(16,16,16,.72);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.48;
    letter-spacing: -.01em;
}

@media (max-width: 760px) {
    .service-detail-page {
        padding: 118px 0 64px;
    }
    .service-detail h1 {
        font-size: 54px;
        letter-spacing: -.065em;
    }
    .service-detail-lead {
        font-size: 21px;
        line-height: 1.42;
        margin-bottom: 34px;
    }
    .service-detail-cta {
        min-width: 0;
        width: 100%;
        min-height: 74px;
        padding: 0 28px;
        font-size: 24px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-grid article,
    .service-detail-grid article:not(:last-child),
    .service-detail-grid article + article {
        border-right: 0;
        padding: 28px 0;
    }
}

/* Sklepy online — Ramotion-style reference layout with supplied abstract background */
.shops-reference-page {
    padding: calc(var(--header-height) + 26px) 0 clamp(72px, 9vw, 118px);
    background: #f7f7f5;
    color: #303030;
}

.shops-reference-shell {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
}

.shops-reference-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(360px, 43vw, 520px);
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(6, 8, 22, .04), rgba(6, 8, 22, .18)),
        url('../img/sklepy-online-hero-bg.png') center / cover no-repeat;
    box-shadow: 0 28px 72px rgba(16,16,16,.08);
}

.shops-reference-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18));
}

.shops-reference-card h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(780px, 88%);
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(58px, 8vw, 108px);
    line-height: 1.06;
    letter-spacing: -.075em;
    text-align: center;
    text-transform: none;
    font-weight: 800;
    text-shadow: 0 12px 32px rgba(0,0,0,.20);
}

.shops-reference-card h1 span {
    display: block;
}

.shops-reference-lead {
    max-width: 860px;
    margin: clamp(34px, 4vw, 52px) 0 0;
    color: #303030;
    font-size: clamp(23px, 2.7vw, 34px);
    line-height: 1.44;
    letter-spacing: -.026em;
    font-weight: 400;
}

.shops-reference-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-width: min(430px, 100%);
    min-height: 82px;
    margin-top: clamp(34px, 4vw, 52px);
    padding: 0 38px 0 42px;
    border: 1.5px solid #242424;
    border-radius: 999px;
    color: #303030;
    background: transparent;
    font-size: clamp(22px, 2.2vw, 29px);
    line-height: 1;
    letter-spacing: -.035em;
    transition: background .28s ease, color .28s ease, transform .28s ease;
}

.shops-reference-cta span {
    font-size: 38px;
    line-height: .7;
    font-weight: 300;
}

.shops-reference-cta:hover {
    background: #242424;
    color: #fff;
    transform: translateY(-2px);
}

.shops-reference-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 62px) clamp(22px, 3.2vw, 40px);
    margin-top: clamp(96px, 11vw, 146px);
}

.shops-reference-stats article {
    min-height: clamp(138px, 17vw, 180px);
    padding: 0 0 clamp(22px, 3vw, 30px);
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.shops-reference-stats article > span {
    display: block;
    min-height: clamp(44px, 6vw, 56px);
    margin: 0 0 clamp(18px, 2.4vw, 24px);
    color: #2a2a2a;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 700;
}

.shops-reference-stats strong,
.shops-reference-stats strong .stats-counter {
    display: block;
    margin: 0;
    color: #111;
    font-size: clamp(64px, 8.6vw, 92px);
    line-height: .88;
    letter-spacing: -.065em;
    font-weight: 600;
}

.shops-reference-clients-section {
    padding: clamp(104px, 12vw, 152px) 0 0;
    background: #f7f7f5;
}

.shops-reference-clients h2 {
    margin: 0 0 clamp(56px, 7vw, 84px);
    color: #111;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-clients p {
    max-width: 700px;
    margin: 0 clamp(24px, 8vw, 90px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(21px, 2.9vw, 32px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.shops-reference-clients .client-logo-rotator {
    margin-top: clamp(54px, 8vw, 84px);
}

.shops-reference-cases-section {
    padding: clamp(112px, 13vw, 164px) 0 0;
    background: #f7f7f5;
}

.shops-reference-cases-heading {
    position: relative;
    z-index: 1;
    margin: 0 0 clamp(46px, 6vw, 72px);
    padding: 0;
    background: transparent;
}

.shops-reference-cases-heading h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
    font-size: clamp(42px, 6.1vw, 72px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-cases-heading a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #252525;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1;
    letter-spacing: -.02em;
    text-decoration: none;
}

.shops-reference-cases-heading a span {
    font-size: 1.2em;
    line-height: .8;
}

.shops-reference-cases > p {
    max-width: 720px;
    margin: 0 clamp(18px, 7vw, 82px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.shops-reference-project-feed {
    margin-top: clamp(56px, 8vw, 88px);
}

.shops-reference-grid-section {
    padding-top: clamp(92px, 11vw, 138px);
    background: #f7f7f5;
}

.shops-reference-grid {
    max-width: 980px;
}

@media (max-width: 760px) {
    .shops-reference-page {
        padding: calc(var(--header-height) + 2px) 0 72px;
    }

    .shops-reference-shell {
        width: min(100% - 52px, 520px);
    }

    .shops-reference-card {
        min-height: 257px;
        border-radius: 8px;
        background-position: center center;
        box-shadow: none;
    }

    .shops-reference-card h1 {
        max-width: 92%;
        font-size: clamp(44px, 12.3vw, 66px);
        line-height: 1.08;
        letter-spacing: -.07em;
    }

    .shops-reference-lead {
        margin-top: 34px;
        font-size: clamp(21px, 5.7vw, 28px);
        line-height: 1.43;
        letter-spacing: -.025em;
    }

    .shops-reference-cta {
        min-width: min(216px, 100%);
        width: auto;
        min-height: 64px;
        margin-top: 28px;
        padding: 0 22px 0 52px;
        gap: 26px;
        border-width: 1px;
        font-size: 18px;
    }

    .shops-reference-cta span {
        font-size: 29px;
    }

    .shops-reference-stats {
        margin-top: 84px;
        gap: 34px 22px;
    }

    .shops-reference-stats article {
        min-height: 148px;
        padding-bottom: 18px;
    }

    .shops-reference-stats article > span {
        min-height: 54px;
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.22;
    }

    .shops-reference-stats strong,
    .shops-reference-stats strong .stats-counter {
        font-size: 54px;
        line-height: .88;
    }

    .shops-reference-clients-section {
        padding-top: 94px;
    }

    .shops-reference-clients h2 {
        margin-bottom: 54px;
        font-size: clamp(28px, 7.45vw, 36px);
        letter-spacing: -.045em;
    }

    .shops-reference-clients p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 22px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .shops-reference-clients .client-logo-rotator {
        margin-top: 42px;
    }

    .shops-reference-cases-section {
        padding-top: 94px;
    }

    .shops-reference-cases-heading {
        margin-bottom: 46px;
        padding: 0;
    }

    .shops-reference-cases-heading h2 {
        max-width: 420px;
        font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-style: normal;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-cases-heading a {
        font-size: 16px;
    }

    .shops-reference-cases > p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .shops-reference-project-feed {
        margin-top: 48px;
    }
}

@media (max-width: 390px) {
    .shops-reference-shell {
        width: min(100% - 34px, 520px);
    }

    .shops-reference-card {
        min-height: 228px;
    }

    .shops-reference-card h1 {
        font-size: clamp(38px, 12vw, 49px);
    }

    .shops-reference-lead {
        font-size: 19px;
    }

    .shops-reference-stats {
        gap: 30px 18px;
    }

    .shops-reference-stats article > span {
        min-height: 48px;
        font-size: 13px;
    }

    .shops-reference-stats strong,
    .shops-reference-stats strong .stats-counter {
        font-size: 46px;
    }

    .shops-reference-clients p {
        margin-left: 34px;
        font-size: 19px;
    }

    .shops-reference-cases-heading h2 {
        font-size: 30px;
    }

    .shops-reference-cases > p {
        margin-left: 34px;
        font-size: 19px;
    }
}


/* Shops online testimonials alignment fix v20260524_reviews_company_row */
.shops-reference-testimonials-section .websites-testimonials-topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.shops-reference-testimonials-section .websites-testimonial-company {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}

.shops-reference-testimonials-section .websites-testimonials-controls {
    width: auto;
    margin: 0 0 0 auto;
    align-self: center;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .shops-reference-testimonials-section .websites-testimonials-topbar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin-bottom: 28px;
    }

    .shops-reference-testimonials-section .websites-testimonial-company {
        width: auto;
        max-width: 48%;
        min-height: 0;
        font-size: 18px;
        line-height: 1;
    }

    .shops-reference-testimonials-section .websites-testimonials-controls {
        width: auto !important;
        flex: 0 0 auto;
        align-self: center !important;
        gap: 10px;
    }
}

@media (max-width: 390px) {
    .shops-reference-testimonials-section .websites-testimonial-company {
        max-width: 44%;
        font-size: 17px;
    }

    .shops-reference-testimonials-section .websites-testimonials-controls {
        gap: 8px;
    }
}

/* Shops online founder section v20260524_founder_add */
.shops-reference-founder-section {
    padding: clamp(98px, 12vw, 148px) 0 clamp(28px, 5vw, 40px);
    background: #f7f7f5;
}

.shops-reference-founder-intro {
    text-align: left;
}

.shops-reference-founder-intro h2 {
    max-width: 640px;
}

.shops-reference-founder-intro p {
    margin-left: clamp(72px, 18vw, 190px);
    margin-right: 0;
    max-width: 740px;
}

.shops-reference-founder-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.shops-reference-founder-cta {
    width: min(100%, 368px);
    min-width: 0;
    min-height: 70px;
    margin-top: 0;
    padding: 0 30px 0 34px;
    border-width: 2px;
    font-size: clamp(21px, 2vw, 25px);
}

@media (max-width: 760px) {
    .shops-reference-founder-section {
        padding: 94px 0 18px;
    }

    .shops-reference-founder-intro p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .shops-reference-founder-cta-wrap {
        margin-top: 24px;
    }

    .shops-reference-founder-cta {
        width: min(100%, 360px);
        min-height: 68px;
        padding: 0 26px 0 30px;
        justify-content: space-between;
        border-width: 2px;
        font-size: 18px;
    }
}

@media (max-width: 390px) {
    .shops-reference-founder-intro p {
        margin-left: 34px;
        font-size: 19px;
    }
}

/* Shops online commerce content section v20260524_commerce_info */
.shops-reference-commerce-section {
    padding: clamp(84px, 10vw, 132px) 0 0;
    background: #f7f7f5;
}

.shops-reference-commerce-heading h2,
.shops-reference-commerce-second h2 {
    max-width: 820px;
    margin: 0;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
    font-size: clamp(42px, 6.1vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-commerce-heading p,
.shops-reference-commerce-second p {
    max-width: 740px;
    margin: clamp(32px, 5vw, 52px) clamp(18px, 7vw, 82px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.shops-reference-commerce-blocks {
    margin-top: clamp(64px, 8.2vw, 98px);
    border-top: 1px solid rgba(16,16,16,.12);
}

.shops-reference-commerce-blocks article {
    padding: clamp(28px, 4.4vw, 46px) 0 clamp(30px, 4.6vw, 50px);
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.shops-reference-commerce-blocks h3 {
    max-width: 830px;
    margin: 0 0 clamp(22px, 3vw, 34px);
    color: #181818;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(29px, 4.2vw, 48px);
    line-height: 1.12;
    letter-spacing: -.045em;
    font-weight: 800;
}

.shops-reference-commerce-blocks p {
    max-width: 860px;
    margin: 0;
    color: rgba(16,16,16,.82);
    font-size: clamp(18px, 2.12vw, 25px);
    line-height: 1.47;
    letter-spacing: -.012em;
}

.shops-reference-commerce-blocks p + p {
    margin-top: clamp(18px, 2.4vw, 28px);
}

.shops-reference-commerce-second {
    margin-top: clamp(108px, 13vw, 168px);
}

@media (max-width: 760px) {
    .shops-reference-commerce-section {
        padding-top: 86px;
    }

    .shops-reference-commerce-heading h2,
    .shops-reference-commerce-second h2 {
        max-width: 440px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-commerce-heading p,
    .shops-reference-commerce-second p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .shops-reference-commerce-blocks {
        margin-top: 50px;
    }

    .shops-reference-commerce-blocks article {
        padding: 28px 0 32px;
    }

    .shops-reference-commerce-blocks h3 {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 1.16;
        letter-spacing: -.035em;
    }

    .shops-reference-commerce-blocks p {
        font-size: 18px;
        line-height: 1.48;
        letter-spacing: -.005em;
    }

    .shops-reference-commerce-blocks p + p {
        margin-top: 20px;
    }

    .shops-reference-commerce-second {
        margin-top: 88px;
    }
}

@media (max-width: 390px) {
    .shops-reference-commerce-heading h2,
    .shops-reference-commerce-second h2 {
        font-size: 30px;
    }

    .shops-reference-commerce-heading p,
    .shops-reference-commerce-second p {
        margin-left: 34px;
        font-size: 19px;
    }

    .shops-reference-commerce-blocks h3 {
        font-size: 24px;
    }

    .shops-reference-commerce-blocks p {
        font-size: 16.5px;
    }
}


/* Shops online light purple benefits cards v20260524_benefits_cards */
.shops-reference-benefits-section {
    padding: clamp(88px, 11vw, 138px) 0 clamp(92px, 12vw, 148px);
    background: #f7f7f5;
}

.shops-reference-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.shops-reference-benefit-card {
    padding: clamp(28px, 3.4vw, 38px);
    border-radius: 24px;
    background: #ece6f8;
    color: #403c52;
    box-shadow: 0 8px 24px rgba(96, 76, 130, 0.06);
}

.shops-reference-benefit-card:nth-child(2n) {
    background: #eee9fb;
}

.shops-reference-benefit-card:last-child {
    grid-column: 1 / -1;
}

.shops-reference-benefit-card span {
    display: block;
    margin-bottom: 18px;
    color: #7f65b1;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .18em;
    font-weight: 800;
}

.shops-reference-benefit-card h3 {
    margin: 0 0 20px;
    color: #312d42;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.16;
    letter-spacing: -.04em;
    font-weight: 800;
}

.shops-reference-benefit-card p {
    margin: 0;
    color: rgba(49,45,66,.9);
    font-size: clamp(17px, 1.85vw, 22px);
    line-height: 1.52;
    letter-spacing: -.012em;
}

.shops-reference-benefit-card p + p {
    margin-top: 18px;
}

.shops-reference-benefit-card strong {
    color: #2b243f;
    font-weight: 700;
}

@media (max-width: 760px) {
    .shops-reference-benefits-section {
        padding: 76px 0 94px;
    }

    .shops-reference-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .shops-reference-benefit-card,
    .shops-reference-benefit-card:last-child {
        grid-column: auto;
        padding: 24px 22px 26px;
        border-radius: 18px;
    }

    .shops-reference-benefit-card h3 {
        font-size: 26px;
        line-height: 1.18;
    }

    .shops-reference-benefit-card p {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .shops-reference-benefit-card h3 {
        font-size: 23px;
    }

    .shops-reference-benefit-card p {
        font-size: 16.5px;
    }
}


/* Shops online final summary section v20260524_summary_after_cards */
.shops-reference-summary-section {
    padding: clamp(92px, 11vw, 144px) 0 clamp(96px, 13vw, 160px);
    background: #f7f7f5;
}

.shops-reference-summary h2 {
    max-width: 840px;
    margin: 0;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-summary p {
    max-width: 760px;
    margin: clamp(32px, 5vw, 52px) clamp(18px, 7vw, 82px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

@media (max-width: 760px) {
    .shops-reference-summary-section {
        padding: 82px 0 104px;
    }

    .shops-reference-summary h2 {
        max-width: 440px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-summary p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }
}

@media (max-width: 390px) {
    .shops-reference-summary h2 {
        font-size: 30px;
    }

    .shops-reference-summary p {
        margin-left: 34px;
        font-size: 19px;
    }
}


/* Shops online scroll pills section v20260524_pills */
.shops-reference-pills-section {
    padding: 0 0 clamp(96px, 12vw, 164px);
    background: #f7f7f5;
}

.shops-reference-pills-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.shops-reference-pills-row::-webkit-scrollbar {
    display: none;
}

.shops-reference-pill {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(16,16,16,.18);
    border-radius: 999px;
    background: #f7f7f5;
    color: #2d2d2d;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(15px, 1.55vw, 20px);
    line-height: 1;
    letter-spacing: -.025em;
    font-weight: 600;
    white-space: nowrap;
    transition: background .24s ease, color .24s ease, border-color .24s ease;
}

.shops-reference-pill.is-active {
    background: #242424;
    border-color: #242424;
    color: #fff;
}

.shops-reference-pill-panels {
    margin-top: clamp(28px, 4vw, 42px);
}

.shops-reference-pill-panel {
    max-width: 880px;
}

.shops-reference-pill-panel ul {
    margin: 0;
    padding-left: clamp(24px, 3vw, 34px);
}

.shops-reference-pill-panel li {
    margin: 0;
    color: rgba(16,16,16,.88);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.45;
    letter-spacing: -.015em;
}

.shops-reference-pill-panel li + li {
    margin-top: 10px;
}

.shops-reference-pill-panel strong {
    color: #202020;
    font-weight: 700;
}

@media (max-width: 760px) {
    .shops-reference-pills-section {
        padding-bottom: 108px;
    }

    .shops-reference-pills-row {
        gap: 10px;
        margin-right: -4px;
        padding-bottom: 4px;
    }

    .shops-reference-pill {
        min-height: 42px;
        padding: 0 16px;
        font-size: 16px;
    }

    .shops-reference-pill-panels {
        margin-top: 24px;
    }

    .shops-reference-pill-panel li {
        font-size: 18px;
        line-height: 1.48;
    }

    .shops-reference-pill-panel li + li {
        margin-top: 8px;
    }
}

@media (max-width: 390px) {
    .shops-reference-pill {
        font-size: 15px;
    }

    .shops-reference-pill-panel li {
        font-size: 16.5px;
    }
}


/* Shops online CTA + accordion section v20260524_included */
.shops-reference-included-section {
    padding: clamp(88px, 11vw, 144px) 0 clamp(96px, 12vw, 160px);
    background: #f7f7f5;
}

.shops-reference-included-cta-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(70px, 10vw, 108px);
}

.shops-reference-included-cta {
    width: min(100%, 378px);
}

.shops-reference-included-heading h2 {
    margin: 0 0 clamp(38px, 5vw, 52px);
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-accordion-list {
    display: grid;
    gap: 12px;
}

.shops-reference-accordion-item {
    border-radius: 14px;
    background: #f1f1f1;
    overflow: hidden;
}

.shops-reference-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(28px, 3.6vw, 36px);
    border: 0;
    background: transparent;
    color: #151515;
    text-align: left;
}

.shops-reference-accordion-trigger > span:first-child {
    max-width: 620px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.16;
    letter-spacing: -.045em;
    font-weight: 800;
}

.shops-reference-accordion-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.shops-reference-accordion-icon::before,
.shops-reference-accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #353535;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .22s ease;
}

.shops-reference-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.shops-reference-accordion-item.is-open .shops-reference-accordion-icon::after {
    opacity: 0;
}

.shops-reference-accordion-panel {
    padding: 0 clamp(28px, 3.6vw, 36px) clamp(28px, 3.6vw, 34px);
}

.shops-reference-accordion-panel ul {
    margin: 0;
    padding-left: 1.1em;
}

.shops-reference-accordion-panel li {
    color: rgba(16,16,16,.86);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.48;
    letter-spacing: -.014em;
}

.shops-reference-accordion-panel li + li {
    margin-top: 10px;
}

@media (max-width: 760px) {
    .shops-reference-included-section {
        padding: 82px 0 104px;
    }

    .shops-reference-included-cta-wrap {
        margin-bottom: 58px;
    }

    .shops-reference-included-heading h2 {
        margin-bottom: 28px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-accordion-list {
        gap: 8px;
    }

    .shops-reference-accordion-item {
        border-radius: 10px;
    }

    .shops-reference-accordion-trigger {
        padding: 24px 22px;
        gap: 14px;
    }

    .shops-reference-accordion-trigger > span:first-child {
        font-size: 24px;
        line-height: 1.22;
    }

    .shops-reference-accordion-icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .shops-reference-accordion-icon::before,
    .shops-reference-accordion-icon::after {
        width: 20px;
    }

    .shops-reference-accordion-panel {
        padding: 0 22px 24px;
    }

    .shops-reference-accordion-panel li {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .shops-reference-accordion-trigger > span:first-child {
        font-size: 20px;
    }

    .shops-reference-accordion-panel li {
        font-size: 16.5px;
    }
}


/* Shops online process section v20260524_process */
.shops-reference-process-section {
    padding: clamp(96px, 12vw, 156px) 0 clamp(110px, 14vw, 176px);
    background: #f7f7f5;
}

.shops-reference-process-heading h2 {
    max-width: 860px;
    margin: 0;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-process-heading p {
    max-width: 760px;
    margin: clamp(32px, 5vw, 52px) clamp(18px, 7vw, 82px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.shops-reference-process-tabs {
    display: flex;
    gap: clamp(24px, 4vw, 56px);
    margin-top: clamp(62px, 8vw, 92px);
}

.shops-reference-process-tabs span {
    color: rgba(16,16,16,.26);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.shops-reference-process-tabs span.is-active {
    color: #111;
}

.shops-reference-process-cards {
    display: flex;
    gap: 24px;
    margin-top: clamp(42px, 6vw, 58px);
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.shops-reference-process-cards::-webkit-scrollbar {
    display: none;
}

.shops-reference-process-card {
    flex: 0 0 min(380px, 82vw);
    min-height: 386px;
    padding: clamp(30px, 4vw, 38px);
    border-radius: 18px;
    background: #e7e7ef;
    color: #4b4b58;
}

.shops-reference-process-card span {
    display: block;
    margin-bottom: 28px;
    color: rgba(60,60,72,.7);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1;
    letter-spacing: -.02em;
    font-weight: 700;
}

.shops-reference-process-card h3 {
    margin: 0 0 28px;
    color: #42424d;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.18;
    letter-spacing: -.04em;
    font-weight: 800;
}

.shops-reference-process-card p {
    margin: 0;
    color: rgba(60,60,72,.9);
    font-size: clamp(18px, 1.9vw, 25px);
    line-height: 1.5;
    letter-spacing: -.012em;
}

.shops-reference-process-card p + p {
    margin-top: 24px;
}

.shops-reference-process-card strong {
    color: #3b3b46;
    font-weight: 700;
}

@media (max-width: 760px) {
    .shops-reference-process-section {
        padding: 86px 0 120px;
    }

    .shops-reference-process-heading h2 {
        max-width: 430px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-process-heading p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .shops-reference-process-tabs {
        gap: 18px;
        margin-top: 52px;
    }

    .shops-reference-process-tabs span {
        font-size: 27px;
        line-height: 1.12;
    }

    .shops-reference-process-cards {
        gap: 16px;
        margin-top: 34px;
    }

    .shops-reference-process-card {
        flex-basis: min(376px, 88vw);
        min-height: 360px;
        padding: 26px 24px 28px;
        border-radius: 16px;
    }

    .shops-reference-process-card span {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .shops-reference-process-card h3 {
        margin-bottom: 22px;
        font-size: 22px;
        line-height: 1.22;
    }

    .shops-reference-process-card p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .shops-reference-process-heading p {
        margin-left: 34px;
        font-size: 19px;
    }

    .shops-reference-process-tabs span {
        font-size: 24px;
    }

    .shops-reference-process-card {
        flex-basis: min(344px, 90vw);
    }

    .shops-reference-process-card p {
        font-size: 16px;
    }
}


/* Shops online important info section v20260524_important */
.shops-reference-important-section {
    padding: clamp(96px, 12vw, 156px) 0 clamp(110px, 14vw, 176px);
    background: #f7f7f5;
}

.shops-reference-important-heading h2 {
    max-width: 860px;
    margin: 0;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.shops-reference-important-heading p {
    max-width: 760px;
    margin: clamp(32px, 5vw, 52px) clamp(18px, 7vw, 82px) clamp(56px, 7vw, 72px) clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

@media (max-width: 760px) {
    .shops-reference-important-section {
        padding: 86px 0 120px;
    }

    .shops-reference-important-heading h2 {
        max-width: 430px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .shops-reference-important-heading p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        margin-bottom: 42px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }
}

@media (max-width: 390px) {
    .shops-reference-important-heading p {
        margin-left: 34px;
        font-size: 19px;
    }
}


/* Shops online FAQ + services tabs v20260524_faq_services */
.shops-reference-faq-services-section {
    padding: clamp(98px, 12vw, 156px) 0 clamp(112px, 14vw, 176px);
    background: #f7f7f5;
}

.shops-reference-faq-services-tabs {
    display: flex;
    gap: clamp(28px, 5vw, 64px);
    align-items: flex-start;
    margin-bottom: clamp(56px, 7vw, 76px);
}

.shops-reference-faq-tab {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(16,16,16,.24);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(38px, 5.2vw, 66px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 800;
    text-align: left;
}

.shops-reference-faq-tab.is-active {
    color: #111;
}

.shops-reference-faq-services-panel + .shops-reference-faq-services-panel {
    margin-top: 0;
}

.shops-reference-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shops-reference-service-card {
    min-height: 236px;
    padding: clamp(28px, 3.4vw, 36px);
    border-radius: 18px;
    background: linear-gradient(135deg, #262626 0%, #1f1f21 100%);
    color: rgba(255,255,255,.88);
}

.shops-reference-service-card h3 {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -.04em;
    font-weight: 800;
}

.shops-reference-service-card p {
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.52;
    letter-spacing: -.012em;
}

.shops-reference-faq-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(58px, 8vw, 82px);
}

.shops-reference-faq-cta {
    width: min(100%, 372px);
    min-height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px 0 42px;
    border-radius: 999px;
    background: #202020;
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 500;
    text-decoration: none;
}

.shops-reference-faq-cta span {
    font-size: 33px;
    line-height: 1;
}

@media (max-width: 760px) {
    .shops-reference-faq-services-section {
        padding: 88px 0 120px;
    }

    .shops-reference-faq-services-tabs {
        gap: 30px;
        margin-bottom: 44px;
    }

    .shops-reference-faq-tab {
        font-size: clamp(26px, 8vw, 38px);
        line-height: 1.08;
        letter-spacing: -.045em;
    }

    .shops-reference-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .shops-reference-service-card {
        min-height: 0;
        padding: 26px 24px 28px;
        border-radius: 14px;
    }

    .shops-reference-service-card h3 {
        margin-bottom: 16px;
        font-size: 22px;
        line-height: 1.2;
    }

    .shops-reference-service-card p {
        font-size: 17px;
        line-height: 1.5;
    }

    .shops-reference-faq-cta-wrap {
        margin-top: 46px;
    }

    .shops-reference-faq-cta {
        width: min(100%, 366px);
        min-height: 80px;
        padding: 0 30px 0 38px;
        font-size: 19px;
    }

    .shops-reference-faq-cta span {
        font-size: 30px;
    }
}

@media (max-width: 390px) {
    .shops-reference-faq-tab {
        font-size: 23px;
    }

    .shops-reference-service-card p {
        font-size: 16px;
    }
}


/* Marketing reference hero v20260524 */
.marketing-reference-page {
    padding: 56px 0 64px;
    background: #f7f7f5;
}

.marketing-reference-shell {
    width: min(100% - 28px, 980px);
    margin: 0 auto;
}

.marketing-reference-card {
    min-height: clamp(230px, 42vw, 360px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(30px, 4vw, 42px);
    border-radius: 14px;
    background: center / cover no-repeat url('../img/services/marketing-hero-bg.png');
    overflow: hidden;
}

.marketing-reference-card h1 {
    margin: 0;
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(56px, 9vw, 92px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 800;
    text-align: center;
}

.marketing-reference-lead {
    max-width: 900px;
    margin: clamp(34px, 4vw, 42px) 0 0;
    color: rgba(16,16,16,.84);
    font-size: clamp(22px, 2.45vw, 34px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.marketing-reference-cta {
    width: min(100%, 388px);
    min-height: 80px;
    margin-top: clamp(36px, 4.6vw, 52px);
    padding: 0 34px 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid rgba(17,17,17,.75);
    border-radius: 999px;
    color: #222;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 400;
    text-decoration: none;
}

.marketing-reference-cta span {
    font-size: 34px;
    line-height: 1;
}

@media (max-width: 760px) {
    .marketing-reference-page {
        padding: 36px 0 54px;
    }

    .marketing-reference-shell {
        width: min(100% - 24px, 520px);
    }

    .marketing-reference-card {
        min-height: 258px;
        border-radius: 12px;
    }

    .marketing-reference-card h1 {
        font-size: clamp(46px, 10vw, 72px);
    }

    .marketing-reference-lead {
        margin-top: 30px;
        font-size: 18px;
        line-height: 1.52;
    }

    .marketing-reference-cta {
        width: min(100%, 330px);
        min-height: 64px;
        margin-top: 28px;
        padding: 0 28px 0 34px;
        font-size: 17px;
        border-width: 1.6px;
    }

    .marketing-reference-cta span {
        font-size: 28px;
    }
}


/* Marketing partners section v20260524 */
.marketing-reference-clients-section {
    padding: clamp(56px, 7vw, 86px) 0 clamp(72px, 9vw, 112px);
    background: #f7f7f5;
}

.marketing-reference-clients h2 {
    margin: 0 0 clamp(44px, 6vw, 64px);
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 800;
}

.marketing-reference-clients p {
    max-width: 720px;
    margin: 0 clamp(20px, 8vw, 88px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(21px, 2.9vw, 32px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.marketing-reference-clients .client-logo-rotator {
    margin-top: clamp(52px, 7vw, 80px);
}

@media (max-width: 760px) {
    .marketing-reference-clients-section {
        padding: 52px 0 82px;
    }

    .marketing-reference-clients h2 {
        margin-bottom: 42px;
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.12;
        letter-spacing: -.045em;
    }

    .marketing-reference-clients p {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .marketing-reference-clients .client-logo-rotator {
        margin-top: 40px;
    }
}

@media (max-width: 390px) {
    .marketing-reference-clients p {
        margin-left: 34px;
        font-size: 19px;
    }
}


/* Marketing tabs + category cards v20260524 */
.marketing-categories-section {
    padding: clamp(78px, 10vw, 128px) 0 clamp(110px, 14vw, 176px);
    background: #f7f7f5;
}

.marketing-categories-cta-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(56px, 7vw, 84px);
}

.marketing-categories-cta {
    width: min(100%, 372px);
}

.marketing-categories-tabs {
    display: flex;
    align-items: flex-start;
    gap: clamp(28px, 4vw, 52px);
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.marketing-categories-tabs::-webkit-scrollbar {
    display: none;
}

.marketing-categories-tab {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(16,16,16,.24);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.marketing-categories-tab.is-active {
    color: #111;
}

.marketing-categories-panel {
    margin-top: clamp(40px, 6vw, 54px);
}

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

.marketing-category-card {
    min-height: 220px;
    padding: clamp(28px, 3.2vw, 38px);
    border-radius: 18px;
}

.marketing-category-card span {
    display: block;
    margin-bottom: 22px;
    color: rgba(64,64,64,.45);
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1;
    letter-spacing: .02em;
    font-weight: 700;
}

.marketing-category-card h3 {
    margin: 0 0 18px;
    color: #444;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 2.8vw, 38px);
    line-height: 1.16;
    letter-spacing: -.04em;
    font-weight: 800;
}

.marketing-category-card p {
    margin: 0;
    color: rgba(70,70,70,.9);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.5;
    letter-spacing: -.012em;
}

.marketing-cards-grid--mint .marketing-category-card {
    background: #cfe0de;
}

.marketing-cards-grid--sage .marketing-category-card {
    background: #d9dccd;
}

.marketing-cards-grid--lilac .marketing-category-card {
    background: #ece6f8;
}

@media (max-width: 760px) {
    .marketing-categories-section {
        padding: 72px 0 108px;
    }

    .marketing-categories-cta-wrap {
        margin-bottom: 42px;
    }

    .marketing-categories-tab {
        font-size: clamp(26px, 8vw, 42px);
        line-height: 1.08;
        letter-spacing: -.045em;
    }

    .marketing-categories-panel {
        margin-top: 34px;
    }

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

    .marketing-category-card {
        min-height: 0;
        padding: 24px 22px 26px;
        border-radius: 14px;
    }

    .marketing-category-card span {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .marketing-category-card h3 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 1.2;
    }

    .marketing-category-card p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .marketing-category-card p {
        font-size: 16px;
    }
}


.marketing-home-bottom-section {
    background: #f7f7f5;
    padding-top: clamp(72px, 9vw, 112px);
}


/* Marketing reviews section v20260524 */
.marketing-reviews-section {
    padding-top: clamp(76px, 8vw, 112px);
    background: #f7f7f5;
}

.marketing-testimonials-heading h2 {
    max-width: 420px;
}

.marketing-reviews-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(34px, 4vw, 48px);
}

.marketing-reviews-cta {
    width: min(100%, 388px);
}

@media (max-width: 760px) {
    .marketing-reviews-section {
        padding-top: 68px;
    }

    .marketing-reviews-cta-wrap {
        margin-top: 30px;
    }

    .marketing-reviews-cta {
        width: min(100%, 332px);
    }
}


/* Marketing benefits list v20260524 */
.marketing-benefits-section {
    padding: clamp(82px, 10vw, 136px) 0 clamp(104px, 13vw, 168px);
    background: #f7f7f5;
}

.marketing-benefits h2 {
    margin: 0 0 clamp(36px, 5vw, 56px);
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -.055em;
    font-weight: 800;
}

.marketing-benefits-list {
    border-top: 1px solid rgba(16,16,16,.12);
}

.marketing-benefits-list article {
    padding: clamp(26px, 3.8vw, 42px) 0 clamp(28px, 4vw, 44px);
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.marketing-benefits-list h3 {
    margin: 0 0 clamp(16px, 2.2vw, 24px);
    color: #181818;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.045em;
    font-weight: 800;
}

.marketing-benefits-list p {
    max-width: 820px;
    margin: 0;
    color: rgba(16,16,16,.78);
    font-size: clamp(18px, 2.1vw, 27px);
    line-height: 1.48;
    letter-spacing: -.012em;
}

@media (max-width: 760px) {
    .marketing-benefits-section {
        padding: 76px 0 108px;
    }

    .marketing-benefits h2 {
        margin-bottom: 34px;
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .marketing-benefits-list article {
        padding: 24px 0 28px;
    }

    .marketing-benefits-list h3 {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.2;
    }

    .marketing-benefits-list p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .marketing-benefits-list h3 {
        font-size: 22px;
    }

    .marketing-benefits-list p {
        font-size: 16px;
    }
}


/* Marketing why + stats section v20260524 */
.marketing-why-section {
    padding: clamp(40px, 4vw, 48px) 0 clamp(88px, 11vw, 132px);
    background: #f7f7f5;
}

.marketing-why-heading {
    margin-bottom: clamp(42px, 5.2vw, 62px);
}

.marketing-why-heading h2 {
    margin: 0 0 14px;
    color: #111;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 800;
}

.marketing-why-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(16,16,16,.82);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1;
    letter-spacing: -.02em;
}

.marketing-why-heading > span span {
    font-size: 1.15em;
    line-height: .8;
}

.marketing-why-lead {
    max-width: 720px;
    margin: 0 clamp(20px, 8vw, 88px) 0 clamp(72px, 18vw, 190px);
    color: rgba(16,16,16,.86);
    font-size: clamp(21px, 2.9vw, 32px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.marketing-why-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 62px) clamp(22px, 3.2vw, 40px);
    margin-top: clamp(72px, 9vw, 110px);
}

.marketing-why-stats article {
    min-height: clamp(138px, 17vw, 180px);
    padding: 0 0 clamp(22px, 3vw, 30px);
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.marketing-why-stats article > span {
    display: block;
    min-height: clamp(44px, 6vw, 56px);
    margin: 0 0 clamp(18px, 2.4vw, 24px);
    color: #2a2a2a;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 700;
}

.marketing-why-stats strong,
.marketing-why-stats strong .stats-counter {
    display: block;
    margin: 0;
    color: #111;
    font-size: clamp(64px, 8.6vw, 92px);
    line-height: .88;
    letter-spacing: -.065em;
    font-weight: 600;
}

@media (max-width: 760px) {
    .marketing-home-bottom-section {
        padding-top: 60px;
    }

    .marketing-why-section {
        padding: 38px 0 92px;
    }

    .marketing-why-heading {
        margin-bottom: 34px;
    }

    .marketing-why-heading h2 {
        font-size: clamp(31px, 8vw, 42px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .marketing-why-heading > span {
        font-size: 15px;
    }

    .marketing-why-lead {
        max-width: none;
        margin-left: clamp(52px, 14vw, 74px);
        margin-right: 8px;
        font-size: 21px;
        line-height: 1.45;
        letter-spacing: -.015em;
    }

    .marketing-why-stats {
        margin-top: 66px;
        gap: 34px 22px;
    }

    .marketing-why-stats article {
        min-height: 148px;
        padding-bottom: 18px;
    }

    .marketing-why-stats article > span {
        min-height: 54px;
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.22;
    }

    .marketing-why-stats strong,
    .marketing-why-stats strong .stats-counter {
        font-size: 54px;
        line-height: .88;
    }
}

@media (max-width: 390px) {
    .marketing-why-lead {
        margin-left: 34px;
        font-size: 19px;
    }

    .marketing-why-stats {
        gap: 28px 18px;
    }

    .marketing-why-stats article > span {
        font-size: 14px;
    }

    .marketing-why-stats strong,
    .marketing-why-stats strong .stats-counter {
        font-size: 46px;
    }
}


/* Marketing founder section v20260524 */
.marketing-founder-section {
    padding-top: clamp(42px, 5vw, 56px);
    padding-bottom: clamp(24px, 5vw, 36px);
}

.marketing-founder-intro p {
    max-width: 760px;
}

@media (max-width: 760px) {
    .marketing-founder-section {
        padding-top: 38px;
        padding-bottom: 14px;
    }
}


/* Home desktop header + remove desktop pills v20260524 */
.desktop-home-nav,
.desktop-home-contact {
    display: none;
}

@media (min-width: 901px) {
    .site-header.home-header {
        min-height: 94px !important;
        padding: 24px clamp(72px, 8.4vw, 150px) 18px !important;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        background: #f3f3f1 !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header.home-header.is-scrolled {
        min-height: 78px !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        background: rgba(243,243,241,.92) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        box-shadow: none !important;
    }

    .site-header.home-header .brand {
        justify-self: start;
        font-size: 18px;
        line-height: 1;
        letter-spacing: .18em;
        font-weight: 600;
        color: #111;
    }

    .desktop-home-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(34px, 3.6vw, 56px);
        justify-self: center;
    }

    .desktop-home-nav a {
        color: rgba(16,16,16,.82);
        font-size: 18px;
        line-height: 1;
        letter-spacing: -.02em;
        font-weight: 400;
        text-decoration: none;
        white-space: nowrap;
    }

    .desktop-home-nav a span {
        font-size: .72em;
        vertical-align: 1px;
    }

    .desktop-home-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
        min-width: 150px;
        min-height: 44px;
        padding: 0 30px;
        border-radius: 999px;
        background: #242424;
        color: #fff;
        font-size: 18px;
        line-height: 1;
        letter-spacing: -.02em;
        font-weight: 500;
        text-decoration: none;
    }

    .desktop-home-contact span {
        margin-left: 4px;
        font-size: 1.08em;
        line-height: .8;
    }

    .site-header.home-header .menu-button,
    .site-header.home-header .circle-menu {
        display: none !important;
    }

    .home-pill-scroller {
        display: none !important;
    }

    .home-projects-section {
        padding-top: 54px;
    }
}


/* Desktop homepage masonry feed v20260524 */
.home-project-feed-desktop {
    display: none;
}

.home-project-feed-mobile {
    display: grid;
}

@media (min-width: 901px) {
    .home-hero-wrap {
        max-width: 1160px;
    }

    .home-hero-title {
        max-width: 1020px;
        font-size: clamp(88px, 7.3vw, 122px);
        line-height: .92;
    }

    .home-hero-lead {
        max-width: 980px;
        font-size: clamp(20px, 1.8vw, 28px);
    }

    .home-projects-section {
        padding-top: 26px;
        padding-bottom: 18px;
    }

    .home-pill-scroller {
        justify-content: center;
        gap: 14px;
        margin-bottom: 56px;
    }

    .home-pill {
        min-height: 52px;
        padding: 0 24px;
        font-size: 16px;
        font-weight: 600;
        background: #dfdfdd;
    }

    .home-pill.is-active {
        background: #2f74f5;
        color: #fff;
    }

    .home-project-feed-mobile {
        display: none;
    }

    .home-project-feed-desktop {
        display: grid;
        grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
        gap: 54px;
        align-items: start;
    }

    .home-project-column {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .home-project-column--right {
        padding-top: 0;
    }

    .home-project-card {
        max-width: none;
        border-bottom: 0;
        padding-bottom: 0;
    }

    .home-project-column--left .home-project-card .home-project-image-wrap {
        border-radius: 18px;
    }

    .home-project-column--right .home-project-card .home-project-image-wrap {
        border-radius: 14px;
    }

    .home-project-column--left .home-project-card .home-project-image-wrap.photo,
    .home-project-column--left .home-project-card .home-project-image-wrap.logo {
        aspect-ratio: 1.34 / 1;
    }

    .home-project-column--right .home-project-card .home-project-image-wrap.photo,
    .home-project-column--right .home-project-card .home-project-image-wrap.logo {
        aspect-ratio: 1.07 / 1;
    }

    .home-project-column--right .home-project-card .home-project-image-wrap.is-poniedzialek-banner img {
        object-fit: cover;
    }

    .home-project-column--left .home-project-card .home-project-copy {
        padding: 20px 2px 0;
    }

    .home-project-column--right .home-project-card .home-project-copy {
        padding: 18px 2px 0;
    }

    .home-project-column--left .home-project-card .home-project-copy h2 {
        font-size: clamp(34px, 2.9vw, 52px);
        margin-bottom: 10px;
    }

    .home-project-column--right .home-project-card .home-project-copy h2 {
        font-size: clamp(28px, 2.5vw, 44px);
        margin-bottom: 8px;
    }

    .home-project-column--left .home-project-card .home-project-copy p,
    .home-project-column--right .home-project-card .home-project-copy p {
        max-width: 100%;
        font-size: clamp(18px, 1.45vw, 22px);
        line-height: 1.42;
    }
}


/* Homepage desktop menu polish + centered pills tweak v20260524 */
@media (min-width: 901px) {
    .desktop-home-nav {
        gap: clamp(28px, 2.8vw, 42px);
    }

    .desktop-home-nav a {
        white-space: nowrap;
    }

    .home-pill-scroller {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}


/* Desktop services dropdown + restore pills v20260524 */
@media (min-width: 901px) {
    .desktop-home-nav-item {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .desktop-home-nav-item--dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .desktop-home-submenu {
        position: absolute;
        top: calc(100% + 16px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        min-width: 248px;
        padding: 18px 26px;
        border-radius: 20px;
        background: rgba(248, 248, 246, 0.98);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
        border: 1px solid rgba(17, 17, 17, 0.06);
        display: grid;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
        z-index: 30;
    }

    .desktop-home-submenu::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -8px;
        width: 16px;
        height: 16px;
        background: rgba(248, 248, 246, 0.98);
        border-left: 1px solid rgba(17,17,17,.06);
        border-top: 1px solid rgba(17,17,17,.06);
        transform: translateX(-50%) rotate(45deg);
    }

    .desktop-home-submenu a {
        display: block;
        padding: 16px 6px;
        color: #1a1a1a;
        font-size: 17px;
        line-height: 1.2;
        text-decoration: none;
        border-bottom: 1px solid rgba(17,17,17,.08);
    }

    .desktop-home-submenu a:last-child {
        border-bottom: 0;
    }

    .desktop-home-nav-item--dropdown:hover .desktop-home-submenu,
    .desktop-home-nav-item--dropdown:focus-within .desktop-home-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .desktop-home-nav-item--dropdown:hover > a,
    .desktop-home-nav-item--dropdown:focus-within > a {
        color: #111;
    }

    .home-pill-scroller {
        display: flex !important;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}


/* Desktop homepage case descriptions show on hover v20260524 */
@media (min-width: 901px) {
    .home-project-column--left .home-project-card .home-project-copy,
    .home-project-column--right .home-project-card .home-project-copy {
        display: flex;
        flex-direction: column;
    }

    .home-project-column--left .home-project-card .home-project-copy p,
    .home-project-column--right .home-project-card .home-project-copy p {
        min-height: 4.5em;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .home-project-column--left .home-project-card:hover .home-project-copy p,
    .home-project-column--left .home-project-card:focus-within .home-project-copy p,
    .home-project-column--right .home-project-card:hover .home-project-copy p,
    .home-project-column--right .home-project-card:focus-within .home-project-copy p {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* Home desktop CTA + newsletter redesign v20260524 */
.home-newsletter-desktop-button {
    display: none;
}

@media (min-width: 901px) {
    .home-bottom-cta-section {
        padding: 86px 0 48px;
    }

    .home-talk-pill {
        width: min(100%, 390px);
        min-height: 92px;
        margin: 0 auto 56px;
        padding: 0 30px 0 36px;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -.02em;
        box-shadow: none;
    }

    .home-talk-pill strong {
        font-size: 36px;
    }

    .home-newsletter-card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 26px 32px;
        padding: 38px 56px;
        border-radius: 20px;
        background: #efefed;
    }

    .home-newsletter-copy {
        max-width: 820px;
    }

    .home-newsletter-copy h2 {
        margin-bottom: 10px;
        font-size: clamp(28px, 2.6vw, 36px);
        line-height: 1.05;
        letter-spacing: -.03em;
    }

    .home-newsletter-copy p {
        max-width: 760px;
        font-size: 18px;
        line-height: 1.45;
    }

    .home-newsletter-desktop-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 178px;
        min-height: 72px;
        padding: 0 34px;
        border-radius: 999px;
        border: 1.5px solid rgba(16,16,16,.58);
        color: #2c2c2c;
        background: transparent;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -.01em;
        text-decoration: none;
        transition: transform .2s ease, background .2s ease;
    }

    .home-newsletter-desktop-button:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.45);
    }

    .home-newsletter-form {
        display: none;
    }
}




/* Contact page desktop adaptation v20260524_contact_desktop_02 */
@media (min-width: 901px) {
    .contact-page {
        padding-top: 88px;
        padding-bottom: 136px;
    }

    .contact-shell {
        width: min(1240px, calc(100% - 88px));
    }

    .contact-hero {
        text-align: center;
        padding: 26px 0 24px;
    }

    .contact-hero h1 {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        font-size: clamp(72px, 6.8vw, 108px);
        font-weight: 800;
        line-height: .96;
        letter-spacing: -.06em;
        white-space: normal;
    }

    .contact-intro {
        width: min(980px, calc(100% - 120px));
        margin: 28px auto 0;
        text-align: center;
        color: rgba(16,16,16,.82);
        font-size: clamp(18px, 1.75vw, 22px);
        line-height: 1.5;
    }

    .contact-email {
        width: fit-content;
        max-width: 100%;
        margin: 38px auto 0;
        gap: 14px;
        justify-content: center;
        color: #111;
        font-size: clamp(34px, 3.6vw, 56px);
        font-weight: 500;
        line-height: 1.06;
        letter-spacing: -.04em;
    }

    .contact-email:hover {
        color: #111;
        opacity: .86;
    }

    .contact-email-icon {
        color: #111;
        font-size: .54em;
        transform: translateY(-2px);
    }

    .contact-divider {
        width: min(1040px, 100%);
        margin: 78px auto 68px;
        gap: 26px;
    }

    .contact-divider span {
        background: rgba(16,16,16,.14);
    }

    .contact-divider em {
        color: rgba(16,16,16,.22);
        font-size: clamp(32px, 3vw, 44px);
        font-weight: 700;
        line-height: 1;
        letter-spacing: -.03em;
    }

    .contact-form-block {
        width: min(760px, calc(100% - 48px));
        margin: 0 auto;
    }

    .contact-form-block h2 {
        margin: 0 0 34px;
        text-align: center;
        font-size: clamp(56px, 5.6vw, 84px);
        font-weight: 800;
        line-height: .98;
        letter-spacing: -.06em;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 24px;
        background: rgba(255,255,255,.30);
        padding: 24px 28px;
        font-size: 20px;
        line-height: 1.35;
        box-shadow: none;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(16,16,16,.28);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        background: rgba(255,255,255,.58);
        box-shadow: inset 0 0 0 1px rgba(16,16,16,.08);
    }

    .contact-form textarea {
        min-height: 265px;
    }

    .contact-form-note {
        margin-top: 2px;
        max-width: 680px;
        text-align: center;
        color: rgba(16,16,16,.68);
        font-size: 16px;
        line-height: 1.42;
    }

    .contact-submit {
        justify-self: center;
        min-width: min(100%, 500px);
        min-height: 92px;
        border-radius: 999px;
        background: #dedede;
        color: rgba(16,16,16,.6);
        padding: 18px 34px;
        font-size: clamp(28px, 2.8vw, 42px);
        font-weight: 500;
        letter-spacing: -.04em;
    }

    .contact-links {
        gap: 20px 44px;
        padding: 42px 0 20px;
    }

    .contact-links a {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: -.02em;
    }

    .contact-footer-grid {
        width: min(1040px, 100%);
        margin: 12px auto 0;
        padding-top: 12px;
    }

    .contact-detail-card {
        padding: 24px 24px 12px;
    }

    .contact-detail-card p {
        margin: 0 0 14px;
        color: rgba(16,16,16,.48);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .16em;
    }

    .contact-detail-card a {
        color: #111;
        font-size: clamp(34px, 3.8vw, 54px);
        line-height: 1.18;
        letter-spacing: -.035em;
    }
}


/* Subscribe final desktop alignment v20260524 */
body.page-subskrypcja .subscribe-page {
    background: #f7f7f5;
}

@media (min-width: 901px) {
    body.page-subskrypcja .subscribe-page {
        padding-top: 128px;
    }

    body.page-subskrypcja .subscribe-container {
        width: min(980px, calc(100% - 64px));
        margin-left: auto;
        margin-right: auto;
    }

    body.page-subskrypcja .subscribe-hero {
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 86px;
        text-align: center;
    }

    body.page-subskrypcja .subscribe-hero h1 {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0 auto 28px;
        color: #111;
        text-align: center;
        white-space: nowrap;
        text-transform: none;
        font-family: "Inter", system-ui, sans-serif;
        font-size: clamp(72px, 6vw, 104px);
        line-height: .95;
        letter-spacing: -.065em;
        font-weight: 800;
    }

    body.page-subskrypcja .subscribe-lead {
        display: block;
        max-width: 760px;
        margin: 0 auto;
        color: rgba(16,16,16,.84);
        text-align: center;
        font-size: 22px;
        line-height: 1.42;
        letter-spacing: .015em;
        text-wrap: balance;
    }

    body.page-subskrypcja .subscribe-form {
        width: min(760px, 100%);
        margin-left: auto;
        margin-right: auto;
        gap: 22px;
    }

    body.page-subskrypcja .subscribe-form input {
        min-height: 76px;
        font-size: 22px;
        letter-spacing: .06em;
    }

    body.page-subskrypcja .subscribe-submit {
        width: min(500px, 78%);
        min-height: 86px;
        margin-top: 60px;
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    body.page-subskrypcja .subscribe-hero h1 {
        text-transform: none;
    }
}


/* About desktop alignment + values grid v20260525_about_desktop_values_01 */
body.page-o-nas .about-hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.page-o-nas .about-eyebrow {
    width: 100%;
    text-align: center;
}

body.page-o-nas .about-hero-wrap h1 {
    max-width: none;
}

@media (min-width: 1024px) {
    body.page-o-nas .about-hero-section {
        padding: 132px 0 92px;
    }

    body.page-o-nas .about-hero-wrap,
    body.page-o-nas .about-values-wrap {
        max-width: 1120px;
    }

    body.page-o-nas .about-hero-wrap h1 {
        margin: 0 0 34px;
        text-align: center;
        white-space: nowrap;
        font-size: clamp(68px, 6.5vw, 86px);
        line-height: .94;
        letter-spacing: -.065em;
    }

    body.page-o-nas .about-hero-lead {
        max-width: 980px;
        margin: 0 auto 92px;
        text-align: center;
        font-size: clamp(24px, 2.2vw, 30px);
        line-height: 1.42;
        letter-spacing: -.02em;
    }

    body.page-o-nas .about-values-section {
        padding: 24px 0 100px;
    }

    body.page-o-nas .about-values-wrap h2 {
        margin: 0 0 38px;
        font-size: clamp(50px, 4.2vw, 64px);
        line-height: .98;
    }

    body.page-o-nas .about-values-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 72px;
        row-gap: 0;
        align-items: start;
    }

    body.page-o-nas .about-value-item {
        border-top: 1px solid rgba(24, 24, 24, .12);
        border-bottom: 0;
        padding: 30px 0 40px;
    }

    body.page-o-nas .about-value-item:first-child {
        border-top: 1px solid rgba(24, 24, 24, .12);
    }

    body.page-o-nas .about-value-item h3 {
        margin: 0 0 18px;
        font-size: clamp(28px, 2.35vw, 40px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }

    body.page-o-nas .about-value-item p {
        max-width: none;
        font-size: clamp(17px, 1.4vw, 19px);
        line-height: 1.5;
        letter-spacing: -.01em;
    }
}


/* About capabilities + testimonials desktop split v20260525_about_capabilities_split_01 */
body.page-o-nas .about-capabilities-wrap {
    position: relative;
}

body.page-o-nas .about-capabilities-layout {
    display: grid;
    gap: 34px;
}

body.page-o-nas .about-capabilities-aside {
    min-width: 0;
}

body.page-o-nas .about-inline-testimonials-heading {
    margin: 0 0 20px;
}

body.page-o-nas .about-inline-testimonials-heading h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.045em;
}

body.page-o-nas .about-capabilities-aside .about-testimonials {
    max-width: none;
}

body.page-o-nas .about-capabilities-aside .websites-testimonials-slider {
    background: transparent;
    padding: 0;
}

body.page-o-nas .about-capabilities-aside .websites-testimonials-topbar {
    margin-bottom: 26px;
}

body.page-o-nas .about-capabilities-aside .websites-testimonial-quote {
    max-width: none;
}

@media (min-width: 1024px) {
    body.page-o-nas .about-capabilities-section {
        padding: 22px 0 82px;
    }

    body.page-o-nas .about-capabilities-wrap {
        max-width: 1360px;
    }

    body.page-o-nas .about-capabilities-wrap > h2 {
        margin: 0 0 44px;
        font-size: clamp(52px, 4.4vw, 66px);
        line-height: .98;
    }

    body.page-o-nas .about-capabilities-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
        gap: 48px;
        align-items: start;
    }

    body.page-o-nas .about-capabilities-column,
    body.page-o-nas .about-capabilities-aside {
        min-width: 0;
    }

    body.page-o-nas .about-capabilities {
        gap: 12px;
    }

    body.page-o-nas .about-capability {
        border-radius: 12px;
        background: rgba(255, 255, 255, .42);
    }

    body.page-o-nas .about-capability-toggle {
        padding: 28px 34px;
        gap: 20px;
    }

    body.page-o-nas .about-capability-toggle span:first-child {
        font-size: clamp(22px, 1.95vw, 28px);
        line-height: 1.08;
        letter-spacing: -.04em;
    }

    body.page-o-nas .about-capability-symbol {
        font-size: 26px;
    }

    body.page-o-nas .about-capability-panel {
        padding: 0 34px 30px;
    }

    body.page-o-nas .about-capability-panel p {
        margin: 0 0 22px;
        font-size: clamp(16px, 1.25vw, 19px);
        line-height: 1.48;
    }

    body.page-o-nas .about-capability-panel ul {
        padding-left: 22px;
        font-size: clamp(16px, 1.15vw, 18px);
        line-height: 1.5;
    }

    body.page-o-nas .about-inline-testimonials-heading {
        display: none;
    }

    body.page-o-nas .about-capabilities-aside {
        padding-top: 56px;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonials-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 34px;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-company {
        font-size: clamp(38px, 3vw, 56px) !important;
        line-height: 1;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonials-controls {
        flex: 0 0 auto;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-quote {
        margin: 0 0 34px;
        font-size: clamp(21px, 1.95vw, 24px);
        line-height: 1.56;
        color: rgba(24,24,24,.9);
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-person {
        gap: 18px;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-person img {
        width: 88px;
        height: 88px;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-person strong {
        display: block;
        margin-bottom: 6px;
        font-size: clamp(22px, 1.7vw, 30px);
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    body.page-o-nas .about-capabilities-aside .websites-testimonial-person span {
        font-size: clamp(15px, 1.12vw, 18px);
        line-height: 1.42;
    }
}

/* Contact form backend feedback + admin panel v20260525_contact_logic */
.form-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.flash-stack {
    position: fixed;
    z-index: 1200;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 32px));
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.flash {
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(22, 22, 22, .94);
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 18px 48px rgba(0,0,0,.15);
}

.flash-error {
    background: #7f1d1d;
}

.flash-success {
    background: #14532d;
}

.admin-page {
    background: #f7f7f5;
    min-height: 100svh;
    padding: 140px 0 90px;
}

.admin-shell {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
}

.admin-shell-wide {
    width: min(1120px, calc(100% - 40px));
}

.admin-shell h1 {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 80px);
    line-height: .98;
    letter-spacing: -.055em;
}

.admin-login-form,
.admin-search {
    display: grid;
    gap: 14px;
}

.admin-login-form label {
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: rgba(16,16,16,.68);
}

.admin-login-form input,
.admin-search input {
    width: 100%;
    border: 0;
    border-radius: 22px;
    padding: 20px 22px;
    background: #fff;
    color: #111;
    font: inherit;
    outline: none;
}

.admin-login-form button,
.admin-search button {
    border: 0;
    border-radius: 999px;
    padding: 18px 24px;
    background: #1f1f1f;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-topbar p {
    margin: 0;
    color: rgba(16,16,16,.62);
}

.admin-topbar a,
.admin-pagination a {
    color: #111;
    text-decoration: underline;
}

.admin-search {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 28px;
}

.admin-leads-list {
    display: grid;
    gap: 14px;
}

.admin-lead-card {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(0,0,0,.04);
}

.admin-lead-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.admin-lead-head strong,
.admin-lead-head span {
    display: block;
}

.admin-lead-head span,
.admin-lead-meta {
    color: rgba(16,16,16,.58);
    font-size: 14px;
}

.admin-lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 14px;
}

.admin-lead-card pre {
    white-space: pre-wrap;
    margin: 0;
    padding: 16px;
    border-radius: 16px;
    background: #f4f4f2;
    font-family: inherit;
    line-height: 1.45;
}

.admin-pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 760px) {
    .flash-stack {
        top: 82px;
    }

    .admin-page {
        padding-top: 120px;
    }

    .admin-search {
        grid-template-columns: 1fr;
    }

    .admin-lead-head {
        display: grid;
    }
}
