/* =========================================================
   GLOBAL.CSS
   KAYLOU Travel - Base Styles + Navigation + Hero + Cards
========================================================= */

/* =========================================================
   01 — RESET & BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  line-height: 1.6;
  background: #ffffff;
  padding-top: 80px;
}

:root {
  --space-1: clamp(8px, 1.2vw, 12px);
  --space-2: clamp(12px, 2vw, 20px);
  --space-3: clamp(18px, 3vw, 32px);

  --brand-1: #00b5d1;
  --brand-2: #007794;
  --brand-dark: #003b4a;
  --ink: #003366;
}


/* =========================================================
   01B — TYPOGRAPHY UTILITIES
========================================================= */
.no-orphan,
.balance-text,
.hero-copy,
.section-intro,
.editorial-copy,
h1,
h2,
h3,
.hero-headline,
.hero-tagline,
.card-editorial-copy h3,
.card-editorial-copy p {
  text-wrap: pretty;
}

.balance-text,
h1,
h2,
.hero-headline,
.hero-tagline {
  text-wrap: balance;
}

.editorial-copy,
.section-intro,
.hero-copy {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.editorial-copy,
.section-intro {
  color: #4f5f68;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}
/* =========================================================
   02 — HEADER
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0;
  background: rgba(3, 20, 35, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 20, 35, 0.98);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  padding: 6px 0;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   03 — LOGO
========================================================= */
.logo-area {
  position: relative;
  width: 180px;
  height: 80px;
  flex-shrink: 0;
  z-index: 1000;
}

.nav-logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: auto;
  transform-origin: top left;
  transition: height 0.3s ease;
}

.site-header.scrolled .nav-logo {
  height: 70px;
}


/* =========================================================
   04 — DESKTOP NAVIGATION
========================================================= */
.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

nav ul {
  display: flex;
  gap: clamp(8px, 1.2vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: none;
}

nav a:hover {
  color: #c8a24a;
  text-shadow: none;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #c8a24a;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta-link {
  background: #c8a24a;
  color: #06111d !important;
  padding: 8px 13px;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta-link:hover {
  background: #d8b766;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   05 — HAMBURGER + MOBILE MENU
========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 16px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 2000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.site-header.scrolled .hamburger {
  background: rgba(255, 255, 255, 0.65);
}

.site-header.scrolled .hamburger span {
  background: var(--brand-2);
  box-shadow: none;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 78%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  padding-top: 100px;
  transition: right 0.35s ease;
  z-index: 1500;
  display: none;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 30px;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 22px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--brand-2);
  font-size: 1.15rem;
  font-weight: 600;
}


/* =========================================================
   06 — HERO (GLOBAL FOUNDATION)
========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.05) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(94%, 1240px);
  text-align: center;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
}


/* =========================================================
   08 — SHARED CONTENT SECTIONS
========================================================= */
.editorial {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
}

.hero-content.loaded {
  opacity: 1;
  pointer-events: auto;
}

.page-home .hero-content {
  display: none;
}

.page-home .hero-overlay {
  display: none;
}

.page-home .hero {
  height: auto;
  min-height: 0;
  aspect-ratio: unset;
  padding-top: 0;
}

.page-home .hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-text-container {
  display: inline-block;
  max-width: min(94vw, 1180px);
  transform: translateY(-1.05em);
}

.hero-headline {
  font-family: 'Aclonica', sans-serif;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 0.96;
  font-size: clamp(3.5rem, 7vw, 7rem);
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.95),
    0 6px 14px rgba(0, 0, 0, 0.85),
    0 16px 36px rgba(0, 0, 0, 0.70);
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  max-width: min(90vw, 880px);
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* =========================================================
   07 — FADE-IN
========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.editorial h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.editorial p {
  margin: 0;
  color: #555555;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.experience-grid {
  max-width: 1240px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


/* =========================================================
   09 — SHARED CARDS
========================================================= */
.card {
  position: relative;
  min-height: clamp(420px, 42vw, 540px);
  background: #ffffff;
  border: 1px solid rgba(0, 59, 74, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 28, 40, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 148, 0.16);
  box-shadow: 0 18px 38px rgba(0, 28, 40, 0.12);
}

.card-editorial-link {
  position: absolute;
  inset: 0;
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.card-editorial-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.card:hover .card-editorial-link img {
  transform: scale(1.035);
}

.card-editorial-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.64) 0%, rgba(0, 18, 27, 0.50) 28%, rgba(0, 26, 38, 0.16) 64%, rgba(0, 26, 38, 0.02) 100%),
    linear-gradient(135deg, rgba(0, 59, 74, 0.08) 0%, rgba(200, 162, 74, 0.05) 100%);
  transition: background 0.35s ease;
}

.card:hover .card-editorial-overlay {
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.68) 0%, rgba(0, 18, 27, 0.52) 30%, rgba(0, 26, 38, 0.18) 66%, rgba(0, 26, 38, 0.03) 100%),
    linear-gradient(135deg, rgba(0, 59, 74, 0.09) 0%, rgba(200, 162, 74, 0.06) 100%);
}

