:root{
  --navy:#0D2B52;
  --ocean:#0877BE;
  --wave:#8CCBE6;
  --wave-soft:#E7F4FA;
  --pearl:#F9FAFB;
  --silver:#D8DCE2;
  --ink:#242424;
  --white:#FFFFFF;
  --radius:18px;
  --maxw:1180px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope', sans-serif;
  color:var(--ink);
  background:var(--pearl);
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
h1,h2,h3{font-family:'Fraunces', serif; font-weight:500; color:var(--navy); line-height:1.08;}
.eyebrow{
  font-family:'Manrope', sans-serif; font-weight:700; font-size:12.5px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ocean);
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{content:''; width:24px; height:2px; background:var(--ocean); display:inline-block;}
.btn{
  display:inline-flex; align-items:center; gap:10px; font-family:'Manrope', sans-serif;
  font-weight:700; font-size:14.5px; letter-spacing:.02em; text-decoration:none;
  padding:16px 30px; border-radius:100px; transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor:pointer; border:none;
}
.btn-primary{background:var(--navy); color:var(--white);}
.btn-primary:hover{background:var(--ocean); transform:translateY(-2px); box-shadow:0 14px 28px -12px rgba(13,43,82,.45);}
.btn-ghost{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
.btn-ghost:hover{background:var(--navy); color:var(--white); transform:translateY(-2px);}
.btn-light{background:var(--white); color:var(--navy);}
.btn-light:hover{transform:translateY(-2px); box-shadow:0 14px 28px -12px rgba(0,0,0,.35);}

/* ============ LANGUAGE SWITCHER (TranslatePress) ============ */
.lang-switch{display:flex; align-items:center;}
.lang-switch .trp-language-switcher-container,
.lang-switch ul{list-style:none; display:flex; gap:6px; align-items:center;}
.lang-switch a{
  display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700;
  color:var(--navy); text-decoration:none; padding:6px 12px; border-radius:100px;
  border:1px solid rgba(13,43,82,.18);
}
.lang-switch a:hover, .lang-switch a.trp-current-language{background:var(--wave-soft); border-color:var(--wave);}
.lang-switch img{display:none;}

/* ============ WAVE SPINE (signature element) ============ */
#spine-svg{
  position:fixed; top:0; left:0; height:100vh; width:100%; pointer-events:none; z-index:5;
}
#spine-path{
  fill:none; stroke:var(--ocean); stroke-width:2.5; stroke-linecap:round;
}

