/* ---------- tokens ---------- */
:root{
  --ink:        #0E2438;
  --ink-deep:   #091827;
  --paper:      #F6F0E2;
  --paper-dim:  #EAE1CC;
  --gold:       #C99A3B;
  --gold-light: #E4BE6E;
  --coral:      #E2694F;
  --teal:       #4E9E92;
  --blue:       #2B6E93;
  --line:       rgba(246,240,226,0.14);

  --display: "Fraunces", Georgia, serif;
  --body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; font-size:112.5%;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:1rem;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

.wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}

a{color:inherit;}
h1,h2,h3{font-family:var(--display); font-weight:600; margin:0;}
p{margin:0 0 1em 0;}
em{font-style:italic; font-weight:500; color:var(--gold-light);}

::selection{background:var(--gold); color:var(--ink-deep);}

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

/* fine paper grain, purely decorative */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:0.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--paper);
  box-shadow:0 1px 0 rgba(14,36,56,0.08), 0 4px 16px -8px rgba(14,36,56,0.12);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:172px;
}
.wordmark{
  display:flex; align-items:center; gap:8px;
  font-family:var(--display); font-weight:600; font-size:1.3rem;
  text-decoration:none; color:var(--ink);
  letter-spacing:-0.01em;
}
.logo-img{height:130px; width:auto; display:block;}
.wordmark-thin{font-weight:400; color:var(--coral);}
.wordmark-pin{display:inline-flex; width:18px; height:22px;}
.pin-icon{width:100%; height:100%; fill:var(--coral);}
.pin-icon .pin-hole{fill:var(--paper);}

.main-nav{display:flex; align-items:center; gap:32px; font-size:0.95rem; font-weight:500;}
.main-nav a{text-decoration:none; color:var(--ink); opacity:0.75; transition:opacity .2s;}
.main-nav a:hover{opacity:1;}
.nav-cta{
  opacity:1 !important;
  background:var(--ink); color:var(--paper) !important;
  padding:9px 18px; border-radius:100px;
}
.nav-cta:hover{background:var(--coral);}
.header-phone{
  text-decoration:none; font-weight:600; font-size:0.95rem; color:var(--ink);
  border-left:1px solid rgba(14,36,56,0.15); padding-left:24px; margin-left:8px;
}

@media (max-width:860px){
  .main-nav a:not(.nav-cta){display:none;}
  .header-phone{display:none;}
  .logo-img{height:92px;}
  .header-inner{height:126px;}
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background:var(--ink);
  color:var(--paper);
  overflow:hidden;
  padding:120px 0 140px;
}
.hero-map{position:absolute; inset:0; z-index:0;}
.route-svg{width:100%; height:100%; display:block;}
.graticule line{stroke:rgba(246,240,226,0.06); stroke-width:1;}

.route-path{
  fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round;
  stroke-dasharray:6 10; opacity:0.55;
}
.route-one{
  stroke-dashoffset:900;
  animation:draw 3.5s ease-out .3s forwards;
}
.route-two{
  stroke:var(--teal);
  stroke-dashoffset:900;
  animation:draw 3.5s ease-out 1.4s forwards;
}
@keyframes draw{to{stroke-dashoffset:0;}}

.stop circle{fill:var(--paper); opacity:0.9;}
.stop text{
  font-family:var(--body); font-size:12px; font-weight:600; letter-spacing:0.08em;
  fill:rgba(246,240,226,0.55); text-anchor:middle;
}
.stop-1{transform:translate(120px,150px);}
.stop-2{transform:translate(400px,175px);}
.stop-3{transform:translate(560px,195px);}
.stop-4{transform:translate(690px,250px);}
.stop-5{transform:translate(560px,420px);}
.stop-6{transform:translate(670px,400px);}
.stop-7{transform:translate(760px,385px);}
.stop-8{transform:translate(850px,375px);}

.drop-pin{
  transform:translate(120px,110px) scale(1.1);
  transform-box:fill-box;
}
.drop-pin path{fill:var(--coral);}
.drop-pin-hole{fill:var(--ink); transform:translate(0,24px);}
.drop-pin{
  animation:drop 1.1s cubic-bezier(.3,1.4,.4,1) .1s both;
}
@keyframes drop{
  0%{ transform:translate(120px,20px) scale(1.1); opacity:0; }
  60%{ opacity:1; }
  100%{ transform:translate(120px,110px) scale(1.1); opacity:1; }
}

.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
}
.hero-text{max-width:600px;}
.eyebrow{
  font-size:0.85rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:20px;
}
.hero h1{
  font-size:clamp(2.4rem, 5vw, 3.5rem);
  line-height:1.1;
  letter-spacing:-0.01em;
  margin-bottom:24px;
}
.hero-sub{
  font-size:1.2rem; color:rgba(246,240,226,0.82); max-width:480px; margin-bottom:36px;
}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap;}

