/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    background: #f1f1f1;
    color: #0a0a0a;
}

::selection {
    background: #006039;
    color: white;
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #006039 0%, #0bb16e 100%);
    z-index: 99999;
    transition: width 0.1s ease;
}


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #006039;
    border: 2px solid #0a0a0a;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: transform 0.12s ease;
}


/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1b1b1b;
}

::-webkit-scrollbar-thumb {
    background: #006039;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00492c;
}


/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.is-sticky {
    background: #0a0a0aaa;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
}

.site-header.menu-is-open {
    background: #0a0a0a !important;
    box-shadow: none !important;
}

.site-header__logo img {
    width: 200px;
    transition: width 0.4s ease;
}

.site-header.is-sticky .site-header__logo img {
    width: 150px;
}


/* ============================================================
   MENU TOGGLE (BURGER)
   ============================================================ */

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: none;
    z-index: 10001;
    position: relative;
}

.menu-toggle__line {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.35s ease, transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
}

.menu-toggle__line:nth-child(1) { width: 32px; }
.menu-toggle__line:nth-child(2) { width: 22px; }
.menu-toggle__line:nth-child(3) { width: 28px; }

.site-header.is-sticky .menu-toggle:not(.is-open) .menu-toggle__line {
    background: #ffffff;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
    width: 30px;
    transform: translateY(8px) rotate(45deg);
    background: #fff;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
    width: 30px;
    transform: translateY(-8px) rotate(-45deg);
    background: #fff;
}

.menu-toggle:not(.is-open):hover .menu-toggle__line {
    width: 32px;
}


/* ============================================================
   NAV MENU OVERLAY
   ============================================================ */

.nav-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 60px;
    pointer-events: none;
    visibility: hidden;
}

.nav-menu__backdrop {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-menu__backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #006039;
}

.nav-menu.is-open {
    pointer-events: all;
    visibility: visible;
}

.nav-menu.is-open .nav-menu__backdrop {
    transform: scaleY(1);
    transform-origin: top center;
}

.nav-menu.is-closing {
    pointer-events: none;
    visibility: visible;
}

.nav-menu.is-closing .nav-menu__backdrop {
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-menu.is-closing .nav-item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-menu.is-closing .nav-menu__footer {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Nav list */

.nav-menu__list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease;
}

.nav-menu.is-open .nav-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.nav-menu.is-open .nav-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.nav-menu.is-open .nav-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.nav-menu.is-open .nav-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.nav-menu.is-open .nav-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }

.nav-item:hover {
    border-bottom-color: rgba(66, 146, 75, 0.4);
}

.nav-item__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #006039;
    flex-shrink: 0;
    width: 40px;
}

.nav-item__text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #787878;
    line-height: 1;
    letter-spacing: -2px;
    flex: 1;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.nav-item:hover .nav-item__text {
    color: #ffffff;
    letter-spacing: -1px;
}

.nav-item__arrow {
    font-size: 20px;
    color: #006039;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.nav-item:hover .nav-item__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Nav footer */

.nav-menu__footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    opacity: 0;
    transition: opacity 0.4s ease 0.55s;
}

.nav-menu.is-open .nav-menu__footer {
    opacity: 1;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1900px;
    padding: 0 40px;
}

.hero__content h1 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero__content p {
    font-size: 16px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.hero__title-img {
    display: block;
    width: 60vw;
    max-width: 1600px;
    margin: 0 auto 28px;
    filter: invert(1) drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}

@media (max-width: 768px) {
    .hero__title-img {max-width: 100%;}
    .nav-item__text{color: white;}
}


/* ============================================================
   SCROLL HINT (CHEVRON INDICATOR)
   ============================================================ */

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-hint__chevrons {
    display: flex;
    flex-direction: column;
}

.scroll-hint__chevron {
    width: 30px;
    height: 30px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg);
    animation: chevron-bounce 2s infinite;
}

.scroll-hint__chevron:nth-child(2) { animation-delay: 0.2s; opacity: 0.7; }
.scroll-hint__chevron:nth-child(3) { animation-delay: 0.4s; opacity: 0.4; }

@keyframes chevron-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

