/* ============================================================
   APARTMA PIJA — MAIN STYLESHEET
   Drenov Grič 45, Vrhnika, Slovenia
   ============================================================ */

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #faf8f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10vh;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.loader__hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
}
/* Tractor drives left→right */
.loader__tractor-wrap {
  position: absolute;
  bottom: 12%;
  left: -15%;
  animation: tractor-drive 3.2s cubic-bezier(.4,0,.6,1) infinite;
}
.loader__tractor { width: 110px; height: auto; }

@keyframes tractor-drive {
  0%   { left: -15%; }
  100% { left: 110%; }
}
/* Exhaust puffs */
@keyframes puff-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-12px) scale(1.8); opacity: 0; }
}
.loader__puff--1 { animation: puff-rise 0.9s ease-out infinite; }
.loader__puff--2 { animation: puff-rise 0.9s ease-out 0.3s infinite; }
.loader__puff--3 { animation: puff-rise 0.9s ease-out 0.6s infinite; }

/* Cow gently bobs on the right hill */
.loader__cow-wrap {
  position: absolute;
  bottom: 28%;
  right: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cow-bob 2.4s ease-in-out infinite;
}
.loader__cow { width: 90px; height: auto; }
@keyframes cow-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
/* "Moo!" speech bubble */
.loader__moo {
  position: absolute;
  bottom: calc(100% + 4px);
  right: -10px;
  background: #fff;
  border: 1.5px solid #c4956a;
  border-radius: 12px 12px 12px 0;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-family: sans-serif;
  color: #5c3d20;
  white-space: nowrap;
  animation: moo-pop 2.4s ease-in-out infinite;
}
@keyframes moo-pop {
  0%, 30%, 100% { opacity: 0; transform: scale(0.8); }
  40%, 80%      { opacity: 1; transform: scale(1); }
}
/* Loading text */
.loader__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 4vh;
}
.loader__name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #3d5c41;
  letter-spacing: 0.04em;
}
.loader__dots {
  display: flex;
  gap: 4px;
}
.loader__dots span {
  font-size: 1.6rem;
  color: #c4956a;
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.loader__dots span:nth-child(2) { animation-delay: 0.2s; }
.loader__dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%            { transform: translateY(-8px); opacity: 1; }
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --cream:        #faf8f3;
  --cream-alt:    #f2ece0;
  --cream-deep:   #e8ddd0;
  --green:        #5c7c5f;
  --green-dark:   #3d5c41;
  --green-light:  #adc4af;
  --earth:        #c4956a;
  --earth-light:  #e8c9a8;
  --earth-dark:   #a07648;
  --text:         #2c2416;
  --text-muted:   #7a6a58;
  --border:       #e0d5c4;
  --white:        #ffffff;

  /* Typography */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: clamp(4.5rem, 9vw, 7.5rem);
  --container:  1200px;
  --narrow:     720px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:      300ms;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--narrow);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.2;
  font-weight: 500;
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text);
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.125rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn--primary  { background: var(--green);  color: var(--white); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61, 92, 65, 0.28); }

.btn--earth    { background: var(--earth);  color: var(--white); }
.btn--earth:hover { background: var(--earth-dark); transform: translateY(-1px); }

.btn--outline  { border: 1.5px solid currentColor; }
.btn--outline:hover { background: var(--text); color: var(--white); border-color: var(--text); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.nav__logo span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.nav.scrolled .nav__logo { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.02em;
}

.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav__links a:hover { color: var(--white) !important; }
.nav.scrolled .nav__links a:hover { color: var(--green) !important; }

.nav__cta {
  padding: 0.6rem 1.375rem;
  background: var(--earth);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--dur) var(--ease);
}

.nav__cta:hover { background: var(--earth-dark) !important; color: var(--white) !important; }

/* Language picker */
.nav__lang {
  position: relative;
}
.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 5px 10px 5px 8px;
  cursor: pointer;
  color: inherit;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}
.nav__lang-btn svg { width: 14px; height: 14px; opacity: 0.8; flex-shrink: 0; }
.nav__lang-flag { font-size: 1rem; line-height: 1; }
.nav.scrolled .nav__lang-btn { border-color: rgba(44,28,10,0.2); }
.nav__lang-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.nav.scrolled .nav__lang-btn:hover { background: rgba(92,124,95,0.08); border-color: var(--green); }

.nav__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(44,28,10,0.14);
  min-width: 170px;
  max-height: 340px;
  overflow-y: auto;
  list-style: none;
  padding: 6px 0;
  z-index: 9999;
}
.nav__lang.open .nav__lang-dropdown { display: block; }
.nav__lang-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s;
}
.nav__lang-dropdown li:hover { background: var(--cream-alt); }
.nav__lang-dropdown li.active { color: var(--green); font-weight: 600; }
.nav__lang-divider {
  padding: 6px 16px 3px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  pointer-events: none;
  border-top: 1px solid var(--border);
  margin-top: 3px;
}

/* Hide Google Translate banner & injected top bar */
.goog-te-banner-frame, #goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav.scrolled .nav__burger span { background: var(--text); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 201;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.nav__drawer.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.nav__drawer a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.nav__drawer a:hover { color: var(--green); }

.nav__drawer-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

.nav__drawer-close:hover { color: var(--text); }

.nav__drawer-logo {
  font-family: var(--serif);
  font-size: 1rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin-bottom: .5rem;
}
.nav__drawer-cta {
  margin-top: .5rem;
  padding: .75rem 2rem;
  background: var(--earth);
  color: #fff !important;
  border-radius: 999px;
  font-size: 1.1rem !important;
}
.nav__drawer-cta:hover { background: var(--green); color: #fff !important; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero/hero.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.06);
  animation: heroKenBurns 9s var(--ease-out) forwards;
}

/* Warm gradient fallback when no image is loaded */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    #3d5c41 0%,
    #5c7c5f 45%,
    #8fa882 70%,
    #c4956a 100%);
  z-index: -1;
}

/* Cinematic gradient overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 20, 12, 0.30) 0%,
    rgba(24, 20, 12, 0.10) 35%,
    rgba(24, 20, 12, 0.12) 60%,
    rgba(24, 20, 12, 0.62) 100%
  );
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}

.hero__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--earth-light);
  margin-bottom: 1.375rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 8.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.625rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--earth-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease) forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease) forwards;
}

.hero__btn {
  padding: 0.95rem 2.375rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--dur) var(--ease);
}

.hero__btn--primary {
  background: var(--earth);
  color: var(--white);
}

.hero__btn--primary:hover {
  background: var(--earth-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.4);
}

.hero__btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.hero__scroll-track::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  to { top: 200%; }
}

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

/* ============================================================
   SECTION: ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Image side */
