/* 
 * SHIK VILLAGE — Core Stylesheet
 * Brand: Natural Sanctuary / Natural Luxury
 * Typography: EB Garamond (Serif) & Manrope (Sans-serif)
 */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Manrope:wght@200..800&display=swap');

:root {
  /* Color Palette */
  --surface: #fdf9f4;
  --surface-dim: #ddd9d5;
  --surface-bright: #fdf9f4;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f7f3ee;
  --surface-container: #f1ede8;
  --surface-container-high: #ebe8e3;
  --surface-container-highest: #e6e2dd;
  --on-surface: #1c1c19;
  --on-surface-variant: #414944;
  --outline: #717974;
  --outline-variant: #c0c8c3;
  
  --primary: #00261b; /* Deep Forest Green */
  --on-primary: #ffffff;
  --primary-container: #0b3d2e;
  --on-primary-container: #79a894;
  
  --secondary: #775a19; /* Antique Gold */
  --on-secondary: #ffffff;
  --secondary-container: #fed488;
  --on-secondary-container: #785a1a;
  
  --background: #fdf9f4;
  --on-background: #1c1c19;
  --text-main: #4a4a4a; /* Warm Gray */
  --forest-dark: #06261d;
  --ivory-bright: #ffffff;
  
  /* Typography Variables */
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  
  /* Corner Radius */
  --radius-sm: 0.25rem;       /* 4px */
  --radius-default: 0.5rem;   /* 8px */
  --radius-md: 0.75rem;       /* 12px */
  --radius-lg: 1rem;          /* 16px */
  --radius-xl: 1.5rem;        /* 24px */
  --radius-full: 9999px;
  
  /* Layout Spacing */
  --section-gap-desktop: 120px;
  --section-gap-mobile: 64px;
  --container-max: 1280px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

p, .font-sans {
  font-family: var(--font-sans);
  font-size: 16px;
}

.text-lg {
  font-size: 20px;
  line-height: 1.6;
}

.text-muted {
  color: var(--on-surface-variant);
}

.label-md {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-gap-desktop);
  padding-bottom: var(--section-gap-desktop);
  position: relative;
}

.section-dim {
  background-color: var(--surface-container-low);
}

.section-dark {
  background-color: var(--forest-dark);
  color: var(--surface);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--surface);
}

.section-dark .text-muted {
  color: var(--surface-dim);
}

.section-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .subtitle {
  margin-top: 16px;
  font-size: 20px;
  color: var(--on-surface-variant);
}

.section-dark .section-header .subtitle {
  color: var(--surface-dim);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-lg);
  min-height: 56px;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--secondary); /* Antique Gold */
  color: var(--ivory-bright);
}

.btn-primary:hover {
  background-color: #634b14; /* Darker Gold */
  box-shadow: 0 4px 12px rgba(119, 90, 25, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--ivory-bright);
}

.btn-dark {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-dark:hover {
  background-color: var(--secondary-container);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 24px 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(6, 38, 29, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 48px;
  white-space: nowrap;
}

.header .logo img {
  height: 100%;
  width: auto;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.header .logo span {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--surface);
  margin-left: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.header .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: nowrap;
  align-items: center;
}

.header .nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--surface-dim);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.header .nav-links a:hover,
.header .nav-links a.active {
  color: var(--secondary);
}

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

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

.header .header-cta {
  display: flex;
}

.header .header-cta .btn {
  padding: 10px 24px;
  min-height: 40px;
  font-size: 13px;
  border-radius: var(--radius-md);
  border-color: var(--surface-dim);
  color: var(--surface);
}

.header .header-cta .btn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--ivory-bright);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--surface);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background-color: var(--forest-dark);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6, 38, 29, 0.4) 0%, rgba(6, 38, 29, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--gutter);
  margin-top: 60px;
}

.hero h1 {
  color: var(--surface);
  margin-bottom: 24px;
  font-size: 84px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--surface-dim);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Trust Block */
.trust-top-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.trust-title-col h2 {
  font-size: 48px;
  line-height: 1.2;
}

.trust-desc-col p {
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.6;
}

.trust-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px var(--gutter);
  margin-top: 60px;
}

.trust-highlight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-container-low);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 200, 195, 0.25);
  transition: all 0.3s ease;
}

.trust-highlight-card:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  background-color: var(--surface-container);
}

.trust-highlight-icon {
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.trust-highlight-card .label-md {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--primary);
  text-transform: uppercase;
}

