
:root{
  --bg:#1a1f24;
  --panel:#11161a;
  --panel-2:#0b0f12;
  --ink:#e7ecef;
  --muted:#a8b2b9;
  --line:#39434a;
  --turquoise:#22d3c5;
  --turquoise-soft:#7ceee4;
  --shadow:0 16px 44px rgba(0,0,0,.34);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
}
button{font:inherit}
img{display:block;max-width:100%}
a{color:inherit}

.top{
  position:absolute;
  z-index:5;
  width:100%;
  padding:22px 5vw;
  color:#fff;
  text-align:center;
}
.top a{
  display:inline-block;
  color:inherit;
  text-decoration:none;
  font-weight:700;
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}

.hero{
  height:82vh;
  min-height:620px;
  position:relative;
  display:flex;
  align-items:flex-end;
  background:var(--panel-2);
  overflow:hidden;
}
.hero img,
.shade{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero img{object-fit:cover;object-position:center center;background:var(--panel-2)}
.shade{
  background:
    linear-gradient(180deg,rgba(0,0,0,.15) 8%,rgba(0,0,0,.28) 46%,rgba(0,0,0,.86) 100%),
    linear-gradient(90deg,rgba(0,0,0,.45),transparent 62%);
}
.heroText{
  position:relative;
  color:white;
  width:min(1180px,90%);
  margin:0 auto;
  padding-bottom:3.5vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.heroText span,
.wrap>span,
.galleryHead>span{
  color:#8fe6df;
  font-size:.75rem;
  letter-spacing:.18em;
  font-weight:800;
}
.heroText h1,
.wrap h2,
.galleryHead h1{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:-.04em;
}
.heroText p{
  font-size:1.15rem;
  color:#dbe2e6;
}

.wrap{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
  padding:72px 0;
  text-align:center;
}
.intro h2{
  font-size:clamp(2.4rem,5vw,4.8rem);
  margin:.18em 0;
}
.intro p{
  color:var(--muted);
  font-size:1.1rem;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.wrap>h2{
  font-size:clamp(2.2rem,4vw,3.6rem);
  margin:.25em 0 .7em;
}

.tableWrap{
  overflow:auto;
  border-top:1px solid var(--line);
  background:var(--panel);
  border-radius:16px;
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:620px;
}
th,td{
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
th{
  font-size:.75rem;
  color:var(--turquoise-soft);
  text-transform:uppercase;
  letter-spacing:.08em;
  background:#0d1216;
}
th:last-child,td:last-child{text-align:right}
tbody tr{
  cursor:pointer;
  transition:background .15s ease;
}
tbody tr:hover{background:#20282d}
tbody tr:last-child td{border-bottom:0}

.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px 22px;
  align-items:start;
}
.card{
  display:flex;
  flex-direction:column;
  width:100%;
  border:0;
  padding:0;
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  text-align:center;
  border-radius:20px;
  transition:transform .2s ease;
}
.album-cover-frame{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:2/3;
  border:2px solid rgba(34,211,197,.75);
  border-radius:18px;
  overflow:hidden;
  background:var(--panel-2);
  box-shadow:
    0 0 0 1px rgba(34,211,197,.10),
    0 0 18px rgba(34,211,197,.22),
    0 16px 44px rgba(0,0,0,.38);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}
.card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  background:var(--panel-2);
}
.album-photo-icon{
  position:absolute;
  top:12px;
  right:12px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid rgba(124,238,228,.85);
  border-radius:999px;
  background:rgba(4,12,15,.78);
  color:var(--turquoise-soft);
  font-size:1.15rem;
  line-height:1;
  box-shadow:0 0 14px rgba(34,211,197,.32);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}
.album-action{
  align-self:center;
  margin-top:13px;
  padding:9px 17px;
  border:1px solid rgba(34,211,197,.78);
  border-radius:999px;
  background:rgba(11,15,18,.72);
  color:var(--turquoise-soft);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  box-shadow:0 0 14px rgba(34,211,197,.18);
  transition:
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.card:hover,
.card:focus-visible{
  transform:translateY(-3px);
}
.card:hover .album-cover-frame,
.card:focus-visible .album-cover-frame{
  border-color:var(--turquoise-soft);
  box-shadow:
    0 0 0 2px rgba(34,211,197,.18),
    0 0 32px rgba(34,211,197,.48),
    0 22px 58px rgba(0,0,0,.5);
}
.card:hover .album-action,
.card:focus-visible .album-action{
  background:var(--turquoise);
  color:#07100f;
  box-shadow:0 0 22px rgba(34,211,197,.42);
  transform:translateY(-1px);
}
.card:focus-visible{
  outline:2px solid var(--turquoise-soft);
  outline-offset:6px;
}

.gallery{
  padding-top:45px;
}
.gallery>button{
  border:1px solid var(--turquoise);
  border-radius:999px;
  background:var(--panel);
  color:var(--ink);
  padding:10px 16px;
  cursor:pointer;
  transition:background .15s ease,color .15s ease;
}
.gallery>button:hover{
  background:var(--turquoise);
  color:#07100f;
}
.galleryHead{padding:60px 0 30px}
.galleryHead h1{
  font-size:clamp(3rem,7vw,6rem);
  margin:.1em 0;
}
.galleryHead p{
  color:var(--muted);
  max-width:1000px;
  line-height:1.55;
}

#status{color:var(--muted)}

.photos{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  align-items:start;
}
.photo{
  display:block;
  width:100%;
  border:1px solid var(--line);
  padding:0;
  margin:0;
  border-radius:12px;
  overflow:hidden;
  background:var(--panel);
  cursor:zoom-in;
  box-shadow:0 8px 22px rgba(0,0,0,.2);
  transition:border-color .15s ease,transform .15s ease;
}
.photo:hover{
  border-color:var(--turquoise);
  transform:translateY(-1px);
}
.photo img{
  display:block;
  width:100%;
  height:auto;
}

#lightbox{
  width:100vw;
  height:100vh;
  max-width:none;
  max-height:none;
  border:0;
  padding:0;
  background:rgba(0,0,0,.96);
  color:white;
}
#lightbox[open]{display:grid;place-items:center}
#big{
  max-width:90vw;
  max-height:88vh;
  object-fit:contain;
}
#close,#prev,#next{
  position:fixed;
  z-index:3;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(17,22,26,.88);
  color:white;
  cursor:pointer;
}
#close{
  right:20px;
  top:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:2rem;
}
#prev,#next{
  top:50%;
  width:48px;
  height:70px;
  border-radius:12px;
  font-size:3rem;
}
#prev{left:18px}
#next{right:18px}
#close:hover,#prev:hover,#next:hover{
  background:var(--turquoise);
  color:#07100f;
}
#caption{
  position:fixed;
  bottom:16px;
  color:#d6e0e3;
  font-size:.8rem;
}