.scroll-hint__label {
    padding-top: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   COLLABORATION SECTION (ACCORDION)
   ============================================================ */

.collab-section {
    background: #0a0a0a;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.collab-section__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.85;
    color: white;
    letter-spacing: -3px;
}

.section-title--outline {
    color: transparent;
    -webkit-text-stroke: 4px #006039;
}

.collab-section__header-right {
    text-align: right;
    padding-bottom: 10px;
}

.collab-section__header-right p {
    font-size: 20px;
    color: #888;
    line-height: 1.8;
    max-width: 800px;
}

/* Accordion items */

.collab-item {
    border-top: 1px solid #1e1e1e;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.collab-item:last-child {
    border-bottom: 1px solid #1e1e1e;
}

.collab-item:hover {
    border-color: #333;
}

.collab-item__head {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    transition: all 0.3s;
}

.collab-item__name {
    font-family: 'BROLINK', sans-serif;
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #888;
    line-height: 1;
    letter-spacing: -1px;
    flex: 1;
    transition: color 0.35s ease;
}

.collab-item:hover .collab-item__name {
    color: white;
}

.collab-item__icon {
    font-size: 28px;
    color: #1e1e1e;
    flex-shrink: 0;
    transition: all 0.4s ease;
    width: 40px;
    text-align: right;
}

.collab-item:hover .collab-item__icon {
    color: #006039;
    transform: rotate(45deg);
}

.collab-item__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 0 0 100px;
}

.collab-item:hover .collab-item__body {
    max-height: 200px;
    padding: 0 0 40px 100px;
}

.collab-item__desc {
    font-size: 16px;
    color: #888;
    line-height: 1.85;
}

.collab-item__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collab-item__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #006039;
    padding-bottom: 4px;
    padding-top: 15px;
    width: fit-content;
    transition: gap 0.3s;
    cursor: none;
}

.collab-item__link:hover {
    gap: 18px;
}


/* ============================================================
   COLLABORATION DETAIL (EXTENDED)
   ============================================================ */

.collab-detail {
    background: #f1f1f1;
    padding: 0 80px 100px 80px;
    margin-top: 80px;
}

.collab-detail__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.collab-detail__text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.collab-detail__highlight {
    color: #006039;
}

.collab-detail__text p {
    font-size: 17px;
    color: #000000;
    line-height: 1.9;
    margin-bottom: 20px;
}

.collab-detail__text p:last-child {
    margin-bottom: 0;
}

.collab-detail__img-wrapper {
    position: relative;
    overflow: hidden;
}

.collab-detail__img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.6);
}

.collab-detail__tag {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #006039;
    color: white;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ============================================================
   PRODUCT SECTION (FEATURED PRODUCT)
   ============================================================ */

.product-section {
    background: #000000;
    padding: 120px 80px;
    position: relative;
}

.product-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
}

/* Gallery */

.product-gallery__main {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-bottom: 20px;
    filter: brightness(0.6);
}

.product-gallery__main .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-gallery__badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #006039;
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-gallery__thumbs .thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    cursor: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-gallery__thumbs .thumb:hover,
.product-gallery__thumbs .thumb.is-active {
    border-color: #006039;
    opacity: 1;
}

/* Product content */

.product-section__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #006039;
    margin-bottom: 20px;
}

.product-section__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.product-section__title .highlight {
    color: #006039;
}

.product-section__subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 500;
}

.product-section__price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-bottom: 1px solid #1e1e1e;
}

.product-section__price .price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
}

.product-section__price .price-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: rgb(255, 255, 255);
    letter-spacing: -1px;
}

.product-section__desc {
    margin-bottom: 45px;
}

.product-section__desc p {
    font-size: 16px;
    color: #999;
    line-height: 1.9;
    margin-bottom: 20px;
}

.product-section__desc p:last-child {
    margin-bottom: 0;
}

/* Product features */

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-item i {
    font-size: 24px;
    color: #006039;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.feature-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

/* CTA buttons */

.product-section__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-decoration: none;
}

.btn-book {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: #006039;
    color: #fff;
    border: 2px solid #006039;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00492c;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}

.btn-book:hover::before {
    transform: translateX(0);
}

.btn-book:hover {
    gap: 16px;
}

.btn-book span,
.btn-book i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: transparent;
    color: #888;
    border: 2px solid #1e1e1e;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #006039;
    color: white;
}