.trust-highlight-card p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.5;
}

/* Services Grid & Cards */
.card-service {
  background-color: var(--surface-container-lowest); /* Pure White */
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(113, 121, 116, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.card-service:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: 0 12px 30px rgba(6, 38, 29, 0.06);
}

.card-service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-service:hover .card-service-img img {
  transform: scale(1.05);
}

.card-service-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-service h3 {
  margin-bottom: 16px;
}

.card-service p {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.6;
}

/* Why SHIK VILLAGE cards */
.why-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(113, 121, 116, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(119, 90, 25, 0.06);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-main);
  font-size: 15px;
}

/* Complex Territory Section */
.territory-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.territory-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.territory-media-mobile {
  display: none;
}

.territory-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.territory-item {
  display: flex;
  gap: 20px;
}

.territory-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.territory-item-content h4 {
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: normal;
}

.territory-item-content p {
  color: var(--text-main);
  font-size: 15px;
}

/* Accommodations Section */
.accommodation-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface-variant);
  cursor: pointer;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tab-btn:hover {
  color: var(--primary);
  background-color: var(--surface-container);
}

.tab-btn.active {
  color: var(--primary);
  background-color: var(--surface-container-highest);
  border-color: var(--outline-variant);
}

.accommodation-scroll-controls {
  display: none;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  transition: opacity 0.3s ease;
}

.accom-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(192, 200, 195, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 121, 116, 0.3);
}

.accom-img-container {
  height: 240px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.accom-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.accom-card:hover .accom-img-container img {
  transform: scale(1.05);
}

.accom-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(6, 38, 29, 0.85);
  color: var(--surface);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.accom-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.accom-title-row {
  margin-bottom: 12px;
}

.accom-title-row h3 {
  font-size: 26px;
}

.accom-desc {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.accom-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--surface-container-high);
  border-bottom: 1px solid var(--surface-container-high);
  margin-bottom: 24px;
}

.accom-spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.accom-spec-item svg {
  margin-right: 6px;
  color: var(--secondary);
  flex-shrink: 0;
}

.accom-price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.accom-price-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.accom-price-item span:first-child {
  color: var(--on-surface-variant);
}

.accom-price-item span:last-child {
  font-weight: 700;
  color: var(--primary);
}

.accom-action {
  width: 100%;
}

.accom-action .btn {
  width: 100%;
  padding: 12px 24px;
  min-height: 48px;
}

/* What is included section */
.included-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.included-card {
  background-color: var(--surface-container);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.included-card-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.included-card-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

/* What you can do section */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.activity-card {
  background-color: var(--surface-container-low);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(192, 200, 195, 0.15);
  transition: all 0.3s ease;
}

.activity-card:hover {
  background-color: var(--surface-container);
  border-color: var(--secondary);
}

.activity-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--surface-container-highest);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.activity-card h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Use cases section */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.usecase-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(192, 200, 195, 0.2);
  transition: border-color 0.3s ease;
  height: 100%;
}

.usecase-card:hover {
  border-color: var(--secondary);
}

.usecase-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.usecase-card p {
  color: var(--text-main);
  font-size: 14px;
}

/* Gallery Section — Slider */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6, 38, 29, 0.08);
  border: 1px solid rgba(113, 121, 116, 0.2);
}

.gallery-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(6, 38, 29, 0.8) 0%, rgba(6, 38, 29, 0) 100%);
  padding: 80px 48px 48px 48px;
  color: var(--surface);
  z-index: 3;
}

.gallery-slide-caption .label-md {
  color: var(--secondary-container);
  font-size: 13px;
  margin-bottom: 8px;
  display: inline-block;
}

.gallery-slide-caption h3 {
  font-size: 32px;
  color: var(--surface);
  margin-top: 4px;
}

.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: rgba(253, 249, 244, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 249, 244, 0.25);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-slider-btn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--ivory-bright);
}

.gallery-slider-btn.prev {
  left: 24px;
}

.gallery-slider-btn.next {
  right: 24px;
}

.gallery-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(253, 249, 244, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-slider-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

/* Reviews Section — Infinite Scrolling Marquee */
.reviews-rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  font-family: var(--font-sans);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fed488; /* secondary-container */
  color: #785a1a; /* on-secondary-container */
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
}

.rating-badge svg {
  color: var(--secondary);
}

