/* =========================
   ROOT VARIABLES
========================= */
:root {
  /* Palette (matches your reference image) */
  --bg: #fdfcfb;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #6b7280;
  --line: rgba(31, 35, 40, 0.08);

  --accent: #9b7a55; /* warm bronze */
  --accent-soft: rgba(155, 122, 85, 0.15);

  /* Typography */
  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.05);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1;
}

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

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

.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.section.alt {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 45%);
}

.section-tours {
  background: rgba(31, 35, 40, 0.03);
  border-top: 1px solid rgba(31, 35, 40, 0.06);
  border-bottom: 1px solid rgba(31, 35, 40, 0.06);
}

.section-gallery {
  background: rgba(31, 35, 40, 0.08);
  border-top: 1px solid rgba(31, 35, 40, 0.12);
  border-bottom: 1px solid rgba(31, 35, 40, 0.12);
}

.section-gallery .section-head h2 {
  color: var(--ink);
}

.section-gallery .section-head .muted {
  color: var(--muted);
}

.section-gallery .gallery-footer {
  border-top-color: rgba(31, 35, 40, 0.15);
}

.section-gallery .gallery-footer-text {
  color: var(--muted);
}

.section-gallery .gallery-carousel-slide {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-gallery .gallery-carousel-slide:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-gallery .carousel-btn {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-gallery .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-blog {
  background: rgba(31, 35, 40, 0.05);
  border-top: 1px solid rgba(31, 35, 40, 0.08);
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
}

.section-blog .section-head h2 {
  color: var(--ink);
}

.section-blog .section-head .muted {
  color: var(--muted);
}

/* =========================
   BLOG PREVIEW CARDS
========================= */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-preview-card {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.blog-preview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.08);
}

.blog-preview-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.blog-preview-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.blog-preview-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.blog-preview-content .muted {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.blog-preview-content .btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(10px);
  align-self: flex-start;
}

.blog-preview-content .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

.blog-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 35, 40, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blog-footer-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

/* =========================
   CONTACT CTA SECTION
========================= */
.section-cta {
  background: linear-gradient(135deg, rgba(31, 35, 40, 0.04), rgba(155, 122, 85, 0.05));
  border-top: 1px solid rgba(31, 35, 40, 0.08);
}

.cta-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cta-content .muted {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* =========================
   BOOKING CALENDAR
========================= */
.booking-calendar {
  margin: 24px 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.calendar-nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.calendar-month {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 4px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
}

.calendar-day:hover:not(.disabled):not(.booked):not(.selected) {
  transform: scale(1.05);
}

.calendar-day.available:hover:not(.selected) {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.5);
}

.calendar-day.disabled {
  color: rgba(107, 114, 128, 0.3);
  background: rgba(107, 114, 128, 0.05);
  cursor: not-allowed;
  border-color: transparent;
}

.calendar-day.available {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #16a34a;
  font-weight: 500;
}

.calendar-day.busy {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.4);
  color: #ca8a04;
  font-weight: 500;
}

.calendar-day.busy:hover:not(.selected) {
  background: rgba(234, 179, 8, 0.25);
  border-color: rgba(234, 179, 8, 0.5);
}

.calendar-day.booked {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #dc2626;
  cursor: not-allowed;
  opacity: 0.8;
}

.calendar-day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.calendar-day.today {
  border-width: 2px;
  border-color: var(--ink);
  font-weight: 600;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-available {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
}

.legend-busy {
  background: rgba(234, 179, 8, 0.2);
  border-color: rgba(234, 179, 8, 0.4);
}

.legend-booked {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
}

.legend-selected {
  background: var(--accent);
  border-color: var(--accent);
}

/* =========================
   BOOKING FORM TABS
========================= */
.booking-form-tabs {
  display: none;
  flex-direction: row;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-form-tabs[style*="flex"],
.booking-form-tabs.show {
  display: flex;
}

/* Always show tabs on contact page */
.contact-forms .booking-form-tabs {
  display: flex;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 24px;
}

.booking-tab-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.booking-tab-btn:hover {
  border-color: rgba(31, 35, 40, 0.2);
}

.booking-tab-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* =========================
   BOOKING FORM PANELS
========================= */
.booking-form-panel {
  margin-top: 24px;
}

.booking-step {
  display: block;
}

.booking-step[hidden] {
  display: none;
}

.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.booking-form,
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s var(--ease);
  background: var(--surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155, 122, 85, 0.1);
}

.form-group select {
  cursor: pointer;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
}

.inquiry-suggestion {
  padding: 12px 16px;
  background: rgba(155, 122, 85, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  margin-top: 8px;
}

.tour-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tour-type-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: var(--surface);
}

.tour-type-option:hover {
  border-color: var(--accent);
  background: rgba(155, 122, 85, 0.05);
}

.tour-type-option input[type="radio"] {
  display: none;
}

.tour-type-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--accent);
}

