/* =========================================================
   OXYGENE MONTAGNE
   Fichier : /assets/css/style.css
   Header sticky — logo et menu augmentés de 20 %
   ========================================================= */

:root {
    --yellow: #f4c430;
    --yellow-dark: #d9a900;
    --yellow-pale: #fff8dc;

    --gold-text: #8d6b00;
    --gold-text-hover: #6f5400;

    --black: #171717;
    --text: #252525;
    --muted: #626262;

    --white: #ffffff;
    --light: #f5f5f5;
    --soft: #fafafa;

    --border: #dddddd;
    --border-yellow: #ead16a;

    --shadow-small: 0 5px 18px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.11);
    --shadow-yellow: 0 12px 28px rgba(244, 196, 48, 0.22);

    --radius-small: 8px;
    --radius-medium: 15px;

    --container: 1180px;
    --header-container: 1392px;
    --transition: 0.25s ease;

    --font-body: 19.2px;
    --font-text: 1.2rem;
    --font-lead: 1.296rem;
    --font-button: 1.14rem;
    --font-footer: 1.14rem;

    --font-h1-page: clamp(2.4rem, 4vw, 3.25rem);
    --font-h1-home: clamp(3rem, 5.2vw, 4.5rem);
    --font-h2: clamp(1.8rem, 2.8vw, 2.35rem);
    --font-h3: clamp(1.18rem, 1.8vw, 1.4rem);
    --font-h4: 1.08rem;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--font-body);
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin-top: 0;
}


/* =========================================================
   TYPOGRAPHIE
   ========================================================= */

p {
    margin-top: 0;
    margin-bottom: 1.35rem;
    font-size: var(--font-text);
    line-height: 1.65;
}

p:last-child {
    margin-bottom: 0;
}

.lead,
.intro,
.section-subtitle {
    font-size: var(--font-lead);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: -0.015em;
}

h1 {
    margin-bottom: 1.3rem;
    font-size: var(--font-h1-page);
    line-height: 1.08;
}

h2 {
    margin-bottom: 1.15rem;
    font-size: var(--font-h2);
    line-height: 1.15;
}

h3 {
    margin-bottom: 0.8rem;
    font-size: var(--font-h3);
    line-height: 1.2;
}

h4 {
    margin-bottom: 0.7rem;
    font-size: var(--font-h4);
    line-height: 1.25;
}

.section-title,
.section h2,
.content h2,
.page-content h2,
.cta h2,
.cta-band h2,
.cta-section h2,
.contact-band h2 {
    font-size: var(--font-h2);
    line-height: 1.15;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-right: auto;
    margin-left: auto;
}

main {
    display: block;
    min-height: 50vh;
}

.section,
.content {
    position: relative;
    padding: 75px 0;
}

.section-alt,
.section-light,
.bg-light {
    background: var(--light);
}

.section-soft {
    background: var(--soft);
}

.section-yellow {
    background: var(--yellow-pale);
}

.section-header {
    max-width: 900px;
    margin-bottom: 38px;
}

.section-header.center,
.text-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-header p {
    color: var(--muted);
    font-size: var(--font-text);
    line-height: 1.65;
}

.content-narrow {
    max-width: 900px;
}

.content-center {
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   HEADER STICKY
   ========================================================= */

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.site-header.is-sticky,
.site-header.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.site-header .container {
    width: min(calc(100% - 40px), var(--header-container));
    margin-right: auto;
    margin-left: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 88px;
    gap: 0;
}

.site-logo,
.logo,
.header-logo,
.navbar-brand,
.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    height: 86px;
    margin-right: 34px;
}

.site-logo img,
.logo img,
.header-logo img,
.navbar-brand img,
.brand img {
    width: 242px;
    height: 86px;
    max-width: 242px;
    max-height: 86px;
    object-fit: contain;
    transform: none;
}


/* Navigation desktop */

.main-nav,
.main-navigation,
.site-nav,
.navigation {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    gap: 12px;
    white-space: nowrap;
}

.main-nav ul,
.main-navigation ul,
.site-nav ul,
.navigation ul,
.main-navigation .menu,
.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 12px;
    list-style: none;
    white-space: nowrap;
}

