/* =============================================================================
   Rock Retreat — landing page
   Hand-written CSS3. No framework, no build step.

   1.  Tokens
   2.  Reset & base
   3.  Layout helpers
   4.  Buttons
   5.  Header & drawer
   6.  Hero
   7.  Booking form
   8.  About
   9.  Stays
   10. Day packages
   10b. Activities
   11. Experience
   12. Reviews
   13. Contact
   14. Footer & call bar
   15. Popup
   16. Form feedback & PHP response page
   17. Reveal / motion / print
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --ink: #17201a;
  --forest: #294634;
  --forest-deep: #16261c;
  --moss: #5d7a60;
  --cream: #fbf8f2;
  --sand: #f2ece0;
  --sand-deep: #e5dccb;
  --gold: #bf8c3f;
  --gold-dark: #a9782f;
  --gold-ink: #221703;

  --font-display: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shell: 78rem;
  --pad: 1.25rem;
  --radius: 1.25rem;
  --section-y: 6rem;
}

@media (min-width: 768px) {
  :root {
    --pad: 2rem;
    --section-y: 8rem;
  }
}

/* 2. Reset & base ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
}

::selection {
  background: var(--forest);
  color: var(--cream);
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.85rem;
  transform: translateY(-150%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: none;
}

/* 3. Layout helpers -------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--center::after {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.section-lede {
  margin-top: 1.25rem;
  color: rgb(23 32 26 / 0.65);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-head {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.section-head--light .section-title {
  color: var(--cream);
}

.section-head--light .section-lede {
  color: rgb(251 248 242 / 0.65);
}

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 24px -14px rgb(23 32 26 / 0.8);
}

.btn--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -16px rgb(23 32 26 / 0.85);
}

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

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

.btn--ghost {
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost-light {
  border-color: rgb(251 248 242 / 0.55);
  color: var(--cream);
}

.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn--outline-light {
  padding: 0.7rem 1.35rem;
  border: 1px solid rgb(251 248 242 / 0.3);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.btn--outline-light:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--gold-ink);
}

/* 5. Header & drawer ------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--cream);
  transition:
    background-color 0.45s var(--ease),
    color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(22 38 28 / 0.55), transparent);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.site-header.is-stuck {
  background: rgb(251 248 242 / 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 12px 30px -24px rgb(23 32 26 / 0.9);
}

.site-header.is-stuck::before {
  opacity: 0;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

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

.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.25);
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.brand__sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(251 248 242 / 0.6);
  transition: color 0.45s ease;
}

.site-header.is-stuck .brand__sub {
  color: var(--moss);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav__link:hover {
  opacity: 1;
}

.nav__link:hover::after {
  width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-header__cta {
  display: none;
}

.menu-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  opacity: 0.8;
}

.menu-btn:hover {
  opacity: 1;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgb(11 18 13 / 0.5);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.drawer-overlay.is-open {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(20rem, 86vw);
  padding: 1.5rem 1.75rem;
  background: var(--forest-deep);
  color: var(--cream);
  box-shadow: -20px 0 60px -30px rgb(0 0 0 / 0.8);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}

.drawer.is-open {
  transform: none;
  visibility: visible;
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.drawer__close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgb(251 248 242 / 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.drawer__nav a {
  padding-block: 0.875rem;
  border-bottom: 1px solid rgb(251 248 242 / 0.1);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgb(251 248 242 / 0.9);
  transition: color 0.25s ease;
}

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

.drawer__contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: rgb(251 248 242 / 0.7);
  word-break: break-word;
}

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

.drawer__cta {
  width: 100%;
  margin-top: 1.75rem;
}

/* 6. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--cream);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(115% 85% at 50% 15%, rgb(22 38 28 / 0.35), rgb(11 18 13 / 0.86));
}

.hero__inner {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 9rem;
  text-align: center;
}

.hero__headlines {
  display: grid;
  margin-top: 1.5rem;
}

.hero__headline {
  grid-area: 1 / 1;
  font-size: clamp(2.4rem, 6.4vw, 4.75rem);
  line-height: 1.04;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.hero__headline.is-active {
  opacity: 1;
  transform: none;
}

.hero__sub {
  max-width: 42rem;
  margin: 1.75rem auto 0;
  color: rgb(251 248 242 / 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  max-width: 48rem;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgb(251 248 242 / 0.15);
  color: rgb(251 248 242 / 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: rgb(251 248 242 / 0.55);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero__scroll:hover {
  color: var(--gold);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 2.25rem;
  background: currentColor;
  transform-origin: top;
  animation: scroll-pulse 2.4s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  35% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1) translateY(100%);
    opacity: 0;
  }
}

/* 7. Booking --------------------------------------------------------------- */
.booking {
  position: relative;
  z-index: 20;
  margin-top: -5rem;
}

