:root{
    --deep-sea:#0B3D4E;
    --lagoon:#1B98A0;
    --lagoon-light:#5FC6C8;
    --sand:#F4E9D4;
    --sand-dark:#E7D6AE;
    --coral:#EF6C4D;
    --coral-dark:#D9553A;
    --ink:#0E2A2F;
    --white:#FFFDF8;
    --shadow:0 20px 50px -20px rgba(11,61,78,0.35);
    --radius:22px;
  }

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

  html{scroll-behavior:smooth;}

  body{
    font-family:'Manrope',sans-serif;
    color:var(--ink);
    background:var(--white);
    overflow-x:hidden;
  }

  h1,h2,h3,.display{
    font-family:'Fraunces',serif;
    line-height:1.05;
    letter-spacing:-0.01em;
  }

  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;cursor:pointer;border:none;}

  .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }

  .eyebrow{
    font-size:0.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.16em;
    color:var(--coral);
  }

  /* ---------- NAV ---------- */
  header{
    position:fixed;
    top:0;left:0;right:0;
    z-index:100;
    padding:20px 0;
    transition:all .35s ease;
  }
  header.scrolled{
    background:rgba(11,61,78,0.92);
    backdrop-filter:blur(10px);
    padding:12px 0;
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
  }
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  .logo{
    font-family:'Fraunces',serif;
    font-weight:700;
    font-size:1.4rem;
    color:var(--white);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .logo svg{width:30px;height:30px;flex-shrink:0;}
  .nav-links{
    display:flex;
    gap:34px;
  }
  .nav-links a{
    color:var(--white);
    font-size:0.92rem;
    font-weight:600;
    opacity:0.88;
    position:relative;
    padding:4px 0;
  }
  .nav-links a::after{
    content:'';
    position:absolute;
    left:0;bottom:0;
    width:0;height:2px;
    background:var(--coral);
    transition:width .3s ease;
  }
  .nav-links a:hover{opacity:1;}
  .nav-links a:hover::after{width:100%;}

  .nav-cta{
    background:var(--coral);
    color:var(--white);
    padding:11px 22px;
    border-radius:100px;
    font-weight:700;
    font-size:0.88rem;
    transition:transform .25s ease, background .25s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--coral-dark);transform:translateY(-2px);}

  .burger{display:none;background:none;width:26px;height:20px;position:relative;}
  .burger span{
    position:absolute;left:0;right:0;height:2px;background:var(--white);
    transition:all .3s ease;
  }
  .burger span:nth-child(1){top:0;}
  .burger span:nth-child(2){top:9px;}
  .burger span:nth-child(3){top:18px;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(95,198,200,0.25), transparent 55%),
      linear-gradient(160deg, rgba(11,61,78,0.88) 0%, rgba(15,90,110,0.75) 45%, rgba(27,152,160,0.55) 100%),
      url('IMG/cl.png');
    background-size:cover;
    background-position:center;
    overflow:hidden;
  }

  .hero-sun{
    position:absolute;
    top:-120px;right:8%;
    width:340px;height:340px;
    border-radius:50%;
    background:radial-gradient(circle at 40% 40%, #FFE7A8, var(--coral) 70%);
    filter:blur(2px);
    opacity:0.85;
  }

  .hero-boat{
    position:absolute;
    bottom:120px;right:12%;
    width:120px;
    opacity:0.9;
    animation:bob 6s ease-in-out infinite;
  }
  @keyframes bob{
    0%,100%{transform:translateY(0) rotate(-1deg);}
    50%{transform:translateY(-14px) rotate(1deg);}
  }

  .hero-content{
    position:relative;
    z-index:2;
    max-width:640px;
    padding-top:80px;
  }
  .hero .eyebrow{color:#FFD9A0;}
  .hero h1{
    color:var(--white);
    font-size:clamp(2.6rem, 6vw, 4.6rem);
    font-weight:600;
    margin:18px 0 22px;
  }
  .hero h1 em{
    font-style:italic;
    font-weight:500;
    color:var(--sand);
  }
  .hero p{
    color:rgba(255,253,248,0.85);
    font-size:1.12rem;
    max-width:480px;
    margin-bottom:34px;
    line-height:1.6;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .btn-primary{
    background:var(--coral);
    color:var(--white);
    padding:16px 32px;
    border-radius:100px;
    font-weight:700;
    font-size:1rem;
    box-shadow:0 15px 30px -10px rgba(239,108,77,0.6);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .btn-primary:hover{transform:translateY(-3px);box-shadow:0 20px 36px -8px rgba(239,108,77,0.7);}

  .btn-ghost{
    border:1.5px solid rgba(255,253,248,0.5);
    color:var(--white);
    padding:16px 30px;
    border-radius:100px;
    font-weight:700;
    font-size:1rem;
    transition:all .25s ease;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .btn-ghost:hover{background:rgba(255,253,248,0.12);border-color:var(--white);}

  .wave-divider{
    position:absolute;
    bottom:-2px;left:0;right:0;
    line-height:0;
    z-index:1;
  }
  .wave-divider svg{width:100%;height:110px;display:block;}

  /* ---------- SECTION HEADINGS ---------- */
  section{padding:110px 0;position:relative;}
  .section-head{
    max-width:600px;
    margin-bottom:56px;
  }
  .section-head h2{
    font-size:clamp(2rem,4vw,2.9rem);
    font-weight:600;
    margin-top:14px;
    color:var(--deep-sea);
  }
  .section-head p{
    margin-top:16px;
    color:#4A6067;
    font-size:1.05rem;
    line-height:1.6;
  }

  /* ---------- ABOUT / FEATURES ---------- */
  .about{background:var(--sand);}
  .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
  }
  .about-visual{
    position:relative;
    aspect-ratio:4/5;
    border-radius:var(--radius);
    background:linear-gradient(150deg, var(--lagoon-light), var(--deep-sea));
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
  }
  .about-visual-img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .about-visual .tag{
    position:absolute;
    bottom:24px;left:24px;right:24px;
    background:rgba(11,61,78,0.55);
    backdrop-filter:blur(6px);
    color:var(--white);
    padding:16px 20px;
    border-radius:14px;
    font-size:0.85rem;
    line-height:1.5;
  }
  .about-text p{color:#3E5459;line-height:1.75;font-size:1.02rem;margin-bottom:26px;}
  .feature-list{display:grid;gap:20px;}
  .feature-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:18px;
    background:var(--white);
    border-radius:16px;
    box-shadow:var(--shadow);
  }
  .feature-item .icon{
    width:44px;height:44px;flex-shrink:0;
    border-radius:12px;
    background:var(--lagoon);
    display:flex;align-items:center;justify-content:center;
  }
  .feature-item h3{font-size:1.05rem;color:var(--deep-sea);margin-bottom:4px;}
  .feature-item p{font-size:0.9rem;color:#5A6E73;line-height:1.5;}

  /* ---------- GALLERY ---------- */
  .gallery{background:var(--white);}
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
  }
  .gallery-grid .g-item{
    border-radius:16px;
    aspect-ratio:1/1;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    box-shadow:var(--shadow);
    transition:transform .4s ease;
  }
  .gallery-grid .g-item:hover{transform:scale(1.03);}

  /* ---------- MENU ---------- */
  .menu{background:var(--deep-sea);}
  .menu .section-head .eyebrow{color:#8FE0D6;}
  .menu .section-head h2{color:var(--white);}
  .menu .section-head p{color:rgba(255,253,248,0.7);}
  .menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  .menu-card{
    background:rgba(255,253,248,0.05);
    border:1px solid rgba(255,253,248,0.12);
    border-radius:var(--radius);
    overflow:hidden;
    transition:transform .3s ease, background .3s ease;
  }
  .menu-card:hover{transform:translateY(-6px);background:rgba(255,253,248,0.09);}
  .menu-card-img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
  }
  .menu-card-body{padding:28px 28px 32px;}
  .menu-card .icon{
    width:50px;height:50px;
    border-radius:14px;
    background:var(--coral);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
    margin-top:-52px;
    position:relative;
    z-index:1;
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
  }
  .menu-card h3{color:var(--white);font-size:1.25rem;margin-bottom:10px;}
  .menu-card p{color:rgba(255,253,248,0.65);font-size:0.92rem;line-height:1.6;}

  /* ---------- AVIS ---------- */
  .avis{background:var(--sand);}
  .avis-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .avis-card{
    background:var(--white);
    border-radius:18px;
    padding:28px;
    box-shadow:var(--shadow);
  }
  .stars{color:var(--coral);font-size:1rem;margin-bottom:14px;letter-spacing:2px;}
  .avis-card p{color:#4A6067;font-size:0.95rem;line-height:1.6;margin-bottom:18px;}
  .avis-name{font-weight:700;color:var(--deep-sea);font-size:0.9rem;}

  /* ---------- RESERVATION ---------- */
  .reservation{background:var(--white);}
  .res-wrap{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:0;
    background:var(--sand);
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .res-info{
    background:linear-gradient(165deg, var(--lagoon), var(--deep-sea));
    color:var(--white);
    padding:52px 44px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .res-info h3{font-size:1.7rem;font-weight:600;margin-bottom:14px;}
  .res-info p{color:rgba(255,253,248,0.8);font-size:0.95rem;line-height:1.6;margin-bottom:30px;}
  .res-contact{display:grid;gap:16px;}
  .res-contact-item{display:flex;gap:12px;align-items:center;font-size:0.9rem;}
  .res-contact-item .icon{
    width:38px;height:38px;border-radius:10px;
    background:rgba(255,253,248,0.15);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }

  .res-form{padding:52px 44px;}
  .res-cta-panel{
    padding:52px 44px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .res-cta-panel .eyebrow{color:var(--coral);}
  .res-cta-panel h2{
    font-size:clamp(1.7rem,3vw,2.2rem);
    color:var(--deep-sea);
    font-weight:600;
    margin:14px 0 16px;
  }
  .res-cta-panel p{
    color:#4A6067;
    font-size:0.98rem;
    line-height:1.65;
    margin-bottom:28px;
  }
  .res-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:fit-content;
  }
  .field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
  .field{margin-bottom:18px;}
  .field label{
    display:block;
    font-size:0.82rem;
    font-weight:700;
    color:var(--deep-sea);
    margin-bottom:7px;
  }
  .field input,.field select,.field textarea{
    width:100%;
    padding:13px 16px;
    border-radius:12px;
    border:1.5px solid var(--sand-dark);
    background:var(--white);
    font-family:'Manrope',sans-serif;
    font-size:0.95rem;
    color:var(--ink);
    transition:border-color .2s ease;
  }
  .field input:focus,.field select:focus,.field textarea:focus{
    outline:none;
    border-color:var(--lagoon);
  }
  .field textarea{resize:vertical;min-height:90px;}

  .type-choice{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .type-option{cursor:pointer;}
  .type-option input{
    position:absolute;
    opacity:0;
    width:0;height:0;
  }
  .type-option-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 12px;
    border-radius:12px;
    border:1.5px solid var(--sand-dark);
    background:var(--white);
    color:#5A6E73;
    font-weight:700;
    font-size:0.92rem;
    transition:all .2s ease;
  }
  .type-option input:checked + .type-option-card{
    border-color:var(--lagoon);
    background:rgba(27,152,160,0.08);
    color:var(--deep-sea);
  }
  .type-option input:focus-visible + .type-option-card{
    outline:2px solid var(--lagoon);
    outline-offset:2px;
  }
  .submit-btn{
    width:100%;
    background:var(--coral);
    color:var(--white);
    padding:16px;
    border-radius:12px;
    font-weight:700;
    font-size:1rem;
    display:flex;align-items:center;justify-content:center;gap:10px;
    transition:background .25s ease, transform .25s ease;
    margin-top:6px;
  }
  .submit-btn:hover{background:var(--coral-dark);transform:translateY(-2px);}
  .form-note{
    font-size:0.78rem;
    color:#7A8C8F;
    margin-top:12px;
    text-align:center;
  }

  /* ---------- FOOTER ---------- */
  footer{background:var(--deep-sea);color:rgba(255,253,248,0.7);padding:60px 0 26px;}
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,253,248,0.12);
  }
  .footer-logo{
    font-family:'Fraunces',serif;
    color:var(--white);
    font-size:1.3rem;
    font-weight:700;
    margin-bottom:14px;
  }
  footer p{font-size:0.88rem;line-height:1.6;}
  footer h4{color:var(--white);font-size:0.95rem;margin-bottom:16px;}
  .footer-links{display:grid;gap:10px;}
  .footer-links a{font-size:0.88rem;transition:color .2s ease;}
  .footer-links a:hover{color:var(--white);}
  .bottom-bar{
    padding-top:24px;
    display:flex;
    justify-content:space-between;
    font-size:0.8rem;
    flex-wrap:wrap;
    gap:10px;
  }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float{
    position:fixed;
    bottom:26px;right:26px;
    width:60px;height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 10px 28px rgba(37,211,102,0.5);
    z-index:200;
    animation:pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{box-shadow:0 10px 28px rgba(37,211,102,0.5);}
    50%{box-shadow:0 10px 28px rgba(37,211,102,0.9),0 0 0 10px rgba(37,211,102,0.12);}
  }
  .wa-float svg{width:30px;height:30px;}

  /* ---------- REVEAL ---------- */
  .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:960px){
    .about-grid,.res-wrap{grid-template-columns:1fr;}
    .menu-grid{grid-template-columns:1fr 1fr;}
    .avis-grid{grid-template-columns:1fr;}
    .field-row{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:720px){
    .nav-links,.nav-cta{display:none;}
    .burger{display:block;}
    .menu-grid{grid-template-columns:1fr;}
    section{padding:76px 0;}
    .res-info,.res-form{padding:36px 26px;}
    .footer-grid{grid-template-columns:1fr;}
  }
  @media (prefers-reduced-motion: reduce){
    *{animation:none !important;transition:none !important;}
  }
