/*
Theme Name: Kili Summit Tours
Theme URI: https://kilisummit.com
Author: Kili Summit Tours
Description: Premium WordPress theme for Climbing Kilimanjaro Tours - Conquer Africa's highest peak with expert guides.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kili-summit
Tags: one-column, custom-menu, featured-images, full-width-template

Kili Summit Tours - Kilimanjaro Climbing Expeditions WordPress Theme.
*/

/* === DESIGN TOKENS === */
:root {
  /* Primary Palette */
  --kst-navy: #22303f;
  --kst-navy-light: #2d3e4f;
  --kst-navy-dark: #1a2530;
  --kst-gray: #e7e8e7;
  --kst-gray-light: #f4f5f4;
  --kst-gray-dark: #c8c9c8;
  --kst-sky: #8fbfda;
  --kst-sky-light: #b3d4e8;
  --kst-sky-dark: #6ba9cc;
  --kst-ocean: #2c6485;
  --kst-ocean-light: #3a7a9f;
  --kst-ocean-dark: #1e4a63;
  --kst-slate: #394a56;
  --kst-slate-light: #4d6170;
  --kst-slate-dark: #283540;

  /* Semantic Colors */
  --kst-text-primary: #22303f;
  --kst-text-secondary: #394a56;
  --kst-text-muted: #6b7c8a;
  --kst-text-inverse: #ffffff;
  --kst-bg-primary: #ffffff;
  --kst-bg-secondary: #f4f5f4;
  --kst-bg-dark: #22303f;
  --kst-accent: #2c6485;
  --kst-accent-hover: #3a7a9f;

  /* Typography Scale */
  --kst-font-display: 'Outfit', system-ui, sans-serif;
  --kst-font-body: 'Source Sans 3', system-ui, sans-serif;
  --kst-text-xs: 0.75rem;
  --kst-text-sm: 0.875rem;
  --kst-text-base: 1rem;
  --kst-text-lg: 1.125rem;
  --kst-text-xl: 1.25rem;
  --kst-text-2xl: 1.5rem;
  --kst-text-3xl: 2rem;
  --kst-text-4xl: 2.5rem;
  --kst-text-5xl: 3.5rem;
  --kst-text-6xl: 4.5rem;

  /* Spacing Scale */
  --kst-space-1: 0.25rem;
  --kst-space-2: 0.5rem;
  --kst-space-3: 0.75rem;
  --kst-space-4: 1rem;
  --kst-space-5: 1.25rem;
  --kst-space-6: 1.5rem;
  --kst-space-8: 2rem;
  --kst-space-10: 2.5rem;
  --kst-space-12: 3rem;
  --kst-space-16: 4rem;
  --kst-space-20: 5rem;
  --kst-space-24: 6rem;

  /* Border Radius */
  --kst-radius-sm: 0.25rem;
  --kst-radius-md: 0.5rem;
  --kst-radius-lg: 0.75rem;
  --kst-radius-xl: 1rem;
  --kst-radius-full: 9999px;

  /* Shadows */
  --kst-shadow-sm: 0 1px 2px rgba(34, 48, 63, 0.05);
  --kst-shadow-md: 0 4px 12px rgba(34, 48, 63, 0.1);
  --kst-shadow-lg: 0 8px 24px rgba(34, 48, 63, 0.15);
  --kst-shadow-xl: 0 16px 48px rgba(34, 48, 63, 0.2);

  /* Transitions */
  --kst-transition-fast: 150ms ease;
  --kst-transition-base: 250ms ease;
  --kst-transition-slow: 400ms ease;
}

/* === BASE RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--kst-font-body);
  font-size: var(--kst-text-base);
  line-height: 1.7;
  color: var(--kst-text-primary);
  background-color: var(--kst-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--kst-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--kst-navy);
}

h1 { font-size: var(--kst-text-5xl); }
h2 { font-size: var(--kst-text-4xl); }
h3 { font-size: var(--kst-text-2xl); }
h4 { font-size: var(--kst-text-xl); }
h5 { font-size: var(--kst-text-lg); }
h6 { font-size: var(--kst-text-base); }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--kst-transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === LAYOUT UTILITIES === */
.kst-wrapper {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--kst-space-4);
}

