/* ==========================================================================
   HoneymoonVault - Independent editorial guide
   ========================================================================== */

:root {
  --color-bg:         #F7F4EF;
  --color-surface:    #FFFFFF;
  --color-border:     #E8E0D5;
  --color-text:       #1C1917;
  --color-muted:      #57534E;
  --color-accent:     #B45309;
  --color-accent-bg:  #FEF3C7;
  --color-hero:       #1C1917;
  --color-hero-text:  #F7F4EF;
  --color-brand:      #0F4C81;
  --color-brand-bg:   #EFF6FF;
  --radius:           8px;
  --font-sans:        'Playfair Display', 'Georgia', serif;
  --font-body:        'Inter', sans-serif;
  --max-width:        1120px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.3em; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.6em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); margin-top: 2em; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ---- Header ---- */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
}
.site-logo:hover { text-decoration: none; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a { color: var(--color-text); }
.site-nav a:hover { color: var(--color-accent); }

.independence-bar {
  background: var(--color-accent-bg);
  color: #78350F;
  font-size: 0.85rem;
  text-align: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
}

/* ---- Breadcrumb ---- */
.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 18px 0 0;
}
.breadcrumb-nav a { color: var(--color-muted); }

/* ---- Hero ---- */
.hero {
  background-color: var(--color-hero);
  background-image: linear-gradient(rgba(28,25,23,0.55), rgba(28,25,23,0.75)), url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  color: var(--color-hero-text);
  padding: 64px 0 48px;
  text-align: center;
}
.hero h1 { color: var(--color-hero-text); max-width: 900px; margin: 0 auto 0.5em; }
.hero__subtitle {
  max-width: 680px;
  margin: 0 auto 1.3em;
  font-size: 1.15rem;
  color: #D6D3D1;
}
.hero__meta {
  font-size: 0.9rem;
  color: #A8A29E;
  margin-bottom: 1.8em;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4em;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: #92400E; text-decoration: none; }
.btn-secondary {
  background: transparent;
  border: 1px solid #57534E;
  color: var(--color-hero-text);
}
.btn-secondary:hover { border-color: var(--color-hero-text); text-decoration: none; }

.stat-chips {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-chip {
  background: #292524;
  border: 1px solid #44403C;
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 130px;
}
.stat-chip strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: #FBBF24;
}
.stat-chip span {
  font-size: 0.8rem;
  color: #A8A29E;
}

/* ---- Main layout ---- */
main { display: block; }
.section {
  padding: 0 0 8px;
}
.section > .container > p:first-of-type { font-size: 1.05rem; }

.criteria-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 1.6em 0;
}
.criteria-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.criteria-list strong { color: var(--color-accent); display: block; margin-bottom: 4px; }

/* ---- Filter tabs ---- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2em 0 1.4em;
}
.filter-tab {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
}
.filter-tab:hover { border-color: var(--color-accent); }
.filter-tab.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ---- Destination cards ---- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 1.8em 0;
}
.dest-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 128px;
  transition: opacity 0.25s ease;
}
.dest-card h4, .dest-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.dest-badge {
  display: inline-block;
  background: var(--color-accent-bg);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dest-badge.award-badge {
  background: #1C1917;
  color: #FBBF24;
}
.dest-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Section image ---- */
.section-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.6em 0;
  border: 1px solid var(--color-border);
}
.section-image img { width: 100%; height: auto; }

/* ---- Brand spotlight (Poseidon Expeditions) ---- */
.brand-spotlight {
  background: var(--color-brand-bg);
  border: 1px solid var(--color-brand);
  border-radius: var(--radius);
  margin: 2.6em 0;
  padding: 4px;
}
.brand-spotlight__badge {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.brand-spotlight__inner { padding: 8px 28px 28px; }
.brand-spotlight__header h3 {
  margin-top: 0.4em;
  color: var(--color-brand);
}
.brand-spotlight__sub {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 1.4em;
}
.brand-spotlight__triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 1.4em;
}
.triplet-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
}
.triplet-item strong {
  display: block;
  color: var(--color-brand);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.triplet-item p { font-size: 0.9rem; margin: 0; color: var(--color-text); }
.brand-spotlight__highlight {
  background: #fff;
  border-left: 3px solid var(--color-brand);
  padding: 12px 16px;
  font-size: 0.95rem;
  margin-bottom: 1.2em;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.brand-spotlight__meta {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 1.4em;
}
.brand-spotlight__cta {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}
.brand-spotlight__cta:hover { background: #0C3A61; text-decoration: none; }

/* ---- Decision framework ---- */
.decision-framework {
  list-style: none;
  counter-reset: decision;
  padding: 0;
  margin: 1.8em 0;
}
.decision-framework li {
  counter-increment: decision;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px 16px 54px;
  margin-bottom: 12px;
  position: relative;
}
.decision-framework li::before {
  content: counter(decision);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decision-framework strong { display: block; margin-bottom: 2px; }

/* ---- Comparison table ---- */
.table-wrap {
  overflow-x: auto;
  margin: 1.8em 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
table.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 0.92rem;
  min-width: 720px;
}
table.compare-table caption { text-align: left; padding: 12px 16px; font-size: 0.85rem; color: var(--color-muted); }
table.compare-table th, table.compare-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
table.compare-table thead th {
  background: #1C1917;
  color: #fff;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-sans);
  font-weight: 600;
  white-space: nowrap;
}
table.compare-table thead th .sort-arrow { opacity: 0.5; font-size: 0.75em; margin-left: 4px; }
table.compare-table thead th.sorted-asc .sort-arrow,
table.compare-table thead th.sorted-desc .sort-arrow { opacity: 1; color: #FBBF24; }
table.compare-table tbody tr:hover { background: var(--color-bg); }
.table-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.6em;
}

/* ---- FAQ ---- */
.faq-list { margin: 1.8em 0; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--color-text);
}

/* ---- Practical notes ---- */
.practical-note {
  background: var(--color-accent-bg);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-size: 0.92rem;
  margin: 1.2em 0;
}
.practical-note strong { color: #92400E; }

/* ---- Methodology table ---- */
.criteria-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.6em 0;
}
.criteria-table th, .criteria-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.criteria-table thead th { background: var(--color-brand); color: #fff; font-family: var(--font-sans); }

.policy-list {
  margin: 1.4em 0;
}
.policy-list li { margin-bottom: 8px; }

.legal-disclaimer {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 1.6em 0;
}

/* ---- Generic content page ---- */
.page-hero {
  background: var(--color-hero);
  color: var(--color-hero-text);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 { color: var(--color-hero-text); margin: 0; }
.page-hero p { color: #A8A29E; margin-top: 0.6em; }

.back-link { display: inline-block; margin: 24px 0; font-weight: 600; }

/* ---- Footer ---- */
.site-footer {
  background: #1C1917;
  color: #D6D3D1;
  padding: 48px 0 24px;
  margin-top: 4em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-grid strong { color: #fff; font-family: var(--font-sans); font-size: 1.05rem; }
.footer-grid p { color: #A8A29E; font-size: 0.9rem; margin-top: 8px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.footer-grid nav a { color: #D6D3D1; font-size: 0.9rem; }
.footer-grid nav a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid #44403C;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #78716C;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .criteria-list { grid-template-columns: 1fr; }
  .brand-spotlight__triplet { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { gap: 16px; font-size: 0.88rem; }
  .hero { padding: 48px 0 36px; }
}
