/* ============================================
   EEVADEZ-VOUS · Styles
   Palette : Mer profonde, sable doré, crème
   ============================================ */

:root {
  /* === Palette inspirée du flyer === */
  --ocean: #2C4A5E;
  --ocean-deep: #1F3447;
  --ocean-light: #5A7892;
  --ocean-pale: #B8C9D4;

  --sand: #D4A574;
  --sand-light: #E8C99A;
  --sand-pale: #F2E3C8;
  --sand-warm: #E0B583;

  --cream: #FBF6EC;
  --shell: #FFFCF5;
  --foam: #F5EFE3;

  --sun: #E4A87A;
  --sun-deep: #C97B5A;

  --ink: #2C3E50;
  --ink-soft: #4A5C6F;
  --ink-mute: #7A8B9C;

  --border: rgba(44, 74, 94, 0.1);
  --shadow-soft: 0 1px 2px rgba(44,74,94,0.04), 0 4px 20px rgba(44,74,94,0.06);
  --shadow-card: 0 1px 2px rgba(44,74,94,0.06), 0 12px 36px rgba(44,74,94,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Texture grain très subtile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.script {
  font-family: 'Caveat', cursive;
  font-weight: 500;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(251, 246, 236, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ocean);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sun-deep);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--sun-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ocean);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover { background: var(--sun-deep); transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(31, 52, 71, 0.55) 0%, rgba(44, 74, 94, 0.35) 40%, rgba(44, 74, 94, 0.65) 100%),
    url('images/hero-biarritz.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
}

.hero-water-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.hero-water-lines svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-sand {
  display: none;
}

.hero-sand::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C200,80 400,0 720,40 C1040,80 1240,10 1440,40 L1440,80 L0,80 Z' fill='%23D4A574'/%3E%3C/svg%3E");
  background-size: cover;
}

.hero-wave-deco {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  z-index: 3;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  background: rgba(251, 246, 236, 0.15);
  border: 1px solid rgba(251, 246, 236, 0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  animation: fadeUp 0.9s ease both;
  backdrop-filter: blur(10px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-light);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  font-weight: 400;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.1s ease both;
  color: var(--cream);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  font-style: italic;
  color: var(--sand-light);
  font-weight: 300;
}

.hero h1 .script {
  font-family: 'Caveat', cursive;
  font-size: 1.05em;
  font-style: normal;
  color: var(--sand-light);
  font-weight: 500;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(251, 246, 236, 0.95);
  margin: 0 auto 44px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.25);
  max-width: 600px;
  animation: fadeUp 1s 0.25s ease both;
  font-weight: 400;
}

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--sand-light);
  margin-bottom: 16px;
  animation: fadeUp 1s 0.2s ease both;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.4s ease both;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--cream);
  color: var(--ocean-deep);
  padding: 18px 34px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

.btn-primary svg { transition: transform 0.4s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 18px 34px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
  border: 1px solid rgba(251, 246, 236, 0.4);
}

.btn-secondary:hover {
  background: rgba(251, 246, 236, 0.1);
  border-color: var(--cream);
}

.hero-chair {
  display: none;
}

.hero-chair img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-badges {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  pointer-events: none;
}

.hero-badge {
  background: var(--shell);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
  animation: fadeUp 1s 0.8s ease both;
  max-width: 280px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--ocean);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}

.hero-badge-text { line-height: 1.3; }
.hero-badge-text strong {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  display: block;
  color: var(--ink);
}
.hero-badge-text span { font-size: 12.5px; color: var(--ink-mute); }

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

@media (max-width: 968px) {
  .hero-badges { position: relative; bottom: auto; flex-direction: column; gap: 12px; align-items: center; margin-top: 30px; padding: 0 20px; }
  .hero-chair img { width: 120px; }
  .hero { padding-bottom: 60px; }
  .hero-sand { height: 45%; }
}

/* === TRUST BAR === */
.trust {
  padding: 72px 0;
  background: var(--ocean-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(228, 168, 122, 0.08), transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.08), transparent 50%);
  pointer-events: none;
}

.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}

