:root {
  --primary: #2fa85a;
  --hero-text: #ffffff;
  --hero-accent: #f3d579;
  --hero-panel: #061008;
  --hero-stats-bg: #020705;
  --hero-stats-alpha: 62%;
  --hero-stats-number: #ffc640;
  --hero-stats-text: #ffffff;
  --footer-bg-alpha: 1;
  --ink: #18231d;
  --muted: #5f6d64;
  --paper: #f7f8f5;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 31, 25, 0.12);
  --shadow-hover: 0 30px 90px rgba(20, 31, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 450;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: white;
  background: rgba(23, 33, 27, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.header-contact,
.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 760;
}

.header-contact {
  flex: 0 1 auto;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  z-index: 1;
}

.desktop-nav {
  position: relative;
  z-index: 4;
}

.status-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  white-space: nowrap;
  cursor: pointer;
  overflow: visible;
  transition: width 0.28s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.status-copy:hover,
.status-copy:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
  z-index: 2;
}

.status-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 820;
}

.status-value {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: min(280px, 70vw);
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 31, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: max-content;
  opacity: 0;
  transform: translate(-50%, -6px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 760;
  pointer-events: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.status-copy:hover .status-value,
.status-copy:focus-visible .status-value {
  opacity: 1;
  transform: translate(-50%, 0);
}

.status-copy[data-copy*="@"] {
  --reveal-width: 292px;
}

.status-copy.copied::after {
  content: "copié";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.desktop-nav a {
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: #dff8e8;
  opacity: 1;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20, 31, 25, 0.18);
}

.btn.secondary {
  background: white;
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(23, 33, 27, 0.14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 1.4rem;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(23, 33, 27, 0.72);
  backdrop-filter: blur(10px);
}

.mobile-panel.open {
  display: block;
}

.mobile-menu {
  margin-left: auto;
  width: min(360px, 90vw);
  height: 100%;
  padding: 28px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin: 36px 0;
}

.mobile-menu nav a {
  padding: 14px 12px;
  border-radius: 16px;
  font-weight: 780;
}

.mobile-menu nav a:hover {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 0 90px;
  color: var(--hero-text);
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 9, 0.48), rgba(7, 12, 9, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--hero-panel) 56%, transparent), color-mix(in srgb, var(--hero-panel) 28%, transparent)),
    color-mix(in srgb, var(--hero-panel) 32%, transparent);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -140px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 168, 90, 0.18), transparent 64%);
  opacity: 0.62;
  animation: heroGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

@keyframes heroGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(72px, 34px, 0) scale(1.18);
  }
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 780;
}

.hero h1,
.section-title {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 820;
}

.hero-serif {
  display: inline;
  color: var(--hero-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--hero-text) 88%, transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: color-mix(in srgb, var(--hero-stats-bg) var(--hero-stats-alpha), transparent);
}

.hero-stat {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 18px 16px;
  place-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat:hover {
  background: rgba(47, 168, 90, 0.12);
  transform: translateY(-2px);
}

.hero-stat strong {
  color: var(--hero-stats-number);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 850;
}

.hero-stat span {
  color: color-mix(in srgb, var(--hero-stats-text) 68%, transparent);
  font-size: 0.86rem;
  font-weight: 700;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.advantages {
  background: white;
}

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

.advantage-card,
.gite-card,
.price-card,
.activity-card,
.review-card {
  border-radius: 28px;
  background: white;
  box-shadow: 0 8px 34px rgba(16, 24, 40, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.advantage-card {
  position: relative;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.06);
  background: linear-gradient(145deg, #ffffff, #f3faf5);
  font-weight: 780;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(47, 168, 90, 0.11);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(47, 168, 90, 0.13);
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 820;
}

.advantage-card strong {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.35;
}

.gite-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gite-card {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.06);
}

.gite-card:hover,
.price-card:hover,
.activity-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(47, 168, 90, 0.18);
}

.gite-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.gite-card:hover .gite-image {
  transform: scale(1.045);
}

.gite-body {
  padding: 30px;
}

.gite-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.gite-card h3,
.activity-card h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 780;
}

.meta {
  color: var(--muted);
  font-weight: 720;
}

.price-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(47, 168, 90, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 12px;
  margin-right: 12px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: translateY(1px) rotate(45deg);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #d9ded8;
  box-shadow: 0 10px 32px rgba(20, 31, 25, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.gallery-item:first-child {
  grid-column: span 2;
  min-height: 380px;
}

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

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

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: white;
  font-weight: 780;
  text-align: left;
  z-index: 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 58%);
}

.prices {
  background: white;
}

.price-card {
  padding: 38px;
  text-align: center;
  border: 1px solid rgba(23, 33, 27, 0.06);
}

.price-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 780;
}

