/*!
Theme Name: Printedesign Premium
Theme URI: https://printedesign.ch
Description: Thème WordPress premium personnalisé pour Printedesign
Version: 1.8.0
Author: Toni Asani
Author URI: https://printedesign.ch
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: printedesign
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav.navbar h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

nav.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

nav.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e7302a;
    transition: width 0.3s ease;
}

nav.navbar a:hover::after {
    width: 100%;
}

nav.navbar a:hover {
    opacity: 1;
    color: #e7302a;
}

/* Hero Section */
.hero {
    padding: 180px 48px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 48, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero h1 {
    font-size: 72px;
    font-weight: 600;
    margin: 0 0 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #e7302a;
    display: inline-block;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #e7302a;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(231, 48, 42, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #e7302a;
    border: 2px solid #e7302a;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.cta-secondary:hover {
    color: #000;
    background: #e7302a;
}

/* Services Section */
.services {
    padding: 100px 48px;
    background: #000;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-label {
    font-size: 11px;
    color: #e7302a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 16px;
    font-weight: 600;
}

.section-title {
    font-size: 52px;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(231, 48, 42, 0.2);
    border-left: 3px solid #e7302a;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateX(10px);
    background: rgba(231, 48, 42, 0.3);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #e7302a;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 48px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 48, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 48px;
    background: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 48, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-final h3 {
    font-size: 44px;
    font-weight: 600;
    margin: 0 0 24px;
}

.cta-final p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* Footer */
footer {
    padding: 60px 48px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 40px;
    font-size: 13px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.8;
}

.footer-section a {
    color: #e7302a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-widget {
    position: fixed;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 18px 12px 13px;
    border-radius: 999px;
    background: #25d366;
    color: #07140b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
    color: #07140b;
    background: #35ec78;
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.whatsapp-widget::after {
    display: none;
}

.whatsapp-widget__icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
}

.whatsapp-widget__icon svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: #0a7b35;
}

.whatsapp-widget__text {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    nav.navbar {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        padding: 140px 24px 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
        min-height: 52px;
        padding: 10px 14px 10px 10px;
        font-size: 12px;
    }

    .whatsapp-widget__icon {
        width: 30px;
        height: 30px;
    }
}

/* Printedesign polish */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

nav.navbar {
    min-height: 86px;
    padding: 20px clamp(24px, 4vw, 56px);
    gap: 28px;
    background: rgba(0, 0, 0, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

nav.navbar.is-scrolled,
nav.navbar.is-menu-open {
    background: rgba(0, 0, 0, 0.94);
}

.site-brand {
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 750;
    letter-spacing: 0.18em;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu,
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

nav.navbar .nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.12em;
}

nav.navbar .nav-menu a:hover,
nav.navbar .nav-menu .current-menu-item > a {
    color: #e7302a;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.hero {
    margin-top: 86px;
    background:
        radial-gradient(circle at 78% 18%, rgba(231, 48, 42, 0.14), transparent 34%),
        linear-gradient(135deg, #050505 0%, #171717 100%);
}

.hero-label {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.62);
}

.services-grid {
    gap: 28px;
}

.service-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 48, 42, 0.38);
    background: rgba(231, 48, 42, 0.06);
}

.portfolio-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-embed {
    margin-top: 56px;
}

@media (max-width: 768px) {
    nav.navbar {
        min-height: 74px;
        flex-direction: row;
        padding: 14px 18px;
    }

    .site-brand {
        font-size: 18px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        padding: 10px 18px 18px;
        background: rgba(0, 0, 0, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 45px rgba(0, 0, 0, 0.34);
    }

    .nav-panel.is-open {
        display: block;
    }

    .nav-menu,
    .nav-menu ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    nav.navbar .nav-menu a {
        width: 100%;
        min-height: 42px;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 12px;
    }

    .hero {
        margin-top: 74px;
        padding: 96px 24px 78px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 52px);
        line-height: 1.04;
    }

    .hero p {
        font-size: 16px;
    }

    .services,
    .portfolio {
        padding: 72px 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    footer {
        padding: 46px 24px 32px;
    }
}

/* Printedesign visual refresh */
:root {
    --pd-red: #ed1c24;
    --pd-dark: #0a0a0a;
    --pd-ink: #151515;
    --pd-paper: #f4f1ec;
    --pd-line: rgba(255, 255, 255, 0.12);
}

.js .pd-reveal {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), 22px, 0);
    transition:
        opacity 0.72s ease var(--reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js .pd-reveal-left {
    --reveal-x: -54px;
}

.js .pd-reveal-right {
    --reveal-x: 54px;
}

.js .pd-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .js .pd-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9)),
        url('https://static.wixstatic.com/media/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg/v1/fill/w_1351,h_768,al_c,q_85,usm_0.33_1.00_0.00,enc_avif,quality_auto/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg') center top / cover fixed;
}

