/*!
Theme Name: gangavana
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gangavana
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

gangavana is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
:root {
  --ink: #17211b;
  --ink-soft: #304036;
  --paper: #fbf7ef;
  --paper-2: #f4eadb;
  --mist: #e8f0ea;
  --sage: #60785f;
  --sage-dark: #354c3b;
  --terracotta: #ba6a49;
  --sun: #d8a952;
  --river: #6f9aa5;
  --white: #ffffff;
  --line: rgba(23, 33, 27, 0.13);
  --shadow: 0 24px 70px rgba(23, 33, 27, 0.16);
  --shadow-soft: 0 14px 34px rgba(23, 33, 27, 0.1);
  --radius: 8px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 169, 82, 0.13), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 38%, #f7efe1 100%);
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 52px 0;
}

.section.band {
  background: var(--mist);
}

.section.dark {
  color: var(--paper);
  background: var(--ink);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-display);
  line-height: 1.03;
  font-weight: 700;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 11vw, 7.4rem);
  max-width: 11ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 8vw, 4.8rem);
  max-width: 11ch;
}

h3 {
  font-size: clamp(1.45rem, 5vw, 2.2rem);
}

.lead {
  color: rgba(23, 33, 27, 0.76);
  font-size: clamp(1rem, 3vw, 1.22rem);
  line-height: 1.75;
}

.dark .lead,
.hero .lead,
.page-hero .lead {
  color: rgba(255, 250, 241, 0.8);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 800;
}

.text-link i {
  width: 17px;
  height: 17px;
  transition: transform 0.25s var(--ease);
}

.text-link:hover i {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease),
    background 0.24s var(--ease),
    color 0.24s var(--ease);
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  background: var(--sun);
  color: var(--ink);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn.light {
  background: var(--paper);
  color: var(--ink);
}

.btn.full {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.09);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-toggle,
.site-header.menu-active .brand,
.site-header.menu-active .nav-link,
.site-header.menu-active .nav-toggle {
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}


.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-active .brand-mark {
  border-color: rgba(23, 33, 27, 0.16);
  background: var(--mist);
}

.brand-mark i {
  width: 19px;
  height: 19px;
}

.brand small {
  display: block;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.78;
  text-transform: uppercase;
}

.brand span {
  display: block;
  line-height: 1.08;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle i {
  width: 21px;
  height: 21px;
}

.nav-menu {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  width: auto;          /* ← don't let it stretch beyond bounds */
  max-width: calc(100vw - 32px);  /* ← hard cap to viewport */
  box-sizing: border-box;         /* ← padding included in width */
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(23, 33, 27, 0.1);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.24s ease,
    transform 0.24s var(--ease);
  z-index: 999;         /* ← ensure it stays above content */
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.active {
  background: var(--mist);
  color: var(--sage-dark);
}

.nav-cta {
  margin-top: 8px;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: 
    linear-gradient(180deg, rgba(11, 17, 13, 0.32), rgba(11, 17, 13, 0.64)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(var(--hero-scale, 1.04));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(11, 17, 13, 0.92));
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 132px 0 34px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  display: grid;
  gap: 14px;
  max-width: 430px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.12);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.weather-row,
.mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.weather-row i,
.mini-stat i {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--sun);
}

.weather-row strong,
.mini-stat strong {
  display: block;
  color: var(--white);
}

.weather-row span,
.mini-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.hero-booking {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.13);
  backdrop-filter: blur(18px);
}

.quick-field {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.quick-field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-field input,
.quick-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
}

.quick-field select option {
  color: var(--ink);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.page-hero {
  min-height: 64svh;
}

.page-hero .hero-content {
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 13ch;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.split {
  display: grid;
  gap: 34px;
}

.split-media {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: 220px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
}

.floating-note span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 33, 27, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.feature-list i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--sage-dark);
}

.feature-list svg {
  width: 19px;
  height: 19px;
}

.feature-list strong {
  display: block;
  color: var(--ink);
}

.feature-list span {
  color: rgba(23, 33, 27, 0.68);
  font-size: 0.92rem;
}

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

