/* ============================================================
   HORSE RIDING KALIN KAMEN — Main Stylesheet
   Color palette:
     Primary Green:      #4E5F45
     Dark Forest Green:  #2F3A2A
     Sunset Orange:      #E88955
     Sand / Cream:       #F3E8D6
     Accent Gold:        #D6A45D
   ============================================================ */

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  --green:        #4E5F45;
  --green-dark:   #2F3A2A;
  --green-light:  #6A7D61;
  --orange:       #E88955;
  --orange-dark:  #C86F38;
  --cream:        #F3E8D6;
  --cream-dark:   #E8D5B8;
  --gold:         #D6A45D;
  --gold-dark:    #B8883E;
  --white:        #FFFFFF;
  --text:         #2F3A2A;
  --text-light:   #5A6B52;
  --shadow-sm:    0 2px 8px rgba(47,58,42,0.10);
  --shadow-md:    0 6px 24px rgba(47,58,42,0.15);
  --shadow-lg:    0 16px 48px rgba(47,58,42,0.20);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:     72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(78,95,69,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232,137,85,0.04) 0%, transparent 50%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================
   TYPOGRAPHY
   ======================== */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-label.center {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.label-line {
  flex: 1;
  max-width: 48px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.label-line.light { background: rgba(255,255,255,0.5); }

/* ========================
   LAYOUT HELPERS
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,137,85,0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,137,85,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-banner {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

.btn-cta-banner:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================
   HEADER
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(47, 58, 42, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.25rem;
  height: var(--header-h);
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(232,137,85,0.4);
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-icon.light { background: rgba(255,255,255,0.15); }

.logo-link:hover .logo-icon {
  transform: scale(1.1) rotate(-5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.desktop-nav a:hover::after { width: 60%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(232,137,85,0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(22, 24, 20, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.lang-flag {
  min-width: 58px;
  height: 42px;
  padding: 0 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.lang-flag svg,
.lang-flag img {
  width: 28px;
  height: 18px;
  display: block;
  border-radius: 3px;
  object-fit: cover;
}

.lang-flag:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07);
}

.lang-flag.active {
  border-color: var(--gold);
  background: rgba(214,164,93,0.08);
  box-shadow: 0 0 0 1px rgba(214,164,93,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.visible {
  opacity: 1;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--green-dark);
  z-index: 1200;
  padding: 1.5rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.mobile-nav-close {
  align-self: flex-end;
  color: var(--cream);
  font-size: 1.2rem;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding-left: 1.4rem;
}

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.mobile-nav-cta:hover {
  background: var(--orange-dark);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(24, 31, 22, 0.82) 0%,
    rgba(37, 46, 33, 0.58) 45%,
    rgba(73, 48, 29, 0.42) 100%
  );
  box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
  max-width: 780px;
  animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(17, 22, 16, 0.34);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.96);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.48);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(16, 20, 14, 0.34);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.98);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.42);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
}

.hero-scroll-hint a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  background: rgba(14, 18, 12, 0.26);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  backdrop-filter: blur(8px);
  text-shadow: 0 3px 12px rgba(0,0,0,0.42);
}

.hero-scroll-hint a:hover { color: var(--white); }

.bounce {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ========================
   ABOUT SECTION
   ======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding: 1.5rem;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: 1rem;
  left: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  color: var(--green);
  border: 1px solid var(--cream-dark);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.feature-chip:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.feature-chip i { font-size: 0.75rem; }

/* ========================
   ACTIVITIES SECTION
   ======================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.activity-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.activity-icon.beginner { background: var(--orange); }
.activity-icon.group    { background: var(--green); }
.activity-icon.kids     { background: #E8A8C0; }
.activity-icon.private  { background: var(--gold); }

.activity-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.activity-body {
  padding: 1.25rem;
  flex: 1;
}

.activity-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.activity-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  color: var(--text-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
}

.activity-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: var(--cream);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  border-top: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.activity-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-highlight {
  position: relative;
  margin-top: -2.5rem;
  padding-top: 0;
  z-index: 2;
}

.pricing-highlight .container {
  background: linear-gradient(180deg, rgba(255,250,244,0.96) 0%, rgba(255,255,255,0.98) 100%);
  border: 1px solid rgba(214,164,93,0.22);
  border-radius: 28px;
  padding: 2rem 1.5rem 2.2rem;
  box-shadow: 0 24px 48px rgba(47,58,42,0.12);
  backdrop-filter: blur(10px);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: linear-gradient(180deg, #fffaf4 0%, var(--white) 100%);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.pricing-duration {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.pricing-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
}

/* ========================
   NATURE SECTION
   ======================== */
.nature-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(47, 58, 42, 0.90) 0%,
    rgba(47, 58, 42, 0.60) 60%,
    rgba(47, 58, 42, 0.30) 100%
  );
}

.nature-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 4rem 0;
}

.nature-content .section-label { color: rgba(255,255,255,0.8); }

.nature-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.nature-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.nature-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}

.nature-feature i {
  width: 36px;
  height: 36px;
  background: rgba(232,137,85,0.25);
  border: 1px solid rgba(232,137,85,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--green-dark);
  outline: none;
}

