/* ============================================
   TIEFLAND EXPEDITIONEN - MODERN BOLD STYLES
   Design Style: Bold Modern with Strong Typography
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD MODERN STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 56px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 42px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 800;
}

h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.8;
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

li {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.7;
}

a {
  color: #1F4420;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #C89456;
  transform: translateX(3px);
}

strong {
  font-weight: 700;
  color: #0d0d0d;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - BOLD & PROMINENT */
header {
  background: linear-gradient(135deg, #1F4420 0%, #2C5F2D 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(31, 68, 32, 0.25);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #C89456;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #C89456;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #1F4420;
  color: #ffffff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(31, 68, 32, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2C5F2D;
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1F4420 0%, #2C5F2D 100%);
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C89456;
  padding-left: 16px;
  border-bottom-color: #C89456;
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1F4420 100%);
  color: #ffffff;
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200, 148, 86, 0.05) 20px,
    rgba(200, 148, 86, 0.05) 40px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 32px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  color: #e0e0e0;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 16px;
  color: #C89456;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* BUTTONS - BOLD GEOMETRIC STYLE */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #C89456;
  color: #0d0d0d;
  border: 4px solid #0d0d0d;
}

.btn-primary:hover {
  background: #d4a574;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 4px solid #C89456;
}

.btn-secondary:hover {
  background: #C89456;
  color: #0d0d0d;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(200, 148, 86, 0.5);
}

.btn-link {
  color: #1F4420;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 3px solid #C89456;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #C89456;
  padding-left: 12px;
  border-bottom-width: 5px;
}

/* SECTIONS - BOLD SPACING */
.section,
section {
  padding: 80px 24px;
  margin-bottom: 0;
  position: relative;
}

.section-intro {
  font-size: 22px;
  color: #4a4a4a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-weight: 400;
  line-height: 1.7;
}

/* VALUE PROPOSITION - GEOMETRIC CARDS */
.value-proposition {
  background: #f5f5f5;
  text-align: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  box-shadow: 8px 8px 0 #C89456;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #C89456;
}

.value-card h3 {
  color: #1F4420;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* SERVICES GRID - BOLD CARDS */
.services {
  background: #ffffff;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  background: #f5f5f5;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #C89456 0%, #1F4420 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #C89456;
}

.service-card h3 {
  color: #0d0d0d;
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #1F4420;
  margin-bottom: 16px;
  font-family: 'Merriweather', serif;
}

.service-card p {
  font-size: 16px;
  color: #4a4a4a;
  flex-grow: 1;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #1F4420 0%, #2C5F2D 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 24px;
}

.testimonials h2 {
  color: #ffffff;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  color: #0d0d0d;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  box-shadow: 8px 8px 0 #C89456;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: #1a1a1a;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #1F4420;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating {
  font-size: 28px;
  font-weight: 900;
  color: #C89456;
  margin-top: 20px;
}

/* DESTINATIONS */
.destinations-preview {
  background: #f5f5f5;
  text-align: center;
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.destination-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  transition: all 0.3s ease;
  position: relative;
}

.destination-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #C89456;
  transition: width 0.3s ease;
}

.destination-card:hover::after {
  width: 100%;
}

.destination-card:hover {
  transform: translateY(-8px);
}

.destination-card h3 {
  color: #1F4420;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.destination-card p {
  font-size: 16px;
  color: #4a4a4a;
}

/* CTA BANNER - BOLD CALL TO ACTION */
.cta-banner {
  background: linear-gradient(135deg, #C89456 0%, #d4a574 100%);
  color: #0d0d0d;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(0, 0, 0, 0.05) 30px,
    rgba(0, 0, 0, 0.05) 60px
  );
  pointer-events: none;
}

