:root {
  --bg: #0e0d0b;
  --bg-warm: #1a1814;
  --fg: #e8e0d4;
  --fg-muted: #a89f90;
  --accent: #c4a35a;
  --accent-glow: #d4b86a;
  --earth: #3d3425;
  --moss: #4a5d3a;
  --moss-light: #6b8a52;
  --bark: #5c4a32;
  --spore: #f0d68a;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74, 93, 58, 0.3), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196, 163, 90, 0.12), transparent),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(61, 52, 37, 0.5), transparent);
  pointer-events: none;
}

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

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-location {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  letter-spacing: 1px;
}

.hero-location .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

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

.hero-btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #0e0d0b;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.hero-btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.hero-btn-secondary {
  display: inline-block;
  text-decoration: none;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}

.hero-btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
}

.closing-actions {
  margin-top: 40px;
}

/* ─── OFFERINGS ─── */
.offerings {
  padding: 120px 24px;
  background: var(--bg-warm);
  position: relative;
}

.offerings::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--earth), transparent);
}

.offerings-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.offerings-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.offerings h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.15;
}

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

.offering-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, background 0.3s;
}

.offering-card:hover {
  border-color: rgba(196, 163, 90, 0.25);
  background: rgba(255,255,255,0.05);
}

.offering-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.offering-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.offering-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── TERRAIN ─── */
.terrain {
  padding: 120px 24px;
  position: relative;
}

.terrain-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.terrain-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.terrain-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.terrain-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat-block {
  padding: 28px 32px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border-left: 3px solid var(--moss-light);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ─── SEASONS ─── */
.seasons {
  padding: 120px 24px;
  background: var(--bg-warm);
  position: relative;
}

.seasons::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--earth), transparent);
}

.seasons-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seasons-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 16px;
}

.seasons h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 64px;
  line-height: 1.15;
}

.season-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.season-row:last-child { border-bottom: none; }

.season-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  min-width: 100px;
}

.season-species {
  color: var(--fg);
  font-size: 1rem;
}

.season-months {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ─── CLOSING ─── */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196, 163, 90, 0.08), transparent);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.5px;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .terrain-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .season-row {
    flex-direction: column;
    gap: 8px;
  }
  .season-months {
    margin-left: 0;
  }
  .hero {
    min-height: 85vh;
    padding: 60px 20px 40px;
  }
  .offerings, .terrain, .seasons, .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .offering-card {
    padding: 28px 24px;
  }
}

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  color: var(--accent);
  border: 1px solid rgba(196,163,90,0.3);
  background: rgba(196,163,90,0.06);
}

.nav-cta:hover {
  color: var(--accent-glow);
  border-color: rgba(196,163,90,0.5);
  background: rgba(196,163,90,0.1);
}

/* ─── PAGE HERO (shared for /tours and /contact) ─── */
.page-hero {
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 100%, rgba(74, 93, 58, 0.25), transparent),
    radial-gradient(ellipse 40% 50% at 90% 0%, rgba(196, 163, 90, 0.08), transparent);
  pointer-events: none;
}

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

.page-hero-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ─── TOURS LIST ─── */
.tours-section {
  padding: 64px 24px 80px;
}

.tours-section-alt {
  background: var(--bg-warm);
  position: relative;
}

.tours-section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--earth), transparent);
}

.tours-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tours-section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.tours-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 40px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.tour-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.tour-card:hover {
  border-color: rgba(196,163,90,0.3);
  background: rgba(255,255,255,0.055);
  transform: translateY(-2px);
}

.tour-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tour-type-badge {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.tour-type-hunt {
  background: rgba(74,93,58,0.3);
  color: var(--moss-light);
  border: 1px solid rgba(74,93,58,0.4);
}

.tour-type-class {
  background: rgba(196,163,90,0.12);
  color: var(--accent);
  border: 1px solid rgba(196,163,90,0.25);
}

.tour-spots-badge {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.08);
}

.tour-spots-badge.low {
  background: rgba(196,163,90,0.12);
  color: var(--spore);
  border-color: rgba(196,163,90,0.25);
}