@media (min-width: 768px) {
  .kst-wrapper { padding-inline: var(--kst-space-6); }
}

@media (min-width: 1024px) {
  .kst-wrapper { padding-inline: var(--kst-space-8); }
}

.kst-grid {
  display: grid;
  gap: var(--kst-space-6);
}

.kst-flex {
  display: flex;
}

.kst-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === BUTTONS === */
.kst-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--kst-space-2);
  padding: var(--kst-space-3) var(--kst-space-6);
  font-family: var(--kst-font-display);
  font-weight: 600;
  font-size: var(--kst-text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--kst-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--kst-transition-base);
}

.kst-action--primary {
  background: linear-gradient(135deg, var(--kst-ocean) 0%, var(--kst-ocean-dark) 100%);
  color: var(--kst-text-inverse);
  box-shadow: 0 4px 14px rgba(44, 100, 133, 0.35);
}

.kst-action--primary:hover {
  background: linear-gradient(135deg, var(--kst-ocean-light) 0%, var(--kst-ocean) 100%);
  box-shadow: 0 6px 20px rgba(44, 100, 133, 0.5);
  transform: translateY(-2px);
}

.kst-action--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--kst-text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.kst-action--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.kst-action--outline {
  background: transparent;
  color: var(--kst-ocean);
  border: 2px solid var(--kst-ocean);
}

.kst-action--outline:hover {
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
}

.kst-action--light {
  background: var(--kst-text-inverse);
  color: var(--kst-navy);
}

.kst-action--light:hover {
  background: var(--kst-gray);
}

/* === MASTHEAD (Header) === */
.kst-topstrip {
  background: var(--kst-navy-dark);
  color: var(--kst-gray);
  padding: var(--kst-space-2) 0;
  font-size: var(--kst-text-xs);
  letter-spacing: 0.05em;
}

.kst-topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kst-topstrip__contact {
  display: flex;
  gap: var(--kst-space-6);
}

.kst-topstrip__item {
  display: flex;
  align-items: center;
  gap: var(--kst-space-2);
}

.kst-topstrip__social {
  display: none;
  gap: var(--kst-space-4);
}

@media (min-width: 768px) {
  .kst-topstrip__social { display: flex; }
}

.kst-topstrip__social a {
  color: var(--kst-gray);
  transition: color var(--kst-transition-fast);
}

.kst-topstrip__social a:hover {
  color: var(--kst-sky);
}

.kst-masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--kst-transition-base);
}

.kst-masthead--scrolled {
  background: rgba(34, 48, 63, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--kst-shadow-lg);
}

.kst-masthead__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--kst-space-4) 0;
}

.kst-masthead__brand {
  display: flex;
  align-items: center;
  gap: var(--kst-space-3);
}

.kst-masthead__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--kst-sky) 0%, var(--kst-ocean) 100%);
  border-radius: var(--kst-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kst-text-inverse);
  box-shadow: var(--kst-shadow-md);
}

.kst-masthead__title {
  display: flex;
  flex-direction: column;
}

.kst-masthead__name {
  font-family: var(--kst-font-display);
  font-weight: 800;
  font-size: var(--kst-text-xl);
  color: var(--kst-text-inverse);
  line-height: 1.1;
}

.kst-masthead__slogan {
  font-size: var(--kst-text-xs);
  color: var(--kst-sky);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.kst-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .kst-navigation {
    display: flex;
    align-items: center;
    gap: var(--kst-space-8);
  }
}

.kst-navigation__menu {
  display: flex;
  gap: var(--kst-space-6);
  list-style: none;
}

.kst-navigation__link {
  position: relative;
  color: var(--kst-text-inverse);
  font-family: var(--kst-font-display);
  font-weight: 500;
  font-size: var(--kst-text-sm);
  padding: var(--kst-space-2) 0;
}

.kst-navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kst-sky);
  transition: width var(--kst-transition-base);
}

.kst-navigation__link:hover::after {
  width: 100%;
}

.kst-navigation__link:hover {
  color: var(--kst-sky);
}

.kst-drawer-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--kst-text-inverse);
  cursor: pointer;
  padding: var(--kst-space-2);
}