nav.navbar {
    min-height: 94px;
    padding: 18px clamp(24px, 5vw, 72px);
    background: rgba(12, 12, 12, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    animation: none;
}

nav.navbar.is-scrolled,
nav.navbar.is-menu-open {
    background: rgba(9, 9, 9, 0.98);
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: var(--pd-red) !important;
    text-decoration: none;
    opacity: 1 !important;
}

.site-brand--mark {
    width: 76px;
    height: 76px;
    gap: 0;
}

.site-brand--mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-brand::after {
    display: none;
}

.brand-name {
    display: block;
    color: var(--pd-red);
    font-size: clamp(18px, 2.25vw, 28px);
    font-weight: 800;
    line-height: 1;
    text-transform: lowercase;
    letter-spacing: 0.17em;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-menu,
.nav-menu ul {
    gap: clamp(16px, 2.1vw, 28px);
}

nav.navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.11em;
}

nav.navbar .nav-menu a:hover,
nav.navbar .nav-menu .current-menu-item > a {
    color: var(--pd-red);
}

.nav-toggle {
    border-color: rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.035);
}

.home-main {
    margin-top: 94px;
}

.home-hero {
    position: relative;
    min-height: min(720px, calc(100vh - 94px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--pd-dark);
}

.home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.14) contrast(1.08) brightness(0.58);
    transform: scale(1.02);
}

.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(88px, 12vw, 150px) 0 clamp(56px, 8vw, 96px);
}

.home-logo-reveal {
    width: min(620px, 84vw);
    margin: 0 auto clamp(28px, 4vw, 48px);
    padding: 0;
    background: transparent;
    box-shadow: none;
    animation: logoFadeIn 1.35s ease 0.2s both;
}

.home-logo-reveal img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.45));
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.home-hero .hero-label {
    margin: 0 0 18px;
    color: var(--pd-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 8vw, 104px);
    font-weight: 850;
    line-height: 0.94;
}

.home-hero p:not(.hero-label) {
    max-width: 690px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.hero-actions,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.impact-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 80px);
    background: var(--pd-paper);
    color: #111;
}

.impact-copy {
    max-width: 620px;
}

.impact-copy h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 70px);
    line-height: 0.98;
}

.impact-copy p:not(.section-label) {
    margin-top: 24px;
    color: rgba(0, 0, 0, 0.68);
    font-size: 18px;
}

.impact-visual {
    justify-self: center;
}

.impact-visual img {
    display: block;
    width: min(100%, 620px);
    height: auto;
}

.services {
    padding: clamp(78px, 8vw, 118px) clamp(24px, 6vw, 80px);
    background: #090909;
}

.section-header,
.services-grid,
.portfolio-content,
.cta-content {
    width: min(1180px, 100%);
}

.section-header {
    margin-bottom: clamp(42px, 5vw, 70px);
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 0;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--pd-line);
    border-left: 1px solid var(--pd-line);
}

.service-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    padding: clamp(22px, 3vw, 34px);
    color: #fff;
    text-decoration: none;
    border: 0;
    border-right: 1px solid var(--pd-line);
    border-bottom: 1px solid var(--pd-line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.025);
}

.service-card:hover {
    transform: none;
    background: var(--pd-red);
    border-color: rgba(255, 255, 255, 0.18);
}

.service-number {
    color: var(--pd-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.service-card:hover .service-number,
.service-card:hover p {
    color: rgba(255, 255, 255, 0.88);
}

.service-card h3 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.05;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.6;
}

.product-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(28px, 5vw, 56px) clamp(24px, 6vw, 80px);
    background: #fff;
}

.product-strip img {
    width: 100%;
    aspect-ratio: 31 / 20;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
}