.main-nav li,
.main-navigation li,
.site-nav li,
.navigation li {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.main-nav a,
.main-navigation a,
.site-nav a,
.navigation a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 6px 0;
    color: var(--black);
    font-size: 1.08rem;
    font-weight: 750;
    line-height: 1.2;
    transform: none;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active,
.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation a.active,
.site-nav a:hover,
.site-nav a:focus,
.navigation a:hover,
.navigation a:focus {
    color: var(--gold-text);
}


/* Bouton Vente en ligne */

.main-nav .nav-shop,
.main-nav .shop-link,
.main-nav .online-link,
.main-nav a[href*="/shop"],
.main-navigation .nav-shop,
.main-navigation .shop-link,
.main-navigation .online-link,
.main-navigation a[href*="/shop"],
.site-nav .nav-shop,
.site-nav a[href*="/shop"],
.navigation .nav-shop,
.navigation a[href*="/shop"] {
    justify-content: center;
    min-height: 42px;
    margin-left: 6px;
    padding: 10px 18px;
    background: var(--yellow);
    color: #000000;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    transform: none;
}

.main-nav .nav-shop:hover,
.main-nav .shop-link:hover,
.main-nav .online-link:hover,
.main-nav a[href*="/shop"]:hover,
.main-navigation .nav-shop:hover,
.main-navigation .shop-link:hover,
.main-navigation .online-link:hover,
.main-navigation a[href*="/shop"]:hover,
.site-nav .nav-shop:hover,
.site-nav a[href*="/shop"]:hover,
.navigation .nav-shop:hover,
.navigation a[href*="/shop"]:hover {
    background: var(--yellow-dark);
    color: #000000;
    box-shadow: var(--shadow-yellow);
    transform: translateY(-1px);
}

.nav-toggle,
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--yellow);
    color: #000000;
    border: 0;
    border-radius: var(--radius-small);
    font-size: 1.4rem;
    font-weight: 800;
}

.menu-toggle {
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #000000;
    border-radius: 999px;
}


/* =========================================================
   BOUTONS
   ========================================================= */

.btn,
.button,
.cta-button,
a.btn,
button.btn,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    background: var(--yellow);
    color: #000000;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    font-size: var(--font-button);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.btn:hover,
.button:hover,
.cta-button:hover,
a.btn:hover,
button.btn:hover,
input[type="submit"]:hover {
    background: var(--yellow-dark);
    color: #000000;
    border-color: var(--yellow-dark);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-2px);
}

.btn-primary,
.btn-yellow,
.btn-dark {
    background: var(--yellow);
    color: #000000;
    border-color: var(--yellow);
}

.btn-secondary,
.btn-outline,
.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-light:hover {
    background: var(--yellow-pale);
    color: #000000;
    border-color: var(--yellow-dark);
}

.button-group,
.button-row,
.hero-actions,
.cta-actions,
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}


/* =========================================================
   HERO ACCUEIL
   ========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    overflow: hidden;
    background-color: #171717;
    background-image: url('/assets/img/hero-home-gastlosen.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}

.hero::before,
.hero-overlay {
    display: none;
}

.hero .container,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1050px;
    padding: 90px 0;
}

.hero h1 {
    max-width: 980px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: var(--font-h1-home);
    line-height: 1.08;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.75),
        0 0 14px rgba(0, 0, 0, 0.35);
}

.hero p {
    max-width: 1050px;
    margin-bottom: 34px;
    color: var(--white);
    font-size: 1.44rem;
    font-weight: 500;
    line-height: 1.65;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.35);
}

.hero-kicker,
.eyebrow,
.kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 16px;
    background: var(--yellow);
    color: #000000;
    border-radius: 999px;
    font-size: 1.08rem;
    font-weight: 800;
}


/* =========================================================
   PAGES INTERNES
   ========================================================= */

.page-header,
.page-hero,
.internal-hero {
    padding: 58px 0 48px;
    background: var(--white);
}

.page-header h1,
.page-hero h1,
.internal-hero h1 {
    max-width: 1050px;
    margin-bottom: 18px;
    font-size: var(--font-h1-page);
    line-height: 1.08;
}

.page-header p,
.page-hero p,
.internal-hero p {
    max-width: 1000px;
    color: var(--muted);
    font-size: var(--font-lead);
    line-height: 1.7;
}

.page-content {
    padding: 65px 0;
}


/* =========================================================
   GRILLES
   ========================================================= */

.grid,
.cards-grid,
.card-grid,
.services-grid,
.universe-grid,
.activities-grid {
    display: grid;
    gap: 28px;
}