.tour-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.tour-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.tour-meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.tour-meta-icon {
  color: var(--moss-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tour-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--fg);
}

.tour-price-per {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-left: 2px;
}

.tour-card-cta {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.tours-empty {
  padding: 80px 24px;
  text-align: center;
}

.tours-empty-inner {
  max-width: 500px;
  margin: 0 auto;
  color: var(--fg-muted);
}

.tours-empty-inner a { color: var(--accent); }

.tours-cta-strip {
  padding: 48px 24px;
  background: var(--bg-warm);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tours-cta-strip-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--fg-muted);
  font-size: 1rem;
}

.tours-cta-strip-inner a { color: var(--accent); }

/* ─── TOUR DETAIL ─── */
.tour-detail-hero {
  padding: 60px 24px 48px;
  position: relative;
  overflow: hidden;
}

.tour-detail-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 100% at 20% 100%, rgba(74,93,58,0.2), transparent);
  pointer-events: none;
}

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

.tour-back-link {
  display: inline-block;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.tour-back-link:hover { color: var(--fg); }

.tour-detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tour-detail-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.tour-detail-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tour-quick-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-quick-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.tour-quick-value {
  font-size: 1rem;
  color: var(--fg);
  font-weight: 500;
}

.tour-detail-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
}

.tour-detail-body {
  padding: 0 24px 80px;
}

.tour-detail-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.tour-detail-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tour-detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tour-detail-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--fg);
}

.tour-description p {
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.tour-description p:last-child { margin-bottom: 0; }

.tour-bring, .tour-location-text {
  color: var(--fg-muted);
  line-height: 1.75;
}

.tour-location-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

.tour-detail-sidebar {
  position: sticky;
  top: 80px;
}

.tour-booking-card {
  padding: 32px 28px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(196,163,90,0.2);
  margin-bottom: 20px;
}

.tour-booking-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.tour-booking-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.tour-booking-date {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.tour-booking-spots {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.tour-booking-spots.low { color: var(--spore); }

.tour-booking-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--accent);
  color: #0e0d0b;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.15s;
}

.tour-booking-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.tour-booking-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

.tour-sidebar-facts {
  padding: 24px 28px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-sidebar-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fact-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.7;
}

.fact-value {
  font-size: 0.95rem;
  color: var(--fg);
}

/* ─── CONTACT / BOOKING FORM ─── */
.contact-hero {
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 100%, rgba(196,163,90,0.08), transparent);
  pointer-events: none;
}

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

.contact-hero-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.contact-hero-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.7;
}

.contact-section {
  padding: 0 24px 100px;
}

.contact-section-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-errors {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(220, 80, 60, 0.1);
  border: 1px solid rgba(220, 80, 60, 0.25);
  border-radius: var(--radius);
  color: #e87060;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-errors p { margin-bottom: 4px; }
.contact-errors p:last-child { margin-bottom: 0; }

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row-2 {
  flex-direction: row;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg);
}

.form-required { color: var(--accent); }
.form-optional { color: var(--fg-muted); font-weight: 400; font-size: 12px; }

.form-input {
  background: var(--bg-warm);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-input:focus {
  border-color: rgba(196,163,90,0.5);
  background: rgba(196,163,90,0.04);
}

.form-input::placeholder { color: var(--fg-muted); opacity: 0.5; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89f90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-top: 8px;
}

.form-submit {
  background: var(--accent);
  color: #0e0d0b;
  border: none;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.form-submit-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.contact-success {
  text-align: center;
  padding: 60px 0;
}

.contact-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74,93,58,0.25);
  border: 2px solid var(--moss-light);
  color: var(--moss-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.contact-success h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 28px;
}

.contact-success-link {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-success-link:hover { color: var(--accent-glow); }

/* ─── MOBILE (inner pages) ─── */
@media (max-width: 900px) {
  .tour-detail-body-inner {
    grid-template-columns: 1fr;
  }
  .tour-detail-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .form-row-2 {
    flex-direction: column;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .tour-detail-quick {
    gap: 16px;
  }
}