.cta-banner h2 {
  color: #0d0d0d;
  font-size: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 22px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-element {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1F4420 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 80px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a {
  color: #C89456;
  font-weight: 700;
}

/* EXPEDITIONS DETAIL */
.expeditions-detail {
  padding: 80px 24px;
}

.expedition-item {
  margin-bottom: 80px;
  padding: 40px;
  background: #f5f5f5;
  border: 5px solid #0d0d0d;
  border-left: 20px solid #1F4420;
}

.expedition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 700;
}

.expedition-meta .price {
  font-size: 32px;
  color: #C89456;
  font-weight: 900;
}

.expedition-meta span {
  padding: 8px 16px;
  background: #ffffff;
  border: 3px solid #0d0d0d;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.expedition-cta {
  margin-top: 32px;
}

.impact-note {
  font-weight: 700;
  color: #1F4420;
  background: #C89456;
  padding: 16px;
  border: 3px solid #0d0d0d;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* BOOKING INFO */
.booking-info {
  background: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.info-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 400px;
  background: #ffffff;
  padding: 32px 24px;
  border: 5px solid #0d0d0d;
  box-shadow: 6px 6px 0 #C89456;
}

.info-card h3 {
  color: #1F4420;
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-note {
  font-size: 18px;
  font-weight: 600;
  color: #1F4420;
}

/* STORY & MISSION */
.story,
.mission-vision,
.sustainability {
  padding: 80px 24px;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.9;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.mission-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background: #1F4420;
  color: #ffffff;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  box-shadow: 8px 8px 0 #C89456;
}

.mission-card h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 24px;
  background: #f5f5f5;
  border: 4px solid #0d0d0d;
  border-left: 12px solid #C89456;
}

.value-item h4 {
  color: #1F4420;
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* TEAM */
.team {
  background: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  background: #ffffff;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  text-align: left;
}

.team-member h3 {
  color: #0d0d0d;
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.role {
  color: #C89456;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-note {
  font-weight: 600;
  color: #1F4420;
  font-size: 18px;
}

/* SUSTAINABILITY GRID */
.sustainability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.sustainability-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px 24px;
  background: #f5f5f5;
  border: 5px solid #0d0d0d;
  border-top: 12px solid #1F4420;
}

.sustainability-item h3 {
  color: #1F4420;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.certification {
  font-weight: 700;
  color: #C89456;
  font-size: 18px;
  text-align: center;
  padding: 16px;
  background: #0d0d0d;
  border: 4px solid #C89456;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* IMPACT METRICS */
.impact-metrics {
  background: linear-gradient(135deg, #0d0d0d 0%, #1F4420 100%);
  color: #ffffff;
  padding: 100px 24px;
  text-align: center;
}

.impact-metrics h2 {
  color: #ffffff;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.metric {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  max-width: 300px;
}

.metric h3 {
  font-size: 64px;
  color: #C89456;
  margin-bottom: 16px;
  font-weight: 900;
}

.metric p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* DESTINATIONS DETAIL */
.destinations-intro {
  padding: 80px 24px;
  text-align: center;
}

.destinations-detail {
  padding: 80px 24px;
}

.destination-item {
  margin-bottom: 80px;
  padding: 40px;
  background: #ffffff;
  border: 5px solid #0d0d0d;
  border-left: 20px solid #C89456;
}

.tagline {
  font-size: 20px;
  font-weight: 700;
  color: #1F4420;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.best-for,
.season {
  margin-top: 24px;
  padding: 16px;
  background: #f5f5f5;
  border-left: 5px solid #1F4420;
  font-size: 16px;
}

/* PRACTICAL INFO */
.practical-info {
  background: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

/* RESPONSIBLE TRAVEL */
.responsible-travel {
  padding: 80px 24px;
  background: #ffffff;
}

.tips-list {
  max-width: 800px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
}

.tips-list li {
  padding: 20px;
  margin-bottom: 16px;
  background: #f5f5f5;
  border: 4px solid #0d0d0d;
  border-left: 12px solid #C89456;
  font-size: 18px;
  font-weight: 500;
}

.tips-list li::before {
  content: '▸';
  color: #1F4420;
  font-weight: 900;
  font-size: 24px;
  margin-right: 16px;
}

/* GALLERY */
.gallery-intro {
  padding: 80px 24px;
  text-align: center;
}

.photo-credit {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.story-collection {
  padding: 80px 24px;
}

.filter-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-tag {
  padding: 12px 24px;
  background: #f5f5f5;
  border: 3px solid #0d0d0d;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.filter-tag:hover,
.filter-tag.active {
  background: #C89456;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.story-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  border: 5px solid #0d0d0d;
  overflow: hidden;
}

.story-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1F4420 0%, #2C5F2D 100%);
  position: relative;
}

.story-image-placeholder::before {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  opacity: 0.3;
}

.story-card h3 {
  padding: 24px 24px 12px;
  color: #0d0d0d;
  font-size: 22px;
  text-transform: uppercase;
}

.story-card p {
  padding: 0 24px 24px;
  font-size: 16px;
  color: #4a4a4a;
}

/* BLOG POSTS */
.traveler-stories {
  background: #f5f5f5;
  padding: 80px 24px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 60px auto 0;
}

.blog-post {
  background: #ffffff;
  padding: 40px;
  border: 5px solid #0d0d0d;
  border-left: 20px solid #1F4420;
}

.blog-post h3 {
  color: #0d0d0d;
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.author {
  font-size: 14px;
  color: #C89456;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* LOCAL PERSPECTIVES */
.local-perspectives {
  padding: 80px 24px;
}

.perspectives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.perspective-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 550px;
  background: #1F4420;
  color: #ffffff;
  padding: 40px 32px;
  border: 5px solid #0d0d0d;
  box-shadow: 8px 8px 0 #C89456;
}

.perspective-card h3 {
  color: #C89456;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.perspective-card p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #ffffff;
}

/* SEASONAL COLLECTIONS */
.seasonal-collections {
  background: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.season-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 300px;
  padding: 40px 24px;
  background: #ffffff;
  border: 5px solid #0d0d0d;
  transition: all 0.3s ease;
}

.season-card:nth-child(1) { border-top: 12px solid #8BC34A; }
.season-card:nth-child(2) { border-top: 12px solid #FFC107; }
.season-card:nth-child(3) { border-top: 12px solid #FF9800; }
.season-card:nth-child(4) { border-top: 12px solid #03A9F4; }

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

.season-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* CONTACT PAGE */
.contact-options {
  padding: 80px 24px;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  max-width: 400px;
  padding: 40px 32px;
  background: #f5f5f5;
  border: 5px solid #0d0d0d;
  border-top: 12px solid #C89456;
}

.contact-method h3 {
  color: #1F4420;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 80px 24px;
  background: #f5f5f5;
}

.form-container {
  max-width: 700px;
  margin: 60px auto 0;
  background: #ffffff;
  padding: 40px;
  border: 5px solid #0d0d0d;
}

.form-field {
  margin-bottom: 32px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #0d0d0d;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-placeholder,
.select-placeholder,
.textarea-placeholder {
  width: 100%;
  height: 50px;
  background: #f5f5f5;
  border: 3px solid #0d0d0d;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.textarea-placeholder {
  height: 150px;
}

.input-placeholder:hover,
.select-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #1F4420;
}

.checkbox-placeholder {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 3px solid #0d0d0d;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.form-note {
  margin-top: 32px;
  padding: 24px;
  background: #FFF9E6;
  border: 3px solid #C89456;
  text-align: center;
}

.form-note p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* OFFICE INFO */
.office-info {
  padding: 80px 24px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.office-detail {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  max-width: 400px;
  padding: 32px 24px;
  background: #f5f5f5;
  border: 4px solid #0d0d0d;
  border-left: 12px solid #1F4420;
}

.office-detail h3 {
  color: #1F4420;
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* FAQ */
.faq-contact {
  background: #f5f5f5;
  padding: 80px 24px;
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  border: 4px solid #0d0d0d;
  border-left: 12px solid #C89456;
}

.faq-item h3 {
  color: #0d0d0d;
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.faq-item p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* TEAM CONTACT */
.team-contact {
  padding: 80px 24px;
  text-align: center;
}

/* LEGAL PAGES */
.page-hero.legal {
  padding: 60px 24px 40px;
}

.last-updated {
  font-size: 14px;
  color: #C89456;
  font-weight: 600;
}

.legal-content {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 3px solid #e0e0e0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #1F4420;
  font-size: 32px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.legal-section h3 {
  color: #0d0d0d;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.legal-navigation {
  background: #f5f5f5;
  padding: 60px 24px;
  text-align: center;
}

.legal-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.legal-nav a {
  padding: 12px 24px;
  background: #ffffff;
  border: 3px solid #0d0d0d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.legal-nav a:hover {
  background: #C89456;
  color: #0d0d0d;
  transform: translateY(-2px);
}

/* COOKIE SETTINGS */
.cookie-settings {
  padding: 80px 24px;
  background: #f5f5f5;
}

.cookie-controls {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-control {
  padding: 24px;
  background: #ffffff;
  border: 4px solid #0d0d0d;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-control label {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.settings-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1F4420 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 120px 24px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: #C89456;
  border: 8px solid #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #ffffff;
}

.next-steps {
  padding: 80px 24px;
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.step-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 300px;
  padding: 32px 24px;
  background: #f5f5f5;
  border: 5px solid #0d0d0d;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: #C89456;
}

.step-item h3 {
  color: #1F4420;
  font-size: 28px;
  margin-bottom: 16px;
}

.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.meanwhile,
.expedition-highlights,
.contact-alternative {
  padding: 80px 24px;
}

.meanwhile {
  background: #f5f5f5;
}

.suggestions-grid,
.expeditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.suggestion-card,
.expedition-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px 24px;
  background: #ffffff;
  border: 5px solid #0d0d0d;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card h3,
.expedition-card h3 {
  color: #1F4420;
  font-size: 22px;
  text-transform: uppercase;
}

.return-home {
  padding: 80px 24px;
  text-align: center;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1F4420 100%);
  color: #ffffff;
  padding: 80px 24px 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #C89456 0%, #1F4420 50%, #C89456 100%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 calc(33.333% - 60px);
  min-width: 250px;
}

.footer-section h4 {
  color: #C89456;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #C89456;
  padding-bottom: 12px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #d0d0d0;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.footer-nav a:hover {
  color: #C89456;
  padding-left: 12px;
  border-bottom-color: #C89456;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(200, 148, 86, 0.3);
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  color: #ffffff;
  padding: 24px;
  z-index: 998;
  border-top: 5px solid #C89456;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 400px;
  font-size: 16px;
  margin-bottom: 0;
  color: #d0d0d0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #C89456;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #C89456;
  color: #0d0d0d;
}

.cookie-accept:hover {
  background: #d4a574;
  transform: translateY(-2px);
}

.cookie-reject,
.cookie-settings-btn {
  background: transparent;
  color: #C89456;
}

.cookie-reject:hover,
.cookie-settings-btn:hover {
  background: rgba(200, 148, 86, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 5px solid #0d0d0d;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: 3px solid #0d0d0d;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C89456;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #0d0d0d;
  font-size: 28px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border: 3px solid #0d0d0d;
}

.cookie-category h3 {
  color: #1F4420;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.toggle-switch {
  width: 60px;
  height: 32px;
  background: #ccc;
  border: 3px solid #0d0d0d;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #1F4420;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(28px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ANIMATIONS */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p { font-size: 16px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav on mobile */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Section spacing */
  .section,
  section {
    padding: 60px 20px;
  }
  
  /* Grid adjustments */
  .value-grid,
  .services-grid,
  .testimonials-grid,
  .destinations-grid,
  .info-grid,
  .mission-grid,
  .values-grid,
  .team-grid,
  .sustainability-grid,
  .metrics-grid,
  .contact-methods,
  .office-details,
  .steps-grid,
  .suggestions-grid,
  .expeditions-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Card adjustments */
  .value-card,
  .service-card,
  .testimonial-card,
  .destination-card,
  .info-card,
  .mission-card,
  .value-item,
  .team-member,
  .sustainability-item,
  .metric,
  .contact-method,
  .office-detail,
  .step-item,
  .suggestion-card,
  .expedition-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Expedition detail */
  .expedition-item,
  .destination-item,
  .blog-post {
    padding: 24px;
  }
  
  .expedition-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Story cards */
  .stories-grid {
    flex-direction: column;
  }
  
  .story-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Perspectives */
  .perspectives-grid {
    flex-direction: column;
  }
  
  .perspective-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Seasons */
  .seasons-grid {
    flex-direction: column;
  }
  
  .season-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* Form */
  .form-container {
    padding: 24px;
  }
  
  /* Filter nav */
  .filter-nav {
    gap: 12px;
  }
  
  .filter-tag {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  /* CTA banner */
  .cta-banner {
    padding: 60px 24px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  
  .value-card,
  .service-card,
  .destination-card,
  .info-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .metric {
    flex: 1 1 calc(50% - 40px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .btn {
    border: 2px solid #000;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* 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;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #C89456;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn {
    border-width: 4px;
  }
  
  .value-card,
  .service-card,
  .destination-card {
    border-width: 6px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF STYLES */