.trust-item { text-align: center; }
.trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 300;
  display: block;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
}
.trust-item strong em {
  font-style: italic;
  color: var(--sand-light);
}
.trust-item span {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.65);
  font-weight: 400;
}

@media (max-width: 768px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .trust-item strong { font-size: 38px; }
}

/* === SECTION SHARED === */
section { position: relative; }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-deep);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sun-deep);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 720px;
  font-weight: 400;
}

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

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
}

/* === ABOUT === */
.about {
  padding: 160px 0;
  background: var(--cream);
  position: relative;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-img {
  background-size: cover;
  background-position: center;
  filter: saturate(0.88);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-img:hover {
  filter: saturate(1);
}

/* Grande photo maison basque : 72% de largeur, en haut à gauche */
.about-img--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
  background-image: url('images/about-pro.jpg');
  border-radius: 8px 8px 200px 200px;
}

/* Petite photo surfeuse : 50% de largeur, en bas à droite, façon polaroid */
.about-img--surf {
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  background-image: url('images/about-surf.jpg');
  border-radius: 8px;
  border: 14px solid var(--cream);
  box-shadow: var(--shadow-card);
}

.about-quote {
  position: absolute;
  top: 32px;
  right: 0;
  width: 42%;
  z-index: 2;
  background: var(--sand-pale);
  padding: 28px 28px 28px 32px;
  border-radius: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-weight: 400;
}

.about-quote-mark {
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--sun-deep);
  font-style: italic;
  font-weight: 300;
}

.about-quote-text {
  position: relative;
  padding-top: 18px;
}

.about-content h2 { margin-bottom: 32px; }

.about-text {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}

.about-text strong { color: var(--ink); font-weight: 500; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--ocean-pale);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}

.value-text strong { display: block; font-weight: 500; font-size: 15px; margin-bottom: 3px; color: var(--ink); }
.value-text span { font-size: 13.5px; color: var(--ink-mute); line-height: 1.4; }

@media (max-width: 968px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 480px; max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 600px) {
  .about-quote { display: none; }
  .about-img--main { width: 100%; height: 100%; }
  .about-img--surf { width: 45%; height: 45%; }
}

/* === SERVICES PARTICULIERS === */
.services {
  padding: 160px 0;
  background: var(--sand-pale);
  position: relative;
}

.services-header {
  max-width: 1240px;
  margin: 0 auto 72px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--shell);
  padding: 38px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 201, 212, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--ocean-pale);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--ocean);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 26px;
  transition: all 0.5s;
}

.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.05);
  background: var(--sun-deep);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* === PRO === */
.pro {
  padding: 160px 0;
  background: var(--ocean-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.pro::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 168, 122, 0.18), transparent 70%);
  pointer-events: none;
}

.pro::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent 70%);
  pointer-events: none;
}

.pro-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pro .section-eyebrow { color: var(--sand-light); }
.pro .section-eyebrow::before { background: var(--sand-light); }
.pro .section-title { color: var(--cream); }
.pro .section-title em { color: var(--sand-light); }
.pro .section-lead { color: rgba(251, 246, 236, 0.75); margin-bottom: 40px; }

.pro-list {
  list-style: none;
  margin-top: 36px;
}

.pro-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(251, 246, 236, 0.1);
  font-size: 16px;
  color: rgba(251, 246, 236, 0.92);
}

.pro-list li::before {
  content: '→';
  color: var(--sand-light);
  font-size: 18px;
  font-weight: 300;
}

.pro-list li:last-child { border-bottom: none; }

.pro-visual {
  position: relative;
  height: 600px;
}

