/* =============================================
   VOILIER CATERINA — Stylesheet
   Design: Luxury Mediterranean Sailing Charter
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy:       #0d3347;
  --blue:       #1a5f7a;
  --blue-mid:   #2980b9;
  --blue-light: #4da3c7;
  --wood:       #d4b896;
  --wood-dark:  #b8926a;
  --wood-light: #e8d5be;
  --bg-light:   #f9f9f9;
  --bg-white:   #ffffff;
  --text-dark:  #1a2a35;
  --text-mid:   #4a6070;
  --text-light: #8aa5b8;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --success:    #27ae60;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(13,51,71,0.08);
  --shadow:     0 8px 32px rgba(13,51,71,0.12);
  --shadow-lg:  0 20px 60px rgba(13,51,71,0.18);
  --shadow-xl:  0 32px 80px rgba(13,51,71,0.24);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13, 51, 71, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
}

.logo-anchor {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--wood);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.nav-cta {
  background: var(--wood);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  background: var(--wood-light);
  color: var(--navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-mid) 100%);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  /* Fallback gradient shown when image fails */
}

.hero-img[src="photos/banniere.jpg"]:not([complete]) {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-mid) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,51,71,0.4) 0%,
    rgba(13,51,71,0.55) 40%,
    rgba(13,51,71,0.7) 75%,
    rgba(13,51,71,0.9) 100%
  );
}

/* Subtle wave texture */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(13,51,71,0.8), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 24px;
}

.wave-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--wood);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--wood-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  backdrop-filter: blur(4px);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 16px 40px;
  white-space: nowrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* Hero fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.btn-primary {
  background: var(--wood);
  color: var(--navy);
  border-color: var(--wood);
  box-shadow: 0 4px 20px rgba(212, 184, 150, 0.35);
}

.btn-primary:hover {
  background: var(--wood-light);
  border-color: var(--wood-light);
  box-shadow: 0 8px 30px rgba(212, 184, 150, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 44px;
  font-size: 0.9rem;
}

/* Dark outline buttons (on light sections) */
.section .btn-outline {
  color: var(--blue);
  border-color: var(--blue);
}

.section .btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger for grids */
.voilier-photos.revealed { transition-delay: 0s; }
.voilier-info.revealed { transition-delay: 0.15s; }

.tarif-card:nth-child(1).revealed { transition-delay: 0s; }
.tarif-card:nth-child(2).revealed { transition-delay: 0.12s; }
.tarif-card:nth-child(3).revealed { transition-delay: 0.24s; }

.croisiere-card:nth-child(1).revealed { transition-delay: 0s; }
.croisiere-card:nth-child(2).revealed { transition-delay: 0.12s; }
.croisiere-card:nth-child(3).revealed { transition-delay: 0.24s; }

.temoignage-card:nth-child(1).revealed { transition-delay: 0s; }
.temoignage-card:nth-child(2).revealed { transition-delay: 0.12s; }
.temoignage-card:nth-child(3).revealed { transition-delay: 0.24s; }

/* =============================================
   PHOTO PLACEHOLDERS
   ============================================= */

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.photo-item:hover .photo-img {
  transform: scale(1.06);
}

/* Show placeholder when image is broken */
.photo-img:not([src]),
.photo-img[src=""],
.photo-img:-moz-broken,
.photo-img.error {
  visibility: hidden;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 20px;
  z-index: 1;
  pointer-events: none;
}

.photo-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
  stroke: rgba(255,255,255,0.7);
}

.photo-placeholder p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.7;
}

.photo-placeholder em {
  font-style: italic;
  opacity: 0.9;
}

/* =============================================
   LE VOILIER
   ============================================= */

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

.voilier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 12px;
}

.photo-item {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  cursor: pointer;
}

.photo-item.photo-large {
  grid-column: 1 / -1;
}

