:root{
    --navy: #1c0736;
    --petrol: #3b1170;
    --petrol-light: #5c1f9c;
    --aqua: #5be3e6;
    --aqua-dim: #3fb0b3;
    --gold: #e7b740;
    --gold-dim: #c99a2e;
    --coral: #ff7a56;
    --sand: #f4eef9;
    --sand-dim: #c7b7dd;
    --glass: rgba(244, 238, 249, 0.07);
    --glass-border: rgba(244, 238, 249, 0.14);
    --radius: 18px;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }

  body{
    margin:0;
    background: var(--navy);
    color: var(--sand);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1,h2,h3{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
  }

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

  .wrap{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }

  :focus-visible{
    outline: 2px solid var(--aqua);
    outline-offset: 3px;
  }

  /* ---------- HEADER ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 30, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
  .brand span{
    font-family:'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
  }
  .nav-links{
    display:flex;
    gap: 28px;
    font-size: 0.95rem;
    color: var(--sand-dim);
  }
  .nav-links a:hover{ color: var(--aqua); }
  .nav-cta{
    background: var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .nav-cta:hover{ background: var(--gold-dim); }

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

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    overflow: hidden;
    padding: 90px 24px 70px;
    background:
      radial-gradient(ellipse 70% 60% at 25% 15%, rgba(124,58,196,0.35), transparent 60%),
      linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
  }
  .caustics{
    position: absolute;
    inset: 0;
    opacity: 0.35;
    mix-blend-mode: screen;
    background-image:
      repeating-radial-gradient(circle at 20% 30%, rgba(91,227,230,0.18) 0px, transparent 60px),
      repeating-radial-gradient(circle at 70% 60%, rgba(124,58,196,0.28) 0px, transparent 80px),
      repeating-radial-gradient(circle at 45% 80%, rgba(231,183,64,0.15) 0px, transparent 70px);
    background-size: 220% 220%;
    animation: drift 26s ease-in-out infinite alternate;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce){
    .caustics{ animation: none; }
  }
  @keyframes drift{
    0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
    100% { background-position: 30% 20%, 70% 80%, 60% 30%; }
  }

  .hero-inner{
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 860px){
    .hero-inner{ grid-template-columns: 1fr; text-align: center; }
    .hero-art{ order: -1; margin: 0 auto 12px; max-width: 260px; }
  }

  .eyebrow-plain{
    color: var(--aqua);
    font-size: 0.95rem;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .hero h1{
    font-size: clamp(2.3rem, 4.6vw, 3.4rem);
    line-height: 1.12;
    color: var(--sand);
  }
  .hero h1 em{
    font-style: italic;
    color: var(--gold);
  }
  .hero p.lead{
    margin-top: 20px;
    font-size: 1.08rem;
    color: var(--sand-dim);
    max-width: 46ch;
  }
  @media (max-width: 860px){
    .hero p.lead{ margin-left: auto; margin-right: auto; }
  }

  .hero-ctas{
    margin-top: 32px;
    display:flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  @media (max-width: 860px){
    .hero-ctas{ justify-content: center; }
  }

  .btn-primary{
    background: var(--gold);
    color: var(--navy);
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition: transform .15s ease, background .15s ease;
  }
  .btn-primary:hover{ background: var(--gold-dim); transform: translateY(-1px); }

  .btn-ghost{
    border: 1px solid var(--glass-border);
    padding: 15px 26px;
    border-radius: 999px;
    color: var(--sand);
    font-weight: 600;
    transition: border-color .15s ease, color .15s ease;
  }
  .btn-ghost:hover{ border-color: var(--aqua); color: var(--aqua); }

  .hero-art{
    position: relative;
    display:flex;
    justify-content:center;
  }
  .hero-art img{
    width: 320px;
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  }

  .wave{
    display:block;
    width: 100%;
    line-height: 0;
  }
  .wave svg{ width: 100%; height: auto; display:block; }

  /* ---------- SECTION BASE ---------- */
  section{ padding: 74px 0; }
  .section-head{
    max-width: 640px;
    margin: 0 auto 46px;
    text-align: center;
  }
  .section-head h2{
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--sand);
  }
  .section-head p{
    margin-top: 14px;
    color: var(--sand-dim);
    font-size: 1.02rem;
  }

  /* ---------- CATALOG ---------- */
  .catalog{
    background: var(--petrol);
    position: relative;
  }
  .catalog-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
  }
  .fish-card{
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    display:flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease;
  }
  .fish-card:hover{
    transform: translateY(-4px);
    border-color: rgba(111,231,221,0.35);
  }
  .fish-photo{
    aspect-ratio: 4/3;
    overflow:hidden;
    background: #04141d;
  }
  .fish-photo img{
    width:100%;
    height:100%;
    object-fit: cover;
  }
  .fish-body{
    padding: 20px 20px 22px;
    display:flex;
    flex-direction:column;
    gap: 10px;
    flex:1;
  }
  .fish-body h3{
    font-size: 1.2rem;
    color: var(--sand);
  }
  .fish-latin{
    font-style: italic;
    color: var(--aqua-dim);
    font-size: 0.85rem;
    margin-top: -6px;
  }
  .fish-body p{
    color: var(--sand-dim);
    font-size: 0.92rem;
    margin: 0;
    flex: 1;
  }
  .fish-link{
    margin-top: 8px;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    display:inline-flex;
    align-items:center;
    gap: 6px;
  }
  .fish-link:hover{ color: var(--gold-dim); }

  /* ---------- WHY US ---------- */
  .why{
    background: var(--navy);
  }
  .why-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  @media (max-width: 780px){
    .why-grid{ grid-template-columns: 1fr; }
  }
  .why-item{
    padding: 6px 6px 6px 0;
  }
  .why-icon{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(111,231,221,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 18px;
  }
  .why-icon svg{ width: 24px; height: 24px; stroke: var(--aqua); }
  .why-item h3{
    font-size: 1.1rem;
    color: var(--sand);
    margin-bottom: 8px;
  }
  .why-item p{
    color: var(--sand-dim);
    font-size: 0.95rem;
    margin: 0;
  }

  /* ---------- ABOUT ---------- */
  .about{
    background: var(--petrol);
    position: relative;
  }
  .about-inner{
    display:grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items:center;
  }
  @media (max-width: 780px){
    .about-inner{ grid-template-columns: 1fr; text-align:center; }
    .about-logo{ margin: 0 auto; }
  }
  .about-logo img{
    width: 220px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .about-text h2{
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    margin-bottom: 18px;
  }
  .about-text p{
    color: var(--sand-dim);
  }
  .about-list{
    list-style:none;
    padding:0;
    margin: 22px 0 0;
    display:flex;
    flex-direction: column;
    gap: 10px;
  }
  .about-list li{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    color: var(--sand);
    font-size: 0.96rem;
  }
  .about-list svg{
    width:18px; height:18px; flex-shrink:0; margin-top: 3px; stroke: var(--gold);
  }
  @media (max-width: 780px){
    .about-list li{ text-align:left; }
  }

  /* ---------- CTA STRIP ---------- */
  .cta-strip{
    background: linear-gradient(120deg, var(--petrol-light), var(--navy));
    text-align:center;
  }
  .cta-strip h2{
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 16px;
  }
  .cta-strip p{
    color: var(--sand-dim);
    margin-bottom: 30px;
  }

  /* ---------- FOOTER ---------- */
  footer{
    background: var(--navy);
    padding: 50px 0 30px;
    border-top: 1px solid var(--glass-border);
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap: 30px;
    margin-bottom: 34px;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap: 12px;
  }
  .footer-brand img{
    width: 40px; height:40px; border-radius:50%;
  }
  .footer-brand span{
    font-family:'Fraunces', serif;
    font-size: 1.05rem;
  }
  .footer-contact{
    display:flex;
    flex-direction:column;
    gap: 8px;
    color: var(--sand-dim);
    font-size: 0.92rem;
  }
  .footer-contact a:hover{ color: var(--aqua); }
  .footer-bottom{
    text-align:center;
    color: var(--sand-dim);
    font-size: 0.82rem;
    padding-top: 22px;
    border-top: 1px solid var(--glass-border);
  }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float{
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
    z-index: 60;
    transition: transform .15s ease;
  }
  .wa-float:hover{ transform: scale(1.06); }
  .wa-float svg{ width: 28px; height: 28px; fill: #fff; }

  .category-title{
    font-family:'Fraunces', serif;
    font-size: 1.35rem;
    color: var(--gold);
    margin: 46px 0 20px;
    text-align: left;
  }
  .catalog-grid + .category-title{ margin-top: 46px; }
  section.catalog.decor{ background: var(--navy); }

/* ---------- PAGE BANNER (subpages) ---------- */
.page-banner{
  background: linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
  padding: 22px 24px;
  border-bottom: 1px solid var(--glass-border);
}
.breadcrumb{
  font-size: 0.9rem;
  color: var(--sand-dim);
}
.breadcrumb a{ color: var(--aqua); }
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb .current{ color: var(--sand); font-weight: 600; }

.equip-heading{
  font-family:'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--sand);
  text-align: center;
  margin: 70px 0 10px;
  padding-top: 46px;
  border-top: 1px solid var(--glass-border);
}