/* Product note */

.product-section__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 96, 57, 0.05);
    border-left: 3px solid #006039;
}

.product-section__note i {
    font-size: 16px;
    color: #006039;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-section__note p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   PRODUCT DETAILS (ACCORDION)
   ============================================================ */

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    background: #000000;
}

.product-details.is-open {
    max-height: 5000px;
}

.product-details__inner {
    padding: 80px 80px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Specs block */

.specs-block__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.specs-block__title i {
    font-size: 36px;
    color: #006039;
}

.specs-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Specs card */

.specs-card {
    background: #111;
    padding: 30px;
    transition: all 0.3s ease;
}

.specs-card:hover {
    background: #141414;
}

.specs-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs-card h4 i {
    font-size: 22px;
    color: #006039;
}

.specs-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-card li {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
}

.specs-card li:last-child {
    border-bottom: none;
}

.specs-card li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #006039;
    font-size: 10px;
}

/* Options block */

.options-block {
    margin-bottom: 60px;
}

.options-block__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.options-block__title i {
    font-size: 36px;
    color: #006039;
}

.options-block__table {
    background: #111;
    border: 1px solid #1e1e1e;
    overflow: hidden;
}

.option-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 20px 30px;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.option-row:last-child {
    border-bottom: none;
}

.option-row:hover {
    background: rgba(0, 96, 57, 0.05);
    padding-left: 40px;
}

.option-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-col i {
    font-size: 18px;
    color: #006039;
    flex-shrink: 0;
}

.option-label {
    font-size: 15px;
    color: #ddd;
    font-weight: 500;
}

.option-col-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    white-space: nowrap;
}

.options-block__note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(0, 96, 57, 0.05);
    border-left: 3px solid #006039;
    margin-top: 30px;
}

.options-block__note i {
    font-size: 18px;
    color: #006039;
    flex-shrink: 0;
    margin-top: 2px;
}

.options-block__note p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   NEWS SECTION
   ============================================================ */

.news-section {
    background: #d1d1d1;
    background: linear-gradient(351deg, rgba(209, 209, 209, 1) 0%, rgba(247, 247, 247, 1) 50%, rgba(235, 235, 235, 1) 100%);
    padding: 100px 80px;
    position: relative;
}

.news-section__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e1e1e;
}

.news-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.85;
    color: rgb(0, 0, 0);
    letter-spacing: -3px;
}

.news-title--outline {
    color: #006039;
}

.news-section__header-right {
    text-align: right;
    padding-bottom: 10px;
}

.news-section__header-right p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    max-width: 500px;
}

/* News grid */

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* News card */

.news-card {
    background: #111;
    border: 1px solid #1e1e1e;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.news-card:hover {
    border-color: #006039;
    transform: translateY(-8px);
}

.news-card__img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}

.news-card__date {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #006039;
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-card__content {
    padding: 45px 40px;
}

.news-card__category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #006039;
    margin-bottom: 18px;
}

.news-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.news-card__excerpt {
    font-size: 16px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #006039;
    padding-bottom: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
    cursor: none;
}

.news-card__link:hover {
    gap: 18px;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact {
    background: #f1f1f1;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 120px;
    align-items: start;
}

.contact__highlight {
    color: #006039;
}

.contact__form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6px;
}

.contact__overline {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #006039;
    margin-bottom: 28px;
    display: block;
}

.contact__left h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #0a0a0a;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.contact__tagline {
    font-size: 16px;
    color: #777;
    line-height: 1.9;
    margin-bottom: 52px;
}

.contact__info {
    margin-bottom: 28px;
}

.contact__info:last-child {
    margin-bottom: 0;
}

.contact__info .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}