.grid-2,
.two-columns,
.two-column-grid,
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
}

.grid-3,
.three-columns,
.three-column-grid,
.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.cards-grid > *,
.card-grid > *,
.services-grid > *,
.universe-grid > *,
.activities-grid > *,
.split > * {
    min-width: 0;
}


/* =========================================================
   CARTES
   ========================================================= */

.card,
.content-card,
.service-card,
.universe-card,
.feature-card,
.info-card,
.activity-card,
.contact-box {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            var(--white) 0%,
            #fffdf4 100%
        );
    border: 1px solid var(--border-yellow);
    border-top: 5px solid var(--yellow);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card::before,
.content-card::before,
.service-card::before,
.universe-card::before,
.feature-card::before,
.info-card::before,
.activity-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    content: "";
    background: rgba(244, 196, 48, 0.12);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.card:hover,
.content-card:hover,
.service-card:hover,
.universe-card:hover,
.feature-card:hover,
.info-card:hover,
.activity-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.card h2,
.content-card h2,
.service-card h2,
.universe-card h2,
.feature-card h2,
.info-card h2,
.activity-card h2 {
    position: relative;
    z-index: 1;
    font-size: var(--font-h2);
}

.card h3,
.content-card h3,
.service-card h3,
.universe-card h3,
.feature-card h3,
.info-card h3,
.activity-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    padding-right: 35px;
    color: var(--black);
    font-size: var(--font-h3);
    line-height: 1.2;
}

.card p,
.content-card p,
.service-card p,
.universe-card p,
.feature-card p,
.info-card p,
.activity-card p {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    color: var(--muted);
    font-size: var(--font-text);
    line-height: 1.65;
}

.card ul,
.content-card ul,
.service-card ul,
.universe-card ul,
.feature-card ul,
.info-card ul,
.activity-card ul {
    position: relative;
    z-index: 1;
    padding-left: 22px;
    font-size: var(--font-text);
    line-height: 1.6;
}

.card li,
.content-card li,
.service-card li,
.universe-card li,
.feature-card li,
.info-card li,
.activity-card li {
    margin-bottom: 10px;
}

.card .btn,
.content-card .btn,
.service-card .btn,
.universe-card .btn,
.feature-card .btn,
.info-card .btn,
.activity-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.card > a:last-child:not(.btn),
.content-card > a:last-child:not(.btn),
.service-card > a:last-child:not(.btn),
.universe-card > a:last-child:not(.btn),
.feature-card > a:last-child:not(.btn),
.info-card > a:last-child:not(.btn),
.activity-card > a:last-child:not(.btn) {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    min-height: 50px;
    margin-top: auto;
    padding: 13px 22px;
    background: var(--yellow);
    color: #000000;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    font-size: var(--font-button);
    font-weight: 800;
}

.card > a:last-child:not(.btn):hover,
.content-card > a:last-child:not(.btn):hover,
.service-card > a:last-child:not(.btn):hover,
.universe-card > a:last-child:not(.btn):hover,
.feature-card > a:last-child:not(.btn):hover,
.info-card > a:last-child:not(.btn):hover,
.activity-card > a:last-child:not(.btn):hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}


/* =========================================================
   IMAGES ET BLOCS
   ========================================================= */

.image-rounded,
.content-image,
.section-image,
.image-box {
    min-height: 360px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.image-rounded img,
.content-image img,
.section-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.split-grid,
.story-grid,
.gift-grid,
.about-grid,
.feature-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, 0.75fr);
    align-items: stretch;
    gap: 35px;
}

.highlight-box,
.feature-box,
.list-box,
.side-box,
.yellow-box {
    padding: 32px;
    background: var(--yellow-pale);
    border: 1px solid var(--border-yellow);
    border-left: 6px solid var(--yellow);
    border-radius: var(--radius-medium);
}

.highlight-box p,
.feature-box p,
.list-box p,
.side-box p,
.yellow-box p,
.highlight-box li,
.feature-box li,
.list-box li,
.side-box li,
.yellow-box li {
    font-size: var(--font-text);
}


/* =========================================================
   LISTES
   ========================================================= */

.check-list,
.feature-list,
.icon-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.feature-list li,
.icon-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 30px;
    font-size: var(--font-text);
    line-height: 1.55;
}

