/* ============================================
   HOKKAIDO WAYS — Main Stylesheet
   B2C Adventure Travel Content Platform
   ============================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Colors */
  --forest: #1a3a2f;
  --amber: #c4943c;
  --snow: #fafbfc;
  --charcoal: #2d3748;
  --stone: #718096;
  --sage: #8faa9a;
  --lavender: #9b8db5;
  --rust: #a0522d;
  --white: #ffffff;
  --warm-bg: #f7f3ed;

  /* Typography */
  --font-headline: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", sans-serif;

  /* Spacing */
  --section-gap: 140px;
  --container-max: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 5vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

h4 {
  font-size: clamp(20px, 2vw, 28px);
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone);
}

.caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-gap) 0;
}

.section-sm {
  padding: 70px 0;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 14px 0;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

.navbar.scrolled .nav-cta {
  background: var(--amber);
  color: var(--forest);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  transition: color 0.3s ease;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--amber);
  color: var(--forest);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #b08434;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 var(--container-padding);
}

.hero h1 {
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--forest);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #b08434;
  transform: translateY(-2px);
}

/* Hero gradient backgrounds per destination */
.hero-biei {
  background: linear-gradient(135deg, #c4943c 0%, #d4a84c 25%, #8faa9a 50%, #a0522d 75%, #1a3a2f 100%);
}

.hero-sapporo {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 40%, #718096 70%, #a0aec0 100%);
}

.hero-niseko {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 30%, #8faa9a 60%, #e2e8f0 100%);
}

.hero-furano {
  background: linear-gradient(135deg, #9b8db5 0%, #b8a8d0 30%, #c4943c 60%, #d4a84c 100%);
}

.hero-otaru {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 40%, #718096 70%, #a0aec0 100%);
}

.hero-hakodate {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 30%, #c4943c 60%, #d4a84c 100%);
}

.hero-shiretoko {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d3748 40%, #4a5568 70%, #8faa9a 100%);
}

.hero-abashiri {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 30%, #8faa9a 60%, #e2e8f0 100%);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Seasonal Picker ---- */
.seasonal-picker {
  background: var(--snow);
  padding: 60px 0;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.season-card {
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.season-card.winter {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.season-card.spring {
  background: linear-gradient(135deg, #9b8db5 0%, #b8a8d0 100%);
}

.season-card.summer {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 100%);
}

.season-card.autumn {
  background: linear-gradient(135deg, #c4943c 0%, #a0522d 100%);
}

.season-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.season-card p {
  font-size: 13px;
  opacity: 0.9;
}

/* ---- Featured Destinations ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.destinations-grid .dest-row {
  display: grid;
  gap: 24px;
}

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

.dest-row-2 {
  grid-template-columns: 2fr 3fr;
}

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

.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: transform 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dest-card-bg.sapporo {
  background: linear-gradient(135deg, #4a5568 0%, #718096 50%, #a0aec0 100%);
}

.dest-card-bg.niseko {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 50%, #8faa9a 100%);
}

.dest-card-bg.furano {
  background: linear-gradient(135deg, #9b8db5 0%, #b8a8d0 50%, #c4943c 100%);
}

.dest-card-bg.biei {
  background: linear-gradient(135deg, #c4943c 0%, #d4a84c 30%, #8faa9a 70%, #a0522d 100%);
}

.dest-card-bg.otaru {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
}

.dest-card h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 32px;
  margin-bottom: 8px;
}

.dest-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 16px;
}

.dest-card a {
  position: relative;
  z-index: 1;
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dest-card a:hover {
  gap: 10px;
}

/* ---- Editorial Feature ---- */
.editorial-feature {
  background: var(--warm-bg);
  padding: var(--section-gap) 0;
}

.editorial-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.editorial-visual {
  min-height: 500px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 30%, #8faa9a 60%, #c4943c 100%);
}

.editorial-text h3 {
  margin-bottom: 24px;
  color: var(--charcoal);
}

.editorial-text p {
  margin-bottom: 16px;
  color: var(--stone);
}

.editorial-text a {
  color: var(--amber);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

/* ---- Curated Itineraries ---- */
.itineraries-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.itineraries-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 40px var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.itineraries-scroll::-webkit-scrollbar {
  height: 4px;
}

.itineraries-scroll::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 2px;
}

.itineraries-scroll::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 2px;
}

.itinerary-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.itinerary-visual {
  height: 200px;
}

.itinerary-visual.winter {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.itinerary-visual.summer {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 50%, #8faa9a 100%);
}

.itinerary-visual.autumn {
  background: linear-gradient(135deg, #c4943c 0%, #a0522d 50%, #9b8db5 100%);
}

.itinerary-visual.spring {
  background: linear-gradient(135deg, #9b8db5 0%, #b8a8d0 100%);
}

.itinerary-visual.culinary {
  background: linear-gradient(135deg, #c4943c 0%, #d4a84c 50%, #a0522d 100%);
}

.itinerary-visual.family {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 30%, #8faa9a 100%);
}

.itinerary-info {
  padding: 24px;
}

.itinerary-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.itinerary-badge.winter {
  background: #e2e8f0;
  color: var(--charcoal);
}

.itinerary-badge.summer {
  background: #e6f0e8;
  color: var(--forest);
}

.itinerary-badge.autumn {
  background: #faf0e0;
  color: var(--rust);
}

.itinerary-badge.spring {
  background: #f0e8f4;
  color: var(--lavender);
}

.itinerary-badge.culinary {
  background: #faf0e0;
  color: var(--amber);
}

.itinerary-badge.family {
  background: #e6f0e8;
  color: var(--forest);
}

.itinerary-info h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.itinerary-info p {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 16px;
}

.itinerary-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.itinerary-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--snow);
  color: var(--stone);
}

/* ---- Experiences Grid ---- */
.experiences-section {
  background: var(--snow);
  padding: var(--section-gap) 0;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.exp-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.exp-visual {
  height: 200px;
}

.exp-visual.skiing {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 50%, #a0aec0 100%);
}

.exp-visual.onsen {
  background: linear-gradient(135deg, #e6f0e8 0%, #c5d5c8 50%, #8faa9a 100%);
}

.exp-visual.food {
  background: linear-gradient(135deg, #faf0e0 0%, #f0d8a8 50%, #c4943c 100%);
}

.exp-visual.wildlife {
  background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 50%, #8faa9a 100%);
}

.exp-visual.driving {
  background: linear-gradient(135deg, #c4943c 0%, #d4a84c 30%, #8faa9a 70%, #a0522d 100%);
}

.exp-visual.culture {
  background: linear-gradient(135deg, #9b8db5 0%, #b8a8d0 50%, #c4943c 100%);
}

.exp-info {
  padding: 24px;
}

.exp-info h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.exp-info p {
  font-size: 14px;
  color: var(--stone);
}

/* ---- Newsletter CTA ---- */
.newsletter-section {
  background: var(--forest);
  padding: 80px 0;
  color: var(--white);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}

.newsletter-inner h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.newsletter-inner > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form input[type="email"] {
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: left;
}

.newsletter-form label a {
  color: var(--amber);
  text-decoration: underline;
}

.newsletter-form button {
  background: var(--amber);
  color: var(--forest);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-form button:hover:not(:disabled) {
  background: #b08434;
}

.newsletter-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.8;
}

.footer-brand a {
  color: var(--amber);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding: 30px var(--container-padding) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 24px;
  z-index: 10000;
  display: none;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner span {
  flex: 1;
  font-size: 14px;
  min-width: 250px;
}

.cookie-inner a {
  color: var(--amber);
  text-decoration: underline;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--amber);
  color: var(--forest);
  border: none;
}

.cookie-btn-accept:hover {
  background: #b08434;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.cookie-btn-reject:hover {
  border-color: var(--white);
}

/* ---- Affiliate Disclosure ---- */
.affiliate-banner {
  background: var(--warm-bg);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--stone);
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Destination Cards (list page) ---- */
.destinations-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.dest-list-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.dest-list-card:hover {
  transform: translateY(-4px);
}

.dest-list-visual {
  height: 240px;
}

.dest-list-info {
  padding: 24px;
}

.dest-list-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.dest-list-info p {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 12px;
}

.dest-list-info .best-months {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ---- Filter Tabs ---- */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--stone);
  background: transparent;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ---- Destination Guide Page ---- */
.guide-section {
  padding: 60px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.guide-content h2 {
  margin-bottom: 24px;
  color: var(--charcoal);
}

.guide-content p {
  margin-bottom: 16px;
  color: var(--stone);
}

.guide-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.guide-toc {
  background: var(--snow);
  border-radius: 8px;
  padding: 24px;
}

.guide-toc h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.guide-toc a {
  display: block;
  font-size: 14px;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: color 0.3s ease;
}

.guide-toc a:hover {
  color: var(--amber);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.quick-fact {
  text-align: center;
}

.quick-fact .label {
  margin-bottom: 8px;
}

.quick-fact p {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 600;
}

/* ---- Experience Cards ---- */
.exp-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.exp-category-section {
  margin-bottom: 60px;
}

.exp-category-section h3 {
  margin-bottom: 24px;
  text-align: center;
}

/* ---- Itinerary Detail ---- */
.itinerary-timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.timeline-day {
  border-left: 2px solid var(--amber);
  padding-left: 40px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-day::before {
  content: attr(data-day);
  position: absolute;
  left: -20px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.timeline-day h4 {
  margin-bottom: 12px;
}

.timeline-day p {
  color: var(--stone);
  font-size: 15px;
}

/* ---- Trip Planner ---- */
.planner-section {
  padding: var(--section-gap) 0;
  background: var(--snow);
}

.planner-step {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 var(--container-padding);
}

.planner-step h3 {
  margin-bottom: 24px;
  text-align: center;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-dot .dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--stone);
  transition: all 0.3s ease;
}

.step-dot.active .dot,
.step-dot.completed .dot {
  background: var(--amber);
  color: var(--forest);
}

.step-dot span {
  font-size: 12px;
  color: var(--stone);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  border-color: var(--amber);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--amber);
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.date-inputs label {
  display: block;
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 8px;
}

.date-inputs input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

.planner-result {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.planner-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.planner-controls button {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.planner-controls .btn-primary {
  background: var(--amber);
  color: var(--forest);
}

.planner-controls .btn-secondary {
  background: var(--snow);
  color: var(--charcoal);
  border: 1px solid #e2e8f0;
}

/* ---- About Page ---- */
.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.about-story p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
}

.team-card h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 14px;
  color: var(--stone);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--stone);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: -12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  width: 100%;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: var(--amber);
  color: var(--forest);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #b08434;
}

.contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.contact-info p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 16px;
}

/* ---- Privacy / Terms / Cookies Pages ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.legal-content h2 {
  margin: 40px 0 20px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 32px 0 16px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--stone);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--stone);
}

/* ---- Map Container ---- */
.map-container {
  height: 400px;
  border-radius: 8px;
  margin: 24px 0;
  background: #e2e8f0;
}

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Add to Trip Button ---- */
.btn-add-trip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--forest);
  color: var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-add-trip:hover {
  background: var(--charcoal);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--charcoal);
    font-size: 16px;
  }

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

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

  .destinations-grid .dest-row {
    grid-template-columns: 1fr !important;
  }

  .editorial-inner {
    grid-template-columns: 1fr;
  }

  .editorial-visual {
    min-height: 300px;
  }

  .experiences-grid,
  .exp-list-grid {
    grid-template-columns: 1fr;
  }

  .destinations-list-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-sidebar {
    position: static;
    order: -1;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .itinerary-card {
    flex: 0 0 300px;
  }

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

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .step-indicator {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .seasonal-grid {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.hidden { display: none !important; }
