/* ================================================================
   Strawberrylace — Landing (2026 refresh)
   Sits alongside the existing inline hero styles in index.php.
   ================================================================ */
:root {
    --sl-pink:   #F5728C;
    --sl-green:  #5AE98B;
    --sl-ink:    #0F0F10;
    --sl-paper:  #FAFAFA;
    --sl-line:   rgba(15, 15, 16, 0.08);
    --sl-muted:  #6B6B6F;
}

/* ---------- Clients marquee strip ---------- */
.clients-strip {
    background: #fff;
    border-top: 1px solid var(--sl-line);
    border-bottom: 1px solid var(--sl-line);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.clients-strip__track {
    display: flex;
    gap: clamp(40px, 6vw, 90px);
    animation: clientsMove 32s linear infinite;
    width: max-content;
    align-items: center;
    font-family: 'Neue Montreal', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--sl-ink);
    white-space: nowrap;
}
.clients-strip__track span { opacity: .82; }
.clients-strip__track span::before {
    content: "✽";
    margin-right: clamp(16px, 2vw, 28px);
    color: var(--sl-pink);
    font-size: .6em;
    vertical-align: 0.3em;
}
@keyframes clientsMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Stats strip ---------- */
.sl-stats {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 80px) clamp(40px, 5vw, 80px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2vw, 28px);
    font-family: 'Neue Montreal', sans-serif;
    position: relative;
    z-index: 2;
}
@media (max-width: 760px) { .sl-stats { grid-template-columns: repeat(2, 1fr); } }
.sl-stat {
    padding: 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--sl-line);
}
.sl-stat strong {
    display: block;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--sl-ink);
    margin-bottom: 10px;
    font-weight: 500;
}
.sl-stat strong em {
    font-style: normal;
    color: var(--sl-pink);
    font-weight: 400;
}
.sl-stat span {
    font-size: 14px;
    color: var(--sl-muted);
    line-height: 1.4;
}

/* ---------- Recent work preview ---------- */
.sl-work {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(32px, 4vw, 56px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 80px);
    z-index: 2;
    font-family: 'Neue Montreal', sans-serif;
}
.sl-work__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: clamp(24px, 3vw, 40px);
    flex-wrap: wrap;
}
.sl-work__head h2 {
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
    font-weight: 500;
    color: var(--sl-ink);
    max-width: 16ch;
}
.sl-work__head h2 em {
    font-style: normal;
    color: var(--sl-pink);
    font-weight: 400;
    padding: 0 .04em;
}
.sl-work__head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sl-ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--sl-line);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sl-work__head a:hover { background: var(--sl-ink); color: #fff; transform: translateX(2px); }
.sl-work__head a svg { transition: transform .2s ease; }
.sl-work__head a:hover svg { transform: translateX(3px); }

.sl-work__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: repeat(2, minmax(110px, 13vw));
    gap: clamp(8px, 1vw, 14px);
}
@media (max-width: 780px) {
    .sl-work__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, minmax(150px, 42vw));
    }
}
.sl-work__card {
    position: relative;
    overflow: hidden;
    border-radius: clamp(10px, 1vw, 14px);
    background: #eee;
    color: #fff;
    text-decoration: none;
    display: block;
    isolation: isolate;
    transition: transform .3s ease;
}
.sl-work__card:hover { transform: translateY(-3px); }
.sl-work__card--hero { grid-row: span 2; }
@media (max-width: 780px) { .sl-work__card--hero { grid-row: auto; } }
.sl-work__card .m { position: absolute; inset: 0; z-index: 0; }
.sl-work__card .m img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sl-work__card:hover .m img { transform: scale(1.04); }
.sl-work__card[data-has-image="0"] .m {
    background: linear-gradient(135deg, var(--card-accent, var(--sl-pink)), #1a1a1a);
}
.sl-work__card::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.72));
}
.sl-work__card b {
    position: absolute; left: 16px; bottom: 42px; z-index: 2;
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 500; letter-spacing: -0.015em;
}
.sl-work__card em {
    position: absolute; left: 16px; bottom: 16px; z-index: 2;
    font-style: normal;
    font-size: 12px;
    opacity: .88;
    font-weight: 400;
    max-width: 34ch;
    line-height: 1.4;
}

/* Hero card gets slightly more room for its bigger role */
.sl-work__card--hero b { font-size: clamp(18px, 1.8vw, 26px); bottom: 52px; left: 20px; }
.sl-work__card--hero em { font-size: 13px; bottom: 20px; left: 20px; }

/* ---------- Retainer CTA strip ---------- */
.sl-retain {
    background: var(--sl-ink);
    color: #fff;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.sl-retain::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(245,114,140,.22), transparent 45%),
        radial-gradient(circle at 86% 78%, rgba(90,233,139,.12), transparent 50%);
    pointer-events: none;
}
.sl-retain__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    position: relative;
    font-family: 'Neue Montreal', sans-serif;
}
@media (max-width: 780px) { .sl-retain__inner { grid-template-columns: 1fr; } }
.sl-retain h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    font-weight: 500;
    max-width: 16ch;
}
.sl-retain h2 em {
    font-style: normal;
    color: var(--sl-pink);
    font-weight: 400;
    padding: 0 .04em;
}
.sl-retain p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0;
    max-width: 44ch;
}
.sl-retain__packages {
    display: grid;
    gap: 12px;
}
.sl-retain__pkg {
    padding: 22px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background .2s ease, border-color .2s ease;
    text-decoration: none;
    color: #fff;
}
.sl-retain__pkg:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245,114,140,0.5);
}
.sl-retain__pkg strong {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.sl-retain__pkg span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.sl-retain__arrow {
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
    transition: color .2s ease, transform .2s ease;
}
.sl-retain__pkg:hover .sl-retain__arrow {
    color: var(--sl-green);
    transform: translateX(3px);
}

/* ---------- Subtle helpers ---------- */
.section-pad-sm { padding: clamp(40px, 6vw, 80px) 0; }

/* Keep z-order so lace-bg stays behind all these sections */
.clients-strip, .sl-stats, .sl-work, .sl-retain, #sl-footer { position: relative; z-index: 3; }