.check-list li::before,
.feature-list li::before,
.icon-list li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    color: var(--yellow-dark);
    content: "✓";
    font-size: 1.32rem;
    font-weight: 900;
}


/* =========================================================
   CTA
   ========================================================= */

.cta,
.cta-band,
.cta-section,
.contact-band {
    padding: 52px 0;
    background: var(--yellow);
    color: #000000;
}

.cta-inner,
.cta-band .container,
.cta-section .container,
.contact-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2,
.cta-band h2,
.cta-section h2,
.contact-band h2 {
    margin-bottom: 10px;
    color: #000000;
}

.cta p,
.cta-band p,
.cta-section p,
.contact-band p {
    margin-bottom: 0;
    color: #222222;
    font-size: var(--font-text);
}

.cta .btn,
.cta-band .btn,
.cta-section .btn,
.contact-band .btn {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}


/* =========================================================
   LIENS DANS LE CONTENU
   ========================================================= */

main p a:not(.btn):not(.button),
main li a:not(.btn):not(.button) {
    color: var(--gold-text);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(217, 169, 0, 0.45);
    text-underline-offset: 3px;
}

main p a:not(.btn):not(.button):hover,
main li a:not(.btn):not(.button):hover {
    color: var(--gold-text-hover);
    text-decoration-color: var(--gold-text-hover);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 40px;
}

.contact-details,
.contact-form,
.form-box {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.contact-details h2,
.contact-form h2,
.form-box h2 {
    font-size: var(--font-h2);
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 17px;
    font-size: var(--font-text);
    line-height: 1.55;
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-size: var(--font-text);
    font-weight: 750;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 15px 16px;
    background: var(--white);
    color: var(--text);
    border: 1px solid #cfcfcf;
    border-radius: var(--radius-small);
    outline: none;
    font-size: var(--font-text);
}

textarea {
    min-height: 170px;
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.2);
}

.map-wrapper,
.google-map {
    overflow: hidden;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.map-wrapper iframe,
.google-map iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}


/* =========================================================
   HORAIRES
   ========================================================= */

.hours-list,
.opening-hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hours-list li,
.opening-hours li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    font-size: var(--font-text);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding-top: 58px;
    background: #1c1c1c;
    color: rgba(255, 255, 255, 0.84);
}

.footer-modern {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(0, 1.45fr);
    column-gap: 64px;
    row-gap: 18px;
    align-items: start;
    padding-bottom: 34px;
}

.footer-brand {
    grid-column: 1;
}

.footer-hours {
    grid-column: 1;
    width: 100%;
}

.footer-contact {
    grid-column: 1;
    margin-top: 4px;
}

.footer-links-area {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: grid;
    gap: 28px;
    align-self: start;
    padding: 30px;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 5px solid var(--yellow);
    border-radius: var(--radius-medium);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.footer-links-group {
    min-width: 0;
}

.footer-useful-links {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer h2,
.footer-links-group h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.2;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.site-footer h4 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.footer-hours-row {
    font-size: var(--font-footer);
    line-height: 1.55;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--yellow);
}

.footer-hours-box {
    display: grid;
    gap: 3px;
}

.footer-hours-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.84);
}

.footer-hours-row span {
    color: rgba(255, 255, 255, 0.78);
}

.footer-hours-row strong {
    color: var(--white);
    font-weight: 800;
}

.footer-note {
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-contact p {
    margin-bottom: 9px;
}

.footer-separator {
    display: inline-block;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav,
.footer-utility-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 14px;
    column-gap: 24px;
}

.footer-nav a,
.footer-utility-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-utility-nav a:hover,
.footer-utility-nav a:focus {
    background: var(--yellow);
    color: #000000;
    border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-1px);
}

.footer-utility-nav .footer-shop-link {
    padding-right: 22px;
    padding-left: 22px;
    background: var(--yellow);
    color: #000000;
    border-color: var(--yellow);
    font-weight: 850;
}

.footer-utility-nav .footer-shop-link:hover,
.footer-utility-nav .footer-shop-link:focus {
    background: var(--yellow-dark);
    color: #000000;
    border-color: var(--yellow-dark);
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 14px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 1.08rem;
}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