.contact__info a {
    font-size: 16px;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact__info a:hover {
    color: #006039;
}

.contact__socials {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.contact__socials a {
    font-size: 16px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: none;
}

.contact__socials a:hover {
    color: #0a0a0a;
}

/* Contact form */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    position: relative;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.form-field:focus-within label {
    color: #0a0a0a;
}

.form-field input,
.form-field textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    border-radius: 0;
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #0a0a0a;
    background: #fff;
}

.form-field input:hover:not(:focus),
.form-field textarea:hover:not(:focus) {
    border-color: #bbb;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #bbb;
    font-size: 13px;
}

.form-field textarea {
    resize: none;
    min-height: 130px;
    line-height: 1.7;
}

.form-field select {
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    outline: none;
    appearance: none;
    border-radius: 0;
    width: 100%;
    cursor: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-field select:focus {
    border-color: #0a0a0a;
    background-color: #fff;
}

.form-field select:hover:not(:focus) {
    border-color: #bbb;
}

.form-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #006039;
    transition: width 0.35s ease;
}

.form-field:focus-within::after {
    width: 100%;
}

.form-honeypot {
    display: none;
}

.form-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 8px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 36px;
    background: #0a0a0a;
    color: #fff;
    border: 1.5px solid #0a0a0a;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, gap 0.3s ease;
    flex-shrink: 0;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #006039;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}

.form-submit:hover::before {
    transform: translateX(0);
}

.form-submit:hover {
    gap: 16px;
    border-color: #006039;
}

.form-submit span,
.form-submit i {
    position: relative;
    z-index: 1;
}

.form-submit:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.form-note {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.form-feedback {
    display: none;
    grid-column: 1 / -1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0 0 20px 0;
}

.form-feedback.is-success { display: block; color: #2d6a2d; }
.form-feedback.is-error   { display: block; color: #b01010; }


/* ============================================================
   NEWSLETTER BUTTON (FAB)
   ============================================================ */

.newsletter-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #006039;
    border: 2px solid #006039;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: none;
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

.newsletter-btn__label {
    position: absolute;
    left: -150px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.newsletter-btn:hover {
    width: 200px;
    border-radius: 30px;
    background: #00492c;
    border-color: #00492c;
}

.newsletter-btn:hover .newsletter-btn__label {
    left: 24px;
    opacity: 1;
}

.newsletter-btn:hover i {
    transform: translateX(70px);
}

.newsletter-btn i {
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}


/* ============================================================
   NEWSLETTER POPUP (MODAL)
   ============================================================ */

.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup.is-open .newsletter-popup__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.newsletter-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.492);
    backdrop-filter: blur(8px);
}

.newsletter-popup__box {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 540px;
    padding: 50px 45px;
    border-radius: 0;
    border-left: 6px solid #006039;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.newsletter-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-popup__close:hover {
    color: #0a0a0a;
    transform: rotate(90deg);
}

.newsletter-popup__header {
    margin-bottom: 35px;
    text-align: center;
}

.newsletter-popup__header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #0a0a0a;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.newsletter-popup__header p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Newsletter form */

.newsletter-form-wrap {
    width: 100%;
}

.sib-form-message-panel {
    display: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.sib-form-message-panel--success {
    color: #2d6a2d;
    background: #e8f5e9;
    border-left: 4px solid #2d6a2d;
}

.sib-form-message-panel--error {
    color: #b01010;
    background: #ffebee;
    border-left: 4px solid #b01010;
}

.sib-form-message-panel__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sib-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}

.newsletter-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.newsletter-field:focus-within label {
    color: #0a0a0a;
}

.newsletter-field input {
    padding: 15px 18px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #0a0a0a;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.newsletter-field input:focus {
    border-color: #0a0a0a;
    background: #fff;
}

.newsletter-field input::placeholder {
    color: #bbb;
    font-size: 13px;
}

.newsletter-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #006039;
    transition: width 0.35s ease;
}

.newsletter-field:focus-within::after {
    width: 100%;
}

.entry__error {
    display: none;
    font-size: 11px;
    color: #b01010;
    margin-top: 6px;
}

/* Optin checkbox */

.newsletter-optin {
    margin-bottom: 28px;
}

.optin-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: none;
}

.optin-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    flex-shrink: 0;
    position: relative;
    transition: all 0.25s ease;
}

.optin-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #006039;
    border-color: #006039;
}

.optin-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.optin-text {
    font-size: 14px;
    color: #3C4858;
    line-height: 1.6;
}

.optin-note {
    font-size: 11px;
    color: #999;
    line-height: 1.6;
    margin-top: 8px;
    margin-left: 32px;
}

/* Newsletter submit */