.metric {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.metric strong {
  display: block;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 0.95;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(23, 33, 27, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
}

.signature-grid,
.values-grid,
.activity-grid,
.contact-grid,
.footer-grid,
.room-grid,
.attraction-grid {
  display: grid;
  gap: 18px;
}

.signature-card,
.value-card,
.activity-card,
.room-card,
.testimonial-card,
.attraction-card,
.contact-card,
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.signature-card img,
.activity-card img,
.room-card img,
.attraction-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.signature-card:hover img,
.activity-card:hover img,
.room-card:hover img,
.attraction-card:hover img {
  transform: scale(1.055);
}

.signature-card .card-body,
.activity-card .card-body,
.room-card .card-body,
.attraction-card .card-body {
  padding: 18px;
}

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kicker i {
  width: 18px;
  height: 18px;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  color: rgba(23, 33, 27, 0.7);
  font-size: 0.96rem;
}

.amenity-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(23, 33, 27, 0.12);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.76);
  color: rgba(23, 33, 27, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
}

.pill i {
  width: 13px;
  height: 13px;
}

.rooms-showcase {
  overflow: hidden;
}

.cottage-detail {
  /* display: grid; */
  gap: 30px;
  align-items: center;
}

.cottage-copy {
  display: grid;
  gap: 18px;
}

.cottage-copy h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 7vw, 3.8rem);
  max-width: 11ch;
}

.cottage-copy p {
  max-width: 660px;
  color: rgba(23, 33, 27, 0.72);
}