.booking__card {
  padding: 1.5rem;
  border: 1px solid var(--sand-deep);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 40px 80px -50px rgb(23 32 26 / 0.6);
}

.booking__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.booking__title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.booking__aside {
  font-size: 0.875rem;
  color: var(--moss);
}

.booking__aside a {
  font-weight: 600;
  color: var(--forest);
  text-underline-offset: 4px;
}

.booking__aside a:hover {
  text-decoration: underline;
}

.booking__form {
  display: grid;
  gap: 1rem;
}

.field__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--sand-deep);
  border-radius: 0.6rem;
  background: #fff;
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field__input:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgb(93 122 96 / 0.18);
}

.field__input.is-invalid {
  border-color: #b0603a;
  box-shadow: 0 0 0 3px rgb(176 96 58 / 0.16);
}

.booking__foot {
  display: grid;
  gap: 1rem;
}

.booking__note {
  color: var(--moss);
  font-size: 0.75rem;
  line-height: 1.7;
}

/* 8. About ----------------------------------------------------------------- */
.about {
  padding-block: var(--section-y);
}

.about__grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.5rem;
}

.about__badge {
  position: absolute;
  right: -0.75rem;
  bottom: -2rem;
  display: none;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 24px 44px -28px rgb(23 32 26 / 0.9);
}

.about__badge-price {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.about__badge-label {
  display: block;
  margin-top: 0.5rem;
  color: rgb(251 248 242 / 0.6);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about__body .section-title {
  margin-top: 1.25rem;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}

.about__body > p {
  margin-top: 1.25rem;
  color: rgb(23 32 26 / 0.7);
  font-size: 0.98rem;
  line-height: 1.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-deep);
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--forest);
}

.stats__label {
  display: block;
  margin-top: 0.25rem;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* 9. Stays ----------------------------------------------------------------- */
.stays {
  padding-block: var(--section-y);
  background: var(--sand);
}

.stays__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 4rem;
}

.room {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.room:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -30px rgb(23 32 26 / 0.55);
}

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

.room__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.room:hover .room__media img {
  transform: scale(1.05);
}

.room__flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

.room__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.room__head h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

.room__price {
  flex-shrink: 0;
  text-align: right;
}

.room__price span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
}

.room__price em {
  display: block;
  color: var(--moss);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room__price small {
  display: block;
  color: var(--moss);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room__blurb {
  margin-top: 1rem;
  color: rgb(23 32 26 / 0.65);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Per-sharing tariffs inside a stay card */
.rates {
  margin-top: 1.5rem;
  border-top: 1px solid var(--sand-deep);
}

.rates li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand-deep);
  font-size: 0.85rem;
}

.rates li span {
  color: rgb(23 32 26 / 0.65);
}

.rates li strong {
  color: var(--forest);
  font-weight: 600;
  white-space: nowrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tags li {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--sand-deep);
  border-radius: 999px;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 500;
}

.room__cta {
  width: 100%;
  margin-top: auto;
  margin-top: 1.75rem;
}

.includes {
  margin-top: 3.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--sand-deep);
  border-radius: 1rem;
  background: #fff;
}

