/* ===== FOREST GREEN PALETTE =====
   Background: deep forest (#0C401E). Text: pale cream-green.
   Accent: pale cream-green for highlights, brighter for hover.
   Placeholders intentionally stay amber/gold so missing
   content pops against the green field.
============================================ */
:root {
  --bg: #0C401E;
  --bg-soft: #0F4D24;
  --bg-card: #0F4D24;
  --bg-deep: #082815;
  --border: #1f5b32;
  --border-strong: #2d6a40;
  --text: #ECF2BD;
  --text-soft: #DAE3A4;
  --text-muted: #89A65D;
  --text-dim: #6b8442;
  --gold: #ECF2BD;
  --gold-bright: #f5f9d4;
  --gold-deep: #c5d09a;
  --gold-soft-bg: rgba(236, 242, 189, 0.08);
  --red: #e8554a;
  --placeholder-bg: rgba(245, 200, 66, 0.18);
  --placeholder-text: #f5c842;
  --placeholder-border: rgba(245, 200, 66, 0.55);
  --btn-text: #0C401E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 64, 30, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  text-decoration: none;
  line-height: 1.05;
}
.logo-primary {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--text);
}
.logo-secondary {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 600;
  margin-top: 4px;
}
.nav-logo-year {
  color: var(--gold);
  margin-left: 4px;
}
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.tab-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.tab-link:active { transform: scale(0.97); }
.tab-link:hover { color: var(--text); }
.tab-link.active {
  background: var(--gold);
  color: var(--bg);
}

/* ===== Tab Panels ===== */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.35s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.25, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.grid-3 > .reveal:nth-child(1) { transition-delay: 0.04s; }
.grid-3 > .reveal:nth-child(2) { transition-delay: 0.12s; }
.grid-3 > .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ===== Hero entrance ===== */
.hero .eyebrow,
.hero-title,
.hero-sub,
.video-wrap,
.countdown,
.hero-inner .btn,
.hero-foot {
  animation: hero-rise 0.7s ease-out both;
}
.hero .eyebrow      { animation-delay: 0.05s; }
.hero-title         { animation-delay: 0.15s; }
.hero-sub           { animation-delay: 0.28s; }
.video-wrap         { animation-delay: 0.38s; }
.countdown          { animation-delay: 0.48s; }
.hero-inner .btn    { animation-delay: 0.6s;  }
.hero-foot          { animation-delay: 0.7s;  }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Countdown digit flash ===== */
.cd-num { transition: color 0.4s ease; }
.cd-num.flash { color: var(--gold-bright); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  color: var(--btn-text);
  padding: 16px 38px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 8px 28px rgba(236, 242, 189, 0.22);
}
.btn-gold-xl {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  color: var(--btn-text);
  padding: 18px 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 22px;
  box-shadow: 0 10px 36px rgba(236, 242, 189, 0.28);
  transition: transform 0.15s;
}
.btn-gold-xl:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 11px; border-radius: 999px; }

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 12px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 20px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(236, 242, 189, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(137, 166, 93, 0.07) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(236, 242, 189, 0.45) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(236, 242, 189, 0.35) 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(236, 242, 189, 0.4)  50%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(236, 242, 189, 0.3)  50%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

/* Hero with a background image. Activated when JS sets
   --hero-bg-url and adds .hero-has-bg. */
.hero.hero-has-bg {
  background:
    linear-gradient(180deg, rgba(12, 64, 30, 0.45) 0%, rgba(12, 64, 30, 0.6) 55%, rgba(12, 64, 30, 0.88) 100%),
    var(--hero-bg-url) center / cover no-repeat,
    var(--bg);
}
.hero.hero-has-bg::before { opacity: 0.25; }
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.eyebrow.center { text-align: center; }
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-shadow:
    0 0 28px rgba(236, 242, 189, 0.28),
    0 0 70px rgba(236, 242, 189, 0.14);
  margin-bottom: 22px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(8, 40, 21, 0.55);
}
.hero-foot {
  margin-top: 22px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== Video ===== */
.video-wrap {
  max-width: 720px;
  margin: 0 auto 32px;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Video facade — YouTube thumbnail with a custom round-transparent
   play button; iframe mounts on click (no eager YT player) */
.video-facade {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--bg-deep);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vp-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 21, 0.15) 0%, rgba(8, 40, 21, 0.55) 100%);
  pointer-events: none;
}
.vp-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(236, 242, 189, 0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: none;
}
.vp-play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-facade:hover .vp-poster { transform: scale(1.03); }
.video-facade:hover .vp-play {
  background: rgba(236, 242, 189, 0.28);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-facade:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(236, 242, 189, 0.07), transparent 70%),
    var(--bg-deep);
}
.play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(236, 242, 189, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.video-placeholder-text {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 36px;
  flex-wrap: wrap;
}
.cd-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 84px;
  text-align: center;
}
.cd-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.cd-lbl {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== Trust Block ===== */
.trust-block {
  background: var(--bg-deep);
  padding: 32px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.trust-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.trust-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 6px;
}
.trust-text {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
  margin: 6px 0 0;
  color: var(--text);
}
.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 44px;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: -24px auto 44px;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== Cards ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.card-icon { width: 36px; height: 36px; margin: 0 auto 16px; color: var(--gold); position: relative; z-index: 2; }
.card-icon svg { width: 100%; height: 100%; }
.card-body { position: relative; z-index: 2; margin-top: auto; }
.card-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
}
.card-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* Experience card with background image (same pattern as amenity) */
.card[data-has-bg="true"] {
  background-size: cover;
  background-position: center;
  padding: 0;
  min-height: 320px;
  border-color: var(--border-strong);
  text-align: left;
}
.card[data-has-bg="true"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 21, 0.1) 0%, rgba(8, 40, 21, 0.1) 60%, rgba(8, 40, 21, 0.45) 100%);
  z-index: 1;
}
.card[data-has-bg="true"] .card-icon {
  position: absolute;
  top: 14px;
  left: 16px;
  margin: 0;
  width: 26px;
  height: 26px;
}
.card[data-has-bg="true"] .card-body {
  background: rgba(8, 40, 21, 0.82);
  padding: 14px 18px 16px;
  margin: auto 0 0;
  border-radius: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.card[data-has-bg="true"] .card-title {
  font-size: 19px;
  margin-bottom: 6px;
  line-height: 1.2;
  color: var(--text);
}
.card[data-has-bg="true"] .card-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}