.hero-photo{
  position:relative; justify-self:center;
  width:100%; max-width:380px;
}
.hero-photo img{
  display:block; width:100%; aspect-ratio:4/5; object-fit:cover;
  border-radius:10px; border:4px solid var(--paper);
  box-shadow:0 24px 50px -16px rgba(0,0,0,0.55);
  transform:rotate(2deg);
}
.hero-photo-caption{
  position:absolute; bottom:-18px; left:-18px;
  background:var(--coral); color:var(--paper);
  padding:12px 20px; border-radius:8px;
  font-family:var(--display); font-weight:600; font-size:1.05rem; line-height:1.3;
  box-shadow:0 10px 24px -8px rgba(0,0,0,0.5);
  transform:rotate(-2deg);
}
.hero-photo-caption em{color:var(--paper); opacity:0.85; font-size:0.85rem; font-weight:500;}

@media (max-width:860px){
  .hero-inner{grid-template-columns:1fr; gap:48px;}
  .hero-photo{max-width:320px; order:-1;}
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 28px; border-radius:100px;
  font-family:var(--body); font-weight:600; font-size:0.95rem;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition:transform .2s, background .2s, border-color .2s;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--coral); color:var(--paper);}
.btn-primary:hover{background:#f0805f;}
.btn-ghost{border-color:rgba(246,240,226,0.3); color:var(--paper);}
.btn-ghost:hover{border-color:var(--paper);}
.btn-wide{width:100%; padding:16px;}

/* ---------- story ---------- */
.story{padding:120px 0;}
.story-grid{
  display:grid; grid-template-columns:220px 1fr; gap:64px; align-items:start;
}
.stamp{
  display:inline-flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; width:130px; height:130px;
  border:2px dashed rgba(14,36,56,0.35); border-radius:4px;
  transform:rotate(-6deg);
  color:var(--ink); opacity:0.7;
}
.stamp svg{display:none;}
.stamp span{
  font-family:var(--display); font-weight:600; font-size:0.85rem;
  letter-spacing:0.06em; text-align:center; line-height:1.3;
}
.kicker{
  font-size:0.8rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--coral); margin-bottom:14px;
}
.kicker-light{color:var(--gold-light);}
.story-copy h2{
  font-size:clamp(1.8rem, 3vw, 2.4rem); margin-bottom:24px; max-width:14ch;
}
.story-copy p{
  font-size:1.05rem; color:rgba(14,36,56,0.82); max-width:60ch;
}

@media (max-width:760px){
  .story-grid{grid-template-columns:1fr; gap:32px;}
  .stamp{margin-bottom:8px;}
}

/* photo collage — real cruise photos, scattered polaroid style */
.photo-strip{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:36px 22px;
  margin-top:64px;
  padding-bottom:20px;
}
.photo-frame{
  margin:0;
  width:200px;
  background:var(--paper);
  padding:10px 10px 28px;
  box-shadow:0 14px 30px -10px rgba(14,36,56,0.35);
  border:1px solid rgba(14,36,56,0.06);
  position:relative;
}
.photo-frame img{
  display:block; width:100%; aspect-ratio:4/5; object-fit:cover; background:var(--paper-dim);
}
.photo-frame::before{
  content:"";
  position:absolute; top:-7px; left:50%; transform:translateX(-50%);
  width:14px; height:14px; border-radius:50%;
  background:var(--coral);
  box-shadow:0 2px 4px rgba(14,36,56,0.3);
}

.photo-frame:nth-child(6n+1){transform:rotate(-3deg) translateY(6px);}
.photo-frame:nth-child(6n+2){transform:rotate(2deg) translateY(-8px);}
.photo-frame:nth-child(6n+3){transform:rotate(-1.5deg) translateY(10px);}
.photo-frame:nth-child(6n+4){transform:rotate(1.5deg) translateY(-6px);}
.photo-frame:nth-child(6n+5){transform:rotate(-2.5deg) translateY(8px);}
.photo-frame:nth-child(6n+6){transform:rotate(3deg) translateY(-4px);}

.photo-frame:hover{z-index:5; transform:rotate(0deg) scale(1.05) translateY(-4px) !important; transition:transform .25s ease;}

@media (max-width:700px){
  .photo-frame{width:42%;}
}
@media (max-width:460px){
  .photo-frame{width:72%;}
}