.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px var(--orange);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-wide {
  grid-column: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47,58,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(47,58,42,0.4);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: var(--white);
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ========================
   INFO SECTION
   ======================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.info-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.info-media {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
}

.info-media-stack {
  display: grid;
  gap: 1.25rem;
}

.info-media-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-media-card img,
.info-media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.info-media-video video {
  aspect-ratio: 16 / 10;
  background: #000;
}

.info-media-stack .info-media-card img {
  aspect-ratio: 4 / 3;
}

.info-media-stack .info-media-card video {
  aspect-ratio: 4 / 3;
  background: #000;
}

.info-media-caption {
  padding: 1rem 1.1rem 1.15rem;
}

.info-media-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.info-media-caption p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(232,137,85,0.3);
}

.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================
   LOCATION SECTION
   ======================== */
.location-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
}

.location-address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.location-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,137,85,0.35);
}

.location-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.location-text p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-detail-item > i {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}

.detail-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}

.detail-value:hover { color: var(--orange); }

.map-btn { margin-top: 0.5rem; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cream-dark);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  min-height: 170px;
}

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

.contact-card-phone:hover  { border-color: var(--green); }
.contact-card-insta:hover  { border-color: #C13584; }
.contact-card-facebook:hover { border-color: #1877F2; }
.contact-card-location:hover { border-color: var(--orange); }

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-phone .contact-card-icon  { background: rgba(78,95,69,0.1); color: var(--green); }
.contact-card-insta .contact-card-icon  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.contact-card-facebook .contact-card-icon { background: rgba(24,119,242,0.12); color: #1877F2; }
.contact-card-location .contact-card-icon { background: rgba(232,137,85,0.12); color: var(--orange); }

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  overflow-wrap: anywhere;
}

.contact-card-arrow {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '\f725';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -2rem;
  top: -1rem;
  font-size: 10rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

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

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.3) !important;
}

/* ========================
   MOBILE FLOATING NAV
   ======================== */
.mobile-float-nav {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background:
    linear-gradient(180deg, rgba(33, 41, 29, 0.96) 0%, rgba(24, 30, 22, 0.96) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.45rem;
  gap: 0.15rem;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.32),
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  width: calc(100vw - 2.5rem);
  max-width: 390px;
}

/* ---- individual button ---- */
.float-nav-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  color: rgba(255,255,255,0.78);
  padding: 0.45rem 0;
  border-radius: 16px;
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  flex: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* icon circle */
.float-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* per-button accent colors */
.float-btn-call .float-btn-icon   { background: linear-gradient(180deg, rgba(78,95,69,0.44), rgba(78,95,69,0.22)); border-color: rgba(120,145,109,0.45); }
.float-btn-price .float-btn-icon  { background: linear-gradient(180deg, rgba(214,164,93,0.40), rgba(214,164,93,0.18)); border-color: rgba(234,190,109,0.45); }
.float-btn-map .float-btn-icon    { background: linear-gradient(180deg, rgba(232,137,85,0.42), rgba(232,137,85,0.18)); border-color: rgba(245,163,116,0.44); }
.float-btn-social .float-btn-icon { background: linear-gradient(180deg, rgba(193,53,132,0.34), rgba(193,53,132,0.14)); border-color: rgba(214,91,159,0.4); }

/* hover / active states */
.float-nav-btn:hover,
.float-nav-btn:active {
  color: var(--white);
}

.float-btn-call:hover   .float-btn-icon,
.float-btn-call:active  .float-btn-icon  { background: var(--green);  border-color: var(--green);  transform: scale(1.12); }

.float-btn-price:hover  .float-btn-icon,
.float-btn-price:active .float-btn-icon  { background: var(--gold);   border-color: var(--gold);   transform: scale(1.12); }

.float-btn-map:hover    .float-btn-icon,
.float-btn-map:active   .float-btn-icon  { background: var(--orange); border-color: var(--orange); transform: scale(1.12); }

.float-btn-social:hover  .float-btn-icon,
.float-btn-social:active .float-btn-icon { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); border-color: transparent; transform: scale(1.12); }

