:root {
    --ocean: #0a3d52;
    --aqua: #00b4d8;
    --aqua-light: #90e0ef;
    --sand: #f5e6c8;
    --sand-dark: #c9a96e;
    --white: #ffffff;
    --dark: #0d1b2a;
    --gold: #c9a96e;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Josefin Sans', sans-serif;
    background: #0a1520;
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 126px; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(5, 15, 25, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--aqua); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-langs {
    display: flex;
    gap: 0.6rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .nav-langs a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-langs a:hover, .nav-langs a.active { color: var(--aqua); }

  .btn-nav {
    background: var(--aqua);
    color: var(--dark);
    padding: 0.6rem 1.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }

  .btn-nav:hover { background: var(--aqua-light); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding-top: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1628 0%, #0a3d52 40%, #00b4d8 100%);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg_01.jpg');
    background-size: cover;
    background-position: center 40%;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6,14,26,0.55) 0%, rgba(6,14,26,0.3) 40%, rgba(6,14,26,0.75) 100%);
  }

  .hero-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 300px;
    background: linear-gradient(0deg, rgba(0,180,216,0.15) 0%, transparent 100%);
  }

  .hero-content {
    position: relative;
    text-align: center;
    padding: 0 2rem 10rem;
    z-index: 2;
  }

  .hero-location {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

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

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 3rem;
  }

  .hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--aqua);
    color: var(--dark);
    padding: 1rem 2.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }

  .btn-primary:hover { background: var(--aqua-light); transform: translateY(-2px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 1rem 2.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }

  .btn-outline:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.4);
    animation: bounce 2s infinite;
  }

  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  }

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

  /* ── STATS ── */
  .stats {
    background: linear-gradient(135deg, #0a3d52, #0d4f6e);
    padding: 2.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat {
    text-align: center;
    color: var(--white);
  }

  .stat-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }

  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--aqua-light);
  }

  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.4rem;
  }

  /* ── SECTIONS COMMUNES ── */
  section { padding: 7rem 4rem; }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

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

  /* ── EXPÉRIENCE ── */
  .experience {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .exp-text .section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
  }

  .exp-steps { display: flex; flex-direction: column; gap: 2rem; }

  .exp-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--aqua);
    line-height: 1;
    min-width: 2.5rem;
  }

  .step-content h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  .exp-visual {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #0a3d52, #00b4d8);
    overflow: hidden;
  }

  .exp-visual-inner {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 40% 60%, rgba(0,180,216,0.4) 0%, transparent 60%),
      linear-gradient(180deg, rgba(10,61,82,0.9) 0%, rgba(0,180,216,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .exp-badge {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3rem;
  }

  .exp-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--white);
  }

  .exp-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--aqua-light);
    text-transform: uppercase;
    margin-top: 0.5rem;
  }

  .exp-badge-sub {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  /* ── GALERIE ── */
  .gallery { background: #080f1a; }

  .gallery-header { margin-bottom: 4rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 200px);
    gap: 4px;
    margin-bottom: 4px;
  }

  .gallery-item {
    background: linear-gradient(135deg, #0a3d52, #00b4d8);
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }

  .gallery-item-inner {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    transition: transform 0.5s;
    background: linear-gradient(135deg,
      rgba(10,61,82,0.8),
      rgba(0,180,216,0.3));
  }

  .gallery-item:hover .gallery-item-inner { transform: scale(1.05); }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,180,216,0.1);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-overlay span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--white);
    text-transform: uppercase;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  /* ── OFFRES ── */
  .offers { background: var(--dark); }

  .offers-header { text-align: center; margin-bottom: 1rem; }

  .offers-subtext {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4rem;
    font-style: italic;
  }

  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .offer-card {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    position: relative;
    transition: all 0.4s;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
  }
  .offer-card-photo {
    width: 100%; height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .offer-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.95) 100%);
  }
  .offer-card-body {
    padding: 2rem 2.5rem 2.5rem;
  }

  .offer-card.featured {
    border-color: var(--aqua);
    background: rgba(0,180,216,0.05);
  }
  .offer-badge { z-index: 2; }

  .offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,180,216,0.5);
    background: rgba(0,180,216,0.08);
  }

  .offer-badge {
    position: absolute;
    top: -1px; left: 2rem;
    background: var(--aqua);
    color: var(--dark);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
  }

  .offer-icon { font-size: 2rem; margin-bottom: 1rem; }

  .offer-tag {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .offer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .offer-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .offer-price {
    margin-bottom: 2rem;
  }

  .offer-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
  }

  .offer-price-unit {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 0.2rem;
  }

  .offer-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
  }

  .offer-cta-primary {
    background: var(--aqua);
    color: var(--dark);
  }

  .offer-cta-primary:hover { background: var(--aqua-light); }

  .offer-cta-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
  }

  .offer-cta-outline:hover { border-color: var(--aqua); color: var(--aqua); }

  /* ── RÉSERVATION ── */
  .booking {
    background: linear-gradient(180deg, #060e1a 0%, #0a1628 100%);
    text-align: center;
  }

  .booking-form {
    max-width: 700px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    text-align: left;
  }

  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group.full { grid-column: span 2; }

  .form-group label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.9rem 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--aqua); }

  .form-group select option { background: var(--dark); }

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

  .btn-submit {
    grid-column: span 2;
    background: var(--aqua);
    color: var(--dark);
    border: none;
    padding: 1.2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }

  .btn-submit:hover { background: var(--aqua-light); transform: translateY(-2px); }

  .booking-trust {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: 1rem;
  }

  .payment-methods {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  /* ── POURQUOI NOUS ── */
  .why {
    background: #060e1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .why-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .why-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .why-feature:last-child { border-bottom: none; }

  .why-icon { font-size: 1.6rem; min-width: 2rem; }

  .why-feature h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .why-feature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  /* ── AVIS ── */
  .reviews { background: var(--dark); }

  .reviews-header { text-align: center; margin-bottom: 4rem; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .review-card {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    transition: all 0.4s;
  }

  .review-card:hover {
    border-color: rgba(0,180,216,0.3);
    background: rgba(0,180,216,0.04);
    transform: translateY(-4px);
  }

  .review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }

  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .review-avatar {
    width: 36px; height: 36px;
    background: var(--aqua);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    flex-shrink: 0;
  }

  .review-name {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--white);
    font-weight: 600;
  }

  .review-location {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
  }

  /* ── CONTACT ── */
  .contact {
    background: #060e1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-items { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }

  .contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }

  .contact-icon {
    font-size: 1.4rem;
    min-width: 2rem;
    margin-top: 0.2rem;
  }

  .contact-item h4 {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.6rem;
  }

  .contact-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  .contact-item a {
    color: var(--aqua-light);
    text-decoration: none;
  }

  .contact-map {
    height: 400px;
    overflow: hidden;
  }

  .map-pin {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
  }

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

  .map-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
  }

  /* ── FOOTER ── */
  footer {
    background: #030810;
    padding: 4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 0.3rem;
  }

  .footer-brand p {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .footer-brand address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: normal;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    align-content: flex-start;
  }

  .footer-nav a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-nav a:hover { color: var(--aqua); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copy {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
  }

  .footer-langs {
    display: flex;
    gap: 1rem;
  }

  .footer-langs a {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-langs a:hover { color: var(--aqua); }

  /* ── OFFER OPTION ── */
  .offer-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: rgba(0,180,216,0.07);
    border-left: 2px solid var(--aqua);
    padding: 0.7rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
  }
  .offer-option strong { color: var(--aqua-light); }
  .offer-option-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(3,8,16,0.95);
    align-items: center;
    justify-content: center;
  }

  .lightbox.active { display: flex; }

  .lightbox-inner {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
  }

  .lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
  }

  .lightbox-image {
    width: 100%;
    max-height: 60vh;
    background: linear-gradient(135deg, #0a3d52, #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .lightbox-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .lightbox-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 48px; height: 48px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
  }

  .lightbox-btn:hover { border-color: var(--aqua); color: var(--aqua); }

  .lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Josefin Sans', sans-serif;
  }

  .lightbox-close:hover { color: var(--white); }

  .lightbox-counter {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.4);
  }

  /* ── LANG BAR ── */
  .lang-bar {
    display: flex;
    background: rgba(0,180,216,0.1);
    border-bottom: 1px solid rgba(0,180,216,0.2);
    padding: 0.5rem 2rem;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    position: fixed;
    top: 90px; left: 0; right: 0;
    z-index: 1001;
  }
  .lang-bar a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
  }
  .lang-bar a:hover, .lang-bar a.active { color: var(--aqua); }
  .lang-bar span { color: var(--aqua); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    .lang-bar { display: flex; }
    .nav-langs { display: none; }
    section { padding: 5rem 2rem; }
    .stats { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
    .experience, .why, .contact { grid-template-columns: 1fr; gap: 3rem; }
    .offers-grid, .reviews-grid { grid-template-columns: 1fr; }
    .booking-form { grid-template-columns: 1fr; }
    .form-group.full, .btn-submit, .booking-trust, .payment-methods { grid-column: span 1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ── LOGO BAR ── */
  .logo-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    background: rgba(5, 15, 25, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(0,180,216,0.15);
  }