/* Luxury cruise-line logo lockup */
.cruise-logo{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  width:min(880px,100%);
  margin:0 0 0;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.36));
}

.cruise-logo-mark{
  display:grid;
  grid-template-columns:minmax(48px,1fr) 120px minmax(48px,1fr);
  align-items:center;
  gap:18px;
  width:min(620px,86%);
  margin-bottom:2px;
}

.cruise-logo-mark svg{
  width:92px;
  height:auto;
  justify-self:center;
  overflow:visible;
}

.mark-line,
.subtitle-line{
  display:block;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(34,211,197,.82),transparent);
}

.mark-ring{
  fill:none;
  stroke:rgba(220,231,236,.70);
  stroke-width:1.4;
}

.mark-compass{
  fill:#22d3c5;
  stroke:#9df7ef;
  stroke-width:.8;
  filter:drop-shadow(0 0 5px rgba(34,211,197,.38));
}

.mark-wave{
  fill:none;
  stroke:#22d3c5;
  stroke-width:2.3;
  stroke-linecap:round;
  filter:drop-shadow(0 0 4px rgba(34,211,197,.32));
}

.cruise-logo-name{
  font-family:"Cinzel",Trajan Pro,"Times New Roman",serif;
  font-size:clamp(4.4rem,10vw,9.2rem);
  font-weight:600;
  line-height:.82;
  letter-spacing:.055em;
  padding-left:.055em;
  color:transparent;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #dbe4e9 13%,
      #8d9aa3 27%,
      #f9fcfd 39%,
      #69767f 53%,
      #e6edf0 67%,
      #88959e 80%,
      #f8fbfc 100%
    );
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-stroke:.6px rgba(255,255,255,.18);
  text-shadow:
    0 2px 0 rgba(53,63,70,.58),
    0 4px 0 rgba(19,25,29,.62),
    0 9px 18px rgba(0,0,0,.64),
    0 0 22px rgba(34,211,197,.08);
}

