
:root{
  --blue:#2f445a;
  --blue2:#2a3e54;
  --yellow:#f0c400;
  --text:#26384c;
  --muted:#6f7d8c;
  --bg:#ffffff;
  --line:#e6e9ee;
  --shadow: 0 10px 26px rgba(0,0,0,.12);
  --container: 1180px;
  --font: "Roboto Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg) !important;
}

/* Guardrails: make text readable even if images fail */
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--blue);
  color:#fff;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.logo__text{
  font-weight:700;
  letter-spacing:.08em;
}
.menu{
  display:flex;
  gap:26px;
  font-size:16px;
  opacity:.95;
}
.menu a{ white-space:nowrap; }
.menu a:hover{ color:var(--yellow); }

.topbar__right{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar__phone{
  text-align:right;
  font-size:14px;
  line-height:1.1;
}
.topbar__num{ font-weight:700; }
.topbar__wa{
  color:var(--yellow);
  font-weight:700;
  display:inline-block;
  margin-top:3px;
}

.iconBtn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  display:grid;
  place-items:center;
}

.lang{ display:flex; gap:8px; font-weight:700; }
.lang__btn{
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  padding:6px 6px;
  letter-spacing:.05em;
  opacity:.9;
}
.lang__btn[aria-pressed="true"]{ color:var(--yellow); opacity:1; }

.burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
}
.burger span{
  display:block;
  width:26px;
  height:2px;
  margin:6px auto;
  background:#fff;
  border-radius:3px;
}

.mobileMenu{
  background:var(--blue2);
  border-top:1px solid rgba(255,255,255,.12);
}
.mobileMenu__inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.mobileMenu__inner a{
  padding:10px 12px;
  background:rgba(255,255,255,.06);
  border-radius:10px;
}
.mobileMenu__inner a:hover{ background:rgba(255,255,255,.10); }

/* Hero */
.hero{ position:relative; background:#0b1a26; }
.hero__bg{
  position:relative;
  height:520px;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(47,68,90,.95), rgba(15,25,35,.95));
}
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:1;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
}
.hero__content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding-bottom:90px;
}
.hero__inner{ color:#fff; }
.hero__title{
  margin:0 0 8px;
  font-size:44px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  max-width:980px;
}
.hero__text{
  margin:0 0 18px;
  font-size:18px;
  max-width:820px;
  opacity:.95;
}
.wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:120px;
}
.wave path{ fill:#fff; }

/* Sections (force white like reference) */
.section{
  padding:54px 0;
  background:#fff;
}
.title{
  margin:0 0 26px;
  text-align:center;
  font-size:38px;
  font-weight:300;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--blue2);
}
.title--light{ color:#fff; }

.subtitle{
  text-align:center;
  margin-top:-14px;
  margin-bottom:28px;
  color:var(--muted);
  font-size:18px;
}

.prose{
  max-width:980px;
  margin:0 auto;
  font-size:18px;
  line-height:1.55;
  color:var(--text);
}
.prose p{ margin:0 0 14px; }
.prose ul{ margin:0 0 14px; }
.prose li{ margin:6px 0; }

/* Buttons */
.btnYellow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:12px;
  background:var(--yellow);
  color:#0a2233;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
  box-shadow: 0 6px 16px rgba(240,196,0,.25);
}
.btnYellow--wide{ min-width:320px; }
.center{ text-align:center; margin-top:18px; }

/* Stats */
.stats{
  border-top:2px solid var(--blue2);
  border-bottom:2px solid var(--blue2);
  padding:34px 0;
  background:#fff;
}
.stats__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  text-align:center;
}
.stat__n{
  font-size:44px;
  font-weight:700;
  color:var(--blue2);
  line-height:1.0;
}
.stat__l{
  color:var(--muted);
  font-size:16px;
}

