/* ============================================
   SUN7RIVIERA — Thème maritime
   Bleu marine & beige boisé
   ============================================ */

:root {
  --navy: #0a2342;
  --navy-light: #14406e;
  --navy-deep: #061a33;
  --beige: #e9dfce;
  --beige-light: #faf6ef;
  --wood: #c8a97e;
  --wood-dark: #8b6844;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(6, 26, 51, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 26, 51, 0.2);
  --radius: 18px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--beige-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(6, 26, 51, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--beige-light);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo svg { width: 40px; height: 40px; }

.logo .accent { color: var(--wood); }

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

.nav-links a {
  color: var(--beige);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--wood);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover, .nav-links a.active { color: var(--wood); }

.nav-cta {
  background: var(--wood);
  color: var(--navy-deep) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--beige); transform: translateY(-2px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  width: 28px; height: 2px;
  background: var(--beige);
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-light) 100%);
  color: var(--beige-light);
  overflow: hidden;
}

.hero.hero-inner {
  min-height: 62vh;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 20px 160px;
  max-width: 860px;
}

.hero-tagline {
  display: inline-block;
  color: var(--wood);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
  animation: fadeDown 1s ease both;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.2s both;
}

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

.hero p.lead {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 38px;
  color: rgba(233, 223, 206, 0.85);
  animation: fadeUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s both;
}

/* Photo de fond du hero */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 51, 0.45) 0%, rgba(10, 35, 66, 0.32) 55%, rgba(6, 26, 51, 0.42) 100%);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Soleil animé */
.sun {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0d9a8 0%, var(--wood) 65%, transparent 70%);
  filter: blur(2px);
  opacity: 0.75;
  animation: sunPulse 6s ease-in-out infinite;
  z-index: 1;
}

/* Bateau flottant */
.boat-float {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  z-index: 3;
  animation: boatRock 5s ease-in-out infinite;
  opacity: 0.9;
}

/* Vagues */
.waves {
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}

.waves svg { width: 100%; height: 140px; display: block; }

.wave-back { animation: waveDrift 14s linear infinite; }
.wave-mid { animation: waveDrift 10s linear infinite reverse; }
.wave-front { animation: waveDrift 7s linear infinite; }

/* Mouettes */
.gull {
  position: absolute;
  z-index: 2;
  opacity: 0.7;
  animation: gullFly 22s linear infinite;
}
.gull.g2 { animation-delay: 7s; top: 22% !important; }
.gull.g3 { animation-delay: 14s; top: 30% !important; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--wood);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--beige-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200, 169, 126, 0.35);
}

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

.btn-outline:hover {
  background: var(--beige-light);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--beige-light);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .kicker {
  color: var(--wood-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-header p { color: rgba(10, 35, 66, 0.7); }

.divider-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  color: var(--wood);
}

.divider-anchor::before,
.divider-anchor::after {
  content: '';
  width: 60px; height: 1px;
  background: var(--wood);
}

/* ---------- Cartes services ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
}

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

.card-visual {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual svg { width: 100%; height: 100%; }

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.card-body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }

.card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.card-body p {
  color: rgba(10, 35, 66, 0.72);
  font-size: 0.98rem;
  flex: 1;
}

.card-link {
  margin-top: 20px;
  color: var(--wood-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.card-link:hover { gap: 14px; }

/* ---------- Bande sombre / CTA ---------- */
.band-navy {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-light));
  color: var(--beige-light);
  position: relative;
  overflow: hidden;
}

.band-navy .section-header h2 { color: var(--beige-light); }
.band-navy .section-header p { color: rgba(233, 223, 206, 0.75); }
.band-navy .section-header .kicker { color: var(--wood); }
.band-navy .feature p { color: rgba(233, 223, 206, 0.8); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat h3 {
  font-size: 3.2rem;
  color: var(--wood);
}

.stat p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(233, 223, 206, 0.8);
}

/* ---------- Features / listes ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.feature {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 78px; height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.4s ease;
}

.feature:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--wood);
}

.feature-icon svg { width: 38px; height: 38px; }

.feature h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feature p { font-size: 0.95rem; color: rgba(10, 35, 66, 0.7); }

/* ---------- Détail service (page services) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
}

.service-detail.reverse .service-visual { order: 2; }

.service-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.service-visual svg { width: 100%; height: 100%; display: block; }

.service-visual img,
.service-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.service-visual:hover img,
.service-visual:hover video { transform: scale(1.06); }

/* ---------- Slider diagonal 3 photos ---------- */
.diag-slider {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}

.diag-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 2s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: polygon(0% 0%, 39.5% 0%, 27.5% 100%, 0% 100%);
}

