/* ============================================================
   FIL-MER — Main Stylesheet
   Design: replicates frais-embal.fr structure & style
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --dark:        #0c2444;
  --dark-alt:    #07223a;
  --dark-light:  #0d2e56;
  --white:       #ffffff;
  --accent:      #4085c4;
  --accent-dark: #32638e;
  --accent-light:#e8f2fb;
  --light-bg:    #f7f9fb;
  --light-bg2:   #eef3f8;
  --border:      #d6e4f0;
  --text:        #1a2e44;
  --text-light:  #4a6580;
  --text-muted:  #8aa3bc;

  --font: 'Outfit', 'Segoe UI', Roboto, Arial, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  --max-w:   1200px;
  --pad:     clamp(1rem, 4vw, 2rem);
  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 2px 16px rgba(0,0,0,.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --tr:      .3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
abbr { text-decoration: none; color: var(--accent); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Layout utilities ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr),
              box-shadow var(--tr), transform var(--tr);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(6,147,227,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn--large  { padding: .9rem 2.25rem; font-size: 1rem; }
.btn--small  { padding: .5rem 1.25rem; font-size: .85rem; }
.btn--full   { width: 100%; justify-content: center; }

/* ── Section headers ───────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: .75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: .5rem;
}
.section-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.section-link:hover { text-decoration: underline; }

/* ── Reveal animation ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .15s; }
.reveal:nth-child(6) { transition-delay: .25s; }

/* ══════════════════════════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.top-bar__right { display: flex; align-items: center; gap: .75rem; }
.top-bar__link,
.top-bar__addr {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.75);
  transition: color var(--tr);
}
.top-bar__link:hover { color: var(--white); }
.top-bar__sep { color: rgba(255,255,255,.2); }
.top-bar__social {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.6);
  transition: color var(--tr);
}
.top-bar__social:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--tr), background var(--tr), transform .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

/* Pages à header blanc : taille logo identique à À Propos */
.home .site-logo__img,
.page-template-page-savoir-faire .site-logo__img,
.page-template-page-clients .site-logo__img,
.page-template-page-engagements .site-logo__img,
.page-template-page-contact .site-logo__img,
.page-template-page-mentions-legales .site-logo__img,
.page-template-page-politique-de-confidentialite .site-logo__img {
  height: 72px;
}

/* Page Savoir-faire : header blanc */
.site-header--white {
  background: var(--white);
  border-bottom-color: rgba(0,0,0,.08);
}
.site-header--white .site-nav__list li a {
  color: var(--dark);
}
.site-header--white .site-nav__list li a:hover,
.site-header--white .site-nav__list li.current-menu-item a {
  color: var(--dark);
  background: rgba(0,0,0,.06);
}
.site-header--white .hamburger__line {
  background: var(--dark);
}

/* Page d'accueil : header transparent au-dessus du hero */
.site-header--transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
}
.site-header--transparent.is-hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo__img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop navigation */
.site-nav { display: flex; align-items: center; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.site-nav__list li a {
  display: block;
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.site-nav__list li a:hover,
.site-nav__list li.current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.site-nav__list li a.nav-cta {
  background: var(--accent);
  color: var(--white);
  margin-left: .5rem;
}
.site-nav__list li a.nav-cta:hover {
  background: var(--accent-dark);
}

/* ── Hamburger ─────────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
  transition: background var(--tr);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger__line {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr), width var(--tr);
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  z-index: 1000;
  background: var(--dark);
  transition: right var(--tr);
  overflow-y: auto;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu__list { list-style: none; }
.mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu__list li a {
  display: block;
  padding: .9rem .5rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
  transition: color var(--tr);
}
.mobile-menu__list li a:hover { color: var(--accent); }
.mobile-menu__contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-menu__contact a:first-child {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}
/* Vidéo de fond */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,34,58,.45) 0%, rgba(7,34,58,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 6rem var(--pad) 5rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero__fish-icon {
  width: 90px; height: 56px;
  color: var(--accent);
  filter: drop-shadow(0 4px 20px rgba(6,147,227,.5));
  animation: fishFloat 4s ease-in-out infinite;
}
.hero__logo-img {
  height: 220px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.4));
}
.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: 1.25rem;
  text-align: center;
}
@keyframes fishFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero__subtitle {
  display: block;
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: .02em;
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
}
.hero__text {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.7);
  max-width: 620px;
  margin: 1.25rem auto 2.5rem;
  line-height: 1.8;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badge {
  padding: .3rem .8rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  animation: scrollHint 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}