.card-editorial-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 34px);
}

.card-editorial-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(232, 199, 110, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-editorial-copy h3 {
  max-width: 520px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
}

.card-editorial-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.62;
  text-wrap: pretty;
}

.card-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #e8f1f4;
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.card:hover .card-image img {
  transform: scale(1.035);
}

.card-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(0, 18, 27, 0.52) 0%, rgba(0, 18, 27, 0.12) 68%, rgba(0, 18, 27, 0) 100%);
  z-index: 2;
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 27, 0.58) 0%, rgba(0, 18, 27, 0.16) 54%, rgba(0, 18, 27, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

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

.card-tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(0, 39, 54, 0.74);
  color: #ffffff;
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 4;
}

.card-body {
  padding: 24px 24px 26px;
  text-align: left;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.24rem, 1.8vw, 1.48rem);
  line-height: 1.2;
  color: var(--brand-dark);
}

.card-body p {
  margin: 0 0 20px;
  color: #555555;
  line-height: 1.68;
}

.card-link {
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--brand-1);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.card-link:hover {
  color: var(--brand-1);
  border-color: var(--brand-2);
}


/* =========================================================
   09B — FEATURED JOURNEY
========================================================= */
.featured-journey {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) 20px clamp(64px, 7vw, 96px);
}

.featured-journey-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 59, 74, 0.10);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 252, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(0, 28, 40, 0.09);
}

.featured-journey-card[role="button"] {
  cursor: pointer;
}

.featured-journey-card[role="button"]:focus-visible {
  outline: 3px solid rgba(0, 181, 209, 0.42);
  outline-offset: 4px;
}

.featured-journey-media-shell {
  align-self: center;
}

.featured-journey-logo {
  min-height: 82px;
  margin: 14px 18px 10px;
  padding: 5px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 59, 74, 0.08);
}

.featured-journey-logo img {
  display: block;
  max-width: 300px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.featured-journey-media {
  position: relative;
  margin: 0 18px 16px;
  min-height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #e5f1f5;
}

.featured-journey-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 18, 27, 0.32), rgba(0, 18, 27, 0));
  pointer-events: none;
}

.featured-journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  display: block;
  transition: transform 0.65s ease;
}

.featured-journey-card:hover .featured-journey-media img {
  transform: scale(1.025);
}

.featured-journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 60px);
}

.featured-journey-eyebrow {
  margin-bottom: 12px;
  color: #0b6d89;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-journey-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.featured-journey-copy h3 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.22;
  text-wrap: balance;
}

.featured-journey-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #4f5f68;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.featured-journey-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 119, 148, 0.10);
  color: var(--brand-2);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.featured-journey-link:hover {
  background: var(--brand-2);
  color: #ffffff;
  transform: translateY(-2px);
}

.featured-journey-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 24px;
}

.featured-journey-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.featured-journey-detail span {
  color: #71808a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-journey-detail strong {
  color: #1d2f3c;
  font-size: 0.95rem;
  line-height: 1.35;
}