@media (min-width: 1024px) {
  .kst-drawer-toggle { display: none; }
}

/* Mobile Drawer */
.kst-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--kst-navy);
  z-index: 2000;
  transition: right var(--kst-transition-base);
  overflow-y: auto;
}

.kst-drawer--open {
  right: 0;
}

.kst-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--kst-space-4) var(--kst-space-6);
  border-bottom: 1px solid var(--kst-slate);
}

.kst-drawer__close {
  background: none;
  border: none;
  color: var(--kst-text-inverse);
  cursor: pointer;
  padding: var(--kst-space-2);
}

.kst-drawer__nav {
  padding: var(--kst-space-6);
}

.kst-drawer__nav a {
  display: block;
  padding: var(--kst-space-4) 0;
  color: var(--kst-text-inverse);
  font-family: var(--kst-font-display);
  font-weight: 500;
  font-size: var(--kst-text-lg);
  border-bottom: 1px solid var(--kst-slate-dark);
}

.kst-drawer__nav a:hover {
  color: var(--kst-sky);
}

.kst-drawer__cta {
  padding: var(--kst-space-6);
}

.kst-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--kst-transition-base);
}

.kst-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* === BANNER (Hero) === */
.kst-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kst-banner__backdrop {
  position: absolute;
  inset: 0;
}

.kst-banner__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kst-banner__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 48, 63, 0.9) 0%,
    rgba(34, 48, 63, 0.7) 40%,
    rgba(44, 100, 133, 0.4) 100%
  );
}

.kst-banner__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: var(--kst-space-24);
}

.kst-banner__location {
  display: inline-flex;
  align-items: center;
  gap: var(--kst-space-2);
  background: rgba(143, 191, 218, 0.2);
  border: 1px solid rgba(143, 191, 218, 0.4);
  padding: var(--kst-space-2) var(--kst-space-4);
  border-radius: var(--kst-radius-full);
  color: var(--kst-sky);
  font-size: var(--kst-text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--kst-space-6);
}

.kst-banner__headline {
  font-size: var(--kst-text-4xl);
  color: var(--kst-text-inverse);
  margin-bottom: var(--kst-space-6);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .kst-banner__headline { font-size: var(--kst-text-6xl); }
}

.kst-banner__tagline {
  font-size: var(--kst-text-xl);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: var(--kst-space-8);
  max-width: 600px;
}

.kst-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--kst-space-4);
}

@media (min-width: 640px) {
  .kst-banner__actions {
    flex-direction: row;
  }
}

/* === SUMMIT STATS === */
.kst-summit-stats {
  background: var(--kst-navy);
  padding: var(--kst-space-12) 0;
}

.kst-summit-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--kst-space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .kst-summit-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kst-summit-stats__item {
  padding: var(--kst-space-4);
}

.kst-summit-stats__value {
  font-family: var(--kst-font-display);
  font-size: var(--kst-text-4xl);
  font-weight: 800;
  color: var(--kst-sky);
  line-height: 1;
  margin-bottom: var(--kst-space-2);
}

.kst-summit-stats__label {
  font-size: var(--kst-text-sm);
  color: var(--kst-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === SECTION STYLES === */
.kst-section {
  padding: var(--kst-space-20) 0;
}

.kst-section--alt {
  background: var(--kst-bg-secondary);
}

.kst-section--dark {
  background: var(--kst-navy);
  color: var(--kst-text-inverse);
}

.kst-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--kst-space-12);
}

.kst-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--kst-space-2);
  color: var(--kst-ocean);
  font-family: var(--kst-font-display);
  font-weight: 700;
  font-size: var(--kst-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--kst-space-4);
}

.kst-section__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--kst-ocean);
}

.kst-section__title {
  margin-bottom: var(--kst-space-4);
}

.kst-section__desc {
  font-size: var(--kst-text-lg);
  color: var(--kst-text-muted);
}

/* === ROUTE TILES === */
.kst-routes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kst-space-6);
}

@media (min-width: 640px) {
  .kst-routes__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .kst-routes__grid { grid-template-columns: repeat(3, 1fr); }
}

.kst-route-tile {
  background: var(--kst-bg-primary);
  border-radius: var(--kst-radius-xl);
  overflow: hidden;
  box-shadow: var(--kst-shadow-sm);
  transition: all var(--kst-transition-base);
}

