/* ==========================================================================
   Elite Singles Canada — Main Stylesheet
   ========================================================================== */

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --navy: #0B1F3A;
  --navy-dark: #060f1e;
  --gold: #C8A96A;
  --soft-bg: #F8F6F2;
  --white: #ffffff;
  --text-muted: #666;
  --text-light-muted: #555;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-2xl: 16px;
  --shadow-card: 0 2px 20px rgba(11, 31, 58, 0.07);
  --shadow-card-alt: 0 2px 20px rgba(11, 31, 58, 0.06);
  --shadow-elevated: 0 4px 24px rgba(11, 31, 58, 0.09);
  --shadow-image: 0 32px 64px rgba(0, 0, 0, 0.4);
  --shadow-city: 0 4px 20px rgba(11, 31, 58, 0.14);
  --border-gold: 1px solid rgba(200, 169, 106, 0.15);
  --border-gold-medium: 1px solid rgba(200, 169, 106, 0.2);
  --border-gold-strong: 1px solid rgba(200, 169, 106, 0.25);
  --border-gold-btn: 1.5px solid rgba(200, 169, 106, 0.5);
  --max-width: 1200px;
  --max-width-narrow: 1100px;
  --max-width-sm: 800px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.6;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.88;
}

ul {
  list-style: none;
}

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
}

