/* =========================
   RESET
========================= */
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* =========================
   COLOR SYSTEM (RETRO BRAND)
========================= */
:root{

--bgTop:#9cc7dc;
--bgMid:#c9e1ee;
--bgBot:#edf7fb;

--ink:#1f3138;
--muted:#4d6470;
--line:rgba(31,49,56,.12);

--card:rgba(255,255,255,.9);
--cardSoft:rgba(255,255,255,.65);

--red:#cc2a2a;
--blue:#2b6f9e;
--green:#2f8a57;
--yellow:#d6a51f;

--radius:18px;
--shadow:0 16px 38px rgba(0,0,0,.10);

--max:1180px;
}

/* =========================
   BASE
========================= */

body{
font-family:Arial, Helvetica, sans-serif;
color:var(--ink);
background:
linear-gradient(to bottom, rgba(255,255,255,.25), rgba(255,255,255,.08)),
linear-gradient(180deg,var(--bgTop) 0%,var(--bgMid) 40%,var(--bgBot) 100%);
line-height:1.55;
}

.wrap{
width:min(calc(100% - 28px),var(--max));
margin:0 auto;
}

img{
width:100%;
display:block;
border-radius:12px;
}

h1,h2,h3{
margin:0 0 10px;
line-height:1.2;
}

h1{
font-size:clamp(1.2rem,1.4vw,1.55rem);
}

h2{
font-size:clamp(1.1rem,1.7vw,1.45rem);
}

h3{
font-size:.95rem;
}

p{margin:0 0 10px}

a{color:var(--red);text-decoration:none}
a:hover{text-decoration:underline}

/* =========================
   RENOVATION NOTICE
========================= */

.renovation-banner{
background:rgba(255,255,255,.65);
border-bottom:1px solid var(--line);
font-size:.82rem;
color:var(--muted);
text-align:center;
padding:6px 10px;
}

/* =========================
   HEADER
========================= */

.topbar{
background:rgba(255,255,255,.9);
border-bottom:1px solid var(--line);
backdrop-filter:blur(8px);
position:sticky;
top:0;
z-index:10;
}

.topbar-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:10px 0;
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.site-logo{
height:58px;
width:auto;
image-rendering:auto;
}

.brand-subtitle{
font-size:.82rem;
color:var(--muted);
max-width:520px;
}

.nav{
display:flex;
gap:14px;
font-size:.88rem;
}

.nav a{
color:var(--blue);
font-weight:600;
}

/* =========================
   HERO
========================= */

.hero{
padding:26px 0 18px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

.hero-copy{
background:var(--card);
border:1px solid var(--line);
padding:22px;
border-radius:var(--radius);
box-shadow:var(--shadow);
}

.eyebrow{
text-transform:uppercase;
font-size:.7rem;
letter-spacing:.12em;
color:var(--yellow);
font-weight:700;
margin-bottom:6px;
}

.lead{
font-size:.9rem;
color:var(--muted);
}

.hero-note{
margin-top:12px;
padding:12px 14px;
background:var(--cardSoft);
border:1px solid var(--line);
border-radius:12px;
font-size:.9rem;
}

.hero-note strong{
color:var(--red);
display:block;
margin-bottom:4px;
}

.cruise-lines{
display:block;
margin-top:6px;
font-size:.78rem;
color:var(--muted);
line-height:1.35;
}

.hero-video-caption{
font-size:.88rem;
color:var(--muted);
margin:8px 0 0;
}

/* =========================
   HERO VIDEO
========================= */

.hero-video{
background:var(--card);
border:1px solid var(--line);
border-radius:var(--radius);
padding:12px;
box-shadow:var(--shadow);
}

.video-wrap{
position:relative;
width:100%;
padding-bottom:75%;
overflow:hidden;
border-radius:12px;
background:#000;
}

.video-wrap iframe,
.hero-video-file{
position:absolute;
inset:0;
width:100%;
height:100%;
border:0;
object-fit:cover;
}

/* =========================
   UPDATE PANEL
========================= */

.update{
padding:10px 0 22px;
}

.update-card{
background:linear-gradient(135deg,#fff7e0,#fff1c8);
border-left:6px solid var(--red);
padding:20px 22px;
border-radius:16px;
box-shadow:var(--shadow);
border:1px solid rgba(0,0,0,.06);
}

.update-card h2{
font-size:1.15rem;
margin-bottom:6px;
}

.update-card p{
font-size:.92rem;
color:#45555d;
}

.update-highlight{
font-weight:700;
color:var(--red);
}

/* =========================
   COLLECTION GRID
========================= */

.section{
padding:14px 0 26px;
}

.section-head{
display:flex;
justify-content:space-between;
margin-bottom:14px;
gap:18px;
}

.section-head p{
max-width:420px;
font-size:.9rem;
color:var(--muted);
}

.card-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:16px;
}

.card img{
height:160px;
object-fit:cover;
}

.card{
background:var(--card);
border:1px solid var(--line);
border-radius:var(--radius);
overflow:hidden;
box-shadow:var(--shadow);
}

.card-body{
padding:14px;
}

.card p{
font-size:.88rem;
color:var(--muted);
}

/* =========================
   FILM STRIP
========================= */

.film-strip-section{
padding:8px 0 24px;
}

.film-strip{
display:grid;
grid-template-columns:repeat(8,minmax(0,1fr));
gap:10px;
background:var(--card);
border:1px solid var(--line);
border-radius:var(--radius);
padding:12px;
box-shadow:var(--shadow);
}

.film-frame{
background:#111;
border-radius:12px;
padding:8px 8px 16px;
position:relative;
overflow:hidden;
}

.film-frame::before,
.film-frame::after{
content:"";
position:absolute;
left:6px;
right:6px;
height:6px;
background:repeating-linear-gradient(to right,#d8d8d8 0 10px,transparent 10px 18px);
opacity:.65;
}

.film-frame::before{
top:5px;
}

.film-frame::after{
bottom:5px;
}

.film-frame img{
height:120px;
object-fit:cover;
border-radius:8px;
border:1px solid rgba(255,255,255,.18);
}

/* =========================
   FEATURE STORY
========================= */

.feature{
padding:12px 0 22px;
}

.feature-grid{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:16px;
background:var(--card);
border:1px solid var(--line);
border-radius:var(--radius);
padding:12px;
box-shadow:var(--shadow);
}

.feature-copy p{
font-size:.85rem;
color:var(--muted);
}

/* =========================
   FOOTER
========================= */

footer{
padding:20px 0 40px;
font-size:.88rem;
color:var(--muted);
}

.footer-card{
border-top:1px solid var(--line);
padding-top:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:980px){

.film-strip{
grid-template-columns:repeat(4,1fr);
}

.hero-grid,
.feature-grid,
.card-grid{
grid-template-columns:1fr;
}

.section-head{
flex-direction:column;
}

}

@media(max-width:640px){

.film-strip{
grid-template-columns:repeat(2,1fr);
}

.film-frame img{
height:110px;
}

}