:focus-visible {
    outline: 3px solid var(--yellow-dark);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 11px 18px;
    background: var(--yellow);
    color: #000000;
    border-radius: var(--radius-small);
    font-size: var(--font-button);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   HEADER RESPONSIVE AVANT CHEVAUCHEMENT
   ========================================================= */

@media (max-width: 1340px) {

    .site-header .container {
        width: min(calc(100% - 32px), var(--header-container));
    }

    .header-inner {
        position: relative;
        min-height: 82px;
        justify-content: space-between;
    }

    .site-logo,
    .logo,
    .header-logo,
    .navbar-brand,
    .brand {
        height: 74px;
        margin-right: 0;
    }

    .site-logo img,
    .logo img,
    .header-logo img,
    .navbar-brand img,
    .brand img {
        width: 210px;
        height: 74px;
        max-width: 210px;
        max-height: 74px;
        transform: none;
    }

    .nav-toggle,
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .main-nav,
    .main-navigation,
    .site-nav,
    .navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 16px;
        background: var(--white);
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #dddddd;
        box-shadow: var(--shadow-medium);
        white-space: normal;
    }

    .main-nav.open,
    .main-nav.is-open,
    .main-nav.active,
    .main-navigation.open,
    .main-navigation.is-open,
    .main-navigation.active,
    .site-nav.open,
    .site-nav.is-open,
    .site-nav.active,
    .navigation.open,
    .navigation.is-open,
    .navigation.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .main-nav ul,
    .main-navigation ul,
    .site-nav ul,
    .navigation ul,
    .main-navigation .menu,
    .main-navigation .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 3px;
        white-space: normal;
    }

    .main-nav a,
    .main-navigation a,
    .site-nav a,
    .navigation a {
        display: flex;
        width: 100%;
        padding: 12px;
        border-radius: var(--radius-small);
        font-size: 1.08rem;
        transform: none;
    }

    .main-nav a:hover,
    .main-navigation a:hover,
    .site-nav a:hover,
    .navigation a:hover {
        background: var(--yellow-pale);
    }

    .main-nav .nav-shop,
    .main-nav .shop-link,
    .main-nav .online-link,
    .main-nav a[href*="/shop"],
    .main-navigation .nav-shop,
    .main-navigation .shop-link,
    .main-navigation .online-link,
    .main-navigation a[href*="/shop"],
    .site-nav .nav-shop,
    .site-nav a[href*="/shop"],
    .navigation .nav-shop,
    .navigation a[href*="/shop"] {
        width: 100%;
        margin-top: 7px;
        margin-left: 0;
        padding: 12px;
        font-size: 1.08rem;
        transform: none;
    }
}


/* =========================================================
   DESKTOPS INTERMÉDIAIRES
   ========================================================= */