.about__visuals {
  position: relative;
  padding-bottom: 8%;
}

.about__img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  background: var(--cream-alt);
  display: block;
}

.about__img-secondary {
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: -6%;
  border: 6px solid var(--cream);
  background: var(--cream-deep);
  display: block;
}

.about__badge {
  position: absolute;
  top: 6%;
  right: -4%;
  width: 112px;
  height: 112px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}

.about__badge-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Text side */
.about__text {
  padding: 1rem 0;
}

.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green);
  border-left: 2px solid var(--green-light);
  padding-left: 1.375rem;
  margin: 2rem 0;
  line-height: 1.65;
}

.about__body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}

.about__body p + p { margin-top: 1rem; }

.about__cta { margin-top: 2.25rem; }

/* ============================================================
   SECTION: EXPERIENCE / WHY STAY HERE
   ============================================================ */
.experience {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
}

.experience__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.experience__header .section-subtitle {
  margin: 1rem auto 0;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.exp-card {
  background: var(--cream);
  padding: 1.625rem 1.5rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.09);
}

.exp-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}

.exp-card:hover .exp-card__icon { background: var(--earth-light); }

.exp-card__icon svg { width: 30px; height: 30px; stroke-width: 1.4; }

.exp-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.exp-card__body {
  font-size: 0.865rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   SECTION: AMENITIES
   ============================================================ */
.amenities {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.amenities__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.amenities__visual {
  position: sticky;
  top: 7rem;
}

.amenities__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  background: var(--cream-alt);
  display: block;
}

.amenities__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 0.875rem;
  border-left: 2px solid var(--earth-light);
  line-height: 1.65;
}

.amenities__intro {
  color: var(--text-muted);
  line-height: 1.85;
  margin: 1.25rem 0 2.5rem;
  font-size: 1rem;
}

.amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.amenity:hover { color: var(--green); }

.amenity__icon {
  width: 34px;
  height: 34px;
  background: var(--cream-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  transition: background var(--dur) var(--ease);
}

.amenity:hover .amenity__icon { background: var(--green-light); }
.amenity__icon svg { width: 15px; height: 15px; stroke-width: 1.75; }

/* ============================================================
   SECTION: GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-py) 0 calc(var(--section-py) + 2rem);
  background: #f0e8d8;
  position: relative;
  overflow: hidden;
}

/* Farm illustrated backdrop */
.gallery__farm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}

.gallery__farm-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure header and grid sit above the illustration */
.gallery .container {
  position: relative;
  z-index: 1;
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  overflow: hidden;
  border-radius: 10px;
  cursor: zoom-in;
  position: relative;
  background: var(--cream-deep);
  box-shadow:
    0 6px 28px rgba(44, 28, 10, 0.16),
    0 2px 6px rgba(44, 28, 10, 0.08);
  transition:
    box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.gallery__item:hover {
  box-shadow:
    0 18px 52px rgba(44, 28, 10, 0.24),
    0 4px 14px rgba(44, 28, 10, 0.1);
  transform: translateY(-3px);
}

/* Mosaic layout */
.gallery__item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 5; }
.gallery__item:nth-child(3) { grid-column: span 5; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 4; }
.gallery__item:nth-child(6) { grid-column: span 4; }
.gallery__item:nth-child(7) { grid-column: span 5; }
.gallery__item:nth-child(8) { grid-column: span 7; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.gallery__item:hover .gallery__img { transform: scale(1.07); }

/* Cream mat frame — same colour as section bg so photos "float" on the wall */
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 8px #f0e8d8,              /* mat colour = gallery bg */
    inset 0 0 0 9px rgba(44, 28, 10, 0.16); /* hairline dark rule inside mat */
}

/* Vignette — edges fade to shadow for photographic depth */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 50% 50%,
    transparent 45%,
    rgba(44, 28, 10, 0.26) 100%
  );
  transition: opacity 0.55s var(--ease);
}

.gallery__item:hover::after { opacity: 0.35; }

.gallery__zoom-hint {
  position: absolute;
  bottom: 1.125rem;
  right: 1.125rem;
  z-index: 5;
  width: 32px;
  height: 32px;
  background: rgba(250, 248, 243, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  color: var(--text);
  backdrop-filter: blur(4px);
}

.gallery__item:hover .gallery__zoom-hint {
  opacity: 1;
  transform: scale(1);
}

.gallery__zoom-hint svg { width: 14px; height: 14px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18, 14, 8, 0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur) var(--ease);
  z-index: 1;
}

.lightbox__close:hover { color: var(--white); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 1.25rem 1rem;
  transition: color var(--dur) var(--ease);
  user-select: none;
}

.lightbox__nav:hover { color: var(--white); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

/* ============================================================
   SECTION: ACTIVITIES
   ============================================================ */
.activities {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.activities__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.activity-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 36, 22, 0.12);
}

.activity-card__illo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.activity-card__illo svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.55s var(--ease);
}

.activity-card:hover .activity-card__illo svg {
  transform: scale(1.04);
}

.activity-card__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.activity-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.activity-card__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.activity-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* ---- Illustration animations ---- */
@keyframes illo-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes illo-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes illo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes illo-twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.08; }
}
@keyframes illo-leaf1 {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0.88; }
  100% { transform: translate(-18px, 90px) rotate(200deg); opacity: 0; }
}
@keyframes illo-leaf2 {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0.85; }
  100% { transform: translate(12px, 100px) rotate(-220deg); opacity: 0; }
}
@keyframes illo-leaf3 {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0.85; }
  100% { transform: translate(-10px, 80px) rotate(260deg); opacity: 0; }
}

.act-cloud { animation: illo-drift 10s ease-in-out infinite; }
.act-hiker { animation: illo-bob 1.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center bottom; }
.act-wheel-r { animation: illo-spin 1.4s linear infinite; transform-box: fill-box; transform-origin: center; }
.act-wheel-f { animation: illo-spin 1.4s linear infinite; transform-box: fill-box; transform-origin: center; }
.act-star1 { animation: illo-twinkle 2.2s ease-in-out infinite; }
.act-star2 { animation: illo-twinkle 3.0s ease-in-out infinite 0.8s; }
.act-star3 { animation: illo-twinkle 2.6s ease-in-out infinite 1.5s; }
.act-leaf1 { animation: illo-leaf1 4.5s ease-in infinite; }
.act-leaf2 { animation: illo-leaf2 5.5s ease-in infinite 1.2s; }
.act-leaf3 { animation: illo-leaf3 4s ease-in infinite 2.4s; }

