/* ===== Tokens ===== */
:root{
  --navy: #0B2A3D;
  --navy-deep: #071C29;
  --teal: #1B6B75;
  --teal-light: #3E96A0;
  --mist: #F4F8F7;
  --paper: #FFFFFF;
  --coral: #FF6B4A;
  --coral-dark: #E5502F;
  --slate: #1F333B;
  --slate-soft: #58727B;
  --line: #D8E4E3;
  --line-strong: #AFC7C5;
  --gold: #F2B705;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 12px 30px -12px rgba(11, 42, 61, 0.18);
  --header-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

html, body{ overflow-x: hidden; }

body{
  margin: 0;
  background: var(--mist);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: var(--teal); text-decoration-color: rgba(27,107,117,0.35); text-underline-offset: 3px; }
a:hover{ color: var(--coral); }

.container{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.08;
}

h2{
  font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  max-width: 20ch;
  margin: 0 auto;
}

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--coral-dark);
  margin: 0 0 10px;
}
.eyebrow.center{ text-align: center; }

.section-lede{
  text-align: center;
  max-width: 56ch;
  margin: 14px auto 0;
  color: var(--slate-soft);
  font-size: 1.02rem;
}

.section{ padding: 76px 0; }
.section-alt{ background: var(--paper); }

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(255,107,74,0.55);
}
.btn-primary:hover{ background: var(--coral-dark); color: #fff; }

.btn-outline{
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover{ background: var(--teal); color: #fff; }

.btn-ext::after{
  content: "↗";
  margin-left: 9px;
  font-weight: 500;
  opacity: 0.85;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark{ width: 40px; height: 40px; flex-shrink: 0; }
.brand-mark.small{ width: 34px; height: 34px; }
.brand-word{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-word strong{
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.brand-word em{
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.main-nav ul{
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a{
  color: #EAF3F2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover{ color: var(--coral); border-color: var(--coral); }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-scrim{
  position: fixed;
  inset: 0;
  background: rgba(7,28,41,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.nav-scrim.is-visible{ opacity: 1; pointer-events: auto; }

/* ===== Hero ===== */
.hero{
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}
.hero-inner{
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow{ color: var(--teal-light); }
.hero h1{
  color: #fff;
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  font-weight: 700;
}
.slogan{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: 1.3rem;
  margin: 14px 0 0;
}
.intro{
  color: #CBDDE0;
  max-width: 46ch;
  margin: 18px 0 32px;
  font-size: 1.02rem;
}
.hero-ctas{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 340px;
}
.hero-ctas .btn{ width: 100%; }

.hero-ctas-center{
  max-width: 340px;
  margin: 32px auto 0;
}

.hero-graphic{ width: 100%; }
.fjord-svg{ width: 100%; height: auto; border-radius: var(--radius-l); box-shadow: var(--shadow-card); }

.wave-divider{ line-height: 0; margin-top: -2px; }
.wave-divider svg{ width: 100%; height: 44px; display: block; }

/* ===== Comparison table ===== */
.table-wrap{
  overflow-x: auto;
  margin-top: 38px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  -webkit-overflow-scrolling: touch;
}
.compare-table{
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
}
.compare-table th, .compare-table td{
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
.compare-table th:last-child, .compare-table td:last-child{ border-right: none; }
.compare-table thead th{
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
  background: var(--mist);
  position: sticky;
  top: 0;
  border-bottom: 2px solid var(--line-strong);
}
.compare-table tbody th{
  font-weight: 700;
  color: var(--navy);
  background: var(--mist);
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(even) td{ background: rgba(27, 107, 117, 0.045); }
.compare-table th.row-label-col{ min-width: 170px; }
.compare-table th[scope="row"]{
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1px solid var(--line-strong);
  box-shadow: 3px 0 8px -4px rgba(11, 42, 61, 0.28);
}
.compare-table thead th:first-child{
  position: sticky;
  left: 0;
  z-index: 3;
  border-right: 1px solid var(--line-strong);
  box-shadow: 3px 0 8px -4px rgba(11, 42, 61, 0.28);
}
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th{ border-bottom: none; }
.compare-table .row-cta td{ padding-top: 20px; padding-bottom: 20px; }
.compare-table .row-cta .btn{ padding: 10px 20px; font-size: 0.85rem; }

.price-strike{
  color: var(--slate-soft);
  text-decoration: line-through;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-right: 6px;
}
.price-now{
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--coral-dark);
  font-size: 1.05rem;
}
.price-unit{ color: var(--slate-soft); font-size: 0.85rem; }

.table-hint{
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-soft);
  margin-top: 10px;
  display: none;
}

/* ===== Tour cards ===== */
.tour-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
  align-items: stretch;
}
.tour-card{
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--coral);
}
.tour-card:nth-child(2){ border-top-color: var(--teal); }
.tour-card:nth-child(3){ border-top-color: var(--navy); }

.tour-badge{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--coral-dark);
  background: rgba(255,107,74,0.1);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.tour-card h3{ font-size: 1.35rem; margin-bottom: 4px; }
.tour-tagline{
  color: var(--slate-soft);
  font-size: 0.88rem;
  margin: 0 0 14px;
  font-style: italic;
}
.tour-price{ margin: 0 0 16px; }
.tour-price .price-now{ font-size: 1.5rem; }
.tour-desc{ font-size: 0.94rem; color: var(--slate); margin: 0 0 18px; }
.tour-facts{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tour-facts li{
  font-size: 0.87rem;
  color: var(--slate-soft);
  padding-left: 20px;
  position: relative;
}
.tour-facts li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
}
.tour-meet{
  font-size: 0.82rem;
  color: var(--slate-soft);
  margin: 0 0 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.tour-card .btn{ margin-top: auto; align-self: center; width: 100%; }

/* ===== Reviews ===== */
.review-grid{
  columns: 3 320px;
  column-gap: 22px;
  margin-top: 44px;
}
.review-card{
  break-inside: avoid;
  background: var(--paper);
  border-radius: var(--radius-s);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}
.stars{
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.stars .dim{ color: #E4DCC8; }
.review-text{
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0 0 14px;
}
.review-by{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--navy);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-by span{ color: var(--slate-soft); font-weight: 400; }

/* ===== Footer ===== */
.site-footer{
  background: var(--navy-deep);
  color: #CBDDE0;
  padding: 50px 0 24px;
}
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand{ display: flex; gap: 12px; align-items: flex-start; max-width: 320px; }
.footer-title{ font-family: var(--font-display); color: #fff; margin: 0; font-size: 1.05rem; }
.footer-tag{ margin: 4px 0 0; font-size: 0.82rem; color: #93AEB4; }
.footer-contact p{ margin: 0 0 8px; font-size: 0.92rem; }
.footer-contact a{ color: #EAF3F2; }
.footer-nav{ display: flex; flex-direction: column; gap: 8px; }
.footer-nav a{ color: #CBDDE0; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover{ color: var(--coral); }
.footer-fine{
  max-width: 1160px;
  margin: 20px auto 0;
  padding: 0 20px;
  font-size: 0.76rem;
  color: #6E8B92;
}

/* ===== Back to top ===== */
.to-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px -8px rgba(11,42,61,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
  z-index: 80;
}
.to-top svg{ width: 20px; height: 20px; }
.to-top.is-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover{ background: var(--coral-dark); }

/* ===== Reveal on scroll ===== */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in{ opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .tour-grid{ grid-template-columns: 1fr; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-graphic{ max-width: 460px; margin: 0 auto; }
  .review-grid{ columns: 2 280px; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: var(--header-h);
    right: 0;
    height: calc(100vh - var(--header-h));
    width: min(320px, 84vw);
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
    padding: 28px 24px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 6px; }
  .main-nav a{
    display: block;
    padding: 14px 10px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hamburger{ display: flex; }

  .table-hint{ display: block; }
}

@media (max-width: 640px){
  :root{ --header-h: 66px; }
  .section{ padding: 56px 0; }
  .hero-inner{ padding: 28px 16px 56px; gap: 32px; }
  .hero h1{ font-size: 2.3rem; }
  .brand-word strong{ font-size: 0.95rem; }

  .hero-ctas{ max-width: none; }
  .tour-card .btn{ width: 100%; }
  .btn{ padding: 16px 22px; }

  .review-grid{ columns: 1; }

  .footer-inner{ flex-direction: column; }
  .footer-nav{ flex-direction: row; flex-wrap: wrap; gap: 16px; }

  .to-top{ right: 14px; bottom: 14px; width: 44px; height: 44px; }

  .guide-grid{ grid-template-columns: 1fr; }

  .article-body{ padding: 44px 20px; }
  .article-hero{ padding: 44px 0 48px; }
}

/* ===== Guides (article index) ===== */
.guide-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.guide-card{
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-icon{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-icon svg{ width: 23px; height: 23px; }
.guide-card h3{
  font-size: 1.12rem;
  margin: 0;
  line-height: 1.3;
}
.guide-card h3 a{
  color: var(--navy);
  text-decoration: none;
}
.guide-card h3 a:hover{ color: var(--coral); }
.guide-teaser{
  color: var(--slate-soft);
  font-size: 0.92rem;
  margin: 0;
  flex-grow: 1;
}
.guide-link{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--coral-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guide-link:hover{ color: var(--coral); }

.guides-more{
  text-align: center;
  margin: 40px 0 0;
}
.guides-more a{
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.guides-more a:hover{ color: var(--coral); }

/* ===== Article pages ===== */
.article-hero{
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 64px 0 72px;
}
.article-hero .container{ max-width: 760px; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 18px;
}
.breadcrumb a{ color: var(--teal-light); text-decoration: none; }
.breadcrumb a:hover{ color: var(--coral); }
.article-hero h1{
  color: #fff;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  margin: 0 0 16px;
}
.article-subtitle{
  color: #CBDDE0;
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0;
}

.article-body{
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 20px 20px;
}
.article-body h2{
  text-align: left;
  max-width: none;
  font-size: 1.5rem;
  margin: 46px 0 16px;
}
.article-body h2:first-child{ margin-top: 0; }
.article-body h3{
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.18rem;
  margin: 28px 0 10px;
}
.article-body p{
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 1.02rem;
}
.article-body ul, .article-body ol{
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--slate);
}
.article-body li{ margin-bottom: 8px; }
.article-body a{ color: var(--teal); font-weight: 600; }
.article-body .table-wrap{ margin: 8px 0 30px; }

@media (max-width: 980px){
  .guide-grid{ grid-template-columns: 1fr 1fr; }
}