@media (max-width: 1280px) {

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


/* =========================================================
   TABLETTES ET MENU MOBILE
   ========================================================= */

@media (max-width: 1120px) {

    .container,
    .site-header .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        position: relative;
        min-height: 82px;
        justify-content: space-between;
    }

    .site-logo,
    .logo,
    .header-logo,
    .navbar-brand,
    .brand {
        margin-right: 0;
    }

    .site-logo img,
    .logo img,
    .header-logo img,
    .navbar-brand img,
    .brand img {
        width: 216px;
        height: 77px;
        max-width: 216px;
        max-height: 77px;
        transform: none;
    }

    .nav-toggle,
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .main-nav,
    .main-navigation,
    .site-nav,
    .navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 16px;
        background: var(--white);
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #dddddd;
        box-shadow: var(--shadow-medium);
        white-space: normal;
    }

    .main-nav.open,
    .main-nav.is-open,
    .main-nav.active,
    .main-navigation.open,
    .main-navigation.is-open,
    .main-navigation.active,
    .site-nav.open,
    .site-nav.is-open,
    .site-nav.active,
    .navigation.open,
    .navigation.is-open,
    .navigation.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .main-nav ul,
    .main-navigation ul,
    .site-nav ul,
    .navigation ul,
    .main-navigation .menu,
    .main-navigation .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 3px;
        white-space: normal;
    }

    .main-nav a,
    .main-navigation a,
    .site-nav a,
    .navigation a {
        display: flex;
        width: 100%;
        padding: 12px;
        border-radius: var(--radius-small);
        font-size: 1.2rem;
        transform: none;
    }

    .main-nav a:hover,
    .main-navigation a:hover,
    .site-nav a:hover,
    .navigation a:hover {
        background: var(--yellow-pale);
    }

    .main-nav .nav-shop,
    .main-nav .shop-link,
    .main-nav .online-link,
    .main-nav a[href*="/shop"],
    .main-navigation .nav-shop,
    .main-navigation .shop-link,
    .main-navigation .online-link,
    .main-navigation a[href*="/shop"],
    .site-nav .nav-shop,
    .site-nav a[href*="/shop"],
    .navigation .nav-shop,
    .navigation a[href*="/shop"] {
        width: 100%;
        margin-top: 7px;
        margin-left: 0;
        padding: 12px;
        font-size: 1.2rem;
        transform: none;
    }

    .hero {
        min-height: 540px;
    }

    .hero-content {
        padding: 75px 0;
    }

    .grid-3,
    .three-columns,
    .three-column-grid,
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .grid-2,
    .two-columns,
    .two-column-grid,
    .split-grid,
    .story-grid,
    .gift-grid,
    .about-grid,
    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner,
    .cta-band .container,
    .cta-section .container,
    .contact-band .container {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-modern {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 22px;
    }

    .footer-brand,
    .footer-hours,
    .footer-contact,
    .footer-links-area,
    .footer-bottom {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-links-area {
        margin-top: 8px;
    }
}


/* =========================================================
   TÉLÉPHONES
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --font-body: 18.6px;
        --font-text: 1.12rem;
        --font-lead: 1.2rem;
        --font-button: 1.05rem;
        --font-footer: 1.05rem;

        --font-h1-page: clamp(2rem, 9vw, 2.55rem);
        --font-h1-home: clamp(1.95rem, 8vw, 2.35rem);
        --font-h2: clamp(1.6rem, 7vw, 2rem);
        --font-h3: 1.2rem;
    }

    .section,
    .content {
        padding: 55px 0;
    }

    .page-header,
    .page-hero,
    .internal-hero {
        padding: 42px 0 36px;
    }

    .site-logo img,
    .logo img,
    .header-logo img,
    .navbar-brand img,
    .brand img {
        width: 180px;
        height: 65px;
        max-width: 180px;
        max-height: 65px;
        transform: none;
    }

    .hero {
        min-height: 0;
        background-position: center center;
    }

    .hero::before,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 38px 0 42px;
    }

    .hero h1 {
        margin-bottom: 18px;
        font-size: var(--font-h1-home);
        line-height: 1.05;
    }

    .hero p {
        margin-bottom: 24px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .two-columns,
    .three-columns,
    .four-columns,
    .two-column-grid,
    .three-column-grid,
    .four-column-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .content-card,
    .service-card,
    .universe-card,
    .feature-card,
    .info-card,
    .activity-card,
    .contact-box {
        min-height: 0;
        padding: 24px;
    }

    .image-rounded,
    .content-image,
    .section-image,
    .image-box,
    .image-rounded img,
    .content-image img,
    .section-image img {
        min-height: 280px;
    }

    .button-group,
    .button-row,
    .cta-actions,
    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button-group .btn,
    .button-row .btn,
    .cta-actions .btn,
    .actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .hero-actions .btn {
        width: auto;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.88rem;
        white-space: nowrap;
    }

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

    .footer-links-area {
        padding: 24px;
    }

    .footer-nav,
    .footer-utility-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .footer-nav a,
    .footer-utility-nav a {
        width: 100%;
        justify-content: flex-start;
        border-radius: var(--radius-small);
        text-align: left;
    }

    .footer-hours-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 5px 0;
    }

    .footer-separator {
        display: none;
    }

    .footer-contact p {
        line-height: 1.7;
    }

    .hours-list li,
    .opening-hours li {
        flex-direction: column;
        gap: 2px;
    }
}


/* =========================================================
   TRÈS PETITS ÉCRANS
   ========================================================= */

@media (max-width: 420px) {

    .container,
    .site-header .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-logo img,
    .logo img,
    .header-logo img,
    .navbar-brand img,
    .brand img {
        width: 163px;
        height: 58px;
        max-width: 163px;
        max-height: 58px;
        transform: none;
    }

    .card,
    .content-card,
    .service-card,
    .universe-card,
    .feature-card,
    .info-card,
    .activity-card,
    .highlight-box,
    .feature-box,
    .list-box,
    .side-box,
    .yellow-box,
    .contact-details,
    .contact-form,
    .form-box {
        padding: 21px;
    }
}


/* =========================================================
   RÉDUCTION DES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}