.kst-route-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--kst-shadow-xl);
}

.kst-route-tile__visual {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.kst-route-tile__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--kst-transition-slow);
}

.kst-route-tile:hover .kst-route-tile__visual img {
  transform: scale(1.1);
}

.kst-route-tile__badge {
  position: absolute;
  top: var(--kst-space-4);
  right: var(--kst-space-4);
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
  padding: var(--kst-space-1) var(--kst-space-3);
  border-radius: var(--kst-radius-full);
  font-size: var(--kst-text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.kst-route-tile__body {
  padding: var(--kst-space-6);
}

.kst-route-tile__name {
  font-size: var(--kst-text-xl);
  margin-bottom: var(--kst-space-3);
}

.kst-route-tile__meta {
  display: flex;
  gap: var(--kst-space-4);
  margin-bottom: var(--kst-space-4);
  font-size: var(--kst-text-sm);
  color: var(--kst-text-muted);
}

.kst-route-tile__meta span {
  display: flex;
  align-items: center;
  gap: var(--kst-space-1);
}

.kst-route-tile__excerpt {
  font-size: var(--kst-text-sm);
  color: var(--kst-text-secondary);
  margin-bottom: var(--kst-space-4);
  line-height: 1.6;
}

.kst-route-tile__link {
  display: inline-flex;
  align-items: center;
  gap: var(--kst-space-2);
  color: var(--kst-ocean);
  font-weight: 600;
  font-size: var(--kst-text-sm);
}

.kst-route-tile__link:hover {
  color: var(--kst-ocean-dark);
}

/* === VALUE CARDS === */
.kst-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kst-space-6);
}

@media (min-width: 640px) {
  .kst-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .kst-values__grid { grid-template-columns: repeat(4, 1fr); }
}

.kst-value-card {
  text-align: center;
  padding: var(--kst-space-8);
  background: var(--kst-bg-primary);
  border-radius: var(--kst-radius-xl);
  box-shadow: var(--kst-shadow-sm);
  transition: all var(--kst-transition-base);
}

.kst-value-card:hover {
  box-shadow: var(--kst-shadow-lg);
}

.kst-value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--kst-space-5);
  background: linear-gradient(135deg, var(--kst-sky-light) 0%, var(--kst-sky) 100%);
  border-radius: var(--kst-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kst-navy);
}

.kst-value-card__title {
  font-size: var(--kst-text-lg);
  margin-bottom: var(--kst-space-3);
}

.kst-value-card__text {
  font-size: var(--kst-text-sm);
  color: var(--kst-text-muted);
  line-height: 1.6;
}

/* === PACKAGE CARDS === */
.kst-packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kst-space-6);
}

@media (min-width: 768px) {
  .kst-packages__grid { grid-template-columns: repeat(3, 1fr); }
}

.kst-package-card {
  background: var(--kst-bg-primary);
  border-radius: var(--kst-radius-xl);
  padding: var(--kst-space-8);
  box-shadow: var(--kst-shadow-md);
  text-align: center;
  position: relative;
  transition: all var(--kst-transition-base);
}

.kst-package-card--featured {
  border: 2px solid var(--kst-ocean);
  transform: scale(1.02);
}

.kst-package-card:hover {
  box-shadow: var(--kst-shadow-xl);
}