/* ============ NAV ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(249,250,251,.92); backdrop-filter:blur(10px);
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  padding:14px 0;
}
header.scrolled{
  box-shadow:0 1px 0 rgba(13,43,82,.08); padding:10px 0;
}
nav{display:flex; align-items:center; justify-content:space-between; gap:18px;}
.logo-mark{display:flex; align-items:center; gap:12px; font-family:'Fraunces', serif; font-weight:600; font-size:19px; color:var(--navy); text-decoration:none; white-space:nowrap;}
.logo-mark img{transition:width .3s ease, height .3s ease;}
header.scrolled .logo-mark img{width:52px !important; height:52px !important;}
.nav-links{display:flex; align-items:center; gap:22px; list-style:none; flex-wrap:nowrap;}
.nav-links a{font-size:13.5px; font-weight:600; text-decoration:none; color:var(--navy); position:relative; padding:4px 0; white-space:nowrap;}
.nav-links a::after{content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--ocean); transition:width .3s ease;}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.nav-cta .btn{padding:11px 20px; font-size:13px; white-space:nowrap;}

.lang-toggle{display:flex; border:1.5px solid rgba(13,43,82,.18); border-radius:100px; overflow:hidden; flex-shrink:0;}
.lang-toggle button{
  background:transparent; border:none; color:var(--navy); font-family:'Manrope', sans-serif;
  font-weight:700; font-size:11.5px; padding:6px 12px; cursor:pointer; letter-spacing:.03em;
}
.lang-toggle button.active{background:var(--navy); color:var(--white);}
.mobile-nav-cta .lang-toggle{margin-bottom:4px;}

.header-social{display:flex; align-items:center; gap:8px; flex-shrink:0;}
.header-social a{
  width:30px; height:30px; border-radius:50%; border:1.5px solid rgba(13,43,82,.18);
  display:flex; align-items:center; justify-content:center; text-decoration:none; transition:background .2s ease, border-color .2s ease;
}
.header-social a:hover{background:var(--wave-soft); border-color:var(--wave);}
.header-social svg{width:14px; height:14px; stroke:var(--navy);}

#nav-toggle{
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:40px; height:40px; background:transparent; border:1.5px solid var(--navy); border-radius:10px;
  cursor:pointer; flex-shrink:0;
}
#nav-toggle span{width:18px; height:2px; background:var(--navy); border-radius:2px; transition:transform .25s ease, opacity .25s ease;}
#nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
#nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
#nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

#mobile-menu{
  display:none; max-height:0; overflow:hidden; transition:max-height .35s ease;
}
#mobile-menu.open{max-height:600px;}
.mobile-nav-links{list-style:none; padding:18px 0 6px; display:flex; flex-direction:column; gap:4px;}
.mobile-nav-links a{
  display:block; padding:12px 4px; font-size:15.5px; font-weight:600; color:var(--navy);
  text-decoration:none; border-bottom:1px solid rgba(13,43,82,.08);
}
.mobile-nav-cta{display:flex; flex-direction:column; gap:10px; padding:16px 0 10px;}
.mobile-nav-cta .btn{width:100%; justify-content:center;}

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero{
  padding:150px 0 70px; text-align:center;
}
.page-hero .eyebrow{justify-content:center;}
.page-hero .eyebrow::before{display:none;}
.page-hero h1{font-size:clamp(34px,4.6vw,54px); max-width:760px; margin:0 auto;}
.page-hero p{font-size:16.5px; color:#4A5566; max-width:560px; margin:20px auto 0; line-height:1.65;}

/* ============ SECTION SHELL ============ */
section{position:relative; padding:100px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,3.4vw,40px);}
.section-head p{font-size:16px; color:#4A5566; margin-top:16px; line-height:1.6;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}

.reveal{opacity:0; transform:translateY(34px); transition:opacity .8s ease, transform .8s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ============ CTA BANNER ============ */
.cta-banner{
  background:var(--navy); border-radius:32px; padding:70px 60px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner h2{color:var(--white); font-size:clamp(28px,3.6vw,40px); max-width:640px; margin:0 auto;}
.cta-banner p{color:#C6D3E4; font-size:16px; margin:18px auto 32px; max-width:480px;}
.cta-actions{display:flex; justify-content:center; gap:18px; flex-wrap:wrap;}

/* ============ BOOKING / FORM EMBED ============ */
.booking-embed{background:var(--pearl); border-radius:var(--radius); overflow:hidden; border:1px solid rgba(13,43,82,.08); padding:16px;}

.join-team-banner{display:block; border-radius:var(--radius); overflow:hidden; transition:transform .3s ease, box-shadow .3s ease;}
.join-team-banner img{width:100%; height:auto; display:block;}
.join-team-banner:hover{transform:translateY(-4px); box-shadow:0 26px 50px -24px rgba(13,43,82,.28);}

/* ============ FOOTER ============ */
footer{background:var(--navy); color:#C6D3E4; padding:80px 0 30px; margin-top:0;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:50px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.12);}
.foot-brand .logo-mark{color:var(--white);}
.foot-brand p{font-size:14px; line-height:1.65; margin:18px 0 22px; max-width:280px; color:#9FB0C6;}
.foot-social{display:flex; gap:12px;}
.foot-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; text-decoration:none; transition:background .25s ease;
}
.foot-social a:hover{background:rgba(255,255,255,.12);}
.foot-social svg{width:16px; height:16px; stroke:var(--white);}
.foot-col h4{font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--wave); margin-bottom:20px;}
.foot-col ul{list-style:none;}
.foot-col li{margin-bottom:12px;}
.foot-col a{text-decoration:none; font-size:14px; color:#C6D3E4; transition:color .25s ease;}
.foot-col a:hover{color:var(--white);}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:13px; color:#8496AF; flex-wrap:wrap; gap:12px;}


  /* ============ HERO ============ */
  .hero{
    position:relative; min-height:100vh; display:flex; align-items:center;
    padding:170px 0 90px; overflow:hidden;
  }
  .hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; position:relative;}
  .hero-copy .eyebrow{margin-bottom:22px;}
  .hero h1{font-size:clamp(40px,5.4vw,68px); letter-spacing:-.01em;}
  .hero h1 em{font-style:italic; color:var(--ocean);}
  .hero p.lead{font-size:18px; line-height:1.65; color:#4A5566; max-width:480px; margin:26px 0 36px;}
  .hero-actions{display:flex; align-items:center; gap:18px; flex-wrap:wrap;}
  .hero-stats{display:flex; gap:40px; margin-top:56px; padding-top:36px; border-top:1px solid rgba(13,43,82,.12);}
  .hero-stat .num{font-family:'Fraunces', serif; font-size:32px; font-weight:600; color:var(--navy);}
  .hero-stat .lbl{font-size:12.5px; color:#5F6C7D; font-weight:600; margin-top:2px;}
  .hero-visual{position:relative;}
  .hero-visual .frame{
    border-radius:28px; overflow:hidden; position:relative; aspect-ratio:4/5;
    box-shadow:0 40px 70px -30px rgba(13,43,82,.4);
  }
  .hero-visual .frame img{width:100%; height:100%; object-fit:cover;}
  .hero-badge{
    position:absolute; bottom:-26px; left:-30px; background:var(--white);
    border-radius:16px; padding:18px 22px; box-shadow:0 20px 40px -20px rgba(13,43,82,.35);
    display:flex; align-items:center; gap:14px; max-width:260px;
  }
  .hero-badge .glyph{
    width:44px; height:44px; border-radius:50%; background:var(--wave-soft);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .hero-badge .glyph svg{width:22px; height:22px;}
  .hero-badge .t{font-size:13px; font-weight:700; color:var(--navy); line-height:1.3;}
  .hero-badge .s{font-size:12px; color:#5F6C7D; margin-top:2px;}

  /* ============ SECTION SHELL ============ */
  section{position:relative; padding:120px 0;}
  .section-head{max-width:640px; margin-bottom:64px;}
  .section-head h2{font-size:clamp(30px,3.6vw,44px);}
  .section-head p{font-size:16.5px; color:#4A5566; margin-top:18px; line-height:1.6;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .section-head.center .eyebrow{justify-content:center;}
  .section-head.center .eyebrow::before{display:none;}

  .reveal{opacity:0; transform:translateY(34px); transition:opacity .8s ease, transform .8s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ============ SERVICES ============ */
  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .services-grid.featured-grid{grid-template-columns:repeat(2,1fr); margin-bottom:26px;}
  .service-card{
    background:var(--white); border-radius:var(--radius); padding:36px 30px;
    transition:transform .35s ease, box-shadow .35s ease; position:relative; overflow:hidden;
  }
  .service-card:hover{transform:translateY(-8px); box-shadow:0 26px 50px -24px rgba(13,43,82,.28);}
  .service-card .icon{
    width:54px; height:54px; border-radius:14px; background:var(--wave-soft);
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .service-card .icon svg{width:26px; height:26px; stroke:var(--ocean);}
  .service-card h3{font-size:20px; margin-bottom:10px;}
  .service-card p{font-size:14.5px; color:#5F6C7D; line-height:1.6;}
  .service-card.featured{background:var(--navy); color:var(--white);}
  .service-card.featured h3{color:var(--white);}
  .service-card.featured p{color:#C6D3E4;}
  .service-card.featured .icon{background:rgba(255,255,255,.12);}
  .service-card.featured .icon svg{stroke:var(--wave);}
  .svc-tag{
    font-size:13.5px; font-weight:600; color:var(--navy); background:var(--wave-soft);
    padding:9px 18px; border-radius:100px;
  }

  /* ============ GALLERY ============ */
  .gallery-grid{
    display:grid; grid-template-columns:repeat(5, 1fr); gap:16px;
  }
  .gallery-grid figure{
    margin:0; border-radius:16px; overflow:hidden; position:relative; cursor:pointer; background:var(--wave-soft);
    aspect-ratio:3/4.4;
  }
  .gallery-grid figure img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
  .gallery-grid figure:hover img{transform:scale(1.08);}
  .gallery-grid figure::after{
    content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,43,82,0) 55%, rgba(13,43,82,.55) 100%);
    opacity:0; transition:opacity .35s ease;
  }
  .gallery-grid figure:hover::after{opacity:1;}
  .gallery-grid figcaption{
    position:absolute; left:16px; bottom:14px; color:var(--white); font-size:13px; font-weight:700;
    opacity:0; transform:translateY(8px); transition:opacity .35s ease, transform .35s ease;
  }
  .gallery-grid figure:hover figcaption{opacity:1; transform:translateY(0);}

  /* ============ LOCATIONS ============ */
  .loc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .loc-grid-2{grid-template-columns:repeat(2,1fr); max-width:780px;}
  .loc-group-label{
    font-family:'Manrope', sans-serif; font-weight:700; font-size:12.5px; letter-spacing:.14em;
    text-transform:uppercase; color:var(--navy); margin:0 0 20px; padding-bottom:12px;
    border-bottom:1px solid rgba(13,43,82,.12);
  }
  .loc-card{
    background:var(--white); border-radius:var(--radius); overflow:hidden;
    border:1px solid rgba(13,43,82,.08); transition:transform .35s ease, box-shadow .35s ease;
  }
  .loc-card:hover{transform:translateY(-6px); box-shadow:0 26px 50px -26px rgba(13,43,82,.28);}
  .loc-top{background:var(--navy); padding:26px 28px; position:relative; overflow:hidden;}
  .loc-top .wave-deco{position:absolute; right:-10px; top:-10px; opacity:.35;}
  .loc-top .city{font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--wave);}
  .loc-top h3{color:var(--white); font-size:24px; margin-top:6px;}
  .loc-body{padding:26px 28px 30px;}
  .loc-row{display:flex; gap:12px; margin-bottom:14px; font-size:14px; color:#3E4A5C;}
  .loc-row svg{width:18px; height:18px; stroke:var(--ocean); flex-shrink:0; margin-top:1px;}
  .loc-row a{text-decoration:none; font-weight:600; color:var(--navy);}
  .loc-body .btn{width:100%; justify-content:center; margin-top:14px;}

  /* ============ TESTIMONIALS ============ */
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .testi-card{background:var(--white); border-radius:var(--radius); padding:34px 30px; border:1px solid rgba(13,43,82,.08); box-shadow:0 8px 24px -18px rgba(13,43,82,.25);}
  .stars{display:flex; gap:3px; margin-bottom:18px;}
  .stars svg{width:16px; height:16px; fill:var(--ocean);}
  .testi-card p{font-family:'Fraunces', serif; font-style:italic; font-size:17px; line-height:1.55; color:var(--navy);}
  .testi-who{display:flex; align-items:center; gap:12px; margin-top:22px;}
  .testi-who .av{width:38px; height:38px; border-radius:50%; background:var(--wave-soft); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; color:var(--ocean); flex-shrink:0;}
  .testi-who .n{font-size:13.5px; font-weight:700; color:var(--navy);}
  .testi-who .l{font-size:12px; color:#5F6C7D;}

  /* ============ NEWS ============ */
  .news-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .news-card{
    display:block; text-decoration:none; background:var(--white); border-radius:16px;
    overflow:hidden; border:1px solid rgba(13,43,82,.08); transition:transform .3s ease, box-shadow .3s ease;
  }
  .news-card:hover{transform:translateY(-6px); box-shadow:0 22px 42px -24px rgba(13,43,82,.28);}
  .news-img{aspect-ratio:4/3; overflow:hidden;}
  .news-img img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
  .news-card:hover .news-img img{transform:scale(1.06);}
  .news-body{padding:18px 20px 22px;}
  .news-date{font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ocean); margin-bottom:8px;}
  .news-body h3{font-size:15.5px; line-height:1.4; font-weight:500;}

@media (max-width:1140px){
  .nav-links, .nav-cta{display:none;}
  #nav-toggle{display:flex;}
  #mobile-menu{display:block;}
}
@media (max-width:980px){
  .foot-grid{grid-template-columns:1fr 1fr; gap:40px;}
  .logo-mark img{width:60px !important; height:60px !important;}
  .hero-grid{grid-template-columns:1fr; gap:52px;}
  .hero{padding-top:120px;}
  .hero-visual{order:-1;}
  .services-grid, .loc-grid, .testi-grid, .news-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(3,1fr);}
}

@media (max-width:640px){
  .wrap{padding:0 20px;}
  .cta-banner{padding:50px 26px;}
  .foot-grid{grid-template-columns:1fr; gap:34px;}
  section{padding:70px 0;}
  .page-hero{padding-top:100px;}
  .services-grid, .loc-grid, .testi-grid, .news-grid, .services-grid.featured-grid, .loc-grid-2{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .hero-stats{flex-wrap:wrap; gap:26px;}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important; scroll-behavior:auto !important;}
}