.rating-divider {
  width: 1px;
  height: 24px;
  background-color: var(--outline-variant);
}

.reviews-count {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
}

.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
  margin-left: auto;
  margin-right: auto;
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

.reviews-marquee-group {
  display: flex;
}

.review-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-right: 24px;
  flex-shrink: 0;
}

.review-item {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(113, 121, 116, 0.15);
  width: 380px;
  height: 280px; /* Uniform size */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  white-space: normal;
}

.review-card-link:hover .review-item {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(119, 90, 25, 0.05);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.review-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 16px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Booking Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.process-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(113, 121, 116, 0.15);
  border-top: 4px solid var(--secondary); /* Top accent bar */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 38, 29, 0.04);
  border-color: var(--outline-variant);
}

.process-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-card h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-md);
  border: 1px solid rgba(192, 200, 195, 0.2);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--outline-variant);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 32px 24px 32px;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: var(--secondary);
}

/* Contacts & Map Section */
.contacts-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-block h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact-block p {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
}

.contact-block a {
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--secondary);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 480px;
  border: 1px solid rgba(192, 200, 195, 0.3);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.03);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
}

/* Social Media Section */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.social-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-decoration: none;
  color: var(--primary);
  border: 1px solid rgba(192, 200, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(119, 90, 25, 0.05);
}

.social-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-card-left h4 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.social-brand-icon {
  color: var(--secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.social-icon-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--surface-container-low);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon-arrow {
  background-color: var(--secondary);
  color: var(--ivory-bright);
}

/* Final CTA Section */
.final-cta-bg {
  background-color: var(--forest-dark);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(192, 200, 195, 0.15);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-content h2 {
  color: var(--surface);
  font-size: 60px;
  margin-bottom: 24px;
}

.final-cta-content p {
  color: var(--surface-dim);
  font-size: 18px;
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background-color: var(--forest-dark);
  color: var(--surface-dim);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(192, 200, 195, 0.1);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 32px;
  color: var(--surface);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--surface-dim);
}

.footer-nav h4,
.footer-contacts h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-container);
  margin-bottom: 24px;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.footer-nav ul a {
  color: var(--surface-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav ul a:hover {
  color: var(--secondary);
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item a {
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(192, 200, 195, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Floating Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--forest-dark);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
  z-index: 999;
}

.mobile-cta-bar .btn {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 38, 29, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--surface);
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(113, 121, 116, 0.2);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--secondary);
}

.modal-header {
  background-color: var(--primary);
  color: var(--surface);
  padding: 40px 40px 30px 40px;
}

.modal-header h3 {
  color: var(--surface);
  font-size: 32px;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--surface-dim);
  font-size: 14px;
}

.modal-body {
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  height: 56px;
  background-color: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-default);
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: var(--surface-container-lowest);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23775a19' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

.form-submit-row {
  margin-top: 32px;
}

.form-submit-row .btn {
  width: 100%;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-message h4 {
  font-size: 28px;
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--text-main);
  margin-bottom: 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 60px;
  }
  
  h2 {
    font-size: 38px;
  }
  
  .section {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
    scroll-margin-top: 78px;
  }
  
  .trust-layout,
  .territory-layout,
  .included-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .accommodation-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4,
  .usecases-grid,
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-nav ul {
    justify-items: center;
  }
  
  .footer-contacts-list {
    align-items: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 44px;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .header {
    background-color: rgba(6, 38, 29, 0.95);
    padding: 16px 0;
  }
  
  .header .nav-links {
    display: none;
  }

  .header .nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--forest-dark);
    z-index: 998;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 80px 40px;
    animation: fadeIn 0.3s ease forwards;
  }

  .header .nav-links.mobile-active a {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--surface-dim);
    text-transform: none;
    letter-spacing: normal;
  }

  .header .nav-links.mobile-active a:hover,
  .header .nav-links.mobile-active a.active {
    color: var(--secondary);
  }

  .header.menu-open {
    background-color: transparent !important;
    box-shadow: none !important;
  }
  
  .header.menu-open .logo,
  .header.menu-open .mobile-menu-btn {
    position: relative;
    z-index: 1001;
    color: var(--surface) !important;
  }

  .header.menu-open .logo span {
    color: var(--surface) !important;
  }
  
  .header .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    height: 90vh;
  }
  
  .accommodation-grid,
  .gallery-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .usecases-grid,
  .activities-grid,
  .socials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-card::before {
    width: 100%;
  }
  
  .final-cta-bg {
    padding: 60px 24px;
  }
  
  .final-cta-content h2 {
    font-size: 36px;
  }
  
  body {
    padding-bottom: 72px; /* space for mobile floating CTA bar */
  }
  
  .mobile-cta-bar {
    display: block;
  }
  
  .review-item {
    padding: 24px;
  }
  
  .review-text {
    font-size: 16px;
  }
  
  .map-container {
    height: 320px;
  }
  
  .modal-container {
    max-width: 90%;
  }
  
  .modal-body {
    padding: 24px;
  }
}