/* Individual photo gradients */
.photo-grid .photo-item:nth-child(1) { /* voilier-exterieur */
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}
.photo-grid .photo-item:nth-child(2) { /* cockpit */
  background: linear-gradient(135deg, #2c7a9e 0%, var(--blue) 100%);
}
.photo-grid .photo-item:nth-child(3) { /* cabine1 */
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-dark) 100%);
}
.photo-grid .photo-item:nth-child(4) { /* cabine2 */
  background: linear-gradient(135deg, var(--wood-dark) 0%, #a87850 100%);
}

/* Spec table */
.spec-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.spec-table {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  border: 1px solid rgba(26,95,122,0.1);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,95,122,0.08);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.spec-value {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid rgba(26,95,122,0.08);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(26,95,122,0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,95,122,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Navigation photo */
.nav-photo-wrap {
  position: relative;
}

.nav-photo-inner {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-mid) 100%);
}

.nav-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nav-photo-wrap:hover .nav-photo-img {
  transform: scale(1.03);
}

.nav-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.nav-photo-placeholder svg {
  width: 64px;
  height: 48px;
  stroke: rgba(255,255,255,0.5);
  opacity: 0.6;
}

.nav-photo-placeholder p {
  max-width: 400px;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
  opacity: 0.7;
}

.nav-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 32px;
  background: linear-gradient(to top, rgba(13,51,71,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* =============================================
   CROISIÈRES
   ============================================= */

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

.croisieres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.croisiere-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26,95,122,0.06);
}

.croisiere-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.croisiere-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.croisiere-img {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.croisiere-card:hover .croisiere-img {
  transform: scale(1.08);
}

.croisiere-img-sete {
  background: linear-gradient(135deg, var(--blue) 0%, #1abc9c 100%);
}

.croisiere-img-calanques {
  background: linear-gradient(135deg, #27ae60 0%, var(--blue) 100%);
}

.croisiere-img-event {
  background: linear-gradient(135deg, #6c3483 0%, var(--blue) 100%);
}

.croisiere-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13,51,71,0.85);
  color: var(--wood-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.croisiere-badge-featured {
  background: var(--wood);
  color: var(--navy);
}

.croisiere-body {
  padding: 28px;
}

.croisiere-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.croisiere-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.croisiere-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}

.croisiere-link:hover {
  color: var(--navy);
  gap: 12px;
}

.croisiere-link svg {
  width: 14px;
  height: 14px;
}

/* Featured card */
.croisiere-card-featured {
  border-color: rgba(26,95,122,0.2);
  box-shadow: var(--shadow);
}

/* Map */
.map-section {
  margin-top: 20px;
  margin-bottom: 48px;
}

.map-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255,255,255,0.5);
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.map-hint {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.55) !important;
  font-weight: 400 !important;
  font-family: var(--font-body) !important;
  max-width: 500px;
  line-height: 1.6;
}

.map-code-hint {
  font-family: monospace;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--wood-light) !important;
  font-weight: 400 !important;
}

.section-cta {
  text-align: center;
}

/* =============================================
   TARIFS
   ============================================= */

.tarifs-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.tarifs-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,95,122,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.tarifs-section .section-eyebrow {
  color: var(--wood);
}

.tarifs-section .section-eyebrow::before,
.tarifs-section .section-eyebrow::after {
  background: var(--wood);
}

.tarifs-section .section-title {
  color: #fff;
}

.tarifs-section .section-title em {
  color: var(--wood-light);
}

.tarifs-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

/* Urgency banner */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(212,184,150,0.12);
  border: 1px solid rgba(212,184,150,0.25);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 1.4rem;
}

.urgency-banner p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wood-light);
  letter-spacing: 0.02em;
}

.urgency-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color var(--transition);
}

.urgency-link:hover {
  color: var(--wood-light);
}

/* Tarif cards */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  align-items: center;
}

.tarif-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: rgba(255,255,255,0.85);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.tarif-card-featured {
  background: var(--blue);
  border-color: rgba(255,255,255,0.2);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.tarif-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.tarif-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wood);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.tarif-header {
  margin-bottom: 24px;
}

.tarif-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.tarif-duration {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-light);
  opacity: 0.8;
}