.portfolio {
    background:
        linear-gradient(rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.98)),
        url('https://static.wixstatic.com/media/5af9b94c915d43eda50c39f85f635182.jpg/v1/fill/w_1344,h_420,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/5af9b94c915d43eda50c39f85f635182.jpg') center / cover;
}

.instagram-embed {
    min-height: 180px;
    padding: 18px;
    border: 1px solid var(--pd-line);
    background: rgba(0, 0, 0, 0.35);
}

.cta-final {
    background: #fff;
    color: #111;
}

.cta-final p {
    color: rgba(0, 0, 0, 0.68);
}

footer {
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    color: var(--pd-red);
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: lowercase;
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav.navbar {
        min-height: 82px;
        padding: 14px 18px;
    }

    .site-brand--mark {
        width: 58px;
        height: 58px;
    }

    .brand-name {
        font-size: 18px;
        letter-spacing: 0.12em;
    }

    .brand-subtitle {
        font-size: 9px;
    }

    .nav-panel {
        padding: 12px 18px 18px;
        background: rgba(10, 10, 10, 0.98);
    }

    .nav-menu,
    .nav-menu ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    nav.navbar .nav-menu a {
        min-height: 44px;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.88);
        font-size: 12px;
    }

    .home-main {
        margin-top: 82px;
    }

    .home-hero {
        min-height: calc(100vh - 82px);
    }

    .home-hero__content {
        width: calc(100% - 36px);
        padding: 58px 0 48px;
    }

    .home-logo-reveal {
        width: min(340px, 82vw);
        margin-bottom: 28px;
    }

    .home-hero h1 {
        font-size: clamp(44px, 15vw, 70px);
    }

    .home-hero p:not(.hero-label) {
        font-size: 17px;
    }

    .hero-actions,
    .cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
    }

    .impact-showcase,
    .services,
    .portfolio,
    .cta-final {
        padding-left: 18px;
        padding-right: 18px;
    }

    .services-grid,
    .product-strip {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 220px;
    }
}

/* Contact and shop pages */
html {
    scroll-padding-top: 100px;
}

nav.navbar .nav-menu a {
    font-size: 10px;
    letter-spacing: 0.08em;
}

.nav-menu,
.nav-menu ul {
    gap: clamp(12px, 1.5vw, 22px);
}

.contact-section {
    background: #0b0b0b;
}

.contact-form-band {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
    padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 86px);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)),
        url('https://static.wixstatic.com/media/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg/v1/fill/w_1351,h_768,al_c,q_85,usm_0.33_1.00_0.00,enc_avif,quality_auto/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg') center / cover;
}

.contact-heading {
    display: flex;
    align-items: center;
}

.contact-heading h2 {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
}

.contact-form {
    position: relative;
}

.contact-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 10px;
}

.contact-stack {
    display: grid;
    gap: 10px;
}

.contact-form label {
    display: block;
}

.contact-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.22);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    font-size: 18px;
    padding: 14px 16px;
    outline: none;
}

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

.contact-submit {
    float: right;
    margin-top: 10px;
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 12px 22px;
    font-size: 18px;
    cursor: pointer;
}

.contact-submit:hover {
    background: var(--pd-red);
    color: #fff;
}

.form-notice {
    margin: 0 0 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
}

.form-notice--success {
    border-left: 4px solid #2fb344;
}

.form-notice--error {
    border-left: 4px solid var(--pd-red);
}

.contact-map {
    height: clamp(360px, 42vw, 520px);
    background: #ddd;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.shop-page,
.product-page {
    margin-top: 94px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)),
        url('https://static.wixstatic.com/media/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg/v1/fill/w_1351,h_768,al_c,q_85,usm_0.33_1.00_0.00,enc_avif,quality_auto/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg') center top / cover fixed;
}

.shop-hero,
.product-hero {
    padding: clamp(72px, 8vw, 118px) clamp(22px, 6vw, 80px);
}

.shop-hero__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    text-align: center;
}

.shop-hero h1 {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 350;
    line-height: 1.1;
}

