/*
Theme Name: MC Travel
Theme URI: https://mctravel1.com
Author: Main Connection Travel
Author URI: https://mctravel1.com
Description: Custom luxury travel agency theme for Main Connection Travel. Full-service travel agency established 1987, specializing in cruises, Disney vacations, all-inclusive Caribbean resorts, and group travel.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mc-travel
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ── DESIGN SYSTEM ── */
:root {
  --ink: #1a1a1e;
  --cream: #faf8f4;
  --sand: #f0ebe3;
  --gold: #c4985a;
  --gold-light: #dbb887;
  --sea: #2a5f6f;
  --sea-deep: #1b3f4a;
  --sea-light: #3a8a9e;
  --white: #ffffff;
  --text-muted: #6b6b70;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  /* Safe area padding for edge-to-edge displays (Pixel 9, etc.) */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ── FOCUS-VISIBLE (Accessibility) ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* ── PRELOADER OVERLAY ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--sea-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  padding: 2rem;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  animation: lineGrow 1.2s ease 0.2s forwards;
}
.preloader-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.3;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}
.preloader-sub {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.6s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem calc(3rem + env(safe-area-inset-right, 0px)) 1.5rem calc(3rem + env(safe-area-inset-left, 0px));
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.site-nav.scrolled {
  background: rgba(26, 26, 30, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem calc(3rem + env(safe-area-inset-right, 0px)) 1rem calc(3rem + env(safe-area-inset-left, 0px));
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  z-index: 101;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--white); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  font-size: 0.85rem !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.nav-cta::after { display: none !important; }

/* Inner-page nav — dark background since there's no hero image */
body:not(.home) nav.site-nav {
  background: var(--sea-deep);
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
body:not(.home) nav.site-nav.scrolled {
  background: rgba(27, 63, 74, 0.95);
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.75rem; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: white;
  margin: 5px 0; transition: all 0.3s;
}

@media (max-width: 768px) {
  nav.site-nav { padding: 1rem calc(1.5rem + env(safe-area-inset-right, 0px)) 1rem calc(1.5rem + env(safe-area-inset-left, 0px)); }
  nav.site-nav.scrolled { padding: 0.8rem calc(1.5rem + env(safe-area-inset-right, 0px)) 0.8rem calc(1.5rem + env(safe-area-inset-left, 0px)); }
  .nav-toggle { display: flex; flex-direction: column; z-index: 101; }
  .nav-links {
    position: fixed; inset: 0;
    z-index: 100;
    background: rgba(26, 26, 30, 0.97);
    flex-direction: column; justify-content: center;
    gap: 2rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  nav.site-nav.scrolled { backdrop-filter: none; }
  .nav-links a { font-size: 1rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(27, 63, 74, 0.55) 0%, rgba(26, 26, 30, 0.7) 100%);
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--sea-deep);
  color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--sea); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27, 63, 74, 0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover,
.btn-outline:focus-visible { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.5s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 50px; }
}

/* ── SPECIALTIES STRIP ── */
.specialties {
  background: var(--sea-deep);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.specialty-item {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.specialty-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ── ABOUT SECTION ── */
.about {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-1 {
  width: 65%; height: 75%; top: 0; left: 0;
}
.about-img-2 {
  width: 50%; height: 55%; bottom: 0; right: 0;
  border: 6px solid var(--cream);
}
.about-accent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  z-index: 3;
}
.about-accent-inner {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}
.about-accent-inner strong {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--sea-deep);
  margin-bottom: 0.2rem;
}

.about-content { max-width: 500px; }
.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sea); }
.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sea);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; text-align: center; }
  .about-stats { justify-content: center; }
  .about-images { height: 400px; }
}