.price-value {
  margin: 26px 0 4px;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 820;
}

.price-value.booking-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
}

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

.activity-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.06);
  background: #fbfdfa;
}

.activity-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(47, 168, 90, 0.16), rgba(24, 35, 29, 0.1));
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.activity-card:hover img {
  transform: scale(1.055);
}

.activity-card img.is-broken,
.gite-image.is-broken,
.gallery-item img.is-broken,
.reviews-photo.is-broken {
  opacity: 0;
}

.activity-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.activity-body .btn {
  width: fit-content;
  margin-top: auto;
}

.activity-body .meta {
  margin: 8px 0 18px;
}

.activity-body .section-copy {
  margin-bottom: 18px;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  align-items: center;
}

.reviews-photo {
  width: 100%;
  min-height: 520px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(47, 168, 90, 0.14), rgba(24, 35, 29, 0.1));
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.reviews-photo:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.review-card {
  padding: 24px;
  border: 1px solid rgba(23, 33, 27, 0.06);
  background: linear-gradient(145deg, #ffffff, #fbfdfa);
}

.review-card p {
  line-height: 1.62;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  font-weight: 780;
}

.review-avatar {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.contact {
  background: var(--ink);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.82);
}

.map {
  width: 100%;
  min-height: 370px;
  border: 0;
  border-radius: 32px;
}

.site-footer {
  background:
    linear-gradient(rgba(16, 22, 17, var(--footer-bg-alpha)), rgba(16, 22, 17, var(--footer-bg-alpha))),
    #f7f8f5;
  color: white;
  padding: 44px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-credit {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.maintenance {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.maintenance-card {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 60px);
  border-radius: 36px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 86vh;
  border-radius: 24px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  font-size: 2.2rem;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .header-contact {
    display: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .site-header .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .advantage-grid,
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .gite-grid,
  .price-grid,
  .reviews-wrap,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid,
  .activities-grid,
  .review-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gite-top {
    display: grid;
  }

  .hero {
    min-height: 640px;
    padding: 104px 0 52px;
    place-items: center start;
  }

  .hero-content {
    border-radius: 24px;
    padding: 24px;
  }

  .hero h1,
  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero p,
  .section-copy {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-actions,
  .card-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-stat {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .advantage-card {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
  }

  .advantage-icon {
    margin-bottom: 0;
  }

  .gite-image,
  .activity-card img {
    height: 240px;
  }

  .gite-body,
  .activity-body,
  .price-card,
  .review-card {
    padding: 22px;
  }

  .price-value {
    font-size: 3.4rem;
  }

  .reviews-photo {
    min-height: 320px;
  }

  .review-grid {
    gap: 14px;
  }

  .map {
    min-height: 300px;
  }

  .site-footer {
    padding: 34px 0 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    background: rgba(23, 33, 27, 0.68);
  }

  .header-inner {
    min-height: 64px;
  }

  .logo {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .mobile-menu {
    width: 100vw;
    padding: 22px;
  }

  .hero {
    min-height: 100svh;
    padding: 84px 0 28px;
    place-items: center start;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 12, 9, 0.22), rgba(7, 12, 9, 0.54));
  }

  .hero-content {
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.06;
  }

  .hero p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats {
    margin-top: 18px;
    border-radius: 18px;
  }

  .hero-stat {
    min-height: 60px;
    padding: 12px;
  }

  .hero-stat strong {
    font-size: 1.35rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

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

  .gite-image,
  .activity-card img,
  .gallery-item,
  .gallery-item:first-child {
    min-height: 0;
    height: 220px;
  }

  .price-pill {
    width: fit-content;
  }

  .feature-list {
    gap: 10px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox img {
    max-width: 92vw;
    max-height: 78vh;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .maintenance-card {
    padding: 28px 18px;
    border-radius: 26px;
  }
}