.float-btn-social.popin-open .float-btn-icon {
  background: linear-gradient(135deg,#f09433,#dc2743,#bc1888);
  border-color: transparent;
  transform: scale(1.1);
}

.float-btn-price {
  position: relative;
}

.float-btn-price.popin-open .float-btn-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.float-btn-map {
  position: relative;
}

.float-btn-map.popin-open .float-btn-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* ---- FLOAT NAV POP-INS ---- */
.float-btn-social {
  position: relative;
}

.location-popin,
.pricing-popin,
.social-popin {
  position: absolute;
  bottom: calc(100% + 14px);
  background: rgba(25, 33, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 0.6rem;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.4,0,0.2,1),
    transform 0.22s cubic-bezier(0.4,0,0.2,1);
}

.pricing-popin {
  left: 50%;
  width: 264px;
  transform: translateX(-50%) translateY(10px) scale(0.94);
  transform-origin: bottom center;
  max-height: min(70vh, 560px);
}

.location-popin {
  left: 50%;
  width: 264px;
  transform: translateX(-50%) translateY(10px) scale(0.94);
  transform-origin: bottom center;
}

.social-popin {
  right: -8px;
  left: auto;
  width: min(248px, calc(100vw - 2rem));
  transform: translateY(10px) scale(0.94);
  transform-origin: bottom right;
}

.location-popin.open,
.pricing-popin.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

.social-popin.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* arrow pointer */
.location-popin-arrow,
.pricing-popin-arrow {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(25, 33, 22, 0.97);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.social-popin-arrow {
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: rgba(25, 33, 22, 0.97);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transform: rotate(45deg);
  border-radius: 2px;
}

.location-popin-header,
.pricing-popin-header {
  padding: 0.45rem 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.5rem;
}

.location-popin-header strong,
.pricing-popin-header strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.location-popin-header span,
.pricing-popin-header span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.location-popin-text {
  padding: 0 0.55rem;
  color: rgba(255,255,255,0.84);
  font-size: 0.79rem;
  line-height: 1.55;
}

.pricing-popin-list {
  display: grid;
  gap: 0.35rem;
  overflow-y: auto;
  padding-right: 0.1rem;
}

.pricing-popin-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
  font-size: 0.79rem;
}

.pricing-popin-item span {
  flex: 1;
  line-height: 1.45;
}

.pricing-popin-item strong {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.84rem;
  white-space: nowrap;
}

.pricing-popin-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.location-popin-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* each social row */
.social-popin-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: var(--white);
  transition: background 0.2s ease;
  text-decoration: none;
}

.social-popin-item:hover,
.social-popin-item:active {
  background: rgba(255,255,255,0.08);
}

.social-popin-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.social-popin-icon.insta {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-popin-icon.fb {
  background: #1877F2;
}

.social-popin-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.social-popin-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.social-popin-handle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ========================
   BACK TO TOP
   ======================== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.15);
}

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

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }

/* ========================
   RESPONSIVE — TABLET
   ======================== */
@media (max-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 2.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

  .about-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-column: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-highlight {
    margin-top: -1.5rem;
  }

  .desktop-nav { display: none; }
  .header-cta  { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ========================
   RESPONSIVE — MOBILE
   ======================== */
@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .header-container {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0 0.8rem;
    height: var(--header-h);
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .logo-title {
    font-size: 0.9rem;
  }

  .logo-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .section { padding: 3.5rem 0; }

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

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

  .pricing-highlight .container {
    padding: 1.5rem 1rem 1.75rem;
    border-radius: 22px;
  }

  .social-popin {
    right: -4px;
    width: min(220px, calc(100vw - 1.5rem));
    padding: 0.5rem;
  }

  .pricing-popin {
    width: min(300px, calc(100vw - 1.4rem));
    left: 50%;
    padding: 0.55rem;
    max-height: min(64vh, 520px);
  }

  .pricing-popin-header {
    padding: 0.4rem 0.5rem 0.6rem;
    margin-bottom: 0.35rem;
  }

  .pricing-popin-item {
    flex-direction: column;
    gap: 0.22rem;
    padding: 0.58rem 0.65rem;
  }

  .pricing-popin-item span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .pricing-popin-item strong {
    font-size: 0.82rem;
    white-space: normal;
  }

  .pricing-popin-cta {
    margin-top: 0.55rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.72rem;
  }

  .mobile-float-nav {
    width: calc(100vw - 1.4rem);
    max-width: 360px;
    padding: 0.38rem;
  }

  .float-nav-btn {
    font-size: 0.52rem;
    letter-spacing: 0.07em;
  }

  .float-btn-icon {
    width: 38px;
    height: 38px;
    font-size: 0.94rem;
  }

  .social-popin-item {
    gap: 0.65rem;
    padding: 0.6rem 0.65rem;
  }

  .social-popin-icon {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .social-popin-name {
    font-size: 0.82rem;
  }

  .social-popin-handle {
    font-size: 0.66rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

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

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .info-media {
    grid-template-columns: 1fr;
  }

  .info-media-stack {
    grid-template-columns: 1fr;
  }

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

  .map-container { height: 280px; }

  /* Show mobile float nav */
  .mobile-float-nav { display: flex; }

  /* Adjust back-to-top position for float nav */
  .back-to-top { bottom: 6.5rem; right: 1rem; }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .header-actions {
    gap: 0.28rem;
    margin-left: auto;
  }

  .lang-switcher {
    padding: 0.12rem;
    gap: 0.2rem;
    border-radius: 18px;
  }

  .lang-flag {
    min-width: 42px;
    height: 28px;
    padding: 0 0.28rem;
  }

  .lang-flag svg,
  .lang-flag img {
    width: 20px;
    height: 13px;
  }

  .nature-features {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

@media (max-width: 400px) {
  .float-btn-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .float-nav-btn {
    font-size: 0.55rem;
  }
}

/* very small screens — hide labels, show icons only */
@media (max-width: 340px) {
  .float-nav-btn span {
    display: none;
  }
  .float-nav-btn {
    padding: 0.6rem 0;
  }
}

/* ========================
   ACCESSIBILITY
   ======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none; transform: scale(1.06); }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