.includes__title {
  font-size: 1.15rem;
}

.includes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.includes__list li {
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 500;
}

.includes__note {
  margin-top: 1.25rem;
  color: rgb(23 32 26 / 0.6);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* 10. Day packages --------------------------------------------------------- */
.packages {
  padding-block: var(--section-y);
  background: var(--forest-deep);
  color: var(--cream);
}

.packages__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 4rem;
}

.pack {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 26rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.pack__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.pack:hover .pack__img {
  transform: scale(1.1);
}

.pack__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgb(11 18 13 / 0.94),
    rgb(11 18 13 / 0.6) 45%,
    rgb(11 18 13 / 0.18)
  );
  transition: background 0.7s ease;
}

.pack:hover .pack__scrim {
  background: linear-gradient(
    to top,
    rgb(11 18 13 / 0.97),
    rgb(11 18 13 / 0.68) 45%,
    rgb(11 18 13 / 0.22)
  );
}

.pack__body h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

/* Stays visible even when the blurb is collapsed on hover-capable screens. */
.pack__time {
  margin-top: 0.5rem;
  color: rgb(251 248 242 / 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Always open on touch/small screens; opens on hover from tablet up. */
.pack__blurb {
  margin-top: 0.75rem;
  color: rgb(251 248 242 / 0.7);
  font-size: 0.9rem;
  line-height: 1.75;
}

.pack__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(251 248 242 / 0.15);
}

.pack__price em {
  display: block;
  color: rgb(251 248 242 / 0.5);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pack__price span {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1;
  color: var(--gold);
}

.pack__price small {
  display: block;
  margin-top: 0.375rem;
  color: rgb(251 248 242 / 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.packages__note {
  margin-top: 2.5rem;
  color: rgb(251 248 242 / 0.6);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

.custom-offer {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgb(251 248 242 / 0.12);
  border-radius: 1rem;
  background: rgb(251 248 242 / 0.04);
  text-align: center;
}

.custom-offer h3 {
  font-size: 1.25rem;
}

.custom-offer p {
  max-width: 24rem;
  color: rgb(251 248 242 / 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* 10b. Activities ---------------------------------------------------------- */
.activities {
  padding-block: var(--section-y);
  background: var(--sand);
}

.activities__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 4rem;
}

.activity {
  padding: 1.75rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  background: #fff;
}

.activity h3 {
  font-size: 1.1rem;
}

.activity ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.125rem;
}

.activity li {
  position: relative;
  padding-left: 1.125rem;
  color: rgb(23 32 26 / 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.activity li::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
}

.activity__note {
  margin-top: 1.125rem;
  color: var(--moss);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 11. Experience ----------------------------------------------------------- */
.experience {
  padding-block: var(--section-y);
}

.experience__grid {
  display: grid;
  gap: 3rem;
}

.experience__intro .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

.experience__intro > p {
  margin-top: 1.5rem;
  color: rgb(23 32 26 / 0.65);
  font-size: 0.98rem;
  line-height: 1.85;
}

.experience__intro .btn {
  margin-top: 2rem;
}

.features {
  display: grid;
  gap: 2.5rem 2rem;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
}

.feature__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.feature h3 {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.feature p {
  margin-top: 0.625rem;
  color: rgb(23 32 26 / 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* 12. Reviews -------------------------------------------------------------- */
.reviews {
  padding-block: var(--section-y);
  background: var(--sand);
}

.reviews__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 4rem;
}

.review {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.5s var(--ease);
}

.review:hover {
  box-shadow: 0 30px 60px -42px rgb(23 32 26 / 0.6);
}

.review__quote {
  color: var(--gold);
}

.stars {
  margin-top: 1.25rem;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}

.review blockquote {
  flex: 1;
  margin: 1.25rem 0 0;
  color: rgb(23 32 26 / 0.75);
  font-size: 1.02rem;
  line-height: 1.8;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-deep);
}

.review figcaption img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.review figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.review figcaption small {
  display: block;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 13. Contact -------------------------------------------------------------- */
.contact {
  padding-block: var(--section-y);
}

.contact__card {
  display: grid;
  border: 1px solid var(--sand-deep);
  border-radius: 1.5rem;
  overflow: hidden;
}

.contact__body {
  padding: 2.25rem 1.75rem;
  background: #fff;
}

.contact__lede {
  margin-top: 1.25rem;
  color: rgb(23 32 26 / 0.65);
  font-size: 0.96rem;
  line-height: 1.8;
}

.contact__list {
  margin-top: 2.5rem;
}

.contact__row {
  padding-top: 1.5rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--sand-deep);
}

.contact__row:first-child {
  margin-top: 0;
}

.contact__row dt {
  color: var(--moss);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact__row dd {
  margin: 0.5rem 0 0;
}

.contact__row a {
  font-size: 1.05rem;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.contact__row a:hover {
  color: var(--forest);
}

.contact__row em {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact__row a:hover em,
.contact__row a:focus-visible em {
  opacity: 1;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.contact__map {
  min-height: 22rem;
  background: var(--sand);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(0.25);
}

/* 14. Footer & call bar ---------------------------------------------------- */
.site-footer {
  padding-top: 5rem;
  background: var(--forest-deep);
  color: rgb(251 248 242 / 0.7);
}

.site-footer__top {
  display: grid;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgb(251 248 242 / 0.12);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.site-footer__brand span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

.site-footer__col > p {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

.site-footer__col h3 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__col ul {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
  font-size: 0.92rem;
}

.site-footer__col a {
  transition: color 0.25s ease;
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer address {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.8;
  word-break: break-word;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
  text-align: center;
}

.site-footer__bottom strong {
  color: var(--cream);
  font-weight: 600;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socials__label {
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.socials ul {
  display: flex;
  gap: 0.625rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgb(251 248 242 / 0.2);
  border-radius: 50%;
  color: rgb(251 248 242 / 0.7);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--gold-ink);
}

.socials svg {
  width: 1rem;
  height: 1rem;
}

.callbar {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--sand-deep);
  background: rgb(251 248 242 / 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.callbar .btn {
  flex: 1;
}

/* 15. Popup ---------------------------------------------------------------- */
.promo {
  width: min(46rem, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  /* The `* { margin: 0 }` reset wipes the UA's `margin: auto`, which is what
     centres a modal dialog — put it back. */
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  overflow: hidden auto;
  box-shadow: 0 50px 90px -40px rgb(11 18 13 / 0.75);
  opacity: 0;
  transform: translateY(1.25rem) scale(0.97);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.promo.is-open {
  opacity: 1;
  transform: none;
}

.promo::backdrop {
  background: rgb(11 18 13 / 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.promo.is-open::backdrop {
  opacity: 1;
}

.promo__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--sand-deep);
  border-radius: 50%;
  background: rgb(251 248 242 / 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.promo__close:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.promo__media {
  display: none;
  position: relative;
}

.promo__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__body {
  padding: 2rem 1.5rem;
}

.promo__title {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 4.6vw, 1.9rem);
  line-height: 1.2;
}

.promo__lede {
  margin-top: 1rem;
  color: rgb(23 32 26 / 0.68);
  font-size: 0.94rem;
  line-height: 1.75;
}

.promo__points {
  display: grid;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-deep);
  font-size: 0.88rem;
  color: rgb(23 32 26 / 0.72);
}

.promo__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.promo__points li::before {
  content: '';
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}

.promo__form {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.promo__submit {
  width: 100%;
}

.promo__dismiss {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.25rem;
  border: 0;
  background: none;
  color: var(--moss);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.promo__dismiss:hover {
  color: var(--forest);
}

/* 16. Form feedback & PHP response page ------------------------------------ */

/* Honeypot — off-screen rather than display:none, which more bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field__label span {
  margin-left: 0.35rem;
  color: var(--sand-deep);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.booking__submit {
  display: flex;
  gap: 0.625rem;
}

.booking__submit .btn {
  flex: 1;
}

.form-status {
  margin-top: 0.25rem;
  padding: 0.75rem 1rem 0.75rem 1.15rem;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  background: rgb(41 70 52 / 0.09);
  box-shadow: inset 3px 0 0 var(--forest);
  color: var(--forest);
}

.form-status.is-error {
  background: rgb(176 96 58 / 0.11);
  box-shadow: inset 3px 0 0 #b0603a;
  color: #8e4a2c;
}

.btn[aria-busy='true'] {
  opacity: 0.65;
  pointer-events: none;
}

/* The page form-process.php renders when JavaScript is off */
.page-response {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 2rem 1.25rem;
  background: var(--sand);
}

.response {
  width: min(34rem, 100%);
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  box-shadow: 0 40px 80px -55px rgb(23 32 26 / 0.7);
}

.response__mark {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.response__title {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
}

.response__lede {
  margin-top: 1rem;
  color: rgb(23 32 26 / 0.68);
  line-height: 1.75;
}

.response__errors {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.6rem;
  background: rgb(176 96 58 / 0.1);
  color: #8e4a2c;
  font-size: 0.88rem;
  text-align: left;
}

.response__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* 17. Reveal / motion / print ---------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* No JavaScript? Never hide the content. */
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.no-js .drawer,
.no-js .drawer-overlay {
  display: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .drawer,
  .drawer-overlay,
  .callbar,
  .hero__video,
  .hero__scroll,
  .contact__map,
  .promo {
    display: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    background: #fff;
  }
}

/* =============================================================================
   Breakpoints — small first, then up
   ========================================================================== */

/* ≥ 480px */
@media (min-width: 30em) {
  .booking__card {
    padding: 2rem;
  }

  .custom-offer {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }

  .callbar {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ≥ 640px */
@media (min-width: 40em) {
  .site-header__cta {
    display: inline-flex;
  }

  .about__badge {
    display: block;
  }

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

  .booking__note {
    max-width: 28rem;
  }

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

  .includes {
    padding: 2.5rem;
  }

  /* [open] keeps the UA's display:none for the closed dialog intact */
  .promo[open] {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .promo__media {
    display: block;
  }

  .promo__body {
    padding: 2.5rem;
  }

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

  .promo__submit,
  .promo__form .form-status {
    grid-column: 1 / -1;
  }
}

/* ≥ 768px */
@media (min-width: 48em) {
  .site-header__phone {
    display: inline-flex;
  }

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

  .field--wide,
  .booking__foot,
  .booking__form .form-status {
    grid-column: 1 / -1;
  }

  .booking__submit {
    flex: 0 0 auto;
  }

  .booking__submit .btn {
    flex: 0 0 auto;
  }

  .stays__grid,
  .packages__grid,
  .reviews__grid,
  .activities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  /* Packages: blurb slides open on hover once there is a pointer */
  .pack__blurb {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.7s var(--ease),
      margin-top 0.7s var(--ease),
      opacity 0.7s var(--ease);
  }

  .pack:hover .pack__blurb,
  .pack:focus-within .pack__blurb {
    max-height: 10rem;
    margin-top: 0.75rem;
    opacity: 1;
  }
}

/* ≥ 1024px */
@media (min-width: 64em) {
  .nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }

  .about__badge {
    right: -2rem;
  }

  .experience__grid {
    grid-template-columns: minmax(0, 22rem) 1fr;
    gap: 5rem;
  }

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

  .contact__body {
    padding: 3rem;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 100%;
  }

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

  .booking {
    margin-top: -6rem;
  }
}