/* Umidbekchik Telegram Badge in Footer */
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-full);
  padding: 8px 20px 8px 8px;
  border: 1px solid rgba(192, 200, 195, 0.2);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Premium mobile experience: layout-only overrides, desktop remains unchanged. */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section-gap-mobile: 76px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  h1,
  h2 {
    letter-spacing: 0;
  }

  h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  p,
  .text-muted,
  .section-header .subtitle {
    font-size: 17px;
    line-height: 1.62;
  }

  .section {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
  }

  .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .section-header,
  .section-header.center {
    max-width: 100%;
    margin-bottom: 36px;
    text-align: left;
  }

  .section-header .label-md,
  .trust-title-col .label-md,
  .territory-content > .label-md,
  .included-layout > div > .label-md,
  .contacts-info .label-md,
  .final-cta-content .label-md {
    font-size: 12px;
    line-height: 1.35;
  }

  .btn,
  .tab-btn,
  .faq-header,
  .social-card,
  .gallery-slider-btn,
  .mobile-menu-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    font-size: 15px;
    line-height: 1.2;
  }

  .header {
    padding: 14px 0;
  }

  .header .logo {
    min-width: 0;
  }

  .header .logo img {
    width: 42px;
    height: 42px;
  }

  .header .logo span {
    font-size: 17px;
    white-space: nowrap;
  }

  .mobile-menu-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header .nav-links.mobile-active {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 104px 28px 40px;
  }

  .header .nav-links.mobile-active a {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 8px 0;
    font-size: 30px;
    line-height: 1.1;
  }

  .hero {
    height: 94vh;
    height: 94svh;
    min-height: 560px;
    max-height: 860px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .hero-bg img {
    opacity: 0.64;
    object-position: 54% center;
    filter: brightness(0.86);
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(6, 38, 29, 0.24) 0%, rgba(6, 38, 29, 0.3) 38%, rgba(6, 38, 29, 0.92) 100%),
      linear-gradient(to right, rgba(6, 38, 29, 0.28) 0%, rgba(6, 38, 29, 0) 58%);
  }

  .hero-content {
    width: 100%;
    max-width: 430px;
    margin: 0;
    padding: 0 var(--gutter) calc(92px + env(safe-area-inset-bottom));
    text-align: left;
  }

  .hero h1 {
    max-width: 9ch;
    margin-bottom: 18px;
    font-size: 58px;
    line-height: 0.98;
  }

  .hero .subtitle {
    max-width: 31ch;
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.48;
    color: rgba(253, 249, 244, 0.88);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero .hero-actions {
    display: none;
  }

  .trust-top-row,
  .territory-layout,
  .included-layout,
  .contacts-layout {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 0;
  }

  .trust-title-col h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .trust-desc-col p {
    font-size: 17px;
  }

  .trust-highlights-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .activities-grid,
  .usecases-grid,
  .socials-grid,
  .process-grid,
  .included-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-highlights-grid {
    margin-top: 36px;
  }

  .trust-highlight-card,
  .why-card,
  .included-card,
  .activity-card,
  .usecase-card,
  .process-card,
  .social-card {
    width: 100%;
    padding: 28px;
    border-radius: var(--radius-lg);
  }

  .trust-highlight-card p,
  .why-card p,
  .usecase-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .card-service {
    width: 100%;
    min-height: auto;
  }

  .card-service-img {
    height: 260px;
  }

  .card-service-content {
    padding: 28px;
  }

  .card-service h3,
  .why-card h3,
  .usecase-card h3 {
    font-size: 27px;
  }

  .card-service p {
    font-size: 16px;
  }

  .territory-layout > .territory-media {
    display: none;
  }

  #territory {
    overflow: hidden;
  }

  .territory-media-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 22px 0 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(192, 200, 195, 0.28);
    background-color: var(--surface-container-lowest);
    box-shadow: 0 12px 34px rgba(6, 38, 29, 0.06);
  }

  .territory-media-mobile img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .territory-content .text-muted {
    margin-bottom: 30px !important;
  }

  .territory-list {
    gap: 22px;
  }

  .territory-item {
    gap: 16px;
  }

  .territory-item-icon {
    width: 52px;
    height: 52px;
  }

  .territory-item-content h4 {
    font-size: 18px;
  }

  #accommodations {
    overflow: hidden;
    padding-bottom: calc(var(--section-gap-mobile) + 34px);
  }

  .accommodation-tabs {
    position: sticky;
    top: 70px;
    z-index: 20;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 -20px 28px;
    padding: 10px 20px 12px;
    overflow-x: auto;
    background: linear-gradient(to bottom, var(--surface) 70%, rgba(253, 249, 244, 0));
    scrollbar-width: none;
  }

  .section-dim .accommodation-tabs {
    background: linear-gradient(to bottom, var(--surface-container-low) 70%, rgba(247, 243, 238, 0));
  }

  .accommodation-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
    background-color: var(--surface-container-lowest);
    border-color: rgba(192, 200, 195, 0.35);
  }

  .accommodation-scroll-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -6px 0 18px;
    color: var(--secondary);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .accommodation-scroll-controls span {
    color: var(--on-surface-variant);
    white-space: nowrap;
  }

  .accommodation-scroll-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(192, 200, 195, 0.42);
    background-color: var(--surface-container-lowest);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(6, 38, 29, 0.04);
  }

  .accommodation-scroll-btn:active {
    background-color: var(--surface-container);
  }

  .accommodation-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 40px);
    grid-template-columns: none;
    gap: 18px;
    margin: 0 -20px;
    padding: 0 20px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .accommodation-grid::-webkit-scrollbar {
    display: none;
  }

  .accom-card {
    min-width: 0;
    scroll-snap-align: start;
  }

  .accom-img-container {
    height: 300px;
  }

  .accom-info {
    padding: 26px;
  }

  .accom-title-row h3 {
    font-size: 29px;
    line-height: 1.08;
  }

  .accom-desc {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .accom-specs {
    gap: 10px 14px;
    padding: 18px 0;
    margin-bottom: 22px;
  }

  .accom-spec-item {
    font-size: 14px;
    line-height: 1.35;
  }

  .accom-price-row {
    gap: 10px;
  }

  .accom-price-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 14px;
  }

  .accom-action .btn {
    min-height: 56px;
  }

  #accommFooterCta {
    margin-top: 4px;
  }

  .included-layout > div:first-child {
    max-width: 33ch;
  }

  .included-card[style] {
    grid-column: auto !important;
  }

  .included-card {
    min-height: 76px;
    align-items: center;
  }

  .activities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .activity-card {
    min-height: 148px;
    padding: 22px;
  }

  .activity-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .activity-card h4 {
    font-size: 16px;
    line-height: 1.35;
  }

  .usecase-card[style] {
    grid-column: auto !important;
  }

  .gallery-slider-wrapper {
    height: 68vh;
    height: 68svh;
    min-height: 520px;
    max-height: 680px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  #gallery,
  #contacts,
  #final-cta {
    padding-bottom: calc(var(--section-gap-mobile) + 28px);
  }

  .gallery-slide img {
    object-position: center;
  }

  .gallery-slide-caption {
    padding: 120px 20px 176px;
  }

  .gallery-slide-caption h3 {
    max-width: 12ch;
    font-size: 34px;
    line-height: 1.04;
  }

  .gallery-slider-btn {
    top: auto;
    bottom: 18px;
    width: 52px;
    height: 52px;
    transform: none;
    background-color: rgba(6, 38, 29, 0.52);
  }

  .gallery-slider-btn.prev {
    left: 20px;
  }

  .gallery-slider-btn.next {
    right: 20px;
  }

  .gallery-slider-dots {
    bottom: 38px;
  }

  .reviews-rating-banner {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
  }

  .rating-divider {
    display: none;
  }

  .review-card-link {
    margin-right: 16px;
  }

  .review-item {
    width: min(340px, calc(100vw - 56px));
    height: 300px;
    padding: 26px;
  }

  .process-grid {
    margin-bottom: 34px;
  }

  .process-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 112px;
    border-top: none;
    border-left: 4px solid var(--secondary);
  }

  .process-card::before {
    display: none;
  }

  .process-number {
    margin-bottom: 0;
    font-size: 42px;
  }

  .process-card h4 {
    font-size: 16px;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-header {
    min-height: 64px;
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-content {
    padding: 0 20px 22px;
    font-size: 16px;
  }

  .contacts-info {
    gap: 28px;
  }

  .contact-block p,
  .contact-block a {
    font-size: 22px;
    line-height: 1.25;
  }

  .map-container {
    height: 72vh;
    height: 72svh;
    min-height: 500px;
    max-height: 680px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
    overflow: auto;
    background-color: var(--surface-container-lowest);
    -webkit-overflow-scrolling: touch;
  }

  .map-container img {
    width: 760px;
    max-width: none;
    min-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .map-overlay-btn {
    position: sticky;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    max-width: 340px;
    margin-top: -76px;
  }

  .social-card {
    min-height: 84px;
    padding: 24px;
  }

  .social-icon-arrow {
    width: 52px;
    height: 52px;
  }

  .final-cta-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding: 72px 20px 82px;
    border-radius: 0;
  }

  .final-cta-content {
    text-align: left;
  }

  .final-cta-content h2 {
    max-width: 10ch;
    font-size: 48px;
    line-height: 1.02;
  }

  .final-cta-content p {
    max-width: 33ch;
    font-size: 17px;
  }

  .footer {
    padding-top: 58px;
    padding-bottom: 36px;
  }

  .footer-layout {
    gap: 0;
    margin-bottom: 34px;
    border: 1px solid rgba(192, 200, 195, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: rgba(253, 249, 244, 0.03);
  }

  .footer-brand,
  .footer-nav,
  .footer-contacts {
    padding: 26px 22px;
  }

  .footer-brand,
  .footer-nav ul,
  .footer-contacts-list {
    text-align: left;
    justify-items: stretch;
    align-items: stretch;
  }

  .footer-brand,
  .footer-nav {
    border-bottom: 1px solid rgba(192, 200, 195, 0.12);
  }

  .footer-brand h3 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    max-width: 31ch;
    line-height: 1.6;
  }

  .footer-nav h4,
  .footer-contacts h4 {
    margin-bottom: 16px;
  }

  .footer-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer-nav ul a {
    display: block;
    min-height: 34px;
    font-size: 15px;
  }

  .footer-contact-item {
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-contact-item svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .author-badge {
    border-radius: var(--radius-lg);
    background-color: rgba(253, 249, 244, 0.06);
  }

  .mobile-cta-bar {
    left: 16px;
    right: 16px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    padding: 0;
    border-radius: var(--radius-lg);
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .mobile-cta-bar .btn {
    min-height: 54px;
    font-size: 15px;
    box-shadow: 0 14px 34px rgba(0, 38, 27, 0.22);
  }

  .modal-overlay {
    align-items: flex-end;
  }

  .modal-container {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    max-height: 92svh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow-y: auto;
  }

  .modal-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .modal-header {
    padding: 34px 24px 24px;
  }

  .modal-header h3 {
    max-width: 11ch;
    font-size: 34px;
  }

  .modal-header p {
    font-size: 15px;
    line-height: 1.5;
  }

  .modal-body {
    padding: 26px 20px calc(28px + env(safe-area-inset-bottom));
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-input {
    height: 58px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  select.form-input {
    background-size: 18px;
  }

  .form-submit-row {
    margin-top: 28px;
  }

  .form-submit-row .btn {
    min-height: 58px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero .subtitle {
    max-width: 29ch;
  }

  .card-service-img {
    height: 244px;
  }

  .accom-img-container {
    height: 282px;
  }

  .activities-grid {
    gap: 12px;
  }
}

@media (max-width: 380px) {
  h2 {
    font-size: 35px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .trust-highlight-card,
  .why-card,
  .card-service-content,
  .accom-info,
  .included-card,
  .activity-card,
  .usecase-card,
  .process-card,
  .social-card {
    padding: 22px;
  }

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

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .reviews-marquee-track {
    animation-duration: 90s;
  }

  .hero h1,
  .hero .subtitle,
  .hero .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.author-badge:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(119, 90, 25, 0.08);
}

.footer .author-badge {
  color: #111111;
}

.author-badge img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1px solid var(--outline-variant);
}

.author-badge .author-name {
  color: var(--secondary);
  font-weight: 700;
}