.pro-img {
  position: absolute;
  inset: 0;
  background-image: url('images/pro-hotel.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 220px 12px 12px 220px;
  filter: saturate(0.85) brightness(0.95);
}

.pro-tag {
  position: absolute;
  top: 36px;
  left: -24px;
  background: var(--cream);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-tag-2 {
  position: absolute;
  bottom: 36px;
  right: -24px;
  background: var(--sand);
  color: var(--ink);
  padding: 22px 26px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  max-width: 260px;
}

.pro-tag-2 strong {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.pro-tag-2 span { font-size: 13.5px; opacity: 0.85; line-height: 1.4; }

.btn-sand {
  background: var(--sand);
  color: var(--ink) !important;
  margin-top: 44px;
}
.btn-sand:hover { background: var(--sun-deep); color: var(--cream) !important; }

@media (max-width: 968px) {
  .pro-inner { grid-template-columns: 1fr; gap: 60px; }
  .pro-visual { height: 440px; }
}

/* === MOITIE EN MOINS === */
.credit {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(228, 168, 122, 0.4), transparent 70%),
    linear-gradient(135deg, var(--sand) 0%, var(--sand-warm) 100%);
  position: relative;
  overflow: hidden;
}

.credit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 200' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C360,140 720,60 1080,100 C1260,120 1380,90 1440,100' fill='none' stroke='rgba(44, 74, 94, 0.12)' stroke-width='1.5'/%3E%3Cpath d='M0,130 C360,170 720,90 1080,130 C1260,150 1380,120 1440,130' fill='none' stroke='rgba(44, 74, 94, 0.08)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  opacity: 0.7;
  pointer-events: none;
}

.credit-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.credit-icon {
  width: 64px;
  height: 64px;
  background: var(--ocean-deep);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  box-shadow: 0 12px 32px rgba(44, 74, 94, 0.2);
}

.credit h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}

.credit h2 em {
  font-style: italic;
  color: var(--ocean-deep);
  font-weight: 300;
}

.credit h2 em strong {
  font-weight: 600;
  font-size: 1.15em;
  color: var(--sun-deep);
}

.credit p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.credit-note {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 24px;
}

/* === TARIFS === */
.pricing {
  padding: 140px 0;
  background: var(--shell);
  position: relative;
}

.pricing-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header .section-eyebrow {
  justify-content: center;
}

.pricing-header .section-title {
  margin: 0 auto 24px;
}

.pricing-header .section-lead {
  margin: 0 auto;
  max-width: 680px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.pricing-card {
  background: var(--cream);
  padding: 44px 32px 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--ocean-pale);
}

.pricing-card--highlight {
  background: linear-gradient(160deg, var(--sand-pale) 0%, var(--sand-light) 100%);
  border-color: var(--sand);
}

.pricing-card--highlight:hover {
  border-color: var(--sun-deep);
}

.pricing-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--ocean);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card--highlight .pricing-card-icon {
  background: var(--ocean-deep);
}

.pricing-half {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.pricing-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
}

.pricing-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.pricing-cta {
  text-align: center;
  background: var(--ocean-deep);
  padding: 56px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(228, 168, 122, 0.18), transparent 70%);
  pointer-events: none;
}

.pricing-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent 70%);
  pointer-events: none;
}

.pricing-cta > * {
  position: relative;
  z-index: 1;
}

.pricing-cta-lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.3;
}

.pricing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary--dark {
  background: var(--sand);
  color: var(--ink);
}

.btn-primary--dark:hover {
  background: var(--cream);
}

.btn-secondary--dark {
  color: var(--cream);
  border-color: rgba(251, 246, 236, 0.4);
}

.btn-secondary--dark:hover {
  background: rgba(251, 246, 236, 0.1);
  border-color: var(--cream);
}

.pricing-cta-note {
  font-size: 13px;
  color: rgba(251, 246, 236, 0.6);
  letter-spacing: 0.05em;
}

@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card { padding: 36px 28px 32px; }
  .pricing-cta { padding: 44px 24px; }
}

/* === INSTAGRAM === */
.insta {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.insta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.insta-content h2 {
  margin-bottom: 24px;
}

.insta-content .section-lead {
  margin-bottom: 36px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: var(--cream);
  padding: 18px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.4s;
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.25);
}

.insta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(131, 58, 180, 0.35);
}

.insta-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}

