/* ============================================
   YouRent - Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --navy-light: #142038;
  --blue: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #d4b86a;
  --gold-dark: #b08f3a;
  --white: #ffffff;
  --offwhite: #f5f3ee;
  --gray: #8899aa;
  --gray-light: #c0c8d0;
  --text: #1a1a2e;
  --text-light: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 1rem 2rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--gold);
  color: var(--navy);
  z-index: 10000;
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.header__logo span {
  color: var(--gold);
}

.header__links {
  display: flex;
  gap: 2rem;
}

.header__links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity var(--transition);
  position: relative;
}

.header__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.header__links a:hover {
  opacity: 1;
}

.header__links a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}

.header__phone:hover {
  opacity: 1;
  color: var(--gold);
}

.header__cta {
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__links a {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}

.mobile-menu__links a:hover {
  color: var(--gold);
}

.mobile-menu__phone {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.4) 50%,
    rgba(10, 22, 40, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.2s forwards;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.hero__cta {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.5;
  animation: bounce 2s ease infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--light {
  background: var(--offwhite);
}

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

.section--dark {
  background: var(--navy);
}

.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  position: relative;
  padding-bottom: 1rem;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.section__subtitle--light {
  color: var(--gray-light);
}

/* ============================================
   BOATS
   ============================================ */
.boats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.boat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.boat-card.reveal {
  animation: fadeUp 0.6s ease forwards;
}

.boat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Carousel */
.boat-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-light);
}

.boat-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.boat-carousel__slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.boat-carousel__slide--placeholder {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--gold);
  font-size: 3rem;
}

.boat-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.boat-carousel__btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.boat-carousel__btn--prev { left: 0.75rem; }
.boat-carousel__btn--next { right: 0.75rem; }

.boat-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.boat-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.boat-carousel__dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Boat Card Content */
.boat-card__content {
  padding: 1.5rem;
}

.boat-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.boat-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.boat-card__model {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.15rem;
}

.boat-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.boat-card__badge--license {
  background: #e8f4fd;
  color: #1a6fb5;
}

.boat-card__badge--no-license {
  background: #e8f8f0;
  color: #1a8a5a;
}

.boat-card__desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.boat-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--offwhite);
  border-radius: 8px;
}

.boat-card__spec {
  text-align: center;
}

.boat-card__spec-icon {
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.boat-card__spec-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.boat-card__spec-label {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Pricing Table */
.boat-card__prices {
  margin-bottom: 1.5rem;
}

.boat-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.boat-card__price-row:last-child {
  border-bottom: none;
}

.boat-card__price-label {
  font-size: 0.9rem;
  color: var(--text);
}

.boat-card__price-hours {
  font-size: 0.75rem;
  color: var(--gray);
}

.boat-card__price-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.boat-card__cta {
  width: 100%;
  text-align: center;
}

/* Boat Info Tags */
.boat-card__infos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.boat-card__info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--offwhite);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

.boat-card__info-icon {
  font-size: 0.9rem;
}

/* Boat Sections (Options, FAQ) */
.boat-card__section {
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
}

.boat-card__section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* Accordion */
.boat-card__accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.7rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.boat-card__accordion:hover {
  color: var(--gold-dark);
}

.boat-card__accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.boat-card__accordion[aria-expanded="true"] .boat-card__accordion-icon {
  transform: rotate(180deg);
}

.boat-card__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.boat-card__accordion-content p {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Options List */
.boat-card__options {
  padding: 0.75rem 0;
  list-style: none;
}

.boat-card__options li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text);
}

/* Extras */
.boat-card__extras {
  padding: 0.5rem 0;
}

.boat-card__extra-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 0.75rem;
}

.boat-card__extra-row:last-child {
  border-bottom: none;
}

.boat-card__extra-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.boat-card__extra-detail {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

.boat-card__extra-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ Items */
.boat-card__faq-item {
  border-bottom: none;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__image img,
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__icon {
  color: var(--gold);
  font-size: 3rem;
}

.service-card__content {
  padding: 1.5rem;
}

.service-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   PRESTATIONS
   ============================================ */
.prestations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.prestation-card {
  border-radius: var(--radius);
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.prestation-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.prestation-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.prestation-card__icon {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.prestation-card__name {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.prestation-card__desc {
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================
   ABOUT / POURQUOI
   ============================================ */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.about-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.about-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.about-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-card__text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__map iframe {
  border-radius: var(--radius);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--offwhite);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.contact__item:hover {
  transform: translateX(4px);
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__item-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.contact__item-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.contact__item-value a:hover {
  color: var(--gold);
}

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.contact__social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 3rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__logo span {
  color: var(--gold);
}

.footer__desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__nav h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__nav a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__contact-item {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__meteo {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__meteo h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.footer__meteo-widget {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer__bottom a {
  color: var(--gray);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 997;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mobile-bar.visible {
  transform: translateY(0);
}

.mobile-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-bar__cta {
  flex-shrink: 0;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header__links {
    display: none;
  }

  .header__phone span {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .boats {
    grid-template-columns: 1fr;
  }

  .boat-card {
    max-width: 100%;
  }

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

  .contact__map {
    order: 2;
  }

  .contact__info {
    order: 1;
  }

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

  .mobile-bar {
    display: flex;
  }

  .footer {
    padding-bottom: 4.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .header__actions {
    gap: 0.75rem;
  }

  .header__cta {
    display: none;
  }
}

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

  .prestation-card {
    aspect-ratio: 16/9;
  }

  .boat-card__specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__cta {
    opacity: 1;
    transform: none;
  }
}