.featured-journey-note {
  margin: -2px 0 22px;
  padding: 12px 14px;
  border-left: 3px solid rgba(200, 162, 74, 0.82);
  border-radius: 10px;
  background: rgba(200, 162, 74, 0.12);
  color: #314756;
  font-size: 0.95rem;
  line-height: 1.55;
}

.featured-journey-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  color: #123c72;
}

.featured-journey-price .price-label,
.featured-journey-price .price-person {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-journey-price .price-amount {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}


/* =========================================================
   09C — SHARED DETAIL MODAL
========================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 860px;
  width: min(94vw, 860px);
  max-height: 90vh;
  border-radius: 18px;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #003b4a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.modal-hero {
  position: relative;
  width: 100%;
  height: clamp(240px, 40vw, 390px);
  background: linear-gradient(180deg, #eef5f8 0%, #dfe9ee 100%);
  overflow: hidden;
}

.modal-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 27, 40, 0.52) 0%,
    rgba(0, 27, 40, 0.14) 45%,
    rgba(0, 27, 40, 0.04) 100%
  );
}

.modal-hero-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: 190px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.modal-hero-logo img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.modal-hero-destination {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 36px);
  width: fit-content;
  display: inline-block;
  background: rgba(0, 39, 54, 0.78);
  color: #ffffff;
  padding: 9px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-copy {
  padding: clamp(20px, 4vw, 34px);
}

.modal-title {
  margin: 0 0 6px;
  color: #003366;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.modal-subtitle {
  margin: 0 0 18px;
  color: #5b6670;
  font-size: 1rem;
}

.modal-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid rgba(200, 162, 74, 0.82);
  border-radius: 10px;
  background: rgba(200, 162, 74, 0.12);
  color: #314756;
  line-height: 1.55;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 16px;
}

.modal-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.modal-label {
  color: #6f7d87;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-value {
  color: #1d2f3c;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.modal-itinerary {
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  padding-top: 14px;
  margin-top: 0;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  margin-top: 16px;
  padding-top: 14px;
  flex-wrap: wrap;
}

.modal-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-price {
  color: #123c72;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.modal-price-person {
  color: #6f7d87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-ad-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 109, 137, 0.10);
  color: #0b6d89;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   10 — WAVE DIVIDER
========================================================= */
.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider path {
  fill: #031423;
}


/* =========================================================
   11 — FOOTER
========================================================= */
.site-footer {
  position: relative;
  background: #031423;
  color: #ffffff;
  padding: 18px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-inner > * {
  margin: 6px 0;
}

.trust-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0;
}

.modern-clia {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(200, 162, 74, 0.42);
}

.footer-contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #c8a24a;
  text-decoration: underline;
}

.site-footer .footer-facebook {
  position: absolute !important;
  right: max(20px, calc((100vw - 1200px) / 2 + 20px));
  top: 50%;
  bottom: auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 999px;
  background: transparent;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateY(-50%);
  z-index: 2;
}

.site-footer .footer-facebook:hover {
  transform: translateY(-52%);
  opacity: 0.86;
}

.site-footer .footer-facebook img {
  display: block;
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.page-contact .site-footer .footer-facebook--contact {
  position: absolute !important;
  right: max(20px, calc((100vw - 1200px) / 2 + 20px)) !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.34));
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  z-index: 5;
}

.page-contact .site-footer .footer-facebook--contact:hover {
  transform: translateY(calc(-50% - 4px));
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.40));
  opacity: 0.92;
}

.page-contact .site-footer .footer-facebook--contact img {
  display: block;
  width: 75px !important;
  height: 75px !important;
  object-fit: contain;
}

.page-contact .site-footer .footer-facebook--contact span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.footer-meta {
  opacity: 0.85;
  font-size: 0.95rem;
}


/* =========================================================
   12 — MOBILE CTA BAR
========================================================= */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--brand-1);
  text-align: center;
  padding: 14px 0;
  z-index: 2000;
}

.mobile-cta-bar a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}


/* =========================================================
   13 — RESPONSIVE
========================================================= */
@media (min-width: 1200px) {
  .hero {
    height: 72vh;
    min-height: 500px;
  }
}

@media (min-width: 1600px) {
  .hero {
    height: 78vh;
    min-height: 560px;
  }
}