.tarif-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tarif-from {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.tarif-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.tarif-amount-sm {
  font-size: 2.2rem;
}

.tarif-includes {
  margin-bottom: 28px;
}

.tarif-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tarif-includes li:last-child {
  border-bottom: none;
}

.tarif-includes svg {
  width: 18px;
  height: 18px;
  color: var(--wood);
  flex-shrink: 0;
}

.tarif-btn {
  width: 100%;
  justify-content: center;
}

/* Options section */
.options-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.options-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}

.option-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.option-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,95,122,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-light);
}

.option-details {
  flex: 1;
}

.option-details h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.option-details p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.option-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--wood-light);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* =============================================
   RÉSERVATION
   ============================================= */

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

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Calendar */
.calendar-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(26,95,122,0.1);
  height: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.calendar-header svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}

.calendar-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.calendar-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px;
  margin-bottom: 20px;
}

.calendar-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: rgba(255,255,255,0.4);
}

.calendar-placeholder p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.calendar-hint {
  font-size: 0.82rem !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.55) !important;
  max-width: 320px;
  line-height: 1.6;
}

.calendar-code {
  font-family: monospace;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--wood-light);
}

.calendar-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.legend-item::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-available::before { background: var(--success); }
.legend-reserved::before { background: #e74c3c; }

/* Form */
.form-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(26,95,122,0.1);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.required {
  color: #e74c3c;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid rgba(26,95,122,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,122,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5f7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26,95,122,0.3);
  margin-bottom: 16px;
}

.btn-submit:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,95,122,0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.form-privacy svg {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  flex-shrink: 0;
}

/* Form confirmation */
.form-confirmation {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-confirmation.visible {
  display: flex;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--success);
}

.confirmation-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--success);
}

.form-confirmation h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
}

.form-confirmation p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 320px;
  line-height: 1.6;
}

.confirmation-sub {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
}

.form-response-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-response-note svg {
  width: 14px;
  height: 14px;
  color: var(--blue-light);
  flex-shrink: 0;
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */

.temoignages-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.temoignages-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(26,95,122,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.temoignage-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(26,95,122,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.temoignage-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: rgba(255,255,255,0.85);
}

.temoignage-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.temoignage-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--wood);
}

.temoignage-card-featured .temoignage-quote {
  color: rgba(255,255,255,0.85);
  border-left-color: var(--wood-light);
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.temoignage-card-featured .author-avatar {
  background: rgba(255,255,255,0.15);
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.temoignage-card-featured .author-info strong {
  color: #fff;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.temoignage-card-featured .author-info span {
  color: rgba(255,255,255,0.5);
}

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

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  position: relative;
}

.footer-waves {
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
}

.footer-waves svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--wood);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-legal-note {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.22) !important;
  margin-top: 4px;
}

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,95,122,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,51,71,0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {
  .voilier-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .photo-grid {
    grid-template-rows: 240px 160px;
  }

  .croisieres-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .tarif-card-featured {
    transform: scale(1);
  }

  .tarif-card-featured:hover {
    transform: translateY(-4px);
  }

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

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

  .temoignages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-stats {
    display: none;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section {
    padding: 72px 0;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13,51,71,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
  }

  .nav-link.nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  /* Hero */
  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: none;
  }

  /* Voilier */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 130px;
  }

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

  /* Tarifs */
  .tarifs-grid {
    max-width: 100%;
  }

  .options-section {
    padding: 28px 20px;
  }

  /* Reservation */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 28px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  /* Section header */
  .section-title {
    font-size: 2rem;
  }

  /* Urgency banner */
  .urgency-banner {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  /* Nav photo */
  .nav-photo-inner {
    height: 280px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 56px 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 180px 180px 180px;
  }

  .photo-item.photo-large {
    grid-column: auto;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .spec-table {
    padding: 20px;
  }

  .feature-card {
    flex-direction: column;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .croisiere-body {
    padding: 20px;
  }

  .tarif-card {
    padding: 28px 20px;
  }

  .form-wrap {
    padding: 24px 16px;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
  .site-header,
  .hero-scroll-indicator,
  .back-to-top,
  .hamburger {
    display: none;
  }

  .hero {
    height: auto;
    padding: 60px 0;
    color: #000;
  }

  .hero-overlay,
  .hero-bg {
    background: none;
  }
}