.newsletter-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 16px 40px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    border: 1.5px solid #0a0a0a !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    cursor: none !important;
    position: relative !important;
    overflow: hidden !important;
    transition: color 0.35s ease, gap 0.3s ease !important;
    margin-bottom: 20px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #006039;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}

.newsletter-submit:hover::before {
    transform: translateX(0);
}

.newsletter-submit:hover {
    gap: 16px !important;
    border-color: #006039 !important;
}

.newsletter-submit span,
.newsletter-submit i {
    position: relative !important;
    z-index: 1 !important;
}

.newsletter-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: auto !important;
}

.sib-hide-loader-icon,
.progress-indicator__icon {
    display: none !important;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

.newsletter-submit.loading .sib-hide-loader-icon {
    display: none !important;
}

.newsletter-submit.loading .fa-arrow-right {
    display: inline-block !important;
}

.sib-form button[type="submit"]::after,
.sib-form button[type="submit"]::before {
    display: none !important;
}

.sib-form .g-recaptcha {
    display: none !important;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.newsletter-note {
    font-size: 11px;
    color: #999;
    line-height: 1.6;
    text-align: center;
}

.input--hidden {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    max-height: 0 !important;
    overflow: hidden !important;
}


/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
    background: #0a0a0a;
    padding: 80px 40px 40px;
}

.site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #0a0a0a;
}

.site-footer__brand {
    border-right: 1px solid #444;
    padding-right: 60px;
}

.site-footer__logo {
    width: 200px;
    margin-bottom: 25px;
}

.site-footer__brand p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.site-footer__brand strong {
    color: #006039;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__col ul {
    list-style: none;
}

.site-footer__col ul li {
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.site-footer__col ul li:hover {
    border-left-color: #006039;
    padding-left: 20px;
}

.site-footer__col a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.site-footer__col a:hover {
    color: #006039;
}

.site-footer__socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 35px;
}

.social-link:hover {
    color: #006039;
}

.site-footer__bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.site-footer__bottom a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.site-footer__bottom a:hover {
    color: #006039;
}


/* ============================================================
   RESPONSIVE — TABLET LARGE  (max 1100px)
   ============================================================ */

@media (max-width: 1100px) {

    /* Header */
    .site-header { padding: 18px 40px; }
    .site-header.is-sticky { padding: 12px 30px; }
    .site-header__logo img { width: 180px; }
    .nav-item__text{color: white;}

    /* Hero */
    .hero__title-img { width: 72vw; }

    /* Collab section */
    .collab-section { padding: 80px 50px; }
    .section-title { font-size: 82px; }
    .collab-section__header-right p { font-size: 17px; }
    .collab-item__name { font-size: 52px; }

    /* Collab detail */
    .collab-detail { padding: 0 50px 80px; }
    .collab-detail__text h3 { font-size: 52px; }
    .collab-detail__img { height: 600px; }

    /* Product */
    .product-section { padding: 100px 50px; }
    .product-section__grid { gap: 60px; }
    .product-section__title { font-size: 58px; }
    .product-gallery__main { height: 500px; }

    /* News */
    .news-section { padding: 80px 50px; }
    .news-title { font-size: 82px; }
    .news-grid { gap: 40px; }
    .news-card__title { font-size: 32px; }

    /* Contact */
    .contact { padding: 80px 50px; gap: 80px; }

    /* Footer */
    .site-footer { padding: 60px 50px 36px; }
    .site-footer__top { gap: 40px; }
}


/* ============================================================
   RESPONSIVE — TABLET  (max 968px)
   ============================================================ */