.cottage-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cottage-facts span {
  display: grid;
  min-height: 116px;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(23, 33, 27, 0.16);
  color: rgba(23, 33, 27, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.cottage-facts i {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}

.cottage-facts strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.cottage-gallery {
  min-width: 0;
}

.cottage-swiper {
  margin-top: 30px;
  width: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cottage-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.cottage-swiper img {
  aspect-ratio: 1 / 1;
  height: 400px;
  /* width: 600px;
  height: 600px; */
  object-fit: cover;
}

.cottage-swiper span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(251, 247, 239, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.swiper {
  overflow: visible;
}

.room-slide {
  height: auto;
}

.room-card {
  height: 100%;
  background: var(--white);
}

.room-card .image-wrap {
  position: relative;
  overflow: hidden;
}

.room-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 900;
}

.room-price span {
  color: rgba(23, 33, 27, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.room-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.room-meta span {
  display: grid;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius);
  background: var(--mist);
  color: rgba(23, 33, 27, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.room-meta i {
  width: 16px;
  height: 16px;
  margin: 0 auto;
  color: var(--sage-dark);
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.icon-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition:
    transform 0.22s var(--ease),
    background 0.22s ease;
}

.icon-btn:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.icon-btn i {
  width: 18px;
  height: 18px;
}

.experience-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.experience-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  
}

.experience-band .container {
  position: relative;
}

.experience-panel {
  display: grid;
  gap: 26px;
  padding: 74px 0;
}

.experience-steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.step strong:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
}

.step h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.94rem;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--white);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--sun);
}

.stars i {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.quote {
  color: rgba(23, 33, 27, 0.78);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.guest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.guest strong,
.guest span {
  display: block;
}

.guest span {
  color: rgba(23, 33, 27, 0.58);
  font-size: 0.84rem;
  font-weight: 700;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-strip img {
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cta-band {
  color: var(--paper);
}

.cta-content {
  display: grid;
  gap: 22px;
  padding: 70px 0;
}

.cta-content h2 {
  max-width: 12ch;
}

.cta-content p {
  color: rgba(255, 250, 241, 0.78);
  max-width: 680px;
}

.story-timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.timeline-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.5);
}

.timeline-item span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: rgba(23, 33, 27, 0.68);
}

.value-card,
.contact-card,
.faq-item {
  padding: 20px;
}

.value-card i,
.contact-card i {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--terracotta);
}

.value-card h3,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.value-card p,
.contact-card p {
  color: rgba(23, 33, 27, 0.68);
}

.host-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.host-panel img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.host-panel p {
  color: rgba(255, 250, 241, 0.78);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(23, 33, 27, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.filter-btn.active {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--paper);
}

.booking-layout {
  display: grid;
  gap: 20px;
}

.booking-card,
.booking-summary {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: rgba(23, 33, 27, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(23, 33, 27, 0.16);
  border-radius: var(--radius);
  outline: 0;
  background: #fffdf8;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 126px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(96, 120, 95, 0.14);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 33, 27, 0.7);
  font-weight: 800;
}

.summary-list strong {
  color: var(--ink);
}

.total-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--mist);
}

.total-box strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.form-note {
  margin-top: 14px;
  color: rgba(23, 33, 27, 0.58);
  font-size: 0.84rem;
}

.success-message {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(96, 120, 95, 0.12);
  color: var(--sage-dark);
  font-weight: 800;
}

.success-message.is-visible {
  display: block;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.attraction-card .distance {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.attraction-card .distance i {
  width: 16px;
  height: 16px;
}

.itinerary {
  display: grid;
  gap: 12px;
  counter-reset: itinerary;
}

.itinerary-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  counter-increment: itinerary;
}

.itinerary-item::before {
  content: counter(itinerary);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.itinerary-item h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.itinerary-item p {
  margin-bottom: 0;
  color: rgba(23, 33, 27, 0.68);
}

.activity-card .activity-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: rgba(23, 33, 27, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
}

.activity-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.activity-meta i {
  width: 15px;
  height: 15px;
  color: var(--terracotta);
}

.image-credit {
  display: block;
  margin-top: 10px;
  color: rgba(23, 33, 27, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
}

.location-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.location-card strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
}

.reach-grid {
  display: grid;
  gap: 16px;
}

.reach-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.reach-card i {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.reach-card h3 {
  margin-bottom: 6px;
  font-size: 1.34rem;
}

.reach-card p {
  margin-bottom: 0;
  color: rgba(23, 33, 27, 0.68);
}

.availability-note {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-left: 3px solid var(--sage-dark);
  background: var(--mist);
  color: rgba(23, 33, 27, 0.76);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: rgba(23, 33, 27, 0.68);
}

.site-footer {
  color: rgba(255, 250, 241, 0.78);
  background: #111712;
}

.footer-grid {
  padding: 58px 0 34px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand .brand {
  color: var(--paper);
}

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

.footer-links a {
  color: rgba(255, 250, 241, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--sun);
}

.footer-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.socials i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

@media (min-width: 560px) {
  .hero-booking,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-booking .btn,
  .form-grid .wide {
    grid-column: 1 / -1;
  }

  .signature-grid,
  .values-grid,
  .activity-grid,
  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-strip img:nth-child(1) {
    grid-row: span 2;
    height: 370px;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .section {
    padding: 104px 0;
  }

  .section-head {
    grid-template-columns: 0.9fr 1fr;
    align-items: end;
  }

  .section-head.center {
    grid-template-columns: 1fr;
  }

  .section-head .lead {
    margin-bottom: 0;
  }

  .hero-booking {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
  }

  .hero-booking .btn {
    grid-column: auto;
    min-width: 150px;
  }

  .split,
  .booking-layout,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .metric-strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .experience-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .host-panel {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .cottage-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  }

  .cottage-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cottage-swiper img {
    aspect-ratio: 1 / 1.08;
  }
 

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }
}
@media (max-width: 767px) {
   .cottage-swiper {
    width:100% !important;
  
}
  .cottage-swiper img {
  aspect-ratio: 1 / 1;
  width: 300px;
  height: 300px;
  object-fit: cover;
}
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    min-height: 40px;
    padding-inline: 9px;
    color: var(--white);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
  }

  .site-header.is-scrolled .nav-link:hover,
  .site-header.is-scrolled .nav-link.active {
    background: var(--mist);
    color: var(--sage-dark);
  }

  .nav-cta {
    margin: 0 0 0 8px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr 380px;
    align-items: end;
  }

  .signature-grid,
  .activity-grid,
  .attraction-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reach-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-summary {
    position: sticky;
    top: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