/* destination.jpg is portrait orientation — sky was dominating
   the center crop. Shift the focal point lower so the beach shows. */
.card[data-experience="destination"][data-has-bg="true"] {
  background-position: center 78%;
}

/* hero-utopia.jpg is portrait with the ship near the top —
   pull the crop almost to the top so the ship lands in view. */
.card[data-experience="ship"][data-has-bg="true"] {
  background-position: center 12%;
}

/* ===== Amenities ===== */
.amenity-grid { gap: 20px; }
.amenity {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.amenity:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.amenity-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-body { position: relative; z-index: 2; margin-top: auto; }
.amenity h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}
.amenity p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* Amenity with background image (activated by JS when config provides) */
.amenity[data-has-bg="true"] {
  background-size: cover;
  background-position: center;
  padding: 0;
  min-height: 280px;
  border-color: var(--border-strong);
}
.amenity[data-has-bg="true"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 21, 0.1) 0%, rgba(8, 40, 21, 0.1) 60%, rgba(8, 40, 21, 0.45) 100%);
  z-index: 1;
}
.amenity[data-has-bg="true"] .amenity-icon {
  position: absolute;
  top: 14px;
  left: 16px;
  margin: 0;
  width: 26px;
  height: 26px;
  z-index: 2;
}
.amenity[data-has-bg="true"] .amenity-body {
  background: rgba(8, 40, 21, 0.78);
  padding: 9px 14px 11px;
  border-radius: 0;
  margin: auto 0 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.amenity[data-has-bg="true"] h4 {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 3px;
  line-height: 1.2;
}
.amenity[data-has-bg="true"] p {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}
.learn-more-row { text-align: center; margin-top: 36px; }

/* ===== Closing ===== */
.closing {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.quote-mark { font-family: var(--serif); font-size: 48px; line-height: 1; margin-bottom: 18px; }
.closing-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}
.gold-text { color: var(--gold); }

/* ===========================================================
   CRUISE DETAILS + ITINERARY TABS (shared structure)
=========================================================== */
.details-header {
  text-align: center;
  padding: 70px 0 0;
  margin-bottom: 60px;
}
.details-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--text);
  margin: 6px 0 0;
}

.cd-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  margin-bottom: 24px;
}
.cd-h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
  display: inline-block;
}
.cd-lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cd-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cd-body:last-child { margin-bottom: 0; }