@media (min-width: 981px) {
  nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 980px),
       (hover: none) and (pointer: coarse) {
  nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: block !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 90px;
  }
}

@media (max-width: 768px) {
  .fade-in {
    opacity: 1;
    transform: none;
  }

  main {
    padding-bottom: 80px;
  }

  .site-footer .footer-facebook {
    width: 54px;
    height: 54px;
    right: 14px;
  }

  .site-footer .footer-facebook img {
    width: 54px;
    height: 54px;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    height: 72px;
    padding: 6px 0;
  }

  .logo-area {
    width: 150px;
    height: 60px;
  }

  .nav-logo {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    height: 60px !important;
    width: auto;
    max-width: 150px;
    transform: none !important;
  }

  .site-header.scrolled .nav-logo {
    height: 56px !important;
  }

  .hero {
    height: 52vh;
    min-height: 340px;
    padding-top: 0;
  }

  .hero-text-container {
    transform: translateY(-0.8em);
  }

  .hero-headline {
    font-size: clamp(2.6rem, 13vw, 4.25rem);
    letter-spacing: 0.02em;
    line-height: 0.98;
  }

  .hero-tagline {
    max-width: min(92%, 760px);
  }

  .featured-journey {
    padding-top: 10px;
  }

  .featured-journey-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .featured-journey-media {
    margin: 0 14px 14px;
    aspect-ratio: 16 / 10;
    min-height: auto;
    border-radius: 14px;
  }

  .featured-journey-logo {
    min-height: 70px;
    margin: 12px 14px 10px;
    padding: 4px 10px;
  }

  .featured-journey-logo img {
    max-width: 260px;
    max-height: 68px;
  }

  .featured-journey-copy {
    padding: 28px 22px 30px;
  }

  .featured-journey-details {
    grid-template-columns: 1fr;
  }

  .featured-journey-price {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .featured-journey-link {
    width: 100%;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
  }

  .modal.open {
    align-items: flex-start;
  }

  .modal-content {
    width: min(96vw, 860px);
    max-height: none;
  }

  .modal-hero {
    height: 220px;
  }

  .modal-hero-logo {
    max-width: 150px;
  }

  .modal-hero-destination {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .modal-footer {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .hero {
    height: 52vh;
    min-height: 340px;
  }

  .hero-headline {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    letter-spacing: 0.025em;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 600px) {
    .mobile-menu {
      height: 100dvh;
    }
  }
}
/* =========================================================
   14 — KAYLOU XPEDITIONS CLUB LANDING PAGE
========================================================= */
.page-xpeditions-club {
  background: #06111d;
  color: #f7f3ea;
}

.kx-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(143, 190, 214, 0.12), transparent 34%),
    linear-gradient(180deg, #06111d 0%, #0b1f3a 42%, #f7f3ea 42%, #ffffff 100%);
}

.kx-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(102px, 12vw, 148px) 20px clamp(62px, 8vw, 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.96) 0%, rgba(6, 17, 29, 0.82) 47%, rgba(6, 17, 29, 0.38) 100%),
    linear-gradient(to top, rgba(2, 10, 18, 0.86) 0%, rgba(2, 10, 18, 0.08) 58%),
    url("../images/expedition-thumb.webp") 56% center / cover no-repeat;
  color: #ffffff;
}

.kx-hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.kx-hero-logo {
  width: min(300px, 70vw);
  margin-bottom: clamp(18px, 3vw, 30px);
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.58));
}

.kx-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #c8a24a;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kx-hero h1 {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.72);
}

