/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Nature palette — Dalmatian limestone, sage, lavender, earth */
  --clr-bg:           #f7f5f0;      /* warm limestone white */
  --clr-bg-alt:       #eef0e8;      /* very pale sage */
  --clr-surface:      #ffffff;
  --clr-text:         #1e1c18;
  --clr-text-muted:   #6a6558;

  --clr-sage:         #7a9171;      /* primary green accent */
  --clr-sage-dark:    #5b6f54;
  --clr-sage-pale:    rgba(122,145,113,.12);
  --clr-lavender:     #9b8cbf;      /* secondary accent */
  --clr-earth:        #b8916a;      /* warm terracotta */
  --clr-earth-pale:   rgba(184,145,106,.12);

  --clr-dark:         #141210;
  --clr-dark-90:      rgba(20,18,16,.92);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);

  --transition: .3s ease;

  --max-w: 1200px;
  --section-pad: 100px;
}

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

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Typography ────────────────────────────────────────────── */
.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 540px;
}

.body-text { color: var(--clr-text-muted); margin-bottom: 16px; }
.body-text--light { color: rgba(255,255,255,.78); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary { background: var(--clr-sage); color: #fff; }
.btn--primary:hover { background: var(--clr-sage-dark); }

.btn--outline {
  border: 1.5px solid var(--clr-sage);
  color: var(--clr-sage);
}
.btn--outline:hover { background: var(--clr-sage); color: #fff; }

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.15); }

.btn--nature-outline {
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn--nature-outline:hover { background: rgba(255,255,255,.15); }

.btn--full { width: 100%; justify-content: center; }

/* ── Section spacing ───────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--clr-bg-alt); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--clr-dark-90);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin-right: auto;
}
.nav-logo span { color: var(--clr-sage); }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(75deg) brightness(1.1);
  transition: filter .2s;
}
.nav-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(75deg) brightness(1.3);
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--clr-sage); }

.nav-cta { padding: 9px 18px; font-size: .78rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg-fallback {
  /* Replace with your own hero image: url('images/hero.jpg') */
  background: url('assets/images/gallery/OxaDreamland.jpg') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,18,10,.55) 0%,
    rgba(10,18,10,.7) 60%,
    rgba(10,18,10,.88) 100%
  );
}

/* Botanical decoration */
.hero-botanical {
  position: absolute;
  right: 8%;
  top: 15%;
  height: 260px;
  color: var(--clr-sage);
  opacity: .55;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { color: var(--clr-sage); font-style: italic; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-sage);
}
.stat strong small { font-size: 1rem; }
.stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  animation: bounce 2.2s infinite;
}
.hero-scroll svg { width: 30px; height: 30px; }

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

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images { position: relative; }
.about-img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-img--main img { aspect-ratio: 4/3; }
.about-img--secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 52%;
  border: 5px solid var(--clr-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-img--secondary img { aspect-ratio: 4/3; }

.about-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--clr-sage);
  color: #fff;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.4;
  gap: 4px;
  box-shadow: var(--shadow-card);
}

.about-text { padding-bottom: 40px; }

.about-highlights {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--clr-text-muted);
}
.about-highlights svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--clr-sage);
  margin-top: 3px;
}

/* ── HERITAGE ──────────────────────────────────────────────── */
.heritage {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: var(--section-pad) 0;
}

.heritage-bg-img {
  position: absolute;
  inset: 0;
  /* Replace with your own aerial/landscape photo: url('images/ager-aerial.jpg') */
  background: url('assets/images/hvar.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.heritage:hover .heritage-bg-img { transform: scale(1); }

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,24,12,.88) 0%,
    rgba(8,24,12,.72) 55%,
    rgba(8,24,12,.55) 100%
  );
}

.heritage-botanical {
  position: absolute;
  right: 3%;
  bottom: 6%;
  height: 200px;
  color: var(--clr-sage);
  opacity: .4;
  pointer-events: none;
}

.heritage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.heritage-text .section-eyebrow { color: rgba(155,210,155,.9); }
.heritage-text .section-title { color: #fff; }
.heritage-text .section-title em { color: rgba(155,210,155,.9); font-style: italic; }

.heritage-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 36px;
}
.heritage-fact {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.heritage-fact strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: rgba(155,220,155,.95);
  margin-bottom: 4px;
}
.heritage-fact span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.heritage-visual {
  position: relative;
}
.heritage-visual img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  border: 3px solid rgba(255,255,255,.1);
}
.heritage-caption {
  margin-top: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  letter-spacing: .04em;
}