/* ============================================================
   SECTION: ATTRACTIONS
   ============================================================ */
.attractions {
  padding: var(--section-py) 0;
  background: var(--green-dark);
  color: var(--white);
}

.attractions__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.attractions__header .section-label  { color: var(--earth-light); }
.attractions__header .section-title  { color: var(--white); }
.attractions__header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem auto 0;
}

.attractions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.attraction {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.attraction:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.attraction__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.attraction__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
  filter: sepia(15%) saturate(0.9) brightness(0.95) contrast(0.92);
}

.attraction:hover .attraction__img { transform: scale(1.05); }

/* Placeholder gradients per attraction */
.attraction:nth-child(1) .attraction__img-wrap { background: linear-gradient(145deg, #c4956a 0%, #d4a878 50%, #e8c9a8 100%); }
.attraction:nth-child(2) .attraction__img-wrap { background: linear-gradient(145deg, #3d5c41 0%, #5c7c5f 50%, #8aaa8d 100%); }
.attraction:nth-child(3) .attraction__img-wrap { background: linear-gradient(145deg, #8a6a2a 0%, #c4956a 50%, #e8c488 100%); }
.attraction:nth-child(4) .attraction__img-wrap { background: linear-gradient(145deg, #2a5c4a 0%, #3d8c6a 50%, #6ab89a 100%); }
.attraction:nth-child(5) .attraction__img-wrap { background: linear-gradient(145deg, #1a1430 0%, #2a2450 50%, #4a3c78 100%); }
.attraction:nth-child(6) .attraction__img-wrap { background: linear-gradient(145deg, #4a4038 0%, #6a5a48 50%, #8a7a68 100%); }
.attraction:nth-child(7) .attraction__img-wrap { background: linear-gradient(145deg, #1a4a6a 0%, #2a7aa8 50%, #6ab4d8 100%); }
.attraction:nth-child(8) .attraction__img-wrap { background: linear-gradient(145deg, #1e3c28 0%, #2e5c3e 50%, #4a8a60 100%); }
.attraction:nth-child(9) .attraction__img-wrap { background: linear-gradient(145deg, #5a3a20 0%, #8a6038 50%, #c09468 100%); }

/* ── Attraction without a photo: designed placeholder over the gradient ── */
.attraction__img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.attraction__img-wrap--empty .attraction__placeholder { display: flex; }
.attraction__placeholder {
  display: none; /* revealed only when the wrap is marked --empty */
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.attraction__placeholder svg {
  width: 30px;
  height: 30px;
  opacity: 0.85;
}
.attraction__placeholder span {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
/* Subtle inner vignette so the text stays legible on light gradients */
.attraction__img-wrap--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

.attraction__pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(30, 20, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--earth-light);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.attraction__body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.attraction__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.attraction__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.attraction__go-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 149, 106, 0.45);
  color: var(--earth-light);
  background: rgba(196, 149, 106, 0.12);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-decoration: none;
}

.attraction__go-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.attraction__go-btn:hover {
  background: rgba(196, 149, 106, 0.28);
  border-color: var(--earth-light);
  color: var(--white);
  transform: translateX(2px);
}

.attraction__icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.attraction__icon svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   SECTION: LOCATION
   ============================================================ */
.location {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.location__address {
  margin: 1.5rem 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 2;
}

.location__address strong { color: var(--text); font-weight: 500; }

.location__details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.location__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.location__detail svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  stroke-width: 1.75;
}

.location__map {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-alt);
  border: 1px solid var(--border);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.65) contrast(1.02);
}

/* ============================================================
   SECTION: PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
}

.pricing__header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.pricing__title  { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--text); margin: .4rem 0 .75rem; }
.pricing__subtitle { color: var(--text-light); font-size: .95rem; line-height: 1.7; }

.pricing__free { color: var(--green) !important; }

/* Season cards */
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}
.pricing__card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.pricing__card:hover { box-shadow: 0 12px 36px rgba(44,28,10,.1); transform: translateY(-3px); }
.pricing__card--featured { border-color: var(--green); box-shadow: 0 6px 24px rgba(92,124,95,.13); }
.pricing__badge {
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 5px 0;
}
.pricing__card-top { text-align: center; padding: 1.5rem 1.25rem 1rem; border-bottom: 1px solid var(--border); }
.pricing__season-icon { font-size: 2rem; display: block; margin-bottom: .35rem; }
.pricing__season { font-family: var(--serif); font-size: 1.15rem; color: var(--text); margin: 0 0 .2rem; }
.pricing__period { color: var(--earth); font-size: .82rem; font-weight: 600; margin: 0; }
.pricing__card-rates { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.pricing__rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .8rem; border-radius: 8px;
  background: var(--cream-alt); border: 1px solid var(--border);
  font-size: .85rem; color: var(--text-light);
}
.pricing__rate-row--we { background: rgba(92,124,95,.06); border-color: rgba(92,124,95,.2); }
.pricing__rate-row strong { font-family: var(--serif); font-size: 1.2rem; color: var(--text); }
.pricing__card--featured .pricing__rate-row strong { color: var(--green); }

/* Extras row */
.pricing__extras { max-width: 860px; margin: 0 auto; }
.pricing__extras-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .75rem; margin-bottom: 1rem;
}
.pricing__extra-item {
  background: var(--cream); border: 1px solid var(--border); border-radius: 10px;
  padding: .85rem 1rem; display: flex; flex-direction: column; gap: .25rem;
  font-size: .82rem; color: var(--text-light);
}
.pricing__extra-item strong { font-size: .95rem; color: var(--text); margin-top: .1rem; }
.pricing__extras-note {
  font-size: .78rem; color: var(--text-light); text-align: center;
  margin: 0 0 1.25rem; line-height: 1.6;
}
.pricing__book-cta {
  display: block; width: fit-content; margin: 0 auto;
  padding: .8rem 2rem; background: var(--earth); color: #fff;
  border-radius: 10px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: background .2s;
}
.pricing__book-cta:hover { background: var(--earth-dark); }

/* Shared counter/toggle styles (used in booking form) */
.pcalc__row-label { display: flex; flex-direction: column; gap: .1rem; }
.pcalc__row-name  { font-size: .9rem; color: var(--text); font-weight: 500; }
.pcalc__row-sub   { font-size: .75rem; color: var(--text-light); }
.pcalc__counter   { display: flex; align-items: center; gap: .5rem; }
.pcalc__btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--cream-alt);
  color: var(--text); font-size: 1.1rem; cursor: pointer;
  transition: background .15s, border-color .15s;
  display: flex; align-items: center; justify-content: center;
}
.pcalc__btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.pcalc__btn:disabled { opacity: .35; cursor: default; }
.pcalc__val { min-width: 20px; text-align: center; font-weight: 600; font-size: .95rem; }
.pcalc__toggle {
  padding: .35rem .9rem; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--cream-alt);
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .2s; color: var(--text-light);
}
.pcalc__toggle[data-active="true"] { background: var(--green); border-color: var(--green); color: #fff; }

/* ============================================================
   SECTION: BOOKING / CONTACT
   ============================================================ */
.booking {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

/* Info side */
.booking__info {}

.booking__tagline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.booking__tagline em { font-style: italic; color: var(--green); }

.booking__body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

.booking__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking__contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text);
}

.booking__contact-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.booking__contact-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.75;
}

/* Form side */
.booking__form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: clamp(2rem, 4vw, 3rem);
}

.form__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.form__group { margin-bottom: 1.25rem; }

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92, 124, 95, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--cream-deep); }

@keyframes input-flash {
  0%   { border-color: var(--green); box-shadow: 0 0 0 4px rgba(92,124,95,0.25); }
  60%  { border-color: var(--green); box-shadow: 0 0 0 4px rgba(92,124,95,0.25); }
  100% { border-color: var(--border); box-shadow: none; }
}
.form__input--flash { animation: input-flash 0.9s ease forwards; }

@keyframes form-highlight {
  0%   { box-shadow: 0 0 0 0 rgba(92,124,95,0); }
  20%  { box-shadow: 0 0 0 6px rgba(92,124,95,0.35); }
  80%  { box-shadow: 0 0 0 6px rgba(92,124,95,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(92,124,95,0); }
}
.form--highlight { animation: form-highlight 1.4s ease forwards; border-radius: 16px; }

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  margin-top: 0.375rem;
}

.form__submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green-dark);
}

.form__success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form__success h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form__success p  { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.45);
  padding: 4rem 0 2.25rem;
}

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

.footer__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.875rem;
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.38);
}

.footer__col-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  margin-bottom: 1.125rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy { color: rgba(255, 255, 255, 0.28); }

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--dur) var(--ease);
  display: flex;
  align-items: center;
}

