/* ── Hero ────────────────────────────────────── */
.hero {
  background-color: var(--navy);
  background-image: url('../images/lindblad-ship.png');
  background-size: cover;
  background-position: center 18%;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hero { min-height: 560px; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,33,77,.12) 0%,
    rgba(0,33,77,.45) 45%,
    rgba(0,33,77,.82) 75%,
    rgba(0,33,77,.92) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__text { flex: 1; min-width: 0; }

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero__actions {
    flex-shrink: 0;
    margin-top: 0;
    padding-bottom: .25rem;
  }
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 720px;
  margin-bottom: .875rem;
  line-height: 1.16;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2rem;
  padding: .3rem 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__meta .dot { margin: 0 .35em; opacity: .5; }

.hero__intro { max-width: 660px; }

.hero__intro p {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  margin-bottom: .875rem;
  line-height: 1.65;
}

.hero__intro p:last-child { margin-bottom: 0; }

.hero__actions {
  margin-top: 0;
}

.hero__actions .btn {
  padding: .875rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .15s, transform .15s, box-shadow .15s;
}

.hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

/* ── Section headings ────────────────────────── */
.section-h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  margin-bottom: .875rem;
  letter-spacing: -0.01em;
}

.section-intro {
  color: #374151;
  max-width: 64ch;
  margin-bottom: 2.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ── Operator cards ──────────────────────────── */
.operator-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.operator-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,21,77,.08), 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .2s;
}

.operator-card:hover {
  box-shadow: 0 8px 32px rgba(0,21,77,.12), 0 2px 8px rgba(0,0,0,.06);
}

.operator-card--rank-1 {
  border-left: 4px solid var(--amber);
  background: #FFFBF5;
  box-shadow: 0 4px 28px rgba(184,134,46,.14), 0 1px 6px rgba(0,0,0,.04);
}

.operator-card--rank-1:hover {
  box-shadow: 0 10px 40px rgba(184,134,46,.18), 0 2px 8px rgba(0,0,0,.06);
}

.operator-card--rank-2 { border-left: 4px solid #607D8B; }
.operator-card--rank-3 { border-left: 4px solid #795548; }

.operator-card__image {
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.operator-card__image img {
  width: 100%;
  aspect-ratio: 820 / 340;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.operator-card:hover .operator-card__image img {
  transform: scale(1.02);
}

.operator-card__body { padding: 1.5rem; }

.operator-card__header {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.operator-card__name {
  font-size: 1.25rem;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.operator-card__name a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .15s, border-color .15s;
}

.operator-card__name a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--amber);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: .3rem;
}

.rank-badge--silver { background: #607D8B; }
.rank-badge--bronze { background: #795548; }

.operator-card__content p { font-size: .9375rem; margin-bottom: .875rem; }
.operator-card__content p:last-child { margin-bottom: 0; }

.operator-card__differentiator {
  margin-top: .875rem;
  padding-top: .875rem;
  border-top: 1px solid var(--border);
}

.operator-card__differentiator strong {
  display: block;
  font-size: .6875rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: .375rem;
}

.operator-card__bestfor {
  margin-top: 1rem;
  padding: .875rem 1.125rem;
  background: rgba(0,33,77,.04);
  border-radius: var(--radius);
  font-size: .9rem;
  line-height: 1.55;
  border-left: 3px solid var(--border);
}

.operator-card__bestfor strong {
  font-size: .6875rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .3rem;
  font-weight: 700;
}

.operator-card--rank-1 .operator-card__bestfor {
  background: rgba(184,134,46,.07);
  border-left-color: var(--amber);
}

.operator-card--rank-1 .operator-card__bestfor strong {
  color: var(--amber);
}

/* ── Comparison table section ────────────────── */
.comparison-wrap {
  margin-top: 1.5rem;
}

.comparison-wrap table { min-width: 640px; }

.comparison-wrap th:first-child { min-width: 160px; }

td.highlight { font-weight: 600; color: var(--navy); }

.iaato-badge {
  display: inline-block;
  font-size: .75rem;
  background: #E8F5E9;
  color: #2E7D32;
  padding: .15rem .5rem;
  border-radius: 3px;
  font-weight: 600;
}

/* ── Reviews ─────────────────────────────────── */
.review-intro {
  color: var(--muted);
  font-size: .9375rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 12px rgba(0,21,77,.06);
}

.card-header { margin-bottom: 1rem; }

.operator-name {
  font-size: 1.0625rem;
  margin: 0 0 .5rem;
  font-family: Georgia, serif;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.stars { color: #F59E0B; font-size: 1rem; letter-spacing: -.05em; }
.rating-number { font-weight: 700; font-size: .9375rem; }
.review-count { color: var(--muted); font-size: .8125rem; }

.summary-callout {
  background: var(--ice);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0 0 1rem;
  font-size: .875rem;
  flex-shrink: 0;
}

.summary-callout strong {
  display: block;
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}

.reviews-list { flex: 1; }

.review-item {
  padding: .75rem 0;
  border-top: 1px solid var(--border);
}

.review-item:first-child { border-top: none; padding-top: 0; }

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .6rem;
  margin-bottom: .35rem;
}

.reviewer-name { font-weight: 600; font-size: .875rem; }
.review-stars { color: #F59E0B; font-size: .8125rem; letter-spacing: -.05em; }
.review-date { color: var(--muted); font-size: .8125rem; }

.review-text-wrapper {
  font-size: .875rem;
}

.review-text-wrapper summary {
  cursor: pointer;
  color: var(--text);
  list-style: none;
  line-height: 1.5;
}

.review-text-wrapper summary::-webkit-details-marker { display: none; }

.review-text-wrapper[open] summary { display: none; }

.review-text-wrapper p {
  margin: .35rem 0 0;
  line-height: 1.55;
  color: var(--text);
}

.powered-by-google {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: .875rem;
  border-top: 1px solid var(--border);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  background: var(--white);
  transition: background .15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { background: var(--ice); }

.faq-item[open] summary {
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item h3 {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: var(--navy);
}

.faq-answer {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: .9375rem;
  color: #374151;
  line-height: 1.7;
}

.faq-answer p { margin-bottom: .625rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── CTA section ─────────────────────────────── */
.cta-section {
  background: var(--ice);
  padding: 5rem 0;
  text-align: center;
}

.cta-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  box-shadow: 0 4px 40px rgba(0,21,77,.08), 0 1px 6px rgba(0,0,0,.04);
  max-width: 620px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-inner { padding: 4rem 3.5rem; }
}

.cta-inner h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text);
  max-width: 54ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.cta-inner .btn {
  display: block;
  width: fit-content;
  margin: 1.75rem auto;
}

.cta-note {
  font-size: .875rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-note a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-note a:hover { color: var(--navy); }

/* ── Penguin image section ───────────────────── */
.wildlife-band {
  position: relative;
  height: 220px;
  overflow: hidden;
  line-height: 0;
}

.wildlife-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.wildlife-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,33,77,.55) 0%, transparent 50%, rgba(0,33,77,.55) 100%);
}

@media (min-width: 768px) { .wildlife-band { height: 280px; } }
