:root {
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --paper: #fdfcfa;
  --ink: #2c332d;
  --ink-muted: #5a635c;
  --sage: #3d5248;
  --sage-dark: #2f3f37;
  --sage-soft: #e8ede9;
  --accent: #b84a5a;
  --accent-soft: #f8e7e9;
  --leaf: #7c8f62;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(45, 55, 48, 0.08);
  --shadow-card: 0 14px 34px rgba(45, 55, 48, 0.12);
  --radius: 8px;
  --radius-lg: 8px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Lora", Georgia, serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 237, 233, 0.42) 0%, rgba(253, 252, 250, 0) 18rem),
    var(--paper);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

a {
  color: var(--sage-dark);
}

a:hover {
  color: var(--sage);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 74, 90, 0.35);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-shell {
  width: min(1120px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 82, 72, 0.1);
}

.header-inner {
  position: relative;
  width: min(1200px, 94vw);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(61, 82, 72, 0.2);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 4.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sage-dark);
}

.menu-btn {
  display: none;
  border: 1px solid rgba(61, 82, 72, 0.25);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.55rem 1.05rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.2vw, 1.08rem);
  font-weight: 600;
  color: var(--sage-dark);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.35rem);
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  position: relative;
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a:hover {
  color: var(--sage-dark);
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.18rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > a:focus-visible::after {
  transform: scaleX(1);
}

.chev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  vertical-align: middle;
}

.subnav {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.25rem);
  min-width: 11rem;
  background: var(--white);
  border: 1px solid rgba(61, 82, 72, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0.35rem);
}

.subnav a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.btn-book {
  text-decoration: none;
  background: var(--sage);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-book:hover {
  background: var(--sage-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 1.5rem);
  overflow: hidden;
}

/* Negative inset = slightly zoomed out vs cover so more of the photo is visible */
.hero-bg {
  position: absolute;
  inset: -5%;
  background:
    url("assets/hero-main.png") no-repeat;
  background-size: cover;
  background-position: 22% 42%;
  background-color: var(--sage-soft);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1) 0%, transparent 28rem),
    linear-gradient(180deg, rgba(28, 43, 36, 0.12) 0%, rgba(19, 31, 26, 0.68) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(42rem, 92vw);
  padding: 0 0.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(20, 36, 29, 0.34);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 8.5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 0 0 0.65rem;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 4px 28px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(1.13rem, 3.2vw, 1.55rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 1.5rem;
  line-height: 1.5;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 2px 18px rgba(0, 0, 0, 0.38);
}

.hero .btn-primary {
  font-size: clamp(1.05rem, 3.6vw, 1.14rem);
  font-weight: 700;
  min-height: 50px;
  padding: 0.82rem 1.95rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.25rem auto 0;
  padding: 0;
}

.hero-points li {
  min-height: 36px;
  padding: 0.4rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(253, 252, 250, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: 1px solid var(--sage);
  box-shadow: 0 8px 24px rgba(61, 82, 72, 0.25);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(61, 82, 72, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage-soft);
  color: var(--sage-dark);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
}

.section-title-center {
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 4vw, 2.85rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--sage-dark);
  line-height: 1.08;
}

.section-lead-center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.15rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.58;
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(232, 237, 233, 0.92) 0%, rgba(247, 244, 239, 0.96) 100%);
  border-top: 1px solid rgba(61, 82, 72, 0.06);
  border-bottom: 1px solid rgba(61, 82, 72, 0.06);
}

.section-cream-inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(61, 82, 72, 0.08);
}

/* About split */
.about-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.75rem, 4vw, 3.4rem);
  align-items: start;
}

.about-split {
  padding-top: clamp(2.4rem, 5vw, 3.6rem);
}

.about-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(61, 82, 72, 0.1);
}

.about-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.about-treehouse-photo {
  align-self: flex-end;
  width: min(72%, 26rem);
}

.about-photo:hover img {
  transform: scale(1.035);
}