@media (max-width: 968px) {

    /* ── Header ── */
    .site-header { padding: 14px 30px; }
    .site-header.is-sticky { padding: 10px 24px; }
    .site-header__logo img { width: 170px; }
    .site-header.is-sticky .site-header__logo img { width: 150px; }
    .nav-item__text{color: white;}

    /* ── Nav menu ── */
    .nav-menu { padding: 100px 48px 48px; }
    .nav-item__text { font-size: 52px; letter-spacing: -1.5px; }
    .nav-item { padding: 14px 0; }

    /* ── Hero ── */
    .hero__title-img { width: 80vw; }
    .hero__content p { font-size: 15px; padding: 0 20px; }
    .scroll-hint { bottom: 28px; }

    /* ── Collab section ── */
    .collab-section { padding: 70px 40px; }
    .collab-section__header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
        padding-bottom: 32px;
    }
    .collab-section__header-right { text-align: left; }
    .collab-section__header-right p { font-size: 16px; max-width: 100%; }
    .section-title { font-size: 70px; letter-spacing: -2px; }
    .collab-item__head { gap: 24px; padding: 24px 0; }
    .collab-item__name { font-size: 42px; }
    .collab-item__body {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0 28px 52px;
    }
    .collab-item:hover .collab-item__body { padding: 0 0 28px 52px; }
    .collab-item__desc { font-size: 15px; }

    /* ── Collab detail ── */
    .collab-detail { padding: 0 40px 72px; margin-top: 60px; }
    .collab-detail__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .collab-detail__text h3 { font-size: 46px; letter-spacing: -1.5px; }
    .collab-detail__text p { font-size: 16px; }
    /* Image passe en dessous du texte sur tablet */
    .collab-detail__img-wrapper { order: -1; }
    .collab-detail__img { height: 420px; }

    /* ── Product section ── */
    .product-section { padding: 72px 40px; }
    .product-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .product-section__gallery { position: static; }
    .product-gallery__main { height: 420px; }
    .product-gallery__thumbs .thumb { height: 120px; }
    .product-section__title { font-size: 54px; }
    .product-section__price .price-value { font-size: 42px; }
    .product-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .product-section__cta { flex-direction: row; }
    .btn-book { flex: 1; justify-content: center; }

    /* ── Product details ── */
    .product-details__inner { padding: 56px 40px 40px; }
    .specs-block__title { font-size: 38px; }
    .specs-block__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .specs-card { padding: 24px; }
    .specs-card h4 { font-size: 22px; }
    .specs-card li { font-size: 14px; }

    /* ── News ── */
    .news-section { padding: 72px 40px; }
    .news-section__header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
        padding-bottom: 32px;
    }
    .news-section__header-right { text-align: left; }
    .news-section__header-right p { max-width: 100%; }
    .news-title { font-size: 70px; letter-spacing: -2px; }
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .news-card__title { font-size: 28px; }
    .news-card__content { padding: 32px 28px; }
    .news-card__img-wrapper { height: 240px; }
    .news-card__excerpt { font-size: 14px; }

    /* ── Contact ── */
    .contact {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 40px;
    }
    .contact__left h2 { font-size: 42px; }
    .contact__tagline { margin-bottom: 36px; }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .form-submit { width: 100%; justify-content: center; }

    /* ── Footer ── */
    .site-footer { padding: 60px 40px 32px; }
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .site-footer__brand {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid #222;
        padding-right: 0;
        padding-bottom: 40px;
    }
    .site-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .site-footer__bottom a { margin-left: 12px; }

    /* ── Newsletter popup ── */
    .newsletter-popup__box { max-width: 480px; }
}


/* ============================================================
   RESPONSIVE — MOBILE LARGE  (max 768px)
   ============================================================ */