/* Timeline */
.timeline{
  position:relative;
  margin:0 auto 22px;
  max-width:1080px;
}
.timeline__line{
  position:absolute;
  left:0;
  right:0;
  top:78px;
  height:2px;
  background:#cfd6df;
}
.timeline__items{
  display:grid;
  grid-template-columns:repeat(8, 1fr);
}
.ti{
  text-align:center;
  padding:8px 6px;
  cursor:pointer;
}
.ti__icon{
  width:64px;
  height:64px;
  border-radius:999px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  border:2px solid transparent;
  color:#6a7a8d;
  font-size:22px;
  background:#fff;
}
.ti__dot{
  width:14px;
  height:14px;
  border-radius:999px;
  background:#cfd6df;
  margin:56px auto 10px;
}
.ti__label{
  font-size:14px;
  color:var(--muted);
}
.ti[aria-selected="true"] .ti__dot{ background:var(--yellow); }
.ti[aria-selected="true"] .ti__icon{ border-color:var(--yellow); color:var(--blue2); }

.boxYellow{
  max-width:980px;
  margin:0 auto;
  border:2px solid var(--yellow);
  border-radius:12px;
  padding:18px;
  background:#fff;
}

/* Triple slider */
.triple{
  display:grid;
  grid-template-columns:56px 1fr 56px;
  gap:14px;
  align-items:center;
}
.triple__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.triple__grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  box-shadow:var(--shadow);
  background:#eef2f6;
}
.arrow{
  width:56px;
  height:56px;
  border-radius:999px;
  border:2px solid var(--blue2);
  background:#fff;
  cursor:pointer;
  font-size:22px;
}
.arrow:hover{ border-color:var(--yellow); color:var(--yellow); }

