:root {
  --forest: #2d4a3e;
  --forest-dark: #1a2e26;
  --coffee: #5c3d2e;
  --coffee-light: #8b5e3c;
  --cream: #f7f3ed;
  --sand: #e8dfd0;
  --gold: #c9a227;
  --text: #2c2c2c;
  --muted: #6b6560;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 46, 38, 0.12);
  --radius: 12px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: var(--forest);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 46, 38, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest-dark) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #ddb92e;
  color: var(--forest-dark) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 6rem 1.5rem 4rem;
  background:
    linear-gradient(160deg, rgba(26, 46, 38, 0.75) 0%, rgba(92, 61, 46, 0.55) 100%),
    url("../assets/images/hero.jpg") center / cover no-repeat;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: #ddb92e;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Airbnb reviews highlight */
.reviews-section {
  margin-top: 3rem;
}

.reviews-highlight {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.18);
  position: relative;
  overflow: hidden;
}

.reviews-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff385c, var(--gold), var(--forest));
}

.reviews-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.airbnb-source {
  background: #ff385c;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.guest-favorite-badge {
  background: linear-gradient(135deg, #fff4d6 0%, #fde8a8 100%);
  color: #8b6914;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
}

.reviews-rating-block {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-stars {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

.reviews-score {
  font-size: 1.25rem;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}

.reviews-tagline {
  color: var(--coffee-light);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reviews-carousel-track {
  position: relative;
  flex: 1;
  min-height: 180px;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: linear-gradient(135deg, #fffdf7 0%, #fff4d6 100%);
  border: 2px solid rgba(201, 162, 39, 0.35);
  border-left: 5px solid #ff385c;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-slide p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  font-style: italic;
  text-align: center;
}

.review-slide footer {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.reviews-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.reviews-carousel-btn:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.reviews-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--sand);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews-carousel-dot.active {
  background: #ff385c;
  transform: scale(1.2);
}

.reviews-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--sand);
  border-radius: var(--radius);
}

.reviews-stats span {
  font-size: 0.9rem;
  color: var(--muted);
}

.reviews-stats strong {
  color: var(--forest);
}

.reviews-link {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #ff385c;
  font-size: 1rem;
}

.reviews-link:hover {
  color: var(--forest);
}

@media (max-width: 700px) {
  .reviews-highlight {
    padding: 1.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  color: var(--coffee-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-intro {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.highlight-card strong {
  display: block;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.highlight-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .reviews-carousel-track {
    min-height: 220px;
  }

  .review-slide {
    padding: 1.25rem 1rem;
  }

  .review-slide p {
    font-size: 0.95rem;
  }

  .reviews-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.coffee-tag-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fde8d0 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(92, 61, 46, 0.15);
  box-shadow: var(--shadow);
}

.coffee-tag-image {
  max-width: 220px;
}

.coffee-tag-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(92, 61, 46, 0.2);
}

.coffee-tag-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--coffee);
  margin-bottom: 0.25rem;
}

.coffee-tag-subtitle {
  font-weight: 600;
  color: #c45c00;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.coffee-tag-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.coffee-tag-address {
  margin-top: 0.75rem !important;
  color: var(--text) !important;
}

.coffee-tag-contact {
  font-weight: 600;
  color: var(--forest) !important;
}

@media (max-width: 700px) {
  .coffee-tag-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coffee-tag-image {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* Trek section */
.trek-section {
  background: var(--forest-dark);
  color: var(--white);
}

.trek-section .section-label {
  color: var(--gold);
}

.trek-section .section-title {
  color: var(--white);
}

.trek-section .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

.trek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trek-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.trek-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.trek-card-content {
  padding: 1.5rem;
}

.trek-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.trek-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.trek-card ul {
  list-style: none;
  padding: 0;
}

.trek-card li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.trek-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Jeep banner */
.jeep-banner {
  background: linear-gradient(135deg, var(--coffee) 0%, var(--forest) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.jeep-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.jeep-banner p {
  opacity: 0.9;
  max-width: 520px;
}

/* Food section */
.food-section {
  background: var(--sand);
}

.food-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.food-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.food-feature {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.food-feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.food-feature h4 {
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.food-feature p {
  color: var(--muted);
  font-size: 0.9rem;
}

.food-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.food-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.food-gallery img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.homestay-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-note a {
  color: var(--coffee-light);
  font-weight: 600;
}

/* Contact */
.contact-section {
  background: var(--forest-dark);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item a,
.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

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

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    transition: right 0.3s;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

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

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .jeep-banner {
    text-align: center;
    justify-content: center;
  }
}