.about-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 3.6vw, 2.85rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--sage-dark);
  line-height: 1.16;
}

.about-copy p {
  margin: 0 0 0.85rem;
  font-size: clamp(1.08rem, 1.55vw, 1.18rem);
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.58;
}

.about-copy .about-lead {
  max-width: 32rem;
  font-size: clamp(1.24rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.38;
  color: var(--ink);
}

.about-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.55rem;
  margin: 1.1rem 0 1.15rem;
  padding: 0;
}

.about-highlights li {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(61, 82, 72, 0.15);
  border-top: 3px solid #b84a5a;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f4 100%);
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 8px 20px rgba(45, 55, 48, 0.07);
}

.about-copy .btn {
  margin-top: 0.1rem;
  font-size: 1.04rem;
  font-weight: 600;
}

.about-split .eyebrow {
  font-size: 1.02rem;
  font-weight: 700;
}

/* Experiences */
.experiences {
  padding: clamp(2.75rem, 5vw, 4.2rem) 0;
}

.experiences .section-title-center {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.exp-card {
  position: relative;
  text-align: center;
  padding: clamp(1.15rem, 2.4vw, 1.55rem) 1rem;
  border: 1px solid rgba(61, 82, 72, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 26px rgba(45, 55, 48, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--leaf));
  border-radius: var(--radius) var(--radius) 0 0;
}

.exp-card:hover {
  border-color: rgba(184, 74, 90, 0.22);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.exp-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.7rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--sage-soft);
}

.exp-icon svg {
  width: 52px;
  height: 52px;
}

.exp-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 1.82rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--sage-dark);
  line-height: 1.12;
}

.exp-card p {
  margin: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.2rem);
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Gallery */
.gallery-groups {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.gallery-category {
  display: grid;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-category-head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(61, 82, 72, 0.12);
}

.gallery-category-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.28rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  color: var(--sage-dark);
}

.gallery-category-head p {
  max-width: 34rem;
  margin: 0;
  justify-self: end;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.gallery-grid .g-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 82, 72, 0.1);
  background: var(--sage-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius);
  background: rgba(26, 39, 33, 0.74);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-grid .g-item:hover figcaption,
.gallery-grid .g-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid .g-item-tall img {
  aspect-ratio: 3 / 4;
}

.gallery-grid .g-item-wide {
  grid-column: span 6;
}

.gallery-grid .g-item-wide img {
  aspect-ratio: 16 / 9;
}

/* Gallery slider (per category) */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 3.35rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 237, 233, 0.7) 100%);
  border: 1px solid rgba(61, 82, 72, 0.1);
  box-shadow: var(--shadow-soft);
}

.gallery-carousel .gallery-grid {
  display: flex;
  width: 100%;
  gap: 0;
  align-items: stretch;
  transition: transform 0.35s ease;
  touch-action: pan-y;
  will-change: transform;
}

.gallery-carousel .gallery-grid .g-item {
  flex: 0 0 100%;
  margin: 0;
}

.gallery-carousel .gallery-grid .g-item-tall,
.gallery-carousel .gallery-grid .g-item-wide {
  grid-column: auto;
}

.gallery-carousel .gallery-grid img,
.gallery-carousel .gallery-grid .g-item-tall img,
.gallery-carousel .gallery-grid .g-item-wide img {
  aspect-ratio: 16 / 10;
  min-height: clamp(340px, 42vw, 620px);
}

.gallery-carousel .gallery-grid figcaption {
  opacity: 1;
  transform: none;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: max-content;
  background: rgba(26, 39, 33, 0.8);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 82, 72, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--sage-dark);
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(45, 55, 48, 0.08);
}

.gallery-arrow.prev {
  left: 0.9rem;
}

.gallery-arrow.next {
  right: 0.9rem;
}

.gallery-arrow:hover {
  background: var(--cream);
}

/* Reviews */
.testimonial-feature {
  position: relative;
  text-align: center;
  margin: 0 auto 1.8rem;
  max-width: 820px;
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  color: rgba(184, 74, 90, 0.28);
  margin: 0;
}