.cruise-logo-subtitle{
  display:grid;
  grid-template-columns:minmax(34px,1fr) auto minmax(34px,1fr);
  align-items:center;
  gap:18px;
  width:min(680px,88%);
  margin-top:16px;
  font-family:"Montserrat",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:clamp(1.45rem,2.9vw,2.2rem);
  font-weight:600;
  letter-spacing:.34em;
  color:#8ff4eb;
  text-shadow:0 0 12px rgba(34,211,197,.18);
}

.cruise-logo-subtitle > span:nth-child(2){
  white-space:nowrap;
  padding-left:.34em;
}

.heroText > p{
  margin-top:20px;
}

@media(max-width:600px){
  .top{padding:18px 20px}
  .hero{
    min-height:620px;
    height:auto;
    align-items:flex-end;
  }
  .hero img{
    object-fit:contain;
    object-position:center top;
    background:var(--panel-2);
  }
  .shade{
    background:
      linear-gradient(180deg,rgba(0,0,0,.04) 0%,rgba(0,0,0,.14) 38%,rgba(0,0,0,.84) 100%);
  }
  .heroText{
    width:min(94%,560px);
    padding-bottom:18px;
  }
  .cruise-logo{
    width:100%;
  }

  .cruise-logo{
    margin-top:14px;
  }
  .cruise-logo-mark{
    grid-template-columns:minmax(28px,1fr) 82px minmax(28px,1fr);
    gap:10px;
    width:90%;
  }
  .cruise-logo-mark svg{
    width:70px;
  }
  .cruise-logo-name{
    font-size:clamp(3.35rem,17vw,5.2rem);
    letter-spacing:.035em;
    padding-left:.035em;
  }
  .cruise-logo-subtitle{
    width:94%;
    gap:10px;
    margin-top:16px;
    font-size:1.08rem;
    letter-spacing:.22em;
  }
  .cruise-logo-subtitle > span:nth-child(2){
    padding-left:.22em;
  }
}

@media(max-width:900px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .photos{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:600px){
  .cards{grid-template-columns:1fr}
  .photos{grid-template-columns:repeat(2,1fr)}
  .hero{min-height:570px}
}

@media(max-width:600px){
  
}


/* V12 centering refinements */
.wrap > span,
.wrap > h2,
.galleryHead,
.cruise-logo,
.heroText{
  text-align:center;
}

.cards{
  justify-content:center;
}

.tableWrap{
  text-align:left;
  margin-top:14px;
}

.gallery{
  text-align:center;
}

.gallery > button{
  display:inline-block;
  margin:0 auto;
}

.galleryHead{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

.galleryHead p{
  margin-left:auto;
  margin-right:auto;
}

.photos{
  justify-content:center;
}


@media(max-width:600px){
  .album-cover-frame{
    border-width:2px;
    border-color:var(--turquoise);
    box-shadow:
      0 0 0 1px rgba(34,211,197,.16),
      0 0 24px rgba(34,211,197,.32),
      0 14px 36px rgba(0,0,0,.42);
  }
  .album-photo-icon{
    width:42px;
    height:42px;
    top:11px;
    right:11px;
    background:rgba(4,12,15,.86);
    border-color:var(--turquoise-soft);
  }
  .album-action{
    width:min(88%,310px);
    margin-top:14px;
    padding:11px 18px;
    background:#0b1115;
    border-color:var(--turquoise);
    color:#92fff5;
    font-size:.84rem;
    box-shadow:0 0 20px rgba(34,211,197,.27);
  }
}