/* ── MEET THE TEAM ── */
.team {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.team-header {
  max-width: 600px;
  margin: 0 auto 4rem;
}
.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.team-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 3px;
  padding: 2.5rem 3rem;
  max-width: 720px;
  width: 100%;
  gap: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.team-card-content {
  flex: 1;
  text-align: left;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.team-card:hover::before { transform: scaleX(1); }
.team-card-photo {
  width: 120px; height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sand);
}
.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card-initials {
  width: 100%; height: 100%;
  background: var(--sea);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.team-card-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.team-card-bio {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.team-card-footer {
  margin-top: auto;
}
.team-card-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.team-cert {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  background: rgba(42, 95, 111, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
}
.team-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sea);
  text-decoration: none;
  transition: color 0.3s;
}
.team-card-cta:hover,
.team-card-cta:focus-visible { color: var(--gold); }

/* Featured card (owner) */
.team-card-featured {
  max-width: 800px;
  padding: 3rem 3.5rem;
}
.team-card-featured .team-card-photo {
  width: 150px;
  height: 150px;
}
.team-card-featured .team-card-name {
  font-size: 1.8rem;
}

/* Agent card */
.team-card-agent {
  max-width: 640px;
  padding: 2.5rem 3rem;
}
.team-card-agent .team-card-photo {
  width: 100px;
  height: 100px;
}
.team-card-agent .team-card-name {
  font-size: 1.4rem;
}
.team-card-agent .team-card-bio {
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .team { padding: 5rem 2rem; }
  .team-card {
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
  }
  .team-card-content { text-align: center; }
  .team-card-certs { justify-content: center; }
}

/* ── DESTINATIONS / SPECIALTIES CARDS ── */
.destinations {
  padding: 6rem 3rem 8rem;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.destinations::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(196,152,90,0.15);
  border-radius: 50%;
}
.destinations-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.dest-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}
@media (hover: hover) {
  .dest-card:hover img { transform: scale(1.08); filter: brightness(0.8); }
}
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,30,0.85) 0%, rgba(26,26,30,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s;
}
.dest-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.dest-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.6;
  max-height: 100px;
  margin-top: 0.5rem;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.3s ease;
}
/* Only hide description behind hover on devices that support it */
@media (hover: hover) {
  .dest-desc { max-height: 0; margin-top: 0; }
  .dest-card:hover .dest-desc { max-height: 100px; margin-top: 0.5rem; }
}

@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: 1fr; max-width: 500px; }
  .dest-card { height: 380px; }
}

/* ── WHY US / FEATURES ── */
.features {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.feature-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover,
.feature-card:focus-visible { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.feature-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  line-height: 1;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.feature-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 900px) {
  .features-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ── BLOG SECTION ── */
.blog-section {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: calc(1rem - 1px) calc(2.5rem - 1px);
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus-visible { border-color: var(--gold); color: var(--gold); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover,
.blog-card:focus-visible { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.blog-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.blog-card-featured {
  grid-row: 1 / 3;
}
.blog-card-featured .blog-card-img { height: 100%; min-height: 300px; }
.blog-card-featured .blog-card-body { flex: 1; }
.blog-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .blog-card:hover .blog-card-img img { transform: scale(1.05); }
}
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.blog-card-featured .blog-card-title { font-size: 1.6rem; }
.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
  flex: 1;
}
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sea);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.blog-read-more:hover,
.blog-read-more:focus-visible { color: var(--gold); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-row: auto; }
  .blog-card-featured .blog-card-img { height: 250px; min-height: auto; }
}

/* ── SHARE YOUR STORY CTA ── */
.story-cta {
  background: var(--sand);
  padding: 6rem 3rem;
  overflow: hidden;
}
.story-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-cta-content { max-width: 500px; }
.story-cta-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.story-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.story-card:hover { transform: translateX(8px); }
.story-card-1 { transform: translateX(0); }
.story-card-2 { transform: translateX(30px); }
.story-card-3 { transform: translateX(15px); }
.story-card-2:hover { transform: translateX(38px); }
.story-card-3:hover { transform: translateX(23px); }
.story-card-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sea);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  overflow: hidden;
}
.story-card-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.story-card-dest {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}
.story-card-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .story-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-card-2, .story-card-3 { transform: translateX(0); }
  .story-card-2:hover, .story-card-3:hover { transform: translateX(8px); }
}

/* ── TESTIMONIAL ── */
.testimonial {
  position: relative;
  padding: 8rem 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(27, 63, 74, 0.9) 0%, rgba(26, 26, 30, 0.92) 100%);
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.testimonial-quote {
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(196, 152, 90, 0.4);
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-avatar-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* ── PARTNERS & BOOKING ── */
.partners-section {
  padding: 8rem 0;
  background: var(--ink);
  overflow: hidden;
}
.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.partners-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}
.partners-header .section-tag { color: var(--gold-light); }
.partners-header .section-title { color: var(--white); }
.partners-header .section-title em { color: var(--gold-light); }
.partners-header .about-text { color: rgba(255,255,255,0.75); }

.partner-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Large featured partner card */
.partner-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--sea-deep);
}
.partner-feature-img {
  position: relative;
  overflow: hidden;
}
.partner-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
@media (hover: hover) {
  .partner-feature:hover .partner-feature-img img { transform: scale(1.05); }
}
.partner-feature-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--sea-deep) 100%);
}
.partner-feature-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 152, 90, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  width: fit-content;
}
.partner-feature-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.partner-feature-name em {
  font-style: italic;
  color: var(--gold-light);
}
.partner-feature-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 1.8rem;
  max-width: 420px;
}
.partner-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.partner-feature-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-weight: 400;
}
.partner-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: all 0.4s ease;
  width: fit-content;
}
.partner-feature-cta:hover,
.partner-feature-cta:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