.shop-hero p:not(.section-label) {
    max-width: 760px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.shop-grid-section {
    padding: clamp(34px, 5vw, 78px) clamp(22px, 6vw, 80px) clamp(86px, 9vw, 128px);
    background: rgba(26, 26, 26, 0.96);
}

.shop-grid {
    display: grid;
    width: min(1180px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 42px);
}

.shop-card {
    display: grid;
    gap: 18px;
    color: #fff;
    text-decoration: none;
}

.shop-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: #981c18;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.shop-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.shop-card:hover .shop-card__image img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.shop-card__body {
    display: grid;
    gap: 6px;
}

.shop-card__title {
    font-size: 20px;
    font-weight: 750;
}

.shop-card__price {
    color: var(--pd-red);
    font-weight: 750;
}

.product-hero__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: clamp(26px, 4vw, 52px);
    background: rgba(255, 255, 255, 0.96);
    color: #111;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 34px;
    color: rgba(0, 0, 0, 0.58);
    font-size: 15px;
}

.breadcrumb a {
    color: #111;
    text-decoration: none;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(34px, 5vw, 58px);
    align-items: start;
}

.product-media {
    background: #aa1f1a;
}

.product-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
}

.product-price {
    margin: 0 0 24px;
    font-size: 22px;
    color: #111;
}

.product-info p:not(.product-price) {
    color: rgba(0, 0, 0, 0.66);
}

.product-options {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.product-options label {
    display: grid;
    gap: 8px;
    font-size: 15px;
}

.product-options select,
.product-options input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    background: #fff;
    color: #111;
    padding: 0 16px;
    font-size: 16px;
}

.product-options input {
    max-width: 130px;
}

.product-actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.product-actions .cta-button,
.product-actions .cta-secondary {
    width: 100%;
    text-align: center;
}

.product-notes {
    max-width: 720px;
    margin-top: 34px;
    color: rgba(0, 0, 0, 0.78);
    font-size: 17px;
}

.product-notes strong {
    color: var(--pd-red);
    font-style: italic;
}

.product-notes ul {
    margin: 18px 0;
    padding-left: 22px;
}

@media (max-width: 1180px) {
    .shop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .contact-form-band,
    .contact-fields,
    .product-layout {
        grid-template-columns: 1fr;
    }

    .contact-heading {
        justify-content: space-between;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 86px;
    }

    nav.navbar .nav-menu a {
        font-size: 12px;
    }

    .shop-page,
    .product-page {
        margin-top: 82px;
    }

    .contact-form-band {
        padding: 46px 18px;
    }

    .contact-submit {
        float: none;
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .product-hero__inner {
        padding: 22px;
    }
}

/* Autocollants publicitaire */
.vehicle-page {
    margin-top: 94px;
    background: #080808;
}

.vehicle-hero {
    position: relative;
    min-height: min(720px, calc(100vh - 94px));
    display: grid;
    align-items: end;
    overflow: hidden;
}

.vehicle-hero__media {
    position: absolute;
    inset: 0;
}

.vehicle-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) brightness(0.5) contrast(1.12);
}

.vehicle-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.46)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
}

.vehicle-hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(86px, 12vw, 150px) 0 clamp(58px, 8vw, 100px);
}

.vehicle-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 7vw, 94px);
    font-weight: 850;
    line-height: 0.96;
}

.vehicle-hero p:not(.section-label) {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(17px, 2vw, 22px);
}

.vehicle-hero .cta-button {
    margin-top: 34px;
}

.suppliers-section,
.templates-section,
.marking-gallery {
    padding: clamp(74px, 8vw, 116px) clamp(24px, 6vw, 80px);
}

.suppliers-section {
    background: #fff;
    color: #111;
}

.supplier-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1180px, 100%);
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.supplier-card {
    display: grid;
    min-height: 170px;
    margin: 0;
    padding: 28px;
    place-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.13);
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    background: #fff;
}

.supplier-card img {
    display: block;
    width: min(100%, 230px);
    max-height: 90px;
    object-fit: contain;
}

.plotter-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: clamp(78px, 8vw, 120px) clamp(24px, 6vw, 80px);
    background:
        linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.94)),
        url('https://static.wixstatic.com/media/5af9b94c915d43eda50c39f85f635182.jpg/v1/fill/w_1344,h_420,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/5af9b94c915d43eda50c39f85f635182.jpg') center / cover;
}

.plotter-copy {
    width: min(760px, 100%);
}

.plotter-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 0.98;
}