.kx-hero-subhead {
  max-width: 880px;
  margin: 22px 0 0;
  color: rgba(247, 243, 234, 0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.62;
  text-wrap: balance;
}

.kx-hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: #c8a24a;
  color: #06111d;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(200, 162, 74, 0.24);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.kx-button:hover,
.kx-button:focus-visible {
  background: #d8b766;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200, 162, 74, 0.32);
}

.kx-secondary-line {
  max-width: 460px;
  color: rgba(247, 243, 234, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.kx-hero-card {
  max-width: 430px;
  justify-self: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(6, 17, 29, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.kx-club-logo {
  width: min(100%, 360px);
  margin: 0 auto 22px;
  display: block;
}

.kx-hero-card p {
  margin: 0;
  color: rgba(247, 243, 234, 0.88);
  line-height: 1.75;
  text-wrap: pretty;
}

.kx-section {
  padding: clamp(52px, 7vw, 88px) 20px;
}

.kx-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.kx-section-header {
  max-width: 1000px;
  margin: 0 auto 32px;
  text-align: center;
}

.kx-section-header h2,
.kx-copy h2,
.kx-feature-copy h2,
.kx-form-panel h2 {
  margin: 0 0 14px;
  color: #0b1f3a;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.12;
}

.kx-section-header p,
.kx-copy p,
.kx-feature-copy p,
.kx-form-panel p {
  margin: 0;
  color: #475766;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.8;
}

.kx-problem {
  background: #f7f3ea;
}

.kx-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.kx-list-card {
  margin-top: clamp(46px, 5vw, 68px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: 18px;
  background: linear-gradient(135deg, #06111d 0%, #102a43 100%);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.kx-benefit-list,
.kx-vote-list,
.kx-expedition-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.kx-benefit-list li,
.kx-expedition-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.kx-benefit-list li::before,
.kx-expedition-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c8a24a;
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.16);
}

.kx-about {
  background:
    linear-gradient(180deg, #f7f3ea 0%, #ffffff 100%);
}

.kx-about-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 243, 234, 0.99) 100%);
  border: 1px solid rgba(11, 31, 58, 0.18);
  box-shadow: 0 22px 48px rgba(6, 17, 29, 0.14);
  text-align: center;
}

.kx-about-card h2 {
  color: #04121f;
}

.kx-about-card p {
  color: #1d3143;
}

.kx-about-card img {
  width: min(440px, 86vw);
  margin: 0 auto 24px;
  display: block;
}

.kx-feature {
  background:
    radial-gradient(circle at 12% 10%, rgba(143, 190, 214, 0.12), transparent 28%),
    linear-gradient(135deg, #06111d 0%, #102a43 100%);
  color: #ffffff;
}

.kx-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.kx-feature-media {
  min-height: clamp(280px, 40vw, 470px);
  border-radius: 22px;
  background:
    linear-gradient(to top, rgba(6, 17, 29, 0.58), rgba(6, 17, 29, 0.08)),
    url("../images/cruises/iceland.webp") center / cover no-repeat;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.kx-feature-copy h2,
.kx-feature-copy p {
  color: #ffffff;
}

.kx-feature-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.kx-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid #c8a24a;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.kx-why {
  background: #ffffff;
}

.kx-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kx-why-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.kx-why-card strong {
  display: block;
  color: #0b1f3a;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.kx-voting {
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 190, 214, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f3ea 0%, #ffffff 100%);
}

.kx-vote-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kx-vote-list li {
  padding: 14px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0b1f3a;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.kx-poll-panel {
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 162, 74, 0.14), transparent 34%),
    linear-gradient(135deg, #06111d 0%, #102a43 100%);
  border: 1px solid rgba(247, 243, 234, 0.13);
  box-shadow: 0 24px 54px rgba(6, 17, 29, 0.2);
  color: #f7f3ea;
}

.kx-poll-header {
  max-width: 900px;
  margin: 0 auto clamp(20px, 3vw, 28px);
  text-align: center;
}

.kx-poll-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.1;
  text-wrap: balance;
}

.kx-poll-header p {
  max-width: 900px;
  margin: 0 auto 12px;
  color: rgba(247, 243, 234, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.kx-poll-note,
.kx-poll-status {
  display: inline-flex;
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.kx-poll-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kx-poll-tile {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(247, 243, 234, 0.13);
  color: rgba(247, 243, 234, 0.88);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.kx-poll-tile:hover,
.kx-poll-tile:focus-within {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(200, 162, 74, 0.44);
  transform: translateY(-2px);
}

.kx-poll-tile input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  accent-color: #c8a24a;
}

.kx-poll-actions {
  margin-top: clamp(20px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kx-poll-fields {
  margin-top: clamp(18px, 3vw, 26px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kx-poll-field {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kx-poll-field em {
  color: rgba(247, 243, 234, 0.58);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.kx-poll-field input,
.kx-poll-field select,
.kx-poll-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.085);
  color: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: none;
}

.kx-poll-field select option {
  color: #06111d;
}

.kx-poll-field textarea {
  min-height: 92px;
  resize: vertical;
}

.kx-poll-field input::placeholder,
.kx-poll-field textarea::placeholder {
  color: rgba(247, 243, 234, 0.46);
}

.kx-poll-field input:focus,
.kx-poll-field select:focus,
.kx-poll-field textarea:focus {
  outline: 3px solid rgba(200, 162, 74, 0.2);
  border-color: rgba(200, 162, 74, 0.56);
}

.kx-poll-field--wide {
  grid-column: 1 / -1;
}

.kx-poll-result-note {
  margin: 16px auto 0;
  max-width: 760px;
  color: rgba(247, 243, 234, 0.64);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

.kx-signup {
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 162, 74, 0.12), transparent 30%),
    linear-gradient(135deg, #06111d 0%, #102a43 100%);
  color: #ffffff;
}

.kx-form-panel {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 22px;
  background: #ffffff;
  color: #0b1f3a;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.kx-form-panel > p {
  margin-bottom: 28px;
}

.kx-form {
  display: grid;
  gap: 20px;
}

.kx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kx-field,
.kx-fieldset {
  display: grid;
  gap: 8px;
}

.kx-field label,
.kx-fieldset legend {
  color: #222222;
  font-size: 0.88rem;
  font-weight: 800;
}

.kx-field input,
.kx-field select,
.kx-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cfd5d8;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.kx-field textarea {
  min-height: 120px;
  resize: vertical;
}

.kx-field input:focus,
.kx-field select:focus,
.kx-field textarea:focus {
  outline: 3px solid rgba(200, 162, 74, 0.22);
  border-color: #c8a24a;
}

.kx-fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid #dfe4e6;
  border-radius: 14px;
}

.kx-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kx-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f7f5f1;
  color: #222222;
  font-size: 0.92rem;
  font-weight: 600;
}

.kx-choice input {
  accent-color: #c8a24a;
}

.kx-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kx-form-hint {
  color: #68737a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.kx-disclaimer {
  background: #f7f3ea;
  padding: 24px 20px 36px;
}

.kx-disclaimer p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: #667078;
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 920px) {
  .kx-hero-inner,
  .kx-two-column,
  .kx-feature-grid {
    grid-template-columns: 1fr;
  }

  .kx-hero {
    min-height: auto;
  }

  .kx-hero-card {
    justify-self: start;
    max-width: 520px;
  }

  .kx-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kx-vote-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kx-poll-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kx-poll-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kx-hero {
    padding-top: 72px;
  }

  .kx-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .kx-hero-logo {
    width: min(340px, 90vw);
  }

  .kx-form-grid,
  .kx-why-grid,
  .kx-vote-list,
  .kx-poll-grid {
    grid-template-columns: 1fr;
  }

  .kx-choice-group {
    flex-direction: column;
    align-items: stretch;
  }

  .kx-choice {
    border-radius: 12px;
  }

  .kx-button {
    width: 100%;
  }

  .kx-form-actions {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .page-contact .site-footer .footer-facebook--contact {
    right: 14px !important;
    width: 86px !important;
    height: auto !important;
  }

  .page-contact .site-footer .footer-facebook--contact img {
    width: 56px !important;
    height: 56px !important;
  }

  .page-contact .site-footer .footer-facebook--contact span {
    font-size: 0.68rem;
  }
}
/* =========================================================
   FOOTER FACEBOOK FINAL
========================================================= */
.site-footer {
  position: relative;
  background: #031423;
  color: #ffffff;
}

.site-footer .footer-facebook {
  position: absolute !important;
  right: max(20px, calc((100vw - 1200px) / 2 + 20px)) !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none !important;
  transform: translateY(-50%);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.34));
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  z-index: 5;
}

.site-footer .footer-facebook:hover {
  transform: translateY(calc(-50% - 4px));
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.40));
  opacity: 0.94;
}

.site-footer .footer-facebook img {
  display: block;
  width: 75px !important;
  height: 75px !important;
  object-fit: contain;
}

.site-footer .footer-facebook span,
.site-footer .footer-facebook:visited span,
.site-footer .footer-facebook:hover span {
  display: block;
  margin-top: 4px;
  color: #ffffff !important;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .site-footer .footer-facebook {
    right: 14px !important;
    width: 86px !important;
  }

  .site-footer .footer-facebook img {
    width: 56px !important;
    height: 56px !important;
  }

  .site-footer .footer-facebook span {
    font-size: 0.68rem;
  }
}
/* =========================================================
   MOBILE FOOTER FACEBOOK FINAL
========================================================= */
@media (max-width: 768px) {
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer .footer-inner {
    order: 2;
    width: 100%;
  }

  .site-footer .footer-facebook {
    position: static !important;
    order: 1;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 92px !important;
    height: auto !important;
    margin: 0 auto 12px !important;
    transform: none !important;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
  }

  .site-footer .footer-facebook:hover {
    transform: translateY(-2px) !important;
  }

  .site-footer .footer-facebook img {
    width: 56px !important;
    height: 56px !important;
  }

  .site-footer .footer-facebook span {
    color: #ffffff !important;
    font-size: 0.68rem;
    line-height: 1.15;
  }
}

/* =========================================================
   KAYLOU FOOTER REDESIGN
========================================================= */
.site-footer {
  background: #031423;
  color: #ffffff;
  padding: 20px 20px;
  text-align: center;
}

.footer-inner.footer-layout {
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(110px, 0.72fr) minmax(340px, 2fr) minmax(110px, 0.72fr);
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
}

.footer-inner.footer-layout > * {
  margin: 0;
}

.footer-column {
  min-width: 0;
  display: flex;
  align-items: center;
}

.footer-column--badge {
  justify-content: flex-start;
}

.footer-column--center {
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.footer-column--social {
  justify-content: flex-end;
}

.footer-acc-badge {
  display: block;
  width: clamp(85px, 8vw, 100px);
  height: auto;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .trust-line {
  margin: 0;
  gap: 12px 16px;
}

.site-footer .trust-item {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .trust-icon {
  color: #c8a24a;
  font-weight: 800;
}

.site-footer .footer-contact {
  margin: 4px 0 0;
}

.site-footer .footer-contact a,
.site-footer .footer-contact a:visited {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .footer-contact a:hover {
  color: #c8a24a;
  text-decoration: underline;
}

.site-footer .footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer .footer-facebook {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  transform: none !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.site-footer .footer-facebook:hover {
  transform: translateY(-2px) !important;
  opacity: 0.94;
  filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.34));
}

.site-footer .footer-facebook img {
  display: block;
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
}

.site-footer .footer-facebook span,
.site-footer .footer-facebook:visited span,
.site-footer .footer-facebook:hover span {
  display: block;
  margin-top: 4px;
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 22px 20px 24px;
  }

  .footer-inner.footer-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-column,
  .footer-column--badge,
  .footer-column--center,
  .footer-column--social {
    justify-content: center;
    width: 100%;
  }

  .footer-acc-badge {
    width: 88px;
  }

  .site-footer .trust-line {
    flex-direction: column;
    gap: 5px;
  }

  .site-footer .footer-facebook img {
    width: 66px !important;
    height: 66px !important;
  }
}








/* =========================================================
   15 — TYPOGRAPHY RESPONSIVE REFINEMENTS
========================================================= */
@media (max-width: 768px) {
  h2,
  .editorial h2,
  .section-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-tagline,
  .hero-copy,
  .section-intro,
  .editorial-copy {
    font-size: clamp(1.05rem, 4.2vw, 1.15rem);
    line-height: 1.5;
  }
}

/* =========================================================
   KAYLOU FOOTER FINAL POLISH
========================================================= */
.trust-icon {
  color: #c8a24a;
  font-weight: 700;
}

.footer-acc-badge {
  border: 2px solid #c8a24a;
  border-radius: 10px;
  padding: 4px;
  background: #ffffff;
}