/* Two-column partner row */
.partner-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.partner-card-v2 {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sea-deep);
  cursor: pointer;
}
.partner-card-v2 img {
  width: 100%; height: 540px;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 6s ease;
  flex-shrink: 0;
}
@media (hover: hover) {
  .partner-card-v2:hover img { transform: scale(1.08); }
}
.partner-card-v2-overlay {
  position: relative;
  background: var(--sea-deep);
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  flex: 1;
  margin-top: -3rem;
  z-index: 1;
}
.partner-card-v2-overlay::before {
  content: '';
  position: absolute;
  top: -4rem;
  left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(27,63,74,0), rgba(27,63,74,1));
  z-index: 0;
  pointer-events: none;
}
.partner-card-v2:hover .partner-card-v2-overlay {
  background: var(--sea-deep);
}
.partner-card-v2-badge {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.partner-card-v2-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.partner-card-v2-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.partner-card-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.partner-card-v2-tags span {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.partner-card-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}
.partner-card-v2-cta:hover,
.partner-card-v2-cta:focus-visible { color: var(--white); }
.partner-card-v2-cta svg { transition: transform 0.3s; }
.partner-card-v2:hover .partner-card-v2-cta svg { transform: translateX(4px); }

/* Flights banner */
.partner-flights {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-deep) 100%);
  border-radius: 4px;
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.partner-flights::before {
  content: '\2708';
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.06;
}
.partner-flights-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.partner-flights-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.partner-flights-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 500px;
}

/* Three-column compact partner row */
.partner-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.partner-card-compact {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sea-deep);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.partner-card-compact:hover,
.partner-card-compact:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.partner-card-compact:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.partner-card-compact-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.partner-card-compact-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
@media (hover: hover) {
  .partner-card-compact:hover .partner-card-compact-img img { transform: scale(1.08); }
}
.partner-card-compact-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--sea-deep) 100%);
}
.partner-card-compact-body {
  padding: 1.5rem 2rem 2rem;
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}
.partner-card-compact-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.partner-card-compact-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.partner-card-compact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}
.partner-card-compact-cta:hover,
.partner-card-compact-cta:focus-visible { color: var(--white); }
.partner-card-compact-cta svg { transition: transform 0.3s; }
.partner-card-compact:hover .partner-card-compact-cta svg { transform: translateX(4px); }

