/* Elgin Travel & Cruises marketing palette — Inter, warm canvas, red accent */
:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #de332c;
  --border: #e8e5df;
  --stat-bg: #f2f0ec;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── Header ── */
.header {
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav a.nav-current {
  color: var(--text);
  font-weight: 600;
}

.header-btn {
  background: var(--text);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.header-btn:hover {
  background: #333;
  color: var(--white) !important;
}

/* ── Legal pages ── */
.legal-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-intro {
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.legal-intro h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal-intro h1 .accent {
  color: var(--accent);
}

.legal-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}

.legal-sub strong {
  color: var(--text);
  font-weight: 600;
}

.legal-sub a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-sub a:hover {
  text-decoration: underline;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.card p,
.card li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.card p {
  margin-bottom: 12px;
}

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

.card ul {
  padding-left: 18px;
  margin: 0 0 8px;
}

.card li {
  margin-bottom: 6px;
}

.card li:last-child {
  margin-bottom: 0;
}

.card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 24px 20px 40px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer p + p {
  margin-top: 8px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ── Landing (index) — hero + stats ── */
.site-landing .landing-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

@media (max-width: 768px) {
  .site-landing .landing-hero {
    padding: 48px 24px 36px;
  }
}

.site-landing .landing-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.site-landing .landing-hero h1 .accent {
  color: var(--accent);
}

.site-landing .landing-hero > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-dark {
  background: var(--text);
  color: #faf9f7;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dark:hover {
  background: #333;
  color: #faf9f7;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--text);
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--stat-bg);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.landing-legal-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.cta-banner {
  background: var(--accent);
  padding: 48px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 22px;
}

.cta-banner .btn-white {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-banner .btn-white:hover {
  background: #f5f5f5;
}