@media (max-width: 768px) {

    /* ── Header ── */
    .site-header { padding: 12px 20px; }
    .site-header.is-sticky { padding: 8px 16px; }
    .site-header__logo img { width: 150px; }
    .site-header.is-sticky .site-header__logo img { width: 130px; }
    .nav-item__text{color: white;}

    /* ── Nav menu ── */
    .nav-menu { padding: 88px 28px 40px; }
    .nav-menu__backdrop::after { font-size: 200px; right: 20px; }
    .nav-item { padding: 12px 0; gap: 16px; }
    .nav-item__number { font-size: 11px; width: 32px; }
    .nav-item__text { font-size: 42px; letter-spacing: -1px; }
    .nav-menu__footer { flex-direction: column; gap: 4px; text-align: center; font-size: 10px; }

    /* ── Hero ── */
    .hero__title-img { width: 90vw; }
    .hero__content p {
        font-size: 14px;
        padding: 0 8px;
        margin-bottom: 0;
    }
    .scroll-hint { bottom: 20px; gap: 6px; }
    .scroll-hint__chevron { width: 22px; height: 22px; }
    .scroll-hint__label { font-size: 10px; }

    /* ── Collab section ── */
    .collab-section { padding: 56px 20px; }
    .collab-section__header { margin-bottom: 36px; padding-bottom: 24px; }
    .section-title { font-size: 52px; letter-spacing: -2px; }
    .collab-item__head { gap: 16px; padding: 20px 0; }
    .collab-item__name { font-size: 32px; letter-spacing: -0.5px; }
    .collab-item__icon { font-size: 22px; }
    .collab-item__body { padding: 0 0 20px 40px; }
    .collab-item:hover .collab-item__body { padding: 0 0 20px 40px; max-height: 300px; }
    .collab-item__desc { font-size: 14px; line-height: 1.75; }
    .collab-item__link { font-size: 14px; letter-spacing: 2px; }

    /* ── Collab detail ── */
    .collab-detail { padding: 0 20px 56px; margin-top: 40px; }
    .collab-detail__text h3 { font-size: 36px; letter-spacing: -1px; margin-bottom: 20px; }
    .collab-detail__text p { font-size: 15px; line-height: 1.8; }
    .collab-detail__img { height: 280px; }

    /* ── Product section ── */
    .product-section { padding: 56px 20px; }
    .product-section__grid { gap: 36px; }
    .product-gallery__main { height: 280px; }
    .product-gallery__thumbs { gap: 8px; }
    .product-gallery__thumbs .thumb { height: 80px; }
    .product-section__title { font-size: 40px; letter-spacing: -1px; }
    .product-section__price { padding: 18px 0; margin-bottom: 24px; }
    .product-section__price .price-value { font-size: 38px; }
    .product-section__desc p { font-size: 14px; }
    .product-features {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
        margin-bottom: 32px;
    }
    .feature-item { gap: 14px; }
    .feature-item i { font-size: 20px; }
    .feature-value { font-size: 15px; }
    .product-section__cta { flex-direction: column; }
    .btn-book { width: 100%; justify-content: center; padding: 16px 28px; }

    /* ── Product details ── */
    .product-details__inner { padding: 40px 20px 32px; }
    .specs-block__title {
        font-size: 30px;
        gap: 14px;
        margin-bottom: 28px;
        flex-direction: row;
        align-items: center;
    }
    .specs-block__title i { font-size: 26px; }
    .specs-block__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .specs-card { padding: 20px; }
    .specs-card h4 { font-size: 20px; gap: 10px; margin-bottom: 14px; }
    .specs-card h4 i { font-size: 18px; }
    .specs-card li { font-size: 13px; padding: 6px 0 6px 20px; }

    /* ── News ── */
    .news-section { padding: 56px 20px; }
    .news-section__header { margin-bottom: 36px; padding-bottom: 24px; }
    .news-title { font-size: 52px; letter-spacing: -2px; }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .news-card__img-wrapper { height: 220px; }
    .news-card__content { padding: 28px 24px; }
    .news-card__title { font-size: 30px; letter-spacing: -0.5px; margin-bottom: 14px; }
    .news-card__excerpt { font-size: 14px; margin-bottom: 22px; }
    .news-card__date { font-size: 11px; padding: 8px 14px; }
    .news-card__link { font-size: 13px; letter-spacing: 2px; }

    /* ── Contact ── */
    .contact { padding: 56px 20px; gap: 40px; }
    .contact__left h2 { font-size: 36px; }
    .contact__tagline { font-size: 14px; margin-bottom: 28px; }
    .contact__info { margin-bottom: 20px; }
    .contact__info a { font-size: 14px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .form-field { margin-bottom: 18px; }
    .form-submit { width: 100%; justify-content: center; padding: 14px; }
    .form-note { font-size: 12px; }

    /* ── Footer ── */
    .site-footer { padding: 48px 20px 28px; }
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .site-footer__brand {
        grid-column: 1;
        padding-bottom: 32px;
    }
    .site-footer__logo { width: 160px; margin-bottom: 18px; }
    .site-footer__brand p { font-size: 13px; }
    .site-footer__col h4 { font-size: 13px; margin-bottom: 14px; }
    .site-footer__col a { font-size: 13px; }
    .site-footer__col ul li { margin-bottom: 8px; }
    .site-footer__bottom { padding-top: 28px; font-size: 12px; gap: 10px; }
    .site-footer__bottom a { margin-left: 8px; font-size: 12px; }
    .social-link { width: 40px; height: 40px; }
    .social-link i { font-size: 26px; }

    /* ── Newsletter FAB ── */
    .newsletter-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
    .newsletter-btn:hover { width: 52px; border-radius: 50%; }
    .newsletter-btn__label { display: none; }
    .newsletter-btn:hover i { transform: translateX(0); }

    /* ── Newsletter popup ── */
    .newsletter-popup__box {
        width: 94%;
        padding: 36px 24px;
        border-left-width: 4px;
    }
    .newsletter-popup__header { margin-bottom: 24px; }
    .newsletter-popup__header h3 { font-size: 34px; margin-bottom: 10px; }
    .newsletter-popup__header p { font-size: 14px; }
    .newsletter-field { margin-bottom: 20px; }
    .newsletter-field input { padding: 13px 14px; font-size: 14px; }
    .newsletter-submit {
        padding: 14px 28px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE SMALL  (max 480px)
   ============================================================ */

@media (max-width: 480px) {

    /* ── Header ── */
    .site-header { padding: 10px 16px; }
    .site-header__logo img { width: 130px; }
    .nav-item__text{color: white;}

    /* ── Nav menu ── */
    .nav-menu { padding: 80px 20px 32px; }
    .nav-item__text { font-size: 34px; }
    .nav-item { gap: 12px; padding: 10px 0; }

    /* ── Hero ── */
    .hero__title-img { width: 95vw; }
    .hero__content p { font-size: 13px; }

    /* ── Section titles ── */
    .section-title { font-size: 42px; letter-spacing: -1.5px; }
    .news-title { font-size: 42px; letter-spacing: -1.5px; }

    /* ── Collab section ── */
    .collab-section { padding: 48px 16px; }
    .collab-item__name { font-size: 28px; }
    .collab-item__body { padding: 0 0 16px 28px; }
    .collab-item:hover .collab-item__body { padding: 0 0 16px 28px; }

    /* ── Collab detail ── */
    .collab-detail { padding: 0 16px 48px; margin-top: 32px; }
    .collab-detail__text h3 { font-size: 30px; }
    .collab-detail__img { height: 240px; }

    /* ── Product ── */
    .product-section { padding: 48px 16px; }
    .product-section__title { font-size: 34px; }
    .product-section__price .price-value { font-size: 32px; }
    .product-gallery__main { height: 240px; }
    .product-gallery__thumbs .thumb { height: 68px; }
    .product-details__inner { padding: 32px 16px 24px; }
    .specs-block__title { font-size: 26px; }

    /* ── News ── */
    .news-section { padding: 48px 16px; }
    .news-card__title { font-size: 26px; }
    .news-card__img-wrapper { height: 190px; }
    .news-card__content { padding: 22px 18px; }

    /* ── Contact ── */
    .contact { padding: 48px 16px; gap: 32px; }
    .contact__left h2 { font-size: 30px; }

    /* ── Footer ── */
    .site-footer { padding: 40px 16px 24px; }
    .site-footer__bottom div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 0;
    }
    .site-footer__bottom a { margin-left: 10px; }

    /* ── Newsletter popup ── */
    .newsletter-popup__box { padding: 28px 18px; }
    .newsletter-popup__header h3 { font-size: 28px; }
}


/* ============================================================
   RESPONSIVE — TOUCH : désactive les effets hover hover-only
   (évite les états bloqués sur mobile)
   ============================================================ */

@media (hover: none) {

    .collab-item__body {
        max-height: 0;
        padding: 0;
    }
    .collab-item.is-open .collab-item__body {
        max-height: 400px;
        padding: 0 0 24px 40px;
    }
    .collab-item.is-open .collab-item__name { color: white; }
    .collab-item.is-open .collab-item__icon { color: #006039; transform: rotate(45deg); }

    .news-card:hover { transform: none; }
    .newsletter-btn:hover { width: 52px; border-radius: 50%; }
    .newsletter-btn:hover i { transform: translateX(0); }
    .newsletter-btn:hover .newsletter-btn__label { opacity: 0; }
}