.footer__social a:hover { color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }

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

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

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
.cal-wrap {
  margin-bottom: 3.5rem;
}

.cal-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cal-section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.cal-section-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Calendar container */
.booking-cal {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(44, 28, 10, 0.07);
}

/* Navigation bar */
.cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cal__nav-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  flex-shrink: 0;
}

.cal__nav-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.cal__nav-btn svg { width: 16px; height: 16px; }

.cal__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.cal__month-label {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Weekday header */
.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cal__weekdays span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.cal__weekdays .cal__weekend { color: var(--earth); }

/* Day grid */
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Base day cell */
.cal__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  cursor: pointer;
  user-select: none;
  border-radius: 0;
}

.cal__day-num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

/* Available day — subtle green tint */
.cal__day:not(.cal__day--past):not(.cal__day--booked):not(.cal__day--empty):not(.cal__day--today) .cal__day-num {
  background: rgba(92, 124, 95, 0.13);
  color: var(--green-dark);
}
/* Hover — available day */
.cal__day:not(.cal__day--past):not(.cal__day--booked):not(.cal__day--empty):hover .cal__day-num {
  background: rgba(92, 124, 95, 0.28);
  color: var(--green-dark);
}

/* Past days */
.cal__day--past {
  cursor: default;
  pointer-events: none;
}
.cal__day--past .cal__day-num { color: var(--border); }

/* Today */
.cal__day--today .cal__day-num {
  font-weight: 700;
  color: var(--green);
  box-shadow: 0 0 0 1.5px var(--green-light);
}

/* Booked */
.cal__day--booked {
  cursor: not-allowed;
  pointer-events: none;
}
.cal__day--booked .cal__day-num {
  color: #fff;
  background: #c0392b;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.7);
}

/* Range in-between strip */
.cal__day--in-range {
  background: rgba(92, 124, 95, 0.1);
}
.cal__day--in-range .cal__day-num { color: var(--green-dark); }

/* Selection start — right half strip */
.cal__day--sel-start:not(.cal__day--sel-end)::after {
  content: '';
  position: absolute;
  inset: 4px 0 4px 50%;
  background: rgba(92, 124, 95, 0.1);
  z-index: 0;
}

/* Selection end — left half strip */
.cal__day--sel-end:not(.cal__day--sel-start)::before {
  content: '';
  position: absolute;
  inset: 4px 50% 4px 0;
  background: rgba(92, 124, 95, 0.1);
  z-index: 0;
}

/* Start & end circles */
.cal__day--sel-start .cal__day-num,
.cal__day--sel-end .cal__day-num {
  background: var(--green);
  color: white;
  font-weight: 600;
}

.cal__day--sel-start.cal__day--sel-end .cal__day-num {
  background: var(--green);
}

/* Empty cells */
.cal__day--empty { cursor: default; pointer-events: none; }

/* Footer: legend + info + clear */
.cal__footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cal__legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cal__legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.cal__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal__legend-dot--available { background: rgba(92, 124, 95, 0.28); border: 1px solid rgba(92,124,95,0.4); }
.cal__legend-dot--booked    { background: #c0392b; }
.cal__legend-dot--selected  { background: var(--green); }

.cal__sel-info {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 500;
  flex-basis: 100%;
  min-height: 1.2em;
  text-align: center;
}

.cal__clear-btn {
  font-size: 0.72rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: transparent;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.cal__clear-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Loading / error states */
.cal__loading,
.cal__error {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__inner { grid-template-columns: 1fr; }
  .about__visuals { max-width: 480px; margin: 0 auto; }
  .about__img-secondary { right: 0; }
  .about__badge { right: 2%; }

  .amenities__layout { grid-template-columns: 1fr; }
  .amenities__visual { position: relative; top: 0; }
  .amenities__img { aspect-ratio: 16 / 9; }

  .location__inner  { grid-template-columns: 1fr; }
  .booking__inner   { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .gallery__grid { grid-auto-rows: 180px; gap: 0.75rem; }
  .attractions__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .activities__grid { grid-template-columns: 1fr 1fr; }
  .tform__row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .booking-cal { padding: 1.25rem 1rem 1rem; }
  .cal__day-num { width: 28px; height: 28px; font-size: 0.75rem; }
  .cal__month-label { font-size: 1rem; }

  .hero__title { font-size: clamp(2.75rem, 14vw, 3.75rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__btn { justify-content: center; }

  .experience__grid { grid-template-columns: 1fr; }
  .activities__grid { grid-template-columns: 1fr; }
  .attractions__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

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

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

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 0.625rem;
  }
  .gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    border-radius: 7px;
  }
  .gallery__item::before {
    box-shadow:
      inset 0 0 0 5px #f0e8d8,
      inset 0 0 0 6px rgba(44, 28, 10, 0.14);
  }

  .activities__top { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   VISUAL ENHANCEMENTS
   ============================================================ */

/* ---- Hero grain texture overlay ---- */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.28;
  mix-blend-mode: overlay;
}

/* ---- Improved hero gradient fallback ---- */
.hero__bg::before {
  background: linear-gradient(
    172deg,
    #c8d4b8 0%,
    #9ab09a 12%,
    #6b8f71 28%,
    #4a6c50 48%,
    #3d5c41 66%,
    #2c4030 82%,
    #1e2c20 100%
  ) !important;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stats-strip__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.3rem;
  transition: background var(--dur) var(--ease);
}

.stats-strip__stat:last-child { border-right: none; }
.stats-strip__stat:hover { background: rgba(255,255,255,0.03); }

.stats-strip__num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--earth-light);
  line-height: 1;
  display: block;
}

.stats-strip__num small {
  font-family: var(--sans);
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.stats-strip__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.125rem;
}

@media (max-width: 640px) {
  .stats-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
  .stats-strip__stat:nth-child(2) { border-right: none; }
  .stats-strip__stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-strip__stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   IMAGE PLACEHOLDER GRADIENTS
   (Visible when photos haven't been added yet)
   ============================================================ */

.about__img-main {
  background: linear-gradient(145deg,
    #3d5c41 0%, #5c7c5f 35%, #8fa882 65%, #cdc8a8 100%);
}

.about__img-secondary {
  background: linear-gradient(130deg,
    #c4956a 0%, #d4a878 40%, #e8c9a8 80%, #faf0e0 100%);
}

.amenities__img {
  background: linear-gradient(155deg,
    #f2ece0 0%, #e0d0b8 40%, #c8b090 70%, #b0906c 100%);
}

/* Gallery mosaic — each panel a unique atmospheric gradient */
.gallery__item:nth-child(1) { background: linear-gradient(148deg, #2d4a30 0%, #3d5c41 40%, #608c65 75%, #8aa882 100%); }
.gallery__item:nth-child(2) { background: linear-gradient(132deg, #e8d8c0 0%, #d4b890 45%, #c4956a 100%); }
.gallery__item:nth-child(3) { background: linear-gradient(145deg, #d4ccc0 0%, #c0b4a0 50%, #a89880 100%); }
.gallery__item:nth-child(4) { background: linear-gradient(132deg, #faf0e0 0%, #ecdfc0 45%, #d8c090 80%, #c0a070 100%); }
.gallery__item:nth-child(5) { background: linear-gradient(142deg, #f4f2f0 0%, #e8e4e0 55%, #d0ccc8 100%); }
.gallery__item:nth-child(6) { background: linear-gradient(138deg, #486c4e 0%, #6b8f71 42%, #9dbc9f 72%, #c4d8b4 100%); }
.gallery__item:nth-child(7) { background: linear-gradient(148deg, #2c4830 0%, #3d5c41 42%, #5c7c5f 72%, #7a9e7e 100%); }
.gallery__item:nth-child(8) { background: linear-gradient(132deg, #8a5c30 0%, #c4956a 32%, #d4a860 62%, #e8c878 85%, #f4dc90 100%); }

/* Activity cards */
.activity-card:nth-child(1) { background: linear-gradient(142deg, #2a3c28 0%, #3d5c41 45%, #5c7c5f 100%); }
.activity-card:nth-child(2) { background: linear-gradient(142deg, #5c7c3c 0%, #7a9e50 42%, #a8c470 72%, #c8d8a0 100%); }
.activity-card:nth-child(3) { background: linear-gradient(142deg, #7a5430 0%, #a07848 42%, #c4956a 72%, #d4a880 100%); }
.activity-card:nth-child(4) { background: linear-gradient(142deg, #0e1020 0%, #1a1a38 32%, #2a2850 62%, #3d3c6a 100%); }

/* ============================================================
   BOTANICAL DECORATION ELEMENTS
   ============================================================ */
.botanical {
  position: absolute;
  pointer-events: none;
  color: var(--green);
  opacity: 0.055;
}

.about { position: relative; overflow: hidden; }

.botanical--about-1 {
  bottom: -8%;
  left: -6%;
  width: clamp(200px, 30vw, 380px);
  transform: rotate(-18deg) scaleX(-1);
}

.botanical--about-2 {
  top: 5%;
  right: -4%;
  width: clamp(140px, 20vw, 260px);
  transform: rotate(10deg);
  opacity: 0.04;
}

.botanical--exp {
  top: -5%;
  right: -3%;
  width: clamp(180px, 25vw, 340px);
  transform: rotate(15deg);
  opacity: 0.04;
  color: var(--green-dark);
}

.botanical--booking {
  bottom: -5%;
  left: -4%;
  width: clamp(160px, 22vw, 300px);
  transform: rotate(-12deg) scaleX(-1);
  opacity: 0.05;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
  position: relative;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 960px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(44, 36, 22, 0.08);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--earth);
}

.testimonial-card__stars svg {
  width: 15px;
  height: 15px;
}

.testimonial-card__quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__quote::before {
  content: '\201C';
  color: var(--earth-light);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.1em;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__author strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Testimonial submit form ---- */
.testimonials__cta {
  margin-top: 3rem;
  text-align: center;
}
.testimonials__leave-review-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
}

.review-form-section {
  background: var(--cream-alt);
  padding: 5rem 0;
}

.tform-wrap {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.tform-inner {
  max-width: 680px;
  margin: 0 auto;
}

.tform-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tform-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.tform-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tform {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .tform__row { grid-template-columns: 1fr; } }

.tform__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tform__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tform__input,
.tform__textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  resize: none;
}

.tform__input:focus,
.tform__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92, 124, 95, 0.12);
}

.tform__textarea {
  min-height: 110px;
  resize: vertical;
}

/* CSS-only star rating (RTL flex trick) */
.tform__stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.15rem;
  padding: 0.25rem 0;
}

.tform__stars input[type="radio"] {
  display: none;
}

.tform__stars label {
  font-size: 1.9rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}

.tform__stars label:hover,
.tform__stars label:hover ~ label,
.tform__stars input:checked ~ label {
  color: var(--earth);
}

.tform__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tform__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.tform__submit {
  flex-shrink: 0;
}

/* ============================================================
   SECTION VISUAL DIVIDER
   ============================================================ */
.section-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.25rem 0;
  color: var(--border);
}

.section-break__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: currentColor;
}

.section-break__leaf {
  width: 18px;
  height: 18px;
  color: var(--earth-light);
  flex-shrink: 0;
}

/* ============================================================
   ENHANCED VISUAL POLISH
   ============================================================ */

/* Alternating card icon accent colors */
.exp-card:nth-child(even) .exp-card__icon {
  background: rgba(196, 149, 106, 0.15);
  color: var(--earth-dark);
}

/* Experience section overflow guard for botanical */
.experience { overflow: hidden; position: relative; }
.experience__header { position: relative; z-index: 1; }
.experience__grid  { position: relative; z-index: 1; }

/* Pricing calculator wrap */
.pricing__calc-wrap {
  max-width: 860px;
  margin: 2rem auto 0;
}
.pricing__calc-inner {
  background: var(--cream);
  border: 1.5px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(92,124,95,.1);
  margin-bottom: 1rem;
}
.pcalc__top {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
}
.pricing__calc-title { font-family: var(--serif); font-size: 1.2rem; color: var(--text); margin: 0 0 .2rem; }
.pricing__calc-sub   { font-size: .83rem; color: var(--text-light); margin: 0; }

.pcalc__body { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.pcalc__dates-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.pcalc__field { display: flex; flex-direction: column; gap: .3rem; }
.pcalc__label { font-size: .73rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.pcalc__date {
  width: 100%; padding: .6rem .9rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--cream-alt); font-size: .9rem;
  color: var(--text); font-family: var(--sans);
}
.pcalc__date:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(92,124,95,.1); }

.pcalc__guests-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.pcalc__guest-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem .9rem; background: var(--cream-alt);
  border: 1px solid var(--border); border-radius: 8px;
}
.pcalc__guest-row .pcalc__row-name small { font-size: .72rem; color: var(--text-light); font-weight: 400; }

.pcalc__result-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; background: rgba(92,124,95,.07);
  border: 1px solid rgba(92,124,95,.2); border-radius: 10px; gap: 1rem;
}
.pcalc__result-price-wrap { display: flex; align-items: baseline; gap: .35rem; }
.pcalc__result-price { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--green); }
.pcalc__result-label { font-size: .82rem; color: var(--text-light); }
.pcalc__result-details { display: flex; flex-direction: column; gap: .15rem; text-align: right; font-size: .8rem; color: var(--text-light); }

.pcalc__book-btn {
  display: block; width: 100%;
  padding: 1rem; background: var(--earth); color: #fff;
  border: none; border-top: 1px solid rgba(0,0,0,.06);
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: background .2s; text-align: center;
}
.pcalc__book-btn:hover { background: var(--earth-dark); }

/* Pricing responsive */
@media (max-width: 700px) {
  .pricing__cards { grid-template-columns: 1fr; max-width: 360px; }
  .pcalc__dates-row { grid-template-columns: 1fr 1fr; }
  .pcalc__guests-grid { grid-template-columns: 1fr; }
  .pcalc__body { padding: 1.25rem; }
  .pcalc__top  { padding: 1.25rem; }
  .pcalc__result-row { flex-direction: column; align-items: flex-start; }
  .pcalc__result-details { text-align: left; }
}
@media (min-width: 701px) and (max-width: 900px) {
  .pricing__cards { grid-template-columns: 1fr 1fr; }
  .pricing__card:last-child { grid-column: 1 / -1; }
}

/* Booking form guest counters */
.bform__guests {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.bform__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream-alt);
}
.bform__row:last-child { border-bottom: none; }
.bform__row--pet { background: rgba(92,124,95,.04); }

.bform__estimate {
  background: rgba(92,124,95,.07);
  border: 1.5px solid rgba(92,124,95,.25);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  margin-top: .1rem;
}
.bform__estimate-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.bform__estimate-label { font-size: .8rem; color: var(--text-light); font-weight: 500; }
.bform__estimate-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--green); }
.bform__estimate-detail { font-size: .77rem; color: var(--text-light); margin-top: .25rem; }

/* Booking section overflow guard */
.booking { overflow: hidden; position: relative; }
.booking__inner { position: relative; z-index: 1; }



/* Subtle top border accent on experience cards */
.exp-card {
  border-top: 2px solid transparent;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.exp-card:hover { border-top-color: var(--green-light); }
.exp-card:nth-child(even):hover { border-top-color: var(--earth-light); }

/* Attraction hover accent */
.attraction__name {
  transition: color var(--dur) var(--ease);
}
.attraction:hover .attraction__name { color: var(--earth-light); }

/* Gallery items keyboard focus */
.gallery__item:focus-visible {
  outline: 2px solid var(--earth);
  outline-offset: 3px;
}

/* Form inputs — warmer placeholder colour */
.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--cream-deep);
}

/* Nav logo refined hover */
.nav__logo:hover { opacity: 0.85; }

/* ============================================================
   ILLUSTRATED / ANIMATED HERO LANDSCAPE
   ============================================================ */
.hero__bg {
  background-image: none !important;
  background: none !important;
}

.hero__bg::before { display: none !important; }

.hero__landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   WARM IMAGE TREATMENT
   Unified warm atmosphere across all content images —
   reduces contrast between photos and the cream/earth background.
   ============================================================ */

/* Base warm filter: slight sepia, lifted shadows, reduced contrast */
.about__img-main,
.about__img-secondary,
.amenities__img,
.gallery__img {
  filter: sepia(28%) saturate(1.1) brightness(1.04) contrast(0.9) hue-rotate(6deg);
  transition: filter 0.65s var(--ease), transform 0.65s var(--ease);
}

/* On hover — slight lift, keep warmth */
.gallery__item:hover .gallery__img {
  filter: sepia(18%) saturate(1.18) brightness(1.07) contrast(0.93) hue-rotate(5deg);
}

/* Warm tint overlay on about image stack */
.about__visuals::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,200,160,0.18) 0%, rgba(196,149,106,0.10) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 2px;
}


/* Warm tint on amenities image */
.amenities__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250,240,224,0.22) 0%,
    rgba(232,200,160,0.12) 50%,
    rgba(196,149,106,0.08) 100%
  );
  pointer-events: none;
  z-index: 2;
}


/* Softer border on the secondary about image */
.about__img-secondary {
  border-color: var(--cream-alt) !important;
}


/* Map: warm sepia to match site palette */
.location__map iframe {
  filter: sepia(28%) saturate(0.7) brightness(1.02) contrast(0.94) hue-rotate(6deg) !important;
}

/* ============================================================
   MOBILE OPTIMIZATION
   ============================================================ */

/* Prevent iOS text scaling on rotation */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove tap flash on interactive elements */
a, button, [tabindex], label {
  -webkit-tap-highlight-color: transparent;
}
button { touch-action: manipulation; }

/* Safe-area padding for notched iPhones */
@supports (padding: max(0px)) {
  .nav { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .footer { padding-bottom: max(2.25rem, calc(2.25rem + env(safe-area-inset-bottom))); }
}

/* ---- NAV: bigger touch targets ---- */
.nav__burger {
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  margin-right: -10px;
}
.nav__lang-btn {
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav__drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Drawer links — bigger touch area */
.nav__drawer a {
  min-height: 52px;
}

/* ---- GLOBAL: min touch target for buttons ---- */
.btn,
.hero__btn,
.nav__cta,
.pricing__book-cta,
.pcalc__book-btn,
.form__submit,
.tform__submit,
.cal__nav-btn {
  min-height: 44px;
}

/* ---- FORM INPUTS: prevent iOS auto-zoom (need ≥ 16px) ---- */
.form__input,
.form__textarea,
.form__select,
.tform__input,
.tform__textarea,
.pcalc__date,
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-size: max(16px, 0.95rem);
}

/* ============================================================
   HERO — mobile
   ============================================================ */
@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(2.25rem, 11vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .hero__label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }

  /* Scroll indicator overlaps buttons on mobile — hide it */
  .hero__scroll { display: none; }

  .hero__btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ============================================================
   STATS STRIP — mobile
   ============================================================ */
@media (max-width: 640px) {
  .stats-strip__stat {
    padding: 1.25rem 0.75rem;
  }
}

/* ============================================================
   ABOUT — mobile
   ============================================================ */
@media (max-width: 640px) {
  .about__img-main {
    aspect-ratio: 4 / 3; /* portrait → landscape to reduce tall-ness on mobile */
  }

  .about__visuals {
    padding-bottom: 36%; /* make room for secondary image */
  }

  .about__img-secondary {
    width: 44%;
    border-width: 4px;
  }

  .about__badge {
    width: 80px;
    height: 80px;
    top: 4%;
    right: 0;
  }

  .about__badge-num  { font-size: 1.6rem; }
  .about__badge-text { font-size: 0.5rem; }

  .about__quote {
    font-size: 1.05rem;
    padding-left: 1rem;
    margin: 1.5rem 0;
  }
}

/* ============================================================
   EXPERIENCE CARDS — mobile
   ============================================================ */
@media (max-width: 640px) {
  .exp-card {
    padding: 1.25rem 1.125rem;
  }
}

/* ============================================================
   AMENITIES — mobile
   ============================================================ */
@media (max-width: 640px) {
  .amenities__img {
    aspect-ratio: 4 / 3; /* prevent overly tall image */
  }
  .amenities__grid {
    gap: 0; /* keep border lines, no extra gap */
  }
}

/* ============================================================
   GALLERY — mobile
   ============================================================ */
@media (max-width: 640px) {
  /* Farm backdrop SVG is heavy on mobile — keep but shrink */
  .gallery__farm-svg {
    max-height: 130px;
    object-fit: cover;
  }
  .gallery {
    padding-bottom: var(--section-py);
  }
}

/* ============================================================
   ACTIVITIES — mobile
   ============================================================ */
@media (max-width: 640px) {
  .activity-card__body {
    padding: 1rem 1.125rem 1.25rem;
  }
}

/* ============================================================
   ATTRACTIONS — mobile
   ============================================================ */
@media (max-width: 640px) {
  .attraction__go-btn {
    min-height: 36px;
    padding: 0.45rem 0.875rem;
  }
}

/* ============================================================
   LOCATION — mobile
   ============================================================ */
@media (max-width: 640px) {
  .location__map {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   PRICING — mobile
   ============================================================ */
@media (max-width: 640px) {
  .pricing {
    padding: var(--section-py) 0;
  }

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

  .pricing__extra-item {
    padding: 0.75rem;
    font-size: 0.78rem;
  }

  .pricing__extra-item strong {
    font-size: 0.9rem;
  }

  .pcalc__dates-row {
    grid-template-columns: 1fr;
  }

  .pcalc__result-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcalc__result-details {
    text-align: left;
  }

  .pcalc__body {
    padding: 1.25rem 1rem;
  }

  .pcalc__top {
    padding: 1.25rem 1rem 0.875rem;
  }
}

/* ============================================================
   BOOKING / CONTACT — mobile
   ============================================================ */
@media (max-width: 640px) {
  .booking__form-wrap {
    padding: 1.5rem 1.25rem;
    border-radius: 2px;
  }

  .booking__tagline {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .form__submit {
    min-height: 52px;
    font-size: 1rem;
  }

  /* Guest counter rows — easier to tap */
  .bform__row {
    padding: 0.875rem 1rem;
  }

  .pcalc__btn {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
   TESTIMONIALS — mobile
   ============================================================ */
@media (max-width: 640px) {
  .testimonial-card {
    padding: 1.5rem 1.375rem;
  }

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

  .tform__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tform__submit {
    width: 100%;
  }
}

/* ============================================================
   CALENDAR — mobile
   ============================================================ */
@media (max-width: 640px) {
  .booking-cal {
    padding: 1.25rem 0.875rem 1rem;
  }

  .cal__nav-btn {
    width: 40px;
    height: 40px;
  }

  .cal__day-num {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .cal__legend {
    gap: 0.625rem;
  }

  .cal__legend-item {
    font-size: 0.68rem;
  }
}

/* ============================================================
   FOOTER — mobile
   ============================================================ */
@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.875rem;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ============================================================
   TYPOGRAPHY — mobile scale
   ============================================================ */
@media (max-width: 640px) {
  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  }

  .section-label {
    font-size: 0.68rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }
}

/* ============================================================
   VERY SMALL SCREENS (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  :root {
    --gutter: 1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

  .hero__label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  /* Hide flag icon on tiny screens to save nav space */
  .nav__lang-flag { display: none; }

  .stats-strip__num {
    font-size: 1.5rem;
  }

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

/* ============================================================
   MOBILE OPTIMISATIONS — COMPACT LAYOUT
   ============================================================ */
@media (max-width: 640px) {

  /* Tighten section padding — primary whitespace fix */
  :root {
    --section-py: 3rem;
  }

  /* Section headers: less margin below */
  .experience__header { margin-bottom: 1.75rem; }
  .activities__top    { margin-bottom: 1.5rem; }
  .attractions__header { margin-bottom: 1.75rem; }

  /* ---- EXPERIENCE CARDS: horizontal scroll carousel ---- */
  .experience__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .experience__grid::-webkit-scrollbar { display: none; }
  .exp-card {
    flex: 0 0 75vw;
    max-width: 280px;
    scroll-snap-align: start;
    padding: 1.25rem 1.125rem;
  }
  .exp-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }
  .exp-card__icon svg { width: 26px; height: 26px; }
  .exp-card__title { font-size: 1rem; margin-bottom: 0.5rem; }
  .exp-card__body  { font-size: 0.85rem; line-height: 1.6; }

  /* ---- ACTIVITIES: horizontal scroll carousel ---- */
  .activities__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    /* override grid column rule from earlier media query */
    grid-template-columns: unset;
  }
  .activities__grid::-webkit-scrollbar { display: none; }
  .activity-card {
    flex: 0 0 72vw;
    max-width: 270px;
    scroll-snap-align: start;
  }
  .activity-card__illo { aspect-ratio: 4 / 3; }

  /* ---- ATTRACTIONS: horizontal scroll carousel ---- */
  .attractions__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .attractions__grid::-webkit-scrollbar { display: none; }
  .attraction {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* ---- TESTIMONIALS: horizontal scroll carousel ---- */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    padding: 1.375rem 1.25rem;
  }
  .testimonial-card__quote {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .testimonial-card__quote::before { font-size: 2.5rem; top: -0.5rem; }
  .testimonial-card__author { gap: 0.625rem; }
  .testimonial-card__author strong { font-size: 0.85rem; }
  .testimonial-card__author span   { font-size: 0.75rem; }

  /* ---- ABOUT: shorter image on mobile ---- */
  .about__img-main { aspect-ratio: 16 / 9; }
  .about__visuals  { padding-bottom: 22%; }
  .about__img-secondary { width: 40%; }

  /* ---- PRICING CALC: larger tap targets ---- */
  .pcalc__btn {
    width: 44px;
    height: 44px;
  }

  /* ---- ATTRACTION GO BUTTON: min tap target ---- */
  .attraction__go-btn {
    min-height: 44px;
    padding: 0.625rem 1rem;
  }

  /* ---- AMENITIES: compact 2-column chip grid ---- */
  .amenities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border-top: none;
  }
  .amenity {
    padding: 0.625rem 0.75rem;
    border-bottom: none;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--border);
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .amenity__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .amenity__icon svg { width: 13px; height: 13px; }

  /* ---- TESTIMONIALS CTA: solid visible button ---- */
  .testimonials__leave-review-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(61, 92, 65, 0.3);
    display: inline-flex;
    width: auto;
    min-width: 200px;
    justify-content: center;
  }
  .testimonials__leave-review-btn:hover {
    background: var(--green-dark);
  }

  /* ---- ATTRACTIONS: portrait image-overlay cards ---- */
  .attraction {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 8px;
  }
  .attraction__img-wrap {
    aspect-ratio: 2 / 3;
  }
  .attraction__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(8,4,1,0.9) 0%, rgba(8,4,1,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  .attraction__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem;
    background: none;
    z-index: 2;
  }
  .attraction__desc { display: none; }
  .attraction__name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
  }
  .attraction__go-btn {
    font-size: 0.72rem;
    padding: 0.35rem 0.875rem;
    min-height: 36px;
  }
  .attraction__icon { width: 32px; height: 32px; }

  /* ---- CAROUSEL ARROW BUTTONS ---- */
  .carousel-wrap {
    position: relative;
  }
  .carousel-btn {
    position: absolute;
    top: calc(50% - 0.5rem);
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(44,36,22,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--green);
    padding: 0;
    transition: opacity 0.2s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .carousel-btn:active {
    box-shadow: 0 1px 4px rgba(44,36,22,0.1);
  }
  .carousel-btn--prev { left: 4px; }
  .carousel-btn--next { right: 4px; }
}

/* ============================================================
   GALLERY — MOBILE IMPROVEMENTS
   First image is full-width hero; rest in 2-col grid.
   ============================================================ */
@media (max-width: 640px) {
  .gallery__grid {
    grid-auto-rows: 170px;
    gap: 0.5rem;
  }
  .gallery__item:nth-child(1) {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
    height: 240px;
  }
  /* Stronger zoom-hint for touch users */
  .gallery__zoom-hint {
    opacity: 0.85;
  }
}

/* ============================================================
   ABOUT — MOBILE: cleaner single-column layout
   ============================================================ */
@media (max-width: 480px) {
  .about__img-secondary {
    display: none;
  }
  .about__visuals {
    padding-bottom: 5%;
  }
  .about__badge {
    width: 80px;
    height: 80px;
    top: auto;
    right: 0.625rem;
    bottom: 0.625rem;
  }
  .about__badge-num  { font-size: 1.65rem; }
  .about__badge-text { font-size: 0.55rem; }
}

/* ============================================================
   SCROLL MARGIN — all anchor sections account for sticky nav
   ============================================================ */
#about, #experience, #amenities, #gallery,
#activities, #attractions, #testimonials,
#location, #priceCalc, #contact {
  scroll-margin-top: 72px;
}

/* ============================================================
   IMAGE LOADING SHIMMER — placeholder while images load
   ============================================================ */
.about__img-main:not([src]),
.about__img-secondary:not([src]),
.amenities__img:not([src]),
.gallery__img:not([src]) {
  background: linear-gradient(90deg, #f0ead8 25%, #e8e0cc 50%, #f0ead8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   GENERAL MOBILE POLISH
   ============================================================ */
@media (max-width: 640px) {
  /* Tighter section titles on small screens */
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  /* About section: wider text column usage */
  .about__inner {
    gap: 2rem;
  }
  .about__quote {
    font-size: 1.05rem;
    margin: 1.25rem 0;
  }

  /* Gallery header tighter */
  .gallery__header {
    margin-bottom: 1.5rem;
  }

  /* Booking widget full-width on mobile */
  .booking__inner {
    gap: 1.5rem;
  }
  .booking__aside {
    position: static;
  }
}

/* ============================================================
   TABLET GALLERY — deeper mosaic rows
   ============================================================ */
@media (min-width: 641px) and (max-width: 960px) {
  .gallery__grid {
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }
}

/* ============================================================
   EXPERIENCE CARDS — richer visual on larger mobile
   ============================================================ */
@media (min-width: 481px) and (max-width: 640px) {
  .exp-card {
    flex: 0 0 65vw;
    max-width: 260px;
  }
}