.insta-card {
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.insta-card:hover {
  transform: scale(1.02);
}

.insta-card--1 {
  background-image: url('images/hero-biarritz.jpg');
  filter: saturate(0.92);
  position: relative;
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.7) 0%, rgba(253, 29, 29, 0.6) 50%, rgba(252, 176, 69, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0.85;
}

.insta-card-overlay svg {
  width: 38%;
  height: 38%;
  max-width: 60px;
  max-height: 60px;
}

.insta-card--2 {
  background-image: url('images/about-pro.jpg');
  filter: saturate(0.92);
}

.insta-card--3 {
  background-image: url('images/about-surf.jpg');
  filter: saturate(0.92);
}

.insta-card--4 {
  background-image: url('images/pro-hotel.jpg');
  filter: saturate(0.92);
}

@media (max-width: 968px) {
  .insta-inner { grid-template-columns: 1fr; gap: 50px; }
  .insta-visual { max-width: 400px; margin: 0 auto; }
}

/* === ZONES === */
.zones {
  padding: 160px 0;
  background: var(--cream);
}

.zones-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.zones-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: end;
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.zone-pill {
  background: var(--cream);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.4s;
}

.zone-pill:hover { background: var(--sand-pale); }

.zone-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean);
  flex-shrink: 0;
}

.zones-note {
  margin-top: 32px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .zones-header { grid-template-columns: 1fr; gap: 32px; }
  .zones-list { grid-template-columns: repeat(2, 1fr); }
}

/* === FAQ === */
.faq {
  padding: 140px 0;
  background: var(--shell);
  position: relative;
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.faq-header .section-eyebrow {
  justify-content: center;
}

.faq-header .section-title {
  margin: 0 auto 24px;
}

.faq-header .section-lead {
  margin: 0 auto;
  max-width: 580px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: var(--ocean-pale);
}

.faq-item[open] {
  background: var(--sand-pale);
  border-color: var(--sand);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.faq-item:hover .faq-icon {
  background: var(--sun-deep);
  transform: scale(1.05);
}

.faq-item[open] .faq-icon {
  background: var(--sun-deep);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 28px;
  animation: faqFadeIn 0.4s ease;
}

.faq-answer p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 12px 0 14px 0;
  padding-left: 20px;
}

.faq-answer li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.faq-answer strong {
  color: var(--ink);
  font-weight: 500;
}

.faq-answer a {
  color: var(--sun-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--ocean);
}

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

@media (max-width: 600px) {
  .faq-item summary { padding: 20px 22px; }
  .faq-question { font-size: 16px; }
  .faq-answer { padding: 0 22px 22px; }
}

/* === CONTACT === */
.contact {
  padding: 160px 0;
  background: var(--sand-pale);
  position: relative;
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}

.contact-left h2 { margin-bottom: 32px; }

.contact-info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 4px;
}

.info-text a, .info-text span {
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s;
}

.info-text a:hover { color: var(--sun-deep); }

.contact-form {
  background: var(--shell);
  padding: 52px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

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

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--shell);
  box-shadow: 0 0 0 4px rgba(44, 74, 94, 0.12);
}

.form-row textarea { resize: vertical; min-height: 130px; font-family: inherit; }

.form-submit {
  width: 100%;
  padding: 19px;
  background: var(--ocean);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover { background: var(--sun-deep); }

@media (max-width: 968px) {
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 36px; }
  .form-row.split { grid-template-columns: 1fr; }
}

/* === FOOTER === */
footer {
  background: var(--ocean-deep);
  color: var(--cream);
  padding: 90px 0 36px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo { color: var(--cream); margin-bottom: 22px; }
.footer-brand p { color: rgba(251, 246, 236, 0.6); font-size: 14.5px; line-height: 1.7; max-width: 360px; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--cream);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  color: rgba(251, 246, 236, 0.6);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--sand-light); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 32px 0;
  border-top: 1px solid rgba(251, 246, 236, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.45);
}

.footer-bottom a {
  color: rgba(251, 246, 236, 0.65);
  text-decoration: none;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(251, 246, 236, 0.35);
  letter-spacing: 0.01em;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(251, 246, 236, 0.75) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 1px;
  transition: color 0.3s ease;
}

.footer-credit-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--sand);
  transition: width 0.4s ease;
}

.footer-credit-link:hover {
  color: var(--sand) !important;
}

.footer-credit-link:hover::after {
  width: calc(100% - 14px);
}

.footer-credit-link svg {
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-credit-link:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-credit { justify-content: center; }
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