.diag-img:nth-child(2) { clip-path: polygon(39.5% 0%, 72.5% 0%, 60.5% 100%, 27.5% 100%); }
.diag-img:nth-child(3) { clip-path: polygon(72.5% 0%, 100% 0%, 100% 100%, 60.5% 100%); }

.diag-img.diag-active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: scale(1.08);
  z-index: 3;
}

.diag-img.diag-faded { opacity: 0; }

.service-visual:hover .diag-img { transform: none; }

.service-text .kicker {
  color: var(--wood-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.service-text h2 { font-size: 2.4rem; margin-bottom: 18px; }
.service-text p { color: rgba(10, 35, 66, 0.75); margin-bottom: 16px; }

.check-list { margin: 22px 0 30px; }

.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  color: rgba(10, 35, 66, 0.8);
}

.check-list li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  color: var(--wood);
}

.price-tag {
  display: inline-block;
  background: var(--beige);
  color: var(--wood-dark);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* ---------- Galerie photos ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.zoom-soft:hover img { transform: scale(1.03); }

.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(6, 26, 51, 0.85));
  color: var(--beige-light);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* ---------- Bandeau photo pleine largeur ---------- */
.photo-band {
  position: relative;
  padding: 0;
  height: 420px;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band .photo-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 51, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.photo-band h2 {
  color: var(--beige-light);
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.photo-band h2 em { color: var(--wood); }

/* ---------- Timeline (à propos) ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--wood), var(--navy));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--wood);
  border: 4px solid var(--beige-light);
  box-shadow: 0 0 0 2px var(--wood);
}

.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--wood-dark);
  font-weight: 700;
}

.timeline-item h3 { font-size: 1.4rem; margin: 4px 0 8px; }
.timeline-item p { color: rgba(10, 35, 66, 0.72); }

/* ---------- Équipe ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.team-card:hover { transform: translateY(-8px); }

.team-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--wood);
}

.team-avatar svg { width: 56px; height: 56px; }

.team-card h3 { font-size: 1.45rem; }
.team-card .role {
  color: var(--wood-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.92rem; color: rgba(10, 35, 66, 0.7); }

/* ---------- Témoignages ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial {
  background: rgba(233, 223, 206, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.3s, transform 0.4s;
}

.testimonial:hover {
  border-color: var(--wood);
  transform: translateY(-6px);
}

.testimonial .stars { color: var(--wood); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { font-style: italic; color: rgba(233, 223, 206, 0.85); margin-bottom: 18px; }
.testimonial .author { color: var(--wood); font-weight: 600; letter-spacing: 1px; }

/* ---------- Formulaire contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-light));
  color: var(--beige-light);
  border-radius: var(--radius);
  padding: 46px 40px;
  position: sticky;
  top: 110px;
  overflow: hidden;
  position: relative;
}

.contact-info h3 { font-size: 1.9rem; margin-bottom: 12px; }
.contact-info > p { color: rgba(233, 223, 206, 0.75); margin-bottom: 30px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.info-item svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 3px; }
.info-item strong { display: block; color: var(--wood); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }
.info-item span { color: rgba(233, 223, 206, 0.85); font-size: 0.95rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px 42px;
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--beige);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--beige-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wood);
  box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.2);
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #7cb342;
  color: #33691e;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.form-success.visible { display: block; animation: fadeUp 0.5s ease; }

/* ---------- Carte / localisation ---------- */
.map-band {
  background: var(--beige);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--wood);
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 26px;
  color: rgba(10, 35, 66, 0.72);
}

.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 24px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: var(--beige);
  position: relative;
  overflow: hidden;
}

.footer-waves { line-height: 0; background: var(--beige-light); }
.footer-waves svg { width: 100%; height: 80px; display: block; }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer-main h4 {
  color: var(--wood);
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-main p, .footer-main a {
  color: rgba(233, 223, 206, 0.7);
  font-size: 0.95rem;
}

.footer-main li { margin-bottom: 10px; }
.footer-main a:hover { color: var(--wood); }

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 126, 0.2);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(233, 223, 206, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes waveDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

@keyframes boatRock {
  0%, 100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(2.5deg) translateY(-10px); }
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 0.95; }
}

@keyframes gullFly {
  0% { transform: translateX(-8vw) translateY(0); }
  50% { transform: translateX(50vw) translateY(-30px); }
  100% { transform: translateX(110vw) translateY(10px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(6, 26, 51, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.45s ease;
  }

  .nav-links.open { transform: translateX(0); }
  .burger { display: flex; }

  .service-detail { grid-template-columns: 1fr; gap: 34px; }
  .service-detail.reverse .service-visual { order: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .sun { width: 90px; height: 90px; top: 10%; right: 6%; }
  .boat-float { width: 160px; bottom: 90px; }
}