/* FAQ */
.faq{
  position:relative;
  padding:54px 0;
}
.faq__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(47,68,90,.30), rgba(47,68,90,.55));
}
.faq__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.faq__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.20);
}
.faq .container{ position:relative; }
.faq__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:10px;
}
.faq__list{ display:grid; gap:14px; }
.qItem{
  background:rgba(255,255,255,.92);
  border-radius:10px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.qItem__t{ font-size:18px; color:var(--blue2); }
.qItem__a{ color:var(--muted); font-size:22px; }
.qItem[aria-selected="true"] .qItem__a{ color:var(--yellow); }
.faq__panel{
  background:rgba(255,255,255,.92);
  border-radius:10px;
  box-shadow:var(--shadow);
}
.faq__panelInner{ padding:22px; }
.linkArrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top:14px;
  color:var(--yellow);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.linkArrow--light{ color:#fff; }

/* Book */
.book{
  position:relative;
  padding:58px 0;
}
.book__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65));
}
.book__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.book__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.book .container{ position:relative; }
.book__grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:26px;
  align-items:start;
}
.book__title{
  color:#fff;
  margin:0;
  font-size:38px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  max-width:520px;
}
.book__form{ color:#fff; }
.fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 22px;
}
label span{
  display:block;
  font-size:14px;
  opacity:.9;
  margin-bottom:6px;
}
input{
  width:100%;
  background:transparent;
  border:0;
  border-bottom:2px solid rgba(255,255,255,.65);
  padding:10px 2px;
  color:#fff;
  font-size:18px;
  outline:none;
}
input:focus{ border-bottom-color:var(--yellow); }
.book__actions{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.status{ min-height:22px; margin:12px 0 0; opacity:.95; }

/* Accordion */
.accordion{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:12px;
}
details{
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
  overflow:hidden;
  background:#fff;
}
summary{
  list-style:none;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:22px;
  color:var(--blue2);
  background:#fff;
}
summary::-webkit-details-marker{ display:none; }
.details__body{ padding:0 20px 18px; background:#fff; }

/* Map */
.map iframe{
  width:100%;
  height:420px;
  border:0;
}

/* Tabs / Yacht */
.tabs{
  display:flex;
  justify-content:center;
  gap:40px;
  margin:18px 0 22px;
}
.tab{
  font-size:26px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#a4aeba;
  cursor:pointer;
  border-bottom:3px solid transparent;
  padding:10px 6px;
}
.tab[aria-selected="true"]{
  color:var(--yellow);
  border-bottom-color:var(--blue2);
}
.yachtCard{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:18px;
  align-items:stretch;
}
.yachtCard__side{
  border-left:3px solid var(--yellow);
  padding-left:18px;
}
.yTitle{
  font-size:34px;
  font-weight:700;
  color:var(--yellow);
  margin:0 0 10px;
  text-transform:uppercase;
}
.yLine{
  display:grid;
  grid-template-columns:22px 1fr;
  gap:10px;
  align-items:center;
  margin:14px 0;
  color:var(--blue2);
}
.yLine small{
  display:block;
  color:var(--muted);
  font-size:14px;
}
.yLink{ color:var(--yellow); font-weight:700; }
.yCost{ margin-top:16px; font-size:18px; }
.yCost b{ font-size:22px; }
.yachtCard__main img{
  width:100%;
  height:420px;
  object-fit:cover;
  box-shadow:var(--shadow);
  background:#eef2f6;
}

/* Dates table */
.tableWrap{ max-width:980px; margin:0 auto; }
.table{
  width:100%;
  border-collapse:collapse;
  font-size:18px;
  background:#fff;
}
.table th{
  text-align:left;
  padding:14px 16px;
  color:var(--blue2);
  border-bottom:2px solid var(--yellow);
}
.table td{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}
.table tr:nth-child(even) td{ background:#f7f8fb; }

.badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#fff;
}
.badge--ok{ background:var(--yellow); color:#1b2e3f; }
.badge--no{ background:#7e6af2; }
.badge--lim{ background:var(--blue2); }

/* Mosaic */
.mosaic{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:16px;
}
.mosaic img{
  width:100%;
  height:260px;
  object-fit:cover;
  box-shadow:var(--shadow);
  background:#eef2f6;
}
.mosaic__left{ grid-row: span 2; height:536px; }
.mosaic__wide{ grid-column: span 2; height:260px; }

/* Footer */
.footer{
  background:var(--blue);
  color:#fff;
  padding:30px 0;
  margin-top:30px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:18px;
  align-items:start;
}
.footer__brand{ font-weight:700; letter-spacing:.08em; }
.footer__phone{ margin-top:10px; opacity:.9; }
.footer__icons{ display:flex; gap:10px; margin-top:14px; }
.footerIcon{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  display:grid;
  place-items:center;
}
.footer__mid{ display:grid; gap:8px; opacity:.95; }
.footer__mid a:hover{ color:var(--yellow); }
.footer__right{ text-align:right; }
.footer__copy{ margin-top:12px; opacity:.8; }

.toTop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:44px;
  height:44px;
  border-radius:10px;
  border:0;
  background:rgba(47,68,90,.92);
  color:var(--yellow);
  cursor:pointer;
  box-shadow:var(--shadow);
}

/* Responsive */
@media (max-width:1100px){
  .menu{ display:none; }
  .burger{ display:block; }
  .topbar__phone{ display:none; }
  .faq__grid{ grid-template-columns:1fr; }
  .book__grid{ grid-template-columns:1fr; }
  .fields{ grid-template-columns:1fr; }
  .yachtCard{ grid-template-columns:1fr; }
  .yachtCard__main img{ height:360px; }
  .timeline__items{ grid-template-columns:repeat(4, 1fr); }
  .timeline__line{ top:86px; }
}
@media (max-width:720px){
  .hero__bg{ height:420px; }
  .hero__title{ font-size:34px; }
  .title{ font-size:30px; }
  .stats__grid{ grid-template-columns:repeat(2, 1fr); }
  .triple{ grid-template-columns:44px 1fr 44px; }
  .triple__grid{ grid-template-columns:1fr; gap:12px; }
  .triple__grid img{ height:220px; }
  .mosaic{ grid-template-columns:1fr; }
  .mosaic img{ height:220px; }
  .mosaic__left,.mosaic__wide{ grid-row:auto; grid-column:auto; height:220px; }
  .footer__grid{ grid-template-columns:1fr; }
  .footer__right{ text-align:left; }
}