.kst-package-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
  padding: var(--kst-space-2) var(--kst-space-4);
  border-radius: var(--kst-radius-full);
  font-size: var(--kst-text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.kst-package-card__tier {
  font-family: var(--kst-font-display);
  font-size: var(--kst-text-2xl);
  font-weight: 700;
  color: var(--kst-navy);
  margin-bottom: var(--kst-space-2);
}

.kst-package-card__price {
  font-size: var(--kst-text-4xl);
  font-weight: 800;
  color: var(--kst-ocean);
  margin-bottom: var(--kst-space-6);
}

.kst-package-card__price span {
  font-size: var(--kst-text-sm);
  font-weight: 400;
  color: var(--kst-text-muted);
}

.kst-package-card__features {
  list-style: none;
  margin-bottom: var(--kst-space-8);
}

.kst-package-card__features li {
  padding: var(--kst-space-3) 0;
  border-bottom: 1px solid var(--kst-gray);
  font-size: var(--kst-text-sm);
  color: var(--kst-text-secondary);
}

.kst-package-card__features li:last-child {
  border-bottom: none;
}

/* === TESTIMONIAL CAROUSEL === */
.kst-testimonials {
  background: var(--kst-navy);
  padding: var(--kst-space-20) 0;
}

.kst-testimonial-card {
  background: var(--kst-slate-dark);
  border-radius: var(--kst-radius-xl);
  padding: var(--kst-space-8);
  max-width: 700px;
  margin: 0 auto;
}

.kst-testimonial-card__quote {
  font-size: var(--kst-text-xl);
  font-style: italic;
  color: var(--kst-gray);
  margin-bottom: var(--kst-space-6);
  line-height: 1.7;
}

.kst-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--kst-space-4);
}

.kst-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--kst-radius-full);
  object-fit: cover;
}

.kst-testimonial-card__name {
  font-family: var(--kst-font-display);
  font-weight: 700;
  color: var(--kst-text-inverse);
}

.kst-testimonial-card__meta {
  font-size: var(--kst-text-sm);
  color: var(--kst-sky);
}

/* === JOURNAL (Blog) TILES === */
.kst-journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kst-space-6);
}

@media (min-width: 640px) {
  .kst-journal__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .kst-journal__grid { grid-template-columns: repeat(3, 1fr); }
}

.kst-journal-tile {
  background: var(--kst-bg-primary);
  border-radius: var(--kst-radius-xl);
  overflow: hidden;
  box-shadow: var(--kst-shadow-sm);
  transition: all var(--kst-transition-base);
}

.kst-journal-tile:hover {
  box-shadow: var(--kst-shadow-lg);
  transform: translateY(-4px);
}

.kst-journal-tile__thumb {
  height: 200px;
  overflow: hidden;
}

.kst-journal-tile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--kst-transition-slow);
}

.kst-journal-tile:hover .kst-journal-tile__thumb img {
  transform: scale(1.05);
}

.kst-journal-tile__body {
  padding: var(--kst-space-6);
}

.kst-journal-tile__date {
  font-size: var(--kst-text-xs);
  font-weight: 700;
  color: var(--kst-ocean);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--kst-space-3);
}

.kst-journal-tile__title {
  font-size: var(--kst-text-lg);
  margin-bottom: var(--kst-space-3);
}

.kst-journal-tile__excerpt {
  font-size: var(--kst-text-sm);
  color: var(--kst-text-muted);
  margin-bottom: var(--kst-space-4);
}

.kst-journal-tile__more {
  font-size: var(--kst-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kst-ocean);
}

.kst-journal-tile__more:hover {
  color: var(--kst-ocean-dark);
}

/* === CTA SECTION === */
.kst-cta {
  position: relative;
  padding: var(--kst-space-24) 0;
  background: var(--kst-ocean-dark);
  overflow: hidden;
}

.kst-cta__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.kst-cta__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kst-cta__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.kst-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--kst-space-2);
  background: rgba(143, 191, 218, 0.2);
  border: 1px solid rgba(143, 191, 218, 0.4);
  padding: var(--kst-space-2) var(--kst-space-4);
  border-radius: var(--kst-radius-full);
  color: var(--kst-sky);
  font-size: var(--kst-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--kst-space-6);
}

.kst-cta__title {
  font-size: var(--kst-text-4xl);
  color: var(--kst-text-inverse);
  margin-bottom: var(--kst-space-6);
}

@media (min-width: 768px) {
  .kst-cta__title { font-size: var(--kst-text-5xl); }
}

.kst-cta__desc {
  font-size: var(--kst-text-xl);
  color: var(--kst-sky-light);
  margin-bottom: var(--kst-space-8);
}

.kst-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--kst-space-4);
  justify-content: center;
}

@media (min-width: 640px) {
  .kst-cta__actions { flex-direction: row; }
}

/* === FOOTER === */
.kst-footer {
  background: var(--kst-navy-dark);
  color: var(--kst-gray);
  position: relative;
  overflow: hidden;
}

.kst-footer__mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  opacity: 0.05;
}