.tour-type-option:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: rgba(155, 122, 85, 0.1);
}

.tour-fields {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.field-helper {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.prefecture-buttons,
.specialized-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.prefecture-btn,
.specialized-btn,
.transport-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.prefecture-btn:hover:not(.selected):not(.disabled),
.specialized-btn:hover:not(.selected):not(.disabled),
.transport-btn:hover:not(.selected):not(.disabled) {
  border-color: var(--accent);
  background: rgba(155, 122, 85, 0.05);
  transform: translateY(-1px);
}

.prefecture-btn.selected,
.specialized-btn.selected,
.transport-btn.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.prefecture-btn.disabled,
.specialized-btn.disabled,
.transport-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.transport-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.booking-summary {
  background: rgba(31, 35, 40, 0.03);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.booking-summary h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.booking-summary-item:last-child {
  border-bottom: none;
}

.booking-summary-label {
  font-weight: 500;
  color: var(--muted);
}

.booking-summary-value {
  color: var(--ink);
  text-align: right;
}

.booking-price {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.booking-price h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.booking-price .price-amount {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--serif);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.micro {
  font-size: 13px;
}

.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 35, 40, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: opacity 0.2s var(--ease);
}

.brand:hover {
  opacity: 0.9;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b18a5a, #7d5c3d);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.4);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(10px);
}

.currency-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.currency-pill {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.currency-hint {
  font-size: 11px;
  opacity: 0.6;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 4px 0;
  transition: all 0.3s var(--ease);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(31, 35, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu.is-open,
.mobile-menu:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 8px;
  border-radius: 10px;
  transition: background 0.2s var(--ease);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--tour {
  padding-bottom: 80px;
  min-height: 85vh;
}

.hero--simple {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-mobile {
  display: none;
}

@media (max-width: 720px) {
  .hero-bg-desktop {
    display: none;
  }
  .hero-bg-mobile {
    display: block;
  }
  .hero--tour {
    min-height: 60vh;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
}

.hero-inner {
  position: relative;
  color: #fff;
  max-width: 780px;
  padding: 80px 0;
}

.kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.08;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero-title .accent {
  color: #e7c79a;
  font-weight: 500;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  font-weight: 400;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 40px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hero-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-feature-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 2px 8px rgba(31, 35, 40, 0.15);
  border-color: var(--ink);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 35, 40, 0.2);
  background: #2a2f36;
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(31, 35, 40, 0.15);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(31, 35, 40, 0.12);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn.ghost:hover {
  background: #fff;
  border-color: rgba(31, 35, 40, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn.ghost:active {
  transform: translateY(0);
}

.btn.nav-book {
  padding: 10px 20px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn.nav-book:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

.btn.small {
  padding: 10px 18px;
  font-size: 13px;
}

/* =========================
   GRID / CARDS
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

/* =========================
   ABOUT PAGE - STORY
========================= */
.story-image-wrapper {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* =========================
   ABOUT PAGE - MISSION/VISION
========================= */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-vision-card {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mission-vision-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.mission-vision-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.mission-vision-card:hover .mission-vision-image {
  transform: scale(1.05);
}

.mission-vision-card h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin: 32px 40px 20px;
  letter-spacing: -0.02em;
}

.mission-vision-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 0 40px 16px;
  font-size: 15px;
}

.mission-vision-card p:last-child {
  margin-bottom: 40px;
}

/* =========================
   ABOUT PAGE - TEAM
========================= */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(31, 35, 40, 0.15);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.team-card:hover img {
  transform: scale(1.03);
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 20px 24px 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.team-card .role {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 24px 16px;
}

.team-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 24px 24px;
  font-size: 14px;
}

/* =========================
   ABOUT PAGE - LICENSING
========================= */
.licensing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.licensing-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.licensing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(31, 35, 40, 0.12);
}

.licensing-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.licensing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.licensing-card:hover .licensing-image {
  transform: scale(1.05);
}

.licensing-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 32px 32px 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.licensing-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
  margin: 0 32px 32px;
}

@media (max-width: 900px) {
  .story-image {
    height: 320px;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .mission-vision-image-wrapper {
    height: 200px;
  }
  
  .mission-vision-card h3 {
    margin: 24px 28px 16px;
    font-size: 24px;
  }
  
  .mission-vision-card p {
    margin-left: 28px;
    margin-right: 28px;
  }
  
  .mission-vision-card p:last-child {
    margin-bottom: 28px;
  }
  
  .team-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .licensing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .story-image-wrapper {
    margin-bottom: 32px;
  }
  
  .story-image {
    height: 260px;
  }
  
  .mission-vision-card {
    padding: 0;
  }
  
  .mission-vision-image-wrapper {
    height: 180px;
  }
  
  .mission-vision-card h3 {
    font-size: 22px;
    margin: 20px 24px 16px;
  }
  
  .mission-vision-card p {
    margin-left: 24px;
    margin-right: 24px;
    font-size: 14px;
  }
  
  .mission-vision-card p:last-child {
    margin-bottom: 24px;
  }
  
  .team-card img {
    height: 240px;
  }
  
  .team-card h4 {
    font-size: 20px;
    margin: 16px 20px 6px;
  }
  
  .team-card .role {
    margin: 0 20px 12px;
  }
  
  .team-card p {
    margin: 0 20px 20px;
  }
  
  .licensing-card {
    padding: 0;
  }
  
  .licensing-image-wrapper {
    height: 180px;
  }
  
  .licensing-card h4 {
    margin: 24px 24px 12px;
    font-size: 18px;
  }
  
  .licensing-card p {
    margin: 0 24px 24px;
    font-size: 13px;
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(31, 35, 40, 0.12);
}

.card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.card:hover img {
  transform: scale(1.02);
}

.card-body {
  padding: 22px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* =========================
   TOUR CARDS
========================= */
.tour-card {
  background: rgba(31, 35, 40, 0.95);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.tour-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.tour-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .tour-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .tour-card img {
    height: 180px;
  }
}

.tour-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0; /* Allow flex shrinking */
}

.tour-card-content > .tour-title-card {
  flex-shrink: 0;
}

.tour-card-content > .muted {
  flex: 1;
  min-height: 0;
}

.tour-card-content > .tour-meta-cards {
  flex-shrink: 0;
  margin-top: auto; /* Push to bottom */
  margin-bottom: 0;
}

.tour-card-content > .btn {
  flex-shrink: 0;
  margin-top: 12px; /* Spacing between meta cards and button */
}

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.tour-title-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 4px;
}

.tour-title-card h3,
.tour-title-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.tour-title-card h4 {
  font-size: 18px;
}

.tour-body .muted,
.tour-card-content .muted {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.tour-card-content .btn {
  width: 100%;
}

.tour-card-content .btn.primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tour-card-content .btn.primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-card-content .btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tour-meta-group {
  display: flex;
  gap: 10px;
}

.tour-meta-cards {
  display: flex;
  gap: 10px;
}

.tour-meta-card {
  border-radius: 10px;
  padding: 12px 16px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-duration-card {
  background: rgba(155, 122, 85, 0.35);
  border: 1px solid rgba(155, 122, 85, 0.5);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  min-height: 40px;
}

.tour-price-card {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  min-height: 40px;
}

.tour-meta-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.tour-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.tour-price-card .tour-meta-label {
  color: rgba(31, 35, 40, 0.7);
}

.tour-price-card .tour-meta-value {
  color: rgba(31, 35, 40, 0.95);
  font-size: 16px;
  font-weight: 700;
}

.tour-price-note {
  font-size: 11px;
  color: rgba(31, 35, 40, 0.7);
  font-weight: 400;
  white-space: nowrap;
}

.tour-duration {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 0;
}

.tour-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.tour-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.tours-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tours-footer-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

/* =========================
   CUSTOM TOUR SECTION
========================= */
.custom-tour-section {
  margin-top: 32px;
}

.custom-tour-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(31, 35, 40, 0.95);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s var(--ease);
}

.custom-tour-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.custom-tour-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease);
}

.custom-tour-content:hover .custom-tour-image {
  transform: scale(1.02);
}

.custom-tour-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-tour-text h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: -0.02em;
}

.custom-tour-text .muted {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.custom-tour-text .btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* =========================
   GALLERY CAROUSEL
========================= */
.gallery-carousel-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  gap: 16px;
}

.gallery-carousel-slide {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: block;
  cursor: pointer;
}

/* Gallery carousel slide with content (for gallery.html) */
.gallery-carousel-slide:has(.gallery-slide-content) {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  cursor: default;
}

.gallery-carousel-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

/* Smaller images for gallery page carousel */
.gallery-carousel-slide:has(.gallery-slide-content) img {
  height: 200px;
}

.gallery-carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(31, 35, 40, 0.85);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(31, 35, 40, 0.95);
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

/* Gallery carousel with content - additional styles for gallery page */
.gallery-slide-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-slide-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.gallery-slide-content .muted {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.gallery-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-footer-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.testimonial-card-dark {
  background: rgba(31, 35, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card-dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 auto 0;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}

.testimonial-card-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.testimonial-card-dark .testimonial-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-meta strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}

.testimonial-card-dark .testimonial-meta strong {
  color: #fff;
}

.testimonial-meta .micro {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-card-dark .testimonial-meta .micro {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-carousel-slide {
    flex: 0 0 calc(50% - 8px);
  }
  
  .gallery-carousel-slide img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-carousel-slide {
    flex: 0 0 100%;
  }
  
  .gallery-carousel-slide img {
    height: 200px;
  }
  
  .gallery-slide-content {
    padding: 16px;
  }
  
  .gallery-slide-content h3 {
    font-size: 18px;
  }
  
  .gallery-slide-content .muted {
    font-size: 13px;
  }
}

/* =========================
   BLOG CARDS (LARGE)
========================= */
.blog-grid-large {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card-large {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--bg-alt);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card-large:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.blog-card-content h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.blog-card-content .muted {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.blog-card-content .btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .blog-grid-large {
    gap: 24px;
  }
  
  .blog-card-image {
    height: 250px;
  }
  
  .blog-card-content {
    padding: 24px;
  }
  
  .blog-card-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .blog-grid-large {
    gap: 20px;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .blog-card-content {
    padding: 20px;
    gap: 12px;
  }
  
  .blog-card-content h3 {
    font-size: 22px;
  }
  
  .blog-card-content .muted {
    font-size: 15px;
  }
}

/* =========================
   ARTICLE CONTENT
========================= */
.article-content {
  font-size: 16px;
  line-height: 1.8;
}

.article-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 48px 0 24px 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content p {
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .article-content h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
  }
  
  .article-content p {
    font-size: 15px;
  }
}

/* =========================
   FEATURE GRID (QUICK HIGHLIGHTS)
========================= */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-row-single {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.feature-card .muted {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-card .btn {
  margin-top: 8px;
}

.feature-card .btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(10px);
}

.feature-card .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

.feature-card .btn.primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.feature-card .btn.primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.feature-card-contact {
  background: linear-gradient(135deg, rgba(155, 122, 85, 0.95), rgba(125, 92, 61, 0.95));
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-info .info-card {
  background: rgba(31, 35, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-info .info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-info .info-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
}

.contact-info .info-card p {
  margin: 8px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info .info-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.contact-info .info-card a:hover {
  color: #fff;
}

.contact-info .messaging-apps .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.contact-info .messaging-apps .icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.contact-info .messaging-apps .icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.contact-info .info-note {
  background: rgba(31, 35, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info .info-note p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info .info-note strong {
  color: #fff;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-card {
  background: rgba(31, 35, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.contact-detail-value a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.contact-detail-value a:hover {
  color: #fff;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links li {
  margin-bottom: 6px;
}

.contact-forms {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
  color: var(--muted);
}

.tab-btn:hover {
  border-color: rgba(31, 35, 40, 0.2);
  color: var(--ink);
}

.tab-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.form-row:has(textarea) {
  grid-template-columns: 1fr;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s var(--ease);
  background: #fff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(107, 114, 128, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

input.error,
select.error,
textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}

.form-preview h4 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 20px;
}

.form-preview ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.form-preview li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.form-preview li:last-child {
  border-bottom: none;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: rgba(31, 35, 40, 0.98);
  color: #fff;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b18a5a, #7d5c3d);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.footer .muted {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom .muted {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

/* =========================
   MODAL
========================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.modal-card {
  position: relative;
  z-index: 1001;
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.modal-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.modal-x {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.modal-x:hover {
  background: var(--line);
  color: var(--ink);
}

.modal-body {
  padding: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 120px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section {
    padding: 70px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .hero--simple {
    min-height: 50vh;
  }
  .hero--tour {
    padding-bottom: 60px;
  }
  .hero-inner {
    padding: 60px 0;
  }
  .hero-title {
    font-size: clamp(28px, 6vw, 42px);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 40px 0 28px;
  }
  .footer-inner {
    gap: 24px;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-feature-card {
    padding: 18px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-row-single {
    max-width: 100%;
  }
  .feature-card {
    padding: 28px;
  }
  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-preview-image {
    height: 180px;
  }
  .blog-preview-content {
    padding: 20px;
  }
  .custom-tour-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }
  .custom-tour-image {
    height: 320px;
  }
  .custom-tour-text h3 {
    font-size: 26px;
  }
  /* Tour cards responsive */
  .tour-card-content {
    padding: 20px;
  }
  .tour-title-card {
    padding: 10px 14px;
  }
  .tour-title-card h3,
  .tour-title-card h4 {
    font-size: 18px;
  }
  .tour-meta-cards {
    gap: 8px;
  }
  .tour-duration-card,
  .tour-price-card {
    padding: 8px 12px;
    min-height: 36px;
    gap: 4px;
  }
  .tour-meta-label {
    font-size: 10px;
  }
  .tour-meta-value {
    font-size: 13px;
  }
  .tour-price-card .tour-meta-value {
    font-size: 15px;
  }
  .tour-price-note {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .container {
    width: calc(100% - 32px);
  }
  
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-detail-card {
    padding: 16px;
  }
  
  .contact-detail-label {
    font-size: 11px;
  }
  
  .contact-detail-value {
    font-size: 15px;
  }
  
  .nav-inner {
    padding: 16px 0;
  }
  .nav-actions {
    gap: 8px;
  }
  .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .btn.nav-book {
    padding: 9px 16px;
    font-size: 12px;
  }
  .currency-toggle {
    padding: 7px 10px;
    font-size: 11px;
    gap: 4px;
  }
  
  .currency-pill {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  
  .currency-hint {
    font-size: 9px;
    opacity: 0.65;
  }
  .footer {
    padding: 36px 0 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-right {
    gap: 12px;
  }
  .icon-link {
    width: 48px;
    height: 48px;
  }
  .icon-link svg {
    width: 26px;
    height: 26px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-feature-card {
    padding: 16px;
  }
  .hero-feature-title {
    font-size: 14px;
  }
  .hero-feature-desc {
    font-size: 12px;
  }
  .hero--tour {
    padding-bottom: 50px;
  }
  .hero-inner {
    padding: 50px 0;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .gallery-carousel-slide {
    flex: 0 0 100%;
  }
  .gallery-carousel-slide img {
    height: 220px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .gallery-footer {
    margin-top: 36px;
    padding-top: 24px;
  }
  .blog-preview-image {
    height: 160px;
  }
  .blog-preview-content {
    padding: 18px;
  }
  .blog-preview-content h3 {
    font-size: 18px;
  }
  .blog-footer {
    margin-top: 36px;
    padding-top: 24px;
  }
  .cta-panel {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .calendar-day {
    min-height: 40px;
    font-size: 13px;
  }
  .custom-tour-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .custom-tour-image {
    height: 300px;
    order: -1;
  }
  .custom-tour-text h3 {
    font-size: 24px;
  }
  .custom-tour-text .btn {
    width: 100%;
    align-self: stretch;
  }
  /* Tour cards mobile */
  .tour-card-content {
    padding: 18px;
    gap: 12px;
  }
  .tour-title-card {
    padding: 10px 12px;
    margin-bottom: 2px;
  }
  .tour-title-card h3,
  .tour-title-card h4 {
    font-size: 16px;
  }
  .tour-card-content .muted {
    font-size: 13px;
    line-height: 1.5;
  }
  .tour-meta-cards {
    gap: 6px;
    flex-wrap: wrap;
  }
  .tour-duration-card,
  .tour-price-card {
    padding: 8px 10px;
    min-height: 34px;
    gap: 4px;
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
  }
  .tour-meta-label {
    font-size: 9px;
    letter-spacing: 0.03em;
  }
  .tour-meta-value {
    font-size: 12px;
  }
  .tour-price-card .tour-meta-value {
    font-size: 14px;
  }
  .tour-price-note {
    font-size: 9px;
  }
  .tour-card-content .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(31, 35, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(31, 35, 40, 1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}