/* ===== Coming Soon section (Itinerary tab) ===== */
.coming-soon { text-align: center; padding: 56px 36px; }
.coming-soon .cd-h {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 22px;
  display: block;
}
.coming-soon-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.coming-soon .cd-body {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon .bullet-list {
  max-width: 480px;
  margin: 22px auto 28px;
  text-align: left;
}

/* ===== Key/value Snapshot table ===== */
.kv-table {
  width: 100%;
  border-collapse: collapse;
}
.kv-table tr { border-bottom: 1px solid var(--border); }
.kv-table tr:last-child { border-bottom: none; }
.kv-table th {
  text-align: left;
  padding: 16px 20px 16px 0;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 220px;
  vertical-align: top;
}
.kv-table td {
  padding: 16px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* ===== Bullet lists ===== */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px dashed var(--border);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.bullet-list.pos li::before {
  content: "\2713";
  background: var(--gold);
  color: var(--btn-text);
}
.bullet-list.neg li::before {
  content: "\2715";
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

/* ===== Price + Cancellation tables ===== */
.price-table, .cancel-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.price-table thead, .cancel-table thead {
  background: var(--bg-soft);
}
.price-table th, .cancel-table th {
  text-align: left;
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.price-table td, .cancel-table td {
  padding: 16px 22px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.price-table tbody tr:nth-child(odd) td { background: rgba(0, 0, 0, 0.14); }
.price-tier { font-weight: 600; font-size: 17px; }
.price-from {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
  vertical-align: middle;
}
.price-from-label {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* ===== Callout boxes ===== */
.callout {
  background: var(--gold-soft-bg);
  border: 1px solid rgba(236, 242, 189, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 18px 0;
}
.callout strong { color: var(--text); }
.callout.subtle {
  background: var(--bg-soft);
  border-color: var(--border);
  border-left-color: var(--gold);
  color: var(--text-muted);
}

/* ===== Agent block ===== */
.agent-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 22px 0;
}
.agent-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}
.agent-row:last-child { border-bottom: none; }
.agent-row .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.agent-row .val {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}
.agent-row .val.link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.agent-row .val.code-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(236, 242, 189, 0.1);
  border: 1px solid rgba(236, 242, 189, 0.3);
  color: var(--gold);
  padding: 9px 16px 9px 18px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  font-style: normal;
}
.agent-row .val.code-pill:hover {
  background: rgba(236, 242, 189, 0.18);
  border-color: rgba(236, 242, 189, 0.5);
}
.agent-row .val.code-pill:active { transform: scale(0.98); }
.agent-row .val.code-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.code-pill-icon {
  display: inline-flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.code-pill-icon svg { width: 15px; height: 15px; }
.agent-row .val.code-pill:hover .code-pill-icon { opacity: 1; }
.code-pill-feedback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 242, 189, 0.95);
  color: var(--bg);
  border-radius: inherit;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.agent-row .val.code-pill.copied .code-pill-feedback { opacity: 1; }

/* ===== FAQ ===== */
.faq-list { margin-top: 4px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  overflow: hidden;
  transition:
    max-height 0.32s cubic-bezier(0.2, 0.7, 0.25, 1),
    opacity 0.24s ease,
    padding-bottom 0.32s ease;
}
.faq-item.is-closing .faq-answer,
.faq-item.is-opening .faq-answer { will-change: max-height, opacity; }
.faq-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Placeholder marking (intentionally amber so missing
   content pops against the green palette) ===== */
.placeholder, .inline-placeholder {
  background: var(--placeholder-bg);
  color: var(--placeholder-text);
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px dashed var(--placeholder-border);
  font-size: 0.95em;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-links {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-links a { cursor: pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-links span { margin: 0 14px; color: var(--text-dim); }
.copyright {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.photo-credits {
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.photo-credits:empty { display: none; }

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  color: var(--btn-text);
  text-align: center;
  padding: 16px 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: opacity 0.25s;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-inner { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .tabs { order: 3; width: 100%; justify-content: center; }
  .tab-link { padding: 8px 16px; font-size: 11px; }
  .logo-primary { font-size: 17px; }
  .logo-secondary { font-size: 8px; letter-spacing: 0.28em; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 20px 48px; }
  .cd-section { padding: 28px 22px; }
  .coming-soon { padding: 36px 22px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .cd-h { font-size: 24px; }
  .cd-lead { font-size: 16px; }

  /* Tables reflow on mobile: stack to label/value rows */
  .kv-table thead { display: none; }
  .kv-table tr {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .kv-table th {
    display: block;
    width: 100%;
    padding: 0 0 6px;
    font-size: 11px;
  }
  .kv-table td { display: block; padding: 0; }

  .price-table, .cancel-table { border: none; }
  .price-table thead, .cancel-table thead { display: none; }
  .price-table tr, .cancel-table tr {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 14px 16px;
  }
  .price-table tbody tr:nth-child(odd) td { background: transparent; }
  .price-table td, .cancel-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-top: none;
  }
  .price-table td::before, .cancel-table td::before {
    content: attr(data-label);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 12px;
  }

  .agent-row { grid-template-columns: 1fr; gap: 4px; }
  .agent-row .lbl { font-size: 10px; }

  .countdown { gap: 10px; }
  .cd-cell { min-width: 68px; padding: 12px 14px; }
  .cd-num { font-size: 28px; }
}