.font-serif { font-family: var(--font-serif); }
.font-sans  { font-family: var(--font-sans); }

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.section-label {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-desc {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  font-size: 16px;
  padding: 15px 36px;
  letter-spacing: 0.02em;
}

.btn-primary-lg {
  background-color: var(--gold);
  color: var(--navy);
  font-size: 17px;
  padding: 16px 44px;
}

.btn-primary-sm {
  background-color: var(--gold);
  color: var(--navy);
  font-size: 15px;
  padding: 13px 32px;
}

.btn-outline {
  color: var(--white);
  font-size: 16px;
  padding: 15px 32px;
  border: var(--border-gold-btn);
  background: transparent;
}

.btn-outline-sm {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border: 1.5px solid rgba(200, 169, 106, 0.45);
  background: transparent;
}

.btn-nav {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  background-color: var(--gold);
  color: var(--navy);
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.navbar-brand span {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-brand .gold {
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-login {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}

.navbar-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
}

.navbar-mobile a {
  display: block;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  padding: 10px 0;
  text-decoration: none;
}

.navbar-mobile.is-open {
  display: block;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background-color: var(--navy);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #0f2d56 100%);
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  min-height: 600px;
}

.hero-content {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 106, 0.15);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge span {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.hero-stat-label {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 40px;
}

.hero-image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-image);
  border: var(--border-gold-strong);
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.hero-badge-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 31, 58, 0.92);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge-floating .label {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-badge-floating .sub {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* ── Sections Common ───────────────────────────────────────────────────── */
.section {
  padding: 80px 24px;
}

.section-white  { background: var(--white); }
.section-soft   { background: var(--soft-bg); }
.section-navy   { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Trust Cards (3-col) ───────────────────────────────────────────────── */
.trust-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: var(--border-gold);
}

.trust-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 106, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-card-icon svg {
  color: var(--gold);
}

.trust-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-card p {
  font-family: var(--font-sans);
  color: var(--text-light-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Comparison Table ──────────────────────────────────────────────────── */
.comparison-table {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(11, 31, 58, 0.10);
  border: var(--border-gold-medium);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
}

.comparison-header-left {
  background: #f1f4f8;
  padding: 20px 32px;
  text-align: center;
}

.comparison-header-left span {
  font-family: var(--font-sans);
  color: #888;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-header-vs {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-header-vs span {
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.comparison-header-right {
  background: var(--navy);
  padding: 20px 32px;
  text-align: center;
}

.comparison-header-right span {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
}

.comparison-row:nth-child(even) {
  background: var(--white);
}

.comparison-row:nth-child(odd) {
  background: var(--soft-bg);
}

.comparison-cell {
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-cell .icon-x {
  color: #E53E3E;
  flex-shrink: 0;
}

.comparison-cell .icon-check {
  color: #38A169;
  flex-shrink: 0;
}

.comparison-cell span {
  font-family: var(--font-sans);
  font-size: 15px;
}

.comparison-cell-left span {
  color: var(--text-muted);
}

.comparison-cell-right span {
  color: var(--navy);
  font-weight: 500;
}

.comparison-divider {
  background: rgba(200, 169, 106, 0.08);
  border-left: var(--border-gold-medium);
  border-right: var(--border-gold-medium);
}

/* ── Step Cards ────────────────────────────────────────────────────────── */
.step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-card-alt);
  border: var(--border-gold);
}

.step-card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  color: rgba(11, 31, 58, 0.07);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.step-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(11, 31, 58, 0.06);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-card-icon svg {
  color: var(--gold);
}

.step-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-family: var(--font-sans);
  color: var(--text-light-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Audience Cards (2-col) ────────────────────────────────────────────── */
.audience-card {
  text-decoration: none;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: var(--border-gold);
  transition: transform 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.audience-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.audience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.7) 0%, transparent 60%);
}

.audience-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.audience-card-body {
  padding: 28px 28px 32px;
  background: var(--white);
}

.audience-card-body h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card-body p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.audience-card-link {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── City Cards ────────────────────────────────────────────────────────── */
.city-card {
  text-decoration: none;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 200px;
  box-shadow: var(--shadow-city);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-card:hover {
  opacity: 1;
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.85) 0%, rgba(11, 31, 58, 0.2) 60%);
}

.city-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
}

.city-card-name {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.city-card-count {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.city-card-pin {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--gold);
}

/* ── Reviews ───────────────────────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.review-left h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

.review-left p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-card {
  background: var(--soft-bg);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  border: var(--border-gold-medium);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars svg {
  color: var(--gold);
}

.review-card blockquote {
  font-family: var(--font-sans);
  color: #444;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.review-card blockquote::before { content: '"'; }
.review-card blockquote::after  { content: '"'; }

.review-author {
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pricing-left .section-label { color: var(--gold); }
.pricing-left h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-left p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pricing-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  padding: 40px 36px;
  border: var(--border-gold-strong);
}

.pricing-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-box-header svg { color: var(--gold); }

.pricing-box-header span {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-box h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon svg {
  color: var(--gold);
  width: 12px;
  height: 12px;
}

.pricing-feature span {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

/* ── Trust Badges ──────────────────────────────────────────────────────── */
.trust-badge-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: var(--border-gold);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
}

.trust-badge-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.trust-badge-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-badge-card p {
  font-family: var(--font-sans);
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}

/* ── Blog Cards ────────────────────────────────────────────────────────── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-header-right {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card {
  text-decoration: none;
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: var(--border-gold);
  background: var(--soft-bg);
}

.blog-card:hover {
  opacity: 1;
  box-shadow: var(--shadow-card);
}

.blog-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.blog-tag {
  font-family: var(--font-sans);
  background: rgba(200, 169, 106, 0.18);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.blog-card p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  transition: background 0.2s ease;
}

.faq-item.active {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 4px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
}

.faq-question svg {
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-family: var(--font-sans);
  color: var(--text-light-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ── Final CTA ────────────────────────────────────────────────────────── */
.final-cta {
  background-color: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.07);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.05);
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.final-cta h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(200, 169, 106, 0.2);
  opacity: 1;
}

.footer-col-title {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-col a {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}

/* ── Grid Helpers ─────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ── Page Header (sub-pages) ──────────────────────────────────────────── */
.page-header {
  background-color: var(--navy);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.06);
}

.page-header h1 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ── Page Content ─────────────────────────────────────────────────────── */
.page-content {
  padding: 64px 24px;
}

.page-content h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 22px;
}

.page-content p {
  font-family: var(--font-sans);
  color: var(--text-light-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.page-content li {
  font-family: var(--font-sans);
  color: var(--text-light-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 24px;
  background: var(--soft-bg);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
}

/* ── Review Page ──────────────────────────────────────────────────────── */
.review-page-card {
  background: var(--soft-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: var(--border-gold-medium);
  margin-bottom: 24px;
}

.review-page-card .review-stars {
  margin-bottom: 16px;
}

.review-page-card blockquote {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-page-card .review-author {
  font-size: 14px;
}

.review-page-card .review-detail {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
  font-style: normal;
}

/* ── Blog Post ────────────────────────────────────────────────────────── */
.blog-post-header {
  background: var(--soft-bg);
  padding: 48px 24px;
  text-align: center;
}

.blog-post-header .blog-tag {
  margin-bottom: 16px;
}

.blog-post-header h1 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-header .blog-meta {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
}

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}

.blog-post-body h2 {
  font-size: 26px;
  margin-top: 40px;
}

.blog-post-body h3 {
  margin-top: 28px;
}

.blog-post-body p {
  font-size: 17px;
  line-height: 1.8;
}

.blog-post-body img {
  border-radius: var(--radius-lg);
  margin: 32px 0;
  width: 100%;
}

/* ── Contact Form ─────────────────────────────────────────────────────── */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid rgba(11, 31, 58, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── CTA Section (sub-pages) ─────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary-lg {
  margin: 0 auto;
}

/* ── Schema.org JSON-LD (visually hidden) ──────────────────────────────── */
.json-ld {
  display: none;
}

/* ── Date Spot Cards (City Pages) ──────────────────────────────────────── */
.date-spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.date-spot-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: var(--border-gold);
  transition: transform 0.2s ease;
}

.date-spot-card:hover {
  transform: translateY(-2px);
}

.date-spot-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.date-spot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.date-spot-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.date-spot-card-body {
  padding: 20px 22px;
}

.date-spot-card-body h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.date-spot-card-body p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.date-spot-card-body .best-for {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* ── Season Guide (City Pages) ─────────────────────────────────────────── */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.season-card {
  background: var(--soft-bg);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: var(--border-gold);
  transition: transform 0.2s ease;
}

.season-card:hover {
  transform: translateY(-2px);
}

.season-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 106, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}

.season-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.season-card p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Neighborhood Guide (City Pages) ───────────────────────────────────── */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.neighborhood-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: var(--border-gold);
  box-shadow: var(--shadow-card-alt);
}

.neighborhood-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.neighborhood-card .vibe {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.neighborhood-card p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Tips Grid (Topic Pages) ───────────────────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: var(--border-gold);
  box-shadow: var(--shadow-card-alt);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 106, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.tip-card-text h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tip-card-text p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Highlight Box (Blog Posts) ────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.05) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.highlight-box h4 {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.highlight-box p {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
}

/* ── Takeaway Box (Blog Posts) ─────────────────────────────────────────── */
.takeaway-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 40px 0 20px;
}

.takeaway-box h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.takeaway-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaway-box li {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.takeaway-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Feature Grid 2-Column (Topic Pages) ───────────────────────────────── */
.feature-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--soft-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: var(--border-gold);
}

.feature-card-icon {
  color: var(--gold);
  margin-bottom: 14px;
}

.feature-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Stat Row (Blog Posts) ─────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  border: var(--border-gold);
  box-shadow: var(--shadow-card-alt);
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ── Challenge Cards (Topic Pages) ─────────────────────────────────────── */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.challenge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: var(--border-gold);
  box-shadow: var(--shadow-card-alt);
}

.challenge-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.challenge-card p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Image Split Section (City Pages) ──────────────────────────────────── */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}

.image-split img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 200px;
}

/* ── Responsive: ≤1100px ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: ≤900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .navbar-links,
  .navbar-login {
    display: none !important;
  }

  .navbar-toggle {
    display: block;
  }
}

/* ── Responsive: ≤600px ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section {
    padding: 56px 16px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card img {
    width: 100%;
    height: 160px;
  }

  .comparison-cell {
    padding: 14px 16px;
  }

  .comparison-header-left,
  .comparison-header-right {
    padding: 14px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .date-spots-grid,
  .neighborhood-grid,
  .tips-grid,
  .feature-grid-2,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .image-split {
    grid-template-columns: 1fr;
  }
}
/* Language and Canadian-French localization */
.language-switcher {
  align-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .06em;
  min-height: 34px;
  min-width: 40px;
  padding: 6px 10px;
}
.language-switcher:hover,
.language-switcher:focus-visible { border-color: var(--gold); color: var(--gold); }
.brand-heart { color: var(--gold); font-size: 1.35rem; line-height: 1; }
.localized-hero .section-label { margin-bottom: 12px; }
.localized-hero h1 { max-width: 850px; margin-inline: auto; }
.localized-content { padding-block: clamp(42px, 7vw, 84px); }
.localized-intro { font-size: 1.12rem; line-height: 1.8; }
.localized-section { border-top: 1px solid rgba(18,32,47,.12); margin-top: 34px; padding-top: 30px; }
.localized-section h2 { margin-bottom: 14px; }
.locale-checklist { background: var(--cream, #f8f5ef); border-left: 4px solid var(--gold); border-radius: 10px; margin: 34px 0; padding: 24px 28px; }
.locale-checklist h2 { font-size: 1.25rem; margin-bottom: 12px; }
.locale-checklist ul { margin-bottom: 0; }
.localized-cta { background: var(--navy, #12202f); border-radius: 14px; color: #fff; margin-top: 42px; padding: clamp(26px, 5vw, 44px); text-align: center; }
.localized-cta h2 { color: #fff; }
.localized-footer { grid-template-columns: minmax(240px, 1.7fr) repeat(3, 1fr); }
@media (max-width: 820px) {
  .navbar-actions .language-switcher { display: none; }
  .localized-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .localized-footer { grid-template-columns: 1fr; } }

.author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 32px 0;
  padding: 20px;
  border: 1px solid rgba(184, 145, 74, .28);
  border-radius: 14px;
  background: #fffaf2;
}
.author-card__initials {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
}
.author-card p { margin: 4px 0 0; }
.author-card strong { color: var(--navy); }
.source-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #f8f6f1;
  font-size: .95rem;
}
@media (max-width: 560px) { .author-card { flex-direction: column; } }