@keyframes scrollHint {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .8; transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRODUCT RANGES
══════════════════════════════════════════════════════════════════════════════ */
.product-ranges {
  padding: 5rem 0;
  background: var(--white);
}
.ranges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.range-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr), transform var(--tr);
  background: var(--white);
}
.range-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.range-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.range-card__image--permanente {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 60%, #0a1628 100%);
}
.range-card__image--saisonniere {
  background: linear-gradient(135deg, #134e4a 0%, #1a6b5e 60%, #0d4a3e 100%);
}
.range-card__image--elaboree {
  background: linear-gradient(135deg, #3b1f0c 0%, #6b3316 60%, #8b4513 100%);
}
.range-card__img-content {
  text-align: center;
}
.range-card__icon {
  font-size: 3.5rem;
  filter: grayscale(30%);
  opacity: .85;
}
.range-card__body {
  padding: 1.75rem;
}
.range-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.range-card__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.range-card__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--tr);
}
.range-card__link:hover { gap: .6rem; }

/* ══════════════════════════════════════════════════════════════════════════════
   FEATURED PRODUCTS (horizontal scroll)
══════════════════════════════════════════════════════════════════════════════ */
.featured-products {
  padding: 4rem 0;
  background: var(--light-bg);
  overflow: hidden;
}
.featured-products__scroll-wrap {
  overflow-x: auto;
  padding: .5rem var(--pad) 1.5rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--light-bg2);
}
.featured-products__scroll-wrap::-webkit-scrollbar { height: 4px; }
.featured-products__scroll-wrap::-webkit-scrollbar-track { background: var(--light-bg2); }
.featured-products__scroll-wrap::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.featured-products__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-bottom: .25rem;
}
.product-card {
  width: 220px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr), transform var(--tr);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-card__img {
  height: 140px;
  position: relative;
}
.product-card__img--saumon  { background: linear-gradient(135deg, #e87c5c 0%, #c45535 100%); }
.product-card__img--cabillaud { background: linear-gradient(135deg, #5c8abf 0%, #3a6fa3 100%); }
.product-card__img--lieu    { background: linear-gradient(135deg, #4a7a6a 0%, #2d5a4a 100%); }
.product-card__img--stj     { background: linear-gradient(135deg, #d4b896 0%, #b8935a 100%); }
.product-card__img--crevette { background: linear-gradient(135deg, #e8977a 0%, #cc6a45 100%); }
.product-card__img--merlu   { background: linear-gradient(135deg, #7a9bbf 0%, #4a6e94 100%); }
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
}
.product-card__body { padding: 1.1rem; }
.product-card__cert {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .6rem;
}
.product-card__name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}
.product-card__desc {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════════════
   INFO CARDS (Savoir-faire + Clients)
══════════════════════════════════════════════════════════════════════════════ */
.info-cards {
  padding: 5rem 0;
  background: var(--white);
}
.info-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.info-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: center;
  background-color: var(--dark-alt);
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.info-card:hover {
  border-color: rgba(6,147,227,.4);
  box-shadow: 0 0 32px rgba(6,147,227,.18);
}
.info-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,40,.55) 0%, rgba(10,20,40,.38) 100%);
  z-index: 0;
}
.info-card__inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}
.info-card__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.info-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.info-card__text {
  font-size: .93rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.info-card__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.info-card__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}
.info-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ══════════════════════════════════════════════════════════════════════════════
   CERTIFICATIONS
══════════════════════════════════════════════════════════════════════════════ */
.certifications {
  padding: 4rem 0;
  background: var(--white);
  overflow: hidden;
}

/* ── Ticker ── */
.cert-ticker__wrap {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.cert-ticker {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: max-content;
  will-change: transform;
}
.cert-ticker__item {
  flex-shrink: 0;
  width: clamp(110px, 15vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-ticker__item img {
  height: clamp(90px, 13vw, 150px);
  width: 100%;
  object-fit: contain;
  display: block;
}
.cert-ticker__item img[alt="Agriculture Biologique"] {
  height: clamp(55px, 8vw, 90px);
}

/* ══════════════════════════════════════════════════════════════════════════════
   KEY FIGURES
══════════════════════════════════════════════════════════════════════════════ */
.key-figures {
  padding: 4rem 0;
  background: var(--accent);
}
.key-figures__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.key-figure { color: var(--white); }
.key-figure__number {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
}
.key-figure__number sup { font-size: 50%; vertical-align: super; }
.key-figure__label {
  font-size: .9rem;
  font-weight: 500;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════════════════════════════════════ */
.contact-cta {
  position: relative;
  padding: 5.5rem 0;
  background: var(--dark);
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(6,147,227,.2) 0%, transparent 60%);
}
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.contact-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════════════════
   INNER PAGE CONTENT
══════════════════════════════════════════════════════════════════════════════ */
.main-content { padding: 4rem 0; }
.page-content { max-width: 860px; }
.page-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin: 2rem 0 .75rem; }
.page-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 1.5rem 0 .6rem; }
.page-content p  { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; color: var(--text-light); line-height: 1.8; }
.page-content a  { color: var(--accent); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════════════════════ */
.contact-page { padding: 4rem 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-info-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(6,147,227,.1);
}
.contact-info-card__icon {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.contact-info-card address,
.contact-info-card p,
.contact-info-card a {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-wrap {
  max-width: 760px;
}
.contact-form-wrap__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.contact-form-wrap__desc {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1.25rem; }
.form-row--2 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6,147,227,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group--consent label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-light);
  cursor: pointer;
}
.form-group--consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form-group--consent a { color: var(--accent); text-decoration: underline; }
.form-message {
  padding: 0;
  border-radius: var(--radius);
  font-size: .9rem;
  line-height: 1.6;
}
.form-message.is-success {
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.form-message.is-error {
  padding: 1rem 1.25rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
/* Loader inside btn */
.btn-loader {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
}
.btn.is-loading .btn-text { opacity: .6; }
.btn.is-loading .btn-loader {
  display: block;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4.5rem 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  height: 100%;
  margin-bottom: 0;
}
.footer-col--brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo__fish {
  width: 44px; height: 28px;
  color: var(--accent);
}
.footer-logo__img {
  height: 68px;
  width: auto;
  display: block;
}
.footer-logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}
.footer-desc {
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.footer-social:hover { color: var(--accent); }
/* Footer columns */
.footer-col__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--tr);
  display: inline-block;
  padding: .1rem 0;
}
.footer-nav li a:hover { color: var(--accent); }
.footer-address { display: flex; flex-direction: column; gap: .9rem; }
.footer-address__item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-address__item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-address__item a { color: rgba(255,255,255,.65); transition: color var(--tr); }
.footer-address__item a:hover { color: var(--accent); }
/* Médiateur */
.footer-mediator { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.footer-mediator__title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin: 0 0 .35rem; }
.footer-mediator__line { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
.footer-mediator__line a { color: rgba(255,255,255,.7); transition: color var(--tr); word-break: break-all; }
.footer-mediator__line a:hover { color: var(--accent); }
/* Bottom bar */
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom__credit { color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 700px;
  background: var(--dark);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
  opacity: 0;
}
.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner.is-hidden {
  transform: translateX(-50%) translateY(150px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; font-size: .87rem; line-height: 1.6; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(6,147,227,.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), background var(--tr);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--accent-dark); }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .key-figures__grid    { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .site-footer__inner   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ranges-grid          { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-cards__grid     { grid-template-columns: 1fr; }
  .contact-info-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Navigation */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Top bar */
  .top-bar__addr { display: none; }
  .top-bar__sep  { display: none; }

  /* Hero */
  .hero__cta { flex-direction: column; align-items: center; }


  /* Key figures */
  .key-figures__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact CTA */
  .contact-cta__actions { flex-direction: column; align-items: center; }

  /* Footer */
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom__inner { flex-direction: column; gap: .5rem; text-align: center; }

  /* Form */
  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .key-figures__grid    { grid-template-columns: 1fr 1fr; }

  .cookie-banner__inner { flex-direction: column; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