.quote-mark.closing {
  margin-top: -0.5rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.68;
  color: var(--ink);
  margin: -0.5rem auto 0;
  max-width: 38rem;
  border: none;
  padding: 0 1rem;
}

.review-slider {
  max-width: 880px;
  margin: 0.5rem auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 82, 72, 0.12);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.review-cards {
  display: flex;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  border: 1px solid rgba(61, 82, 72, 0.15);
  flex: 0 0 auto;
  font-family: var(--font-body);
}

.avatar-baba {
  background: #5a7350;
}

.avatar-dhriti {
  background: #6c7078;
}

.avatar-ankita {
  background: #6b4a7d;
}

.avatar-indu {
  background: #a66b3d;
}

.avatar-subhas {
  background: #3d7a86;
}

.avatar-jyotsna {
  background: #7d93a3;
}

.review-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.1;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-soft);
  color: var(--sage-dark);
  border-radius: var(--radius);
  padding: 0.25rem 0.65rem;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  border: 1px solid rgba(61, 82, 72, 0.12);
}

.rating-chip .stars {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.review-card {
  position: relative;
  min-width: 100%;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(2.7rem, 6vw, 4.25rem);
  background: var(--white);
  border: none;
}

.review-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.14rem);
  font-weight: 500;
  line-height: 1.62;
}

.review-meta {
  margin: -0.15rem 0 0.65rem;
  color: #7a847c;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.google-source {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.google-g {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  background: linear-gradient(45deg, #4285f4 0 24%, #34a853 24% 48%, #fbbc05 48% 72%, #ea4335 72% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 82, 72, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--sage-dark);
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(45, 55, 48, 0.08);
}

.review-arrow.prev {
  left: 0.5rem;
}

.review-arrow.next {
  right: 0.5rem;
}

.review-arrow:hover {
  background: var(--cream);
}

.review-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
}

.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: var(--radius);
  border: 1.5px solid rgba(61, 82, 72, 0.35);
  background: transparent;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.review-dots button.active {
  width: 24px;
  border-radius: var(--radius);
  background: var(--sage);
  border-color: var(--sage);
}

/* Get in touch */
.touch-section {
  position: relative;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  overflow: hidden;
}

.touch-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232, 237, 233, 0.98) 0%, rgba(253, 252, 250, 0.94) 48%, rgba(248, 231, 233, 0.82) 100%);
}

.touch-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253, 252, 250, 0.72) 0%, rgba(253, 252, 250, 0.18) 100%);
}

.touch-inner {
  position: relative;
  z-index: 1;
}

.touch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.touch-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--sage-dark);
  line-height: 1.08;
}

.touch-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  max-width: 34rem;
  font-size: clamp(1.08rem, 1.7vw, 1.2rem);
  font-weight: 500;
  line-height: 1.58;
}

.touch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.touch-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.9rem;
  border: 1px solid rgba(61, 82, 72, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 8px 20px rgba(45, 55, 48, 0.06);
}

.touch-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-top: 0.05rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.touch-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.touch-list a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.touch-sep {
  color: var(--ink-muted);
}

.map-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(61, 82, 72, 0.15);
  text-decoration: none;
  color: inherit;
}

.map-card-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(61, 82, 72, 0.14) 49%, rgba(61, 82, 72, 0.14) 51%, transparent 52%),
    linear-gradient(0deg, transparent 46%, rgba(61, 82, 72, 0.16) 47%, rgba(61, 82, 72, 0.16) 50%, transparent 51%),
    radial-gradient(circle at 50% 42%, rgba(184, 74, 90, 0.22) 0 3rem, transparent 3.1rem),
    linear-gradient(155deg, #f7fbf7 0%, #dce8df 46%, #c6d8cd 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.map-card:hover .map-card-visual {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.map-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(45, 63, 55, 0.9);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 0;
}

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

.site-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.95rem;
}