/* ── AMENITIES ─────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 22px;
}

.amenity-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--clr-sage);
}
.amenity-icon svg { width: 24px; height: 24px; }

.amenity-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.amenity-card p { font-size: .88rem; color: var(--clr-text-muted); }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 22px;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background var(--transition);
}
.service-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.06); }
.service-item:hover { background: var(--clr-sage-pale); }

.service-num {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(122,145,113,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 58px;
}

.service-body h3 { font-family: var(--ff-heading); font-size: 1.15rem; margin-bottom: 8px; }
.service-body p   { font-size: .88rem; color: var(--clr-text-muted); }

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

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

/* Hidden items revealed by "Load More" */
.gallery-item--hidden { display: none; }
.gallery-item--hidden.revealed { display: block; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,22,10,.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gallery-more-wrap {
  text-align: center;
  margin-top: 36px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,14,6,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-caption { color: rgba(255,255,255,.5); font-size: .82rem; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: rgba(255,255,255,.8);
  font-size: 1.8rem;
  padding: 12px;
  transition: color var(--transition);
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--clr-sage); }
.lightbox-close { top: 20px; right: 24px; font-size: 2.4rem; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── INSTAGRAM GRID ────────────────────────────────────────── */
.instagram { background: var(--clr-bg); }

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

.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: block;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ig-item:hover img { transform: scale(1.07); }

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,22,10,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-icon { width: 36px; height: 36px; color: #fff; }

.ig-cta {
  text-align: center;
  margin-top: 40px;
}
.ig-follow-btn { border-radius: var(--radius-pill); }

.ig-skeleton {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--clr-bg-alt) 25%, #e4e6de 50%, var(--clr-bg-alt) 75%);
  background-size: 200% 100%;
  animation: ig-shimmer 1.4s infinite;
}
@keyframes ig-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.reviews-score {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-sage);
  line-height: 1;
}
.stars { font-size: 1.25rem; color: var(--clr-earth); margin-bottom: 4px; }
.reviews-meta p { font-size: .82rem; color: var(--clr-text-muted); }

.reviews-carousel { overflow: hidden; margin: 0 -12px; }
.reviews-track {
  display: flex;
  gap: 22px;
  padding: 0 12px;
  transition: transform .45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 15px);
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.04);
}

.review-stars { font-size: 1rem; color: var(--clr-earth); }
.review-text  { font-size: .93rem; color: var(--clr-text-muted); flex: 1; font-style: italic; line-height: 1.75; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author strong { display: block; font-size: .88rem; }
.review-author span   { font-size: .78rem; color: var(--clr-text-muted); }

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.reviews-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-sage);
  color: var(--clr-sage);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.reviews-btn:hover { background: var(--clr-sage); color: #fff; }

.reviews-dots { display: flex; gap: 8px; }
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(122,145,113,.3);
  transition: var(--transition);
}
.reviews-dot.active {
  background: var(--clr-sage);
  width: 24px;
  border-radius: 4px;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: var(--clr-text-muted);
}
.contact-details svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--clr-sage); margin-top: 2px; }

.contact-map { margin-top: 32px; }
.map-placeholder {
  background: var(--clr-sage-pale);
  border: 1.5px dashed rgba(122,145,113,.4);
  border-radius: var(--radius-md);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-sage);
}
.map-placeholder svg { width: 30px; height: 30px; }
.map-placeholder p   { font-size: .82rem; color: var(--clr-text-muted); }

/* Form */
.contact-form {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(0,0,0,.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .93rem;
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(122,145,113,.14);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c0503a; }
.form-group textarea { resize: vertical; }

.form-note { font-size: .76rem; color: var(--clr-text-muted); text-align: center; }

.form-success { border-radius: var(--radius-sm); text-align: center; font-weight: 600; font-size: .88rem; }
.form-success.show {
  padding: 14px;
  background: rgba(60,150,80,.1);
  color: #2a7a42;
  border: 1.5px solid rgba(60,150,80,.3);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; line-height: 1.75; }

.footer-leaf {
  margin-top: 20px;
  width: 32px;
  color: var(--clr-sage);
}

.footer-nav h4,
.footer-social h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 20px;
}
.footer-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-sage); }

.social-links { display: flex; gap: 12px; margin-bottom: 20px; }
.social-links a {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--clr-sage); color: var(--clr-sage); }
.social-links svg { width: 17px; height: 17px; }

.footer-unesco-note {
  font-size: .75rem;
  color: rgba(155,210,155,.55);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.footer-unesco-note svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--clr-sage); }

/* ── Back to top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--clr-sage);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(122,145,113,.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-to-top:hover { background: var(--clr-sage-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .about-grid, .contact-grid { gap: 48px; }
  .heritage-inner { gap: 48px; }
  .services-list { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { border-right: none; }
  .review-card { flex: 0 0 calc(50% - 11px); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--clr-dark);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 850;
  }
  .nav-links.open a { font-size: 1.35rem; color: #fff; }
  .nav-hamburger { z-index: 860; }

  /* Hero botanical */
  .hero-botanical { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 340px; margin-bottom: 48px; }
  .about-img--secondary { right: 0; bottom: -20px; }

  /* Heritage */
  .heritage-inner { grid-template-columns: 1fr; }
  .heritage-visual { display: none; }
  .heritage-facts  { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  /* Instagram */
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Reviews */
  .review-card { flex: 0 0 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form  { padding: 30px 22px; }
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-stats { gap: 20px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }

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

  .amenities-grid { grid-template-columns: 1fr; }
  .heritage-facts  { grid-template-columns: 1fr; }
}