@media (max-width: 968px) {
  .partner-feature { grid-template-columns: 1fr; min-height: auto; }
  .partner-feature-img { height: 300px; }
  .partner-feature-img::after {
    background: linear-gradient(180deg, transparent 60%, var(--sea-deep) 100%);
  }
  .partner-feature-content { padding: 2.5rem; }
  .partner-feature-name { font-size: 2rem; }
  .partner-duo { grid-template-columns: 1fr; }
  .partner-trio { grid-template-columns: 1fr; }
  .partner-flights-content { flex-direction: column; text-align: center; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(196,152,90,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner { max-width: 650px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; color: var(--sea); }
.cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.cta-contact {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cta-contact-item {
  text-align: center;
}
.cta-contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.cta-contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}
.cta-contact-value a { color: var(--sea); text-decoration: none; }
.cta-contact-value a:hover,
.cta-contact-value a:focus-visible { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-form-wrapper {
  max-width: 600px;
  margin: 2.5rem auto 0;
  text-align: left;
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.contact-form-wrapper .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.contact-form-wrapper .wpcf7-form > p {
  margin: 0 0 1.2rem;
}
/* Name + Email side by side */
.contact-form-wrapper .wpcf7-form > p:nth-of-type(1),
.contact-form-wrapper .wpcf7-form > p:nth-of-type(2) {
  grid-column: auto;
}
/* Phone + Trip Interest side by side */
.contact-form-wrapper .wpcf7-form > p:nth-of-type(3),
.contact-form-wrapper .wpcf7-form > p:nth-of-type(4) {
  grid-column: auto;
}
/* Message, Turnstile, submit, and response output full width */
.contact-form-wrapper .wpcf7-form > p:nth-of-type(n+5),
.contact-form-wrapper .wpcf7-form > div,
.contact-form-wrapper .wpcf7-form > fieldset,
.contact-form-wrapper .wpcf7-form > input[type="submit"],
.contact-form-wrapper .wpcf7-form > .wpcf7-submit {
  grid-column: 1 / -1;
}
.contact-form-wrapper .wpcf7-form > br {
  display: none;
}
.contact-form-wrapper .cf7-cf-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px !important;
  max-width: 100%;
  overflow: hidden;
}
.contact-form-wrapper .wpcf7-form > p:empty,
.contact-form-wrapper .wpcf7-form > p:has(> br:only-child) {
  display: none;
}
.contact-form-wrapper .wpcf7-form label,
.contact-form-wrapper label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-top: 0.3rem;
  height: auto;
  line-height: 1.4;
  box-sizing: border-box;
}
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.65);
}
.contact-form-wrapper select.has-value {
  color: var(--ink);
}
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(0, 0, 0, 0.65);
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 152, 90, 0.1);
  background: var(--white);
}
.contact-form-wrapper textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrapper .wpcf7-form input[type="submit"],
.contact-form-wrapper input[type="submit"] {
  background: var(--sea-deep);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  width: 100%;
}
.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper input[type="submit"]:focus-visible {
  background: var(--sea);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 63, 74, 0.3);
}
.contact-form-wrapper input[type="submit"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* CF7 validation messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
}
.contact-form-wrapper .wpcf7-response-output {
  grid-column: 1 / -1;
  border-radius: 2px;
  font-size: 0.85rem;
  margin: 0;
  padding: 0;
}
.contact-form-wrapper .wpcf7-response-output:not(:empty) {
  padding: 0.8rem 1rem;
  margin: 1rem 0 0;
}
@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .contact-form-wrapper .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper .wpcf7-form > p:nth-of-type(1),
  .contact-form-wrapper .wpcf7-form > p:nth-of-type(2),
  .contact-form-wrapper .wpcf7-form > p:nth-of-type(3),
  .contact-form-wrapper .wpcf7-form > p:nth-of-type(4) {
    grid-column: 1;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold-light); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
}
.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--gold-light); }
.footer-links .footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  font-weight: 300;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-desc { max-width: none; margin: 0 auto; }
  .footer-heading { margin-bottom: 0.8rem; }
  .footer-links li { margin-bottom: 0.5rem; }
  .footer-bottom { font-size: 0.7rem; }

  .specialties { gap: 2rem; padding: 3rem 1.5rem; }
  .specialties span { font-size: 0.65rem; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.5rem; }
  .hero-tag { font-size: 0.6rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
  .hero-title { margin-bottom: 1rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { font-size: 0.65rem; padding: 0.9rem 1.6rem; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ── 404 PAGE ── */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem;
  text-align: center;
  background: var(--cream);
}
.error-404-inner {
  max-width: 550px;
}
.error-404-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.error-404-title em {
  font-style: italic;
  color: var(--sea);
}
.error-404-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  background: var(--sea-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(27, 63, 74, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sticky-cta:hover,
.sticky-cta:focus-visible {
  background: var(--sea);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 63, 74, 0.4);
}
.sticky-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .sticky-cta {
    left: calc(1rem + env(safe-area-inset-left, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SINGLE POST LAYOUT ── */
.single-wrapper {
  padding-top: 120px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 5rem;
  min-height: 60vh;
}
.single-wrapper.has-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
}
.single-sidebar-sticky {
  position: sticky;
  top: 100px;
}
.single-sidebar-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .single-wrapper.has-sidebar {
    grid-template-columns: 1fr;
  }
  .single-sidebar {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2rem;
  }
  .single-sidebar-sticky {
    position: static;
  }
}

/* ── POST CONTENT TYPOGRAPHY ── */

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.post-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.post-content ul,
.post-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
}
.post-content li {
  margin-bottom: 0.5rem;
}
.post-content a {
  color: var(--sea);
  text-decoration: none;
  transition: color 0.3s;
}
.post-content a:hover,
.post-content a:focus-visible {
  color: var(--gold);
}
.post-content em {
  color: var(--ink);
}
.post-content strong {
  font-weight: 500;
  color: var(--ink);
}
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ── SCREEN READER ONLY (Accessibility) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--sea-deep);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; transform: scale(1); }
  .preloader { transition: none; }
  .preloader-line,
  .preloader-text,
  .preloader-sub { animation: none; opacity: 1; }
  .scroll-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-tag, .hero-title, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 1; animation: none; transform: none;
  }
  .dest-card img,
  .blog-card-img img,
  .partner-feature-img img,
  .partner-card-v2 img { transition: none; }
  .feature-card, .blog-card, .story-card, .nav-cta { transition: none; }
  .feature-card:hover, .blog-card:hover { transform: none; }
  .story-card:hover, .story-card-2:hover, .story-card-3:hover { transform: none; }
  .sticky-cta { transition: none; }
  .sticky-cta.visible { transform: none; }
}