.footer-credit {
  flex: 0 1 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem !important;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.footer-up {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}

.footer-up:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Responsive */
@media (max-width: 960px) {
  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 0.75rem;
  }

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

  .about-photo-stack {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-treehouse-photo {
    width: min(62%, 22rem);
  }

  .gallery-category-head {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .gallery-category-head p {
    justify-self: start;
  }

  .gallery-grid .g-item {
    grid-column: span 6;
  }

  .gallery-grid .g-item-wide {
    grid-column: span 12;
  }

  .gallery-carousel {
    padding: 0 2.7rem;
  }

  .gallery-carousel .gallery-grid img,
  .gallery-carousel .gallery-grid .g-item-tall img,
  .gallery-carousel .gallery-grid .g-item-wide img {
    min-height: clamp(280px, 56vw, 520px);
  }

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

  .map-card {
    max-width: 400px;
  }
}
@media (max-width: 780px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5vw 1.25rem;
    background: rgba(253, 252, 250, 0.98);
    border-bottom: 1px solid rgba(61, 82, 72, 0.1);
    box-shadow: var(--shadow-soft);
    display: none;
    gap: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list a {
    padding: 0.55rem 0;
  }

  .subnav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    margin-top: 0.25rem;
    background: transparent;
  }

  .btn-book {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid .g-item,
  .gallery-grid .g-item-wide,
  .gallery-grid .g-item-tall {
    grid-column: 1 / -1;
  }

  .gallery-grid .g-item img,
  .gallery-grid .g-item-wide img,
  .gallery-grid .g-item-tall img {
    aspect-ratio: 4 / 3;
  }

  .about-treehouse-photo {
    width: 100%;
    align-self: stretch;
  }

  .gallery-carousel {
    padding: 0 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .gallery-carousel .gallery-grid img,
  .gallery-carousel .gallery-grid .g-item-tall img,
  .gallery-carousel .gallery-grid .g-item-wide img {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .gallery-carousel .gallery-grid figcaption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    max-width: calc(100% - 1.4rem);
    font-size: 0.8rem;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }

  .gallery-arrow.prev {
    left: 0.15rem;
  }

  .gallery-arrow.next {
    right: 0.15rem;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1.1rem;
  }

  .hero {
    min-height: min(82vh, 720px);
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-bg {
    inset: -7%;
    background-position: 12% 44%;
  }

  .hero-script {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-points {
    gap: 0.4rem;
  }

  .hero-points li {
    min-height: 34px;
    padding: 0.35rem 0.62rem;
    font-size: 0.82rem;
  }

  .section-title-center {
    font-size: clamp(2rem, 7.2vw, 2.55rem);
  }

  .section-lead-center {
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .about-copy h2 {
    font-size: clamp(2.12rem, 7.5vw, 2.62rem);
  }

  .about-copy p {
    font-size: 1.16rem;
    line-height: 1.58;
  }

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

  .gallery-category {
    gap: 0.8rem;
  }

  .gallery-category-head h3 {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .gallery-category-head p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .about-copy .about-lead {
    font-size: 1.28rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin: 0.95rem 0 1rem;
  }

  .about-highlights li {
    min-height: 54px;
    justify-content: flex-start;
    padding: 0.72rem 0.9rem;
    text-align: left;
  }

  .gallery-grid figcaption {
    opacity: 1;
    transform: none;
  }

  .nav-list a {
    font-size: 1.02rem;
  }

  .exp-card h3 {
    font-size: 1.72rem;
  }

  .exp-card p {
    font-size: 1.16rem;
  }
}

@media (max-width: 520px) {
  .review-slider {
    padding-bottom: 3.45rem;
  }

  .review-card {
    padding: 1.3rem 1.15rem;
  }

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

  .review-arrow {
    top: auto;
    bottom: 0.85rem;
    transform: none;
  }

  .review-arrow.prev {
    left: calc(50% - 3rem);
  }

  .review-arrow.next {
    right: calc(50% - 3rem);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