/* ---------- cruise lines strip ---------- */
.lines{background:var(--ink-deep); color:var(--paper); padding:90px 0 100px; border-top:1px solid var(--line);}
.lines-h2{font-size:clamp(1.5rem,2.6vw,2rem); max-width:22ch; margin-bottom:44px;}
.lines-strip{
  display:flex; flex-wrap:wrap; gap:18px; align-items:center;
}
.line-slot{
  width:190px; height:100px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper); padding:14px;
  box-shadow:0 10px 24px -12px rgba(0,0,0,0.5);
}
.line-slot img{max-width:100%; max-height:100%; object-fit:contain;}
.line-slot-featured{
  width:230px; height:130px;
  border:2px solid var(--gold);
  box-shadow:0 12px 30px -10px rgba(201,154,59,0.45);
}
.lines-note{margin-top:24px; font-size:0.9rem; color:rgba(246,240,226,0.5); max-width:48ch;}

/* ---------- reasons ---------- */
.reasons{background:var(--ink-deep); color:var(--paper); padding:110px 0;}
.reasons-h2{
  font-size:clamp(1.8rem, 3vw, 2.4rem); max-width:20ch; margin-bottom:56px;
}
.reasons-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.reason-card{background:var(--ink-deep); padding:36px 28px;}
.reason-mark{
  display:block; font-family:var(--display); font-size:0.9rem; font-weight:600;
  color:var(--gold); margin-bottom:18px;
}
.reason-card h3{font-size:1.15rem; margin-bottom:12px;}
.reason-card p{font-size:0.95rem; color:rgba(246,240,226,0.65); margin:0;}

@media (max-width:900px){
  .reasons-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .reasons-grid{grid-template-columns:1fr;}
}

/* ---------- services ---------- */
.services{padding:120px 0;}
.services h2{font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:56px; max-width:18ch;}
.services-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.service-stamp{padding:6px;}
.stamp-frame{
  position:relative;
  border:2px dashed rgba(14,36,56,0.28);
  border-radius:2px;
  padding:32px 26px;
  height:100%;
  transition:border-color .2s, background .2s;
}
.stamp-frame:hover{border-color:var(--coral); background:rgba(226,105,79,0.05);}
.stamp-frame h3{font-size:1.2rem; margin-bottom:10px;}
.stamp-frame p{font-size:0.95rem; color:rgba(14,36,56,0.7); margin:0;}

@media (max-width:900px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:600px){
  .services-grid{grid-template-columns:1fr;}
}

/* ---------- quote ---------- */
.quote{background:var(--ink); color:var(--paper); padding:120px 0;}
.quote-grid{display:grid; grid-template-columns:1fr 1.3fr; gap:64px;}
.quote h2{font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:18px; max-width:14ch;}
.quote-sub{color:rgba(246,240,226,0.72); max-width:40ch; margin-bottom:32px;}

.quote-form{background:rgba(246,240,226,0.04); border:1px solid var(--line); border-radius:8px; padding:36px;}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.field{margin-bottom:20px;}
.field label{
  display:block; font-size:0.82rem; font-weight:600; letter-spacing:0.03em;
  margin-bottom:8px; color:rgba(246,240,226,0.75);
}
.field input, .field select, .field textarea{
  width:100%; background:rgba(246,240,226,0.06);
  border:1px solid rgba(246,240,226,0.2); border-radius:5px;
  padding:11px 13px; color:var(--paper); font-family:var(--body); font-size:0.95rem;
}
.field input::placeholder, .field textarea::placeholder{color:rgba(246,240,226,0.4);}
.field select{appearance:none;}
.field textarea{resize:vertical;}
.hidden-field{position:absolute; left:-9999px;}

@media (max-width:860px){
  .quote-grid{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
}

/* ---------- footer ---------- */
.site-footer{background:var(--paper); color:var(--blue); padding:56px 0 40px; border-top:1px solid rgba(43,110,147,0.15);}
.footer-inner{
  display:grid; grid-template-columns:1fr auto; gap:24px 48px; align-items:center;
}
.footer-brand .wordmark{margin-bottom:10px;}
.footer-logo-img{height:104px;}
.footer-brand p{font-size:1rem; margin:0; color:var(--blue);}
.footer-contact{display:flex; flex-direction:column; gap:8px; align-items:flex-end; justify-content:center;}
.footer-contact a{text-decoration:none; font-weight:700; color:var(--blue); font-size:1.3rem;}
.footer-contact a:hover{color:var(--coral);}
.footer-legal{
  grid-column:1 / -1; border-top:1px solid rgba(43,110,147,0.2); margin-top:24px; padding-top:24px;
  font-size:0.85rem; line-height:1.7; color:var(--blue); opacity:0.75;
}
.footer-legal p{margin:0 0 4px 0;}

@media (max-width:600px){
  .footer-inner{grid-template-columns:1fr;}
  .footer-contact{align-items:flex-start;}
}