.kst-footer__main {
  position: relative;
  z-index: 10;
  padding: var(--kst-space-16) 0 var(--kst-space-8);
}

.kst-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--kst-space-8);
}

@media (min-width: 640px) {
  .kst-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .kst-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; }
}

.kst-footer__brand h3 {
  font-family: var(--kst-font-display);
  font-size: var(--kst-text-xl);
  color: var(--kst-text-inverse);
  margin-bottom: var(--kst-space-4);
}

.kst-footer__brand p {
  font-size: var(--kst-text-sm);
  line-height: 1.7;
  margin-bottom: var(--kst-space-6);
  color: var(--kst-gray-dark);
}

.kst-footer__socials {
  display: flex;
  gap: var(--kst-space-4);
}

.kst-footer__socials a {
  width: 40px;
  height: 40px;
  background: var(--kst-slate-dark);
  border-radius: var(--kst-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kst-gray);
  transition: all var(--kst-transition-fast);
}

.kst-footer__socials a:hover {
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
}

.kst-footer__column h4 {
  font-family: var(--kst-font-display);
  font-size: var(--kst-text-sm);
  font-weight: 700;
  color: var(--kst-text-inverse);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--kst-space-5);
}

.kst-footer__column ul {
  list-style: none;
}

.kst-footer__column li {
  margin-bottom: var(--kst-space-3);
}

.kst-footer__column a {
  font-size: var(--kst-text-sm);
  color: var(--kst-gray-dark);
  transition: color var(--kst-transition-fast);
}

.kst-footer__column a:hover {
  color: var(--kst-sky);
}

.kst-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--kst-space-3);
}

.kst-footer__newsletter-form input[type="email"] {
  background: var(--kst-slate-dark);
  border: 1px solid var(--kst-slate);
  color: var(--kst-text-inverse);
  padding: var(--kst-space-3) var(--kst-space-4);
  border-radius: var(--kst-radius-md);
  font-size: var(--kst-text-sm);
}

.kst-footer__newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--kst-ocean);
}

.kst-footer__newsletter-form button {
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
  border: none;
  padding: var(--kst-space-3) var(--kst-space-4);
  border-radius: var(--kst-radius-md);
  font-family: var(--kst-font-display);
  font-weight: 600;
  font-size: var(--kst-text-sm);
  cursor: pointer;
  transition: background var(--kst-transition-fast);
}

.kst-footer__newsletter-form button:hover {
  background: var(--kst-ocean-light);
}

.kst-footer__bottom {
  border-top: 1px solid var(--kst-slate-dark);
  padding: var(--kst-space-6) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--kst-space-4);
  font-size: var(--kst-text-xs);
}

@media (min-width: 768px) {
  .kst-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.kst-footer__legal {
  display: flex;
  gap: var(--kst-space-6);
}

.kst-footer__legal a {
  color: var(--kst-gray-dark);
}

.kst-footer__legal a:hover {
  color: var(--kst-text-inverse);
}

/* === PAGE CONTENT === */
.kst-page-content {
  padding: var(--kst-space-16) 0;
}

.kst-page-content h1 {
  margin-bottom: var(--kst-space-8);
}

.kst-page-content p {
  margin-bottom: var(--kst-space-6);
  color: var(--kst-text-secondary);
}

/* === POSTS GRID === */
.kst-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--kst-space-6);
}

/* === PAGINATION === */
.kst-pagination {
  margin-top: var(--kst-space-12);
  display: flex;
  justify-content: center;
  gap: var(--kst-space-2);
}

.kst-pagination a,
.kst-pagination span {
  padding: var(--kst-space-3) var(--kst-space-4);
  background: var(--kst-bg-secondary);
  border-radius: var(--kst-radius-md);
  font-weight: 600;
  font-size: var(--kst-text-sm);
  transition: all var(--kst-transition-fast);
}

.kst-pagination a:hover {
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
}

.kst-pagination .current {
  background: var(--kst-ocean);
  color: var(--kst-text-inverse);
}

/* === ANIMATIONS === */
@keyframes kst-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kst-animate {
  opacity: 0;
}

.kst-animate--visible {
  animation: kst-fadeInUp 0.6s ease forwards;
}