.plotter-copy p:not(.section-label) {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.plotter-panel {
    display: grid;
    gap: 12px;
    min-height: 280px;
    place-items: center;
    padding: 34px;
    border: 1px solid rgba(237, 28, 36, 0.44);
    background: rgba(237, 28, 36, 0.12);
    text-align: center;
}

.plotter-panel img {
    display: block;
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 0;
    background: transparent;
}

.plotter-panel span,
.plotter-panel small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plotter-panel strong {
    color: #fff;
    font-size: clamp(58px, 8vw, 110px);
    line-height: 0.9;
}

.templates-section {
    background: var(--pd-paper);
    color: #111;
}

.template-grid {
    display: grid;
    width: min(1180px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.template-card {
    min-height: 300px;
    padding: clamp(24px, 3vw, 38px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.template-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 28px;
    object-fit: contain;
    background: #f7f7f7;
}

.template-card__line {
    display: block;
    width: 72px;
    height: 4px;
    margin-bottom: 34px;
    background: var(--pd-red);
}

.template-card h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
}

.template-card p {
    margin: 22px 0 0;
    color: rgba(0, 0, 0, 0.66);
}

.marking-gallery {
    background: #090909;
}

.marking-grid {
    display: grid;
    width: min(1180px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.marking-grid figure {
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
}

.marking-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 31 / 20;
    object-fit: cover;
    background: #fff;
}

.marking-grid figcaption {
    padding: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

@media (max-width: 980px) {
    .supplier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plotter-section,
    .template-grid,
    .marking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vehicle-page {
        margin-top: 82px;
    }

    .vehicle-hero {
        min-height: calc(100vh - 82px);
    }

    .vehicle-hero__content {
        width: calc(100% - 36px);
        padding: 58px 0 48px;
    }

    .supplier-grid {
        grid-template-columns: 1fr;
    }

    .supplier-card {
        min-height: 96px;
        padding: 22px;
    }

    .supplier-card img {
        max-height: 74px;
    }
}

/* A propos */
.about-page {
    margin-top: 94px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.92)),
        url('https://static.wixstatic.com/media/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg/v1/fill/w_1351,h_768,al_c,q_85,usm_0.33_1.00_0.00,enc_avif,quality_auto/11062b_c18db2b1461b46f2ad31bae61009fee1f000.jpg') center top / cover fixed;
}

.about-hero {
    padding: clamp(96px, 12vw, 170px) clamp(24px, 6vw, 80px) clamp(58px, 8vw, 98px);
}

.about-hero__inner,
.about-content,
.about-legal {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #fff;
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 850;
    line-height: 0.95;
}

.about-hero p:not(.section-label) {
    max-width: 780px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(18px, 2vw, 23px);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(34px, 6vw, 80px);
    padding: 0 clamp(24px, 6vw, 80px) clamp(78px, 9vw, 130px);
}

.about-copy {
    display: grid;
    gap: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.about-lists {
    display: grid;
    gap: 18px;
}

.about-lists article {
    padding: clamp(24px, 3vw, 36px);
    border-left: 4px solid var(--pd-red);
    background: rgba(255, 255, 255, 0.06);
}

.about-lists h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
}

.about-lists ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.76);
}

.about-lists li::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 12px;
    background: var(--pd-red);
}

.about-legal {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(42px, 6vw, 72px) clamp(24px, 6vw, 80px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.55);
}

.about-legal h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
}

.about-legal dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.about-legal dl div {
    display: grid;
    grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-legal dt {
    color: var(--pd-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-legal dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.about-legal a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 900px) {
    .about-content,
    .about-legal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page {
        margin-top: 82px;
    }

    .about-hero,
    .about-content,
    .about-legal {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-legal dl div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

nav.navbar {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

nav.navbar.is-scrolled {
    background: rgba(10, 10, 10, 0.58);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

nav.navbar.is-menu-open {
    background: rgba(10, 10, 10, 0.9);
}

@media (max-width: 768px) {
    nav.navbar {
        background: rgba(10, 10, 10, 0.78);
    }

    nav.navbar.is-scrolled {
        background: rgba(10, 10, 10, 0.56);
    }

    nav.navbar.is-menu-open {
        background: rgba(10, 10, 10, 0.92);
    }

    .nav-panel {
        background: rgba(10, 10, 10, 0.84);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}
