@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Figtree:wght@300;400;500;600&display=swap');

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
  --color-bg: #F4EDE6;
  --color-bg-warm: #EDE4DA;
  --color-bg-deep: #E2D6C8;
  --color-text: #2A2118;
  --color-text-soft: #6B5D4F;
  --color-text-muted: #9A8B7A;
  --color-terracotta: #B8623B;
  --color-terracotta-dark: #9A4F2E;
  --color-terracotta-light: #D4855E;
  --color-sage: #7B8E6F;
  --color-sage-light: #A3B396;
  --color-white: #FDFBF8;
  --color-dark: #1A150F;
  --color-border: rgba(42, 33, 24, 0.1);

  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Figtree', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --max-width: 1200px;
  --max-width-narrow: 800px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  max-width: 65ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease;
}

.nav--scrolled {
  background: rgba(244, 237, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

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

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

.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.8);
  transition: color 0.3s ease, text-shadow 0.4s ease;
  position: relative;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

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

.nav--scrolled .nav__link {
  color: var(--color-text-soft);
  text-shadow: none;
}

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

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-terracotta);
  padding: 0.7rem 1.5rem;
  border-radius: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

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

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(26, 21, 15, 0.55) 0%,
      rgba(26, 21, 15, 0.25) 15%,
      rgba(26, 21, 15, 0.0) 35%
    ),
    linear-gradient(
      to bottom,
      rgba(26, 21, 15, 0.1) 0%,
      rgba(26, 21, 15, 0.05) 25%,
      rgba(26, 21, 15, 0.4) 50%,
      rgba(26, 21, 15, 0.9) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem var(--space-xl);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.85);
  margin-bottom: var(--space-sm);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 700px;
  font-weight: 400;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(253, 251, 248, 0.9);
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(253, 251, 248, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 251, 248, 0.8);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 98, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(253, 251, 248, 0.4);
}

.btn--outline:hover {
  background: rgba(253, 251, 248, 0.1);
  border-color: rgba(253, 251, 248, 0.7);
  box-shadow: 0 4px 16px rgba(253, 251, 248, 0.08);
}

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

.btn--dark-outline:hover {
  border-color: var(--color-text);
  box-shadow: 0 4px 16px rgba(42, 33, 24, 0.06);
}

.btn--small {
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem;
}

.btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--space-xl) 2rem;
}

.section--alt {
  background: var(--color-bg-warm);
}

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

.section--dark .label {
  color: rgba(253, 251, 248, 0.4);
}

.section--dark p {
  color: rgba(253, 251, 248, 0.7);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: var(--space-lg);
}

.section__header h2 {
  margin-top: 0.8rem;
}

.section__header p {
  margin-top: var(--space-sm);
  color: var(--color-text-soft);
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.intro__text h2 {
  margin-top: 0.8rem;
  margin-bottom: var(--space-md);
}

.intro__text p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
}

.intro__image {
  position: relative;
}

.intro__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro__image-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-terracotta-light);
  opacity: 0.4;
  z-index: -1;
}

/* ========================================
   FEATURES STRIP
   ======================================== */

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.feature-item {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-sm);
  opacity: 0.7;
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-terracotta);
  fill: none;
  stroke-width: 1.5;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 auto;
}

/* ========================================
   ROOMS / SPACES
   ======================================== */

.room-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 600px;
}

.room-showcase--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.room-showcase__image {
  position: relative;
  overflow: hidden;
}

.room-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.room-showcase:hover .room-showcase__image img {
  transform: scale(1.03);
}

.room-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg-warm);
}

.room-showcase--reverse .room-showcase__content {
  background: var(--color-bg);
}

.room-showcase__content h3 {
  margin-top: 0.8rem;
  margin-bottom: var(--space-sm);
}

.room-showcase__content p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.room-amenity svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-terracotta);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ========================================
   GALLERY GRID
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-grid__item {
  overflow: hidden;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

.gallery-grid__item--tall {
  grid-row: span 2;
}

.gallery-grid__item--wide {
  grid-column: span 2;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.review-card {
  padding: var(--space-lg);
  background: var(--color-white);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-terracotta-light);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.review-card__author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.review-card__source {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

/* ========================================
   LOCATION
   ======================================== */

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.location__distances {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.distance-item__name {
  font-size: 0.9rem;
  color: var(--color-text);
}

.distance-item__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-terracotta);
  white-space: nowrap;
}

.location__map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-deep);
  overflow: hidden;
}

.location__map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8) contrast(1.1);
}

/* ========================================
   NOMAD SECTION
   ======================================== */

.nomad-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.nomad-banner__image {
  overflow: hidden;
}

.nomad-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nomad-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--color-dark);
  color: var(--color-white);
}

.nomad-banner__content h3 {
  margin-top: 0.8rem;
  margin-bottom: var(--space-sm);
}

.nomad-banner__content p {
  color: rgba(253, 251, 248, 0.65);
  margin-bottom: var(--space-md);
}

.nomad-perks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  margin-bottom: var(--space-md);
}

.nomad-perk {
  font-size: 0.82rem;
  color: rgba(253, 251, 248, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nomad-perk::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact__info-item {
  margin-bottom: var(--space-md);
}

.contact__info-item h4 {
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.contact__info-item p {
  color: rgba(253, 251, 248, 0.55);
  font-size: 0.9rem;
}

.contact__info-item a {
  color: rgba(253, 251, 248, 0.75);
  border-bottom: 1px solid rgba(253, 251, 248, 0.2);
  transition: border-color 0.3s ease;
}

.contact__info-item a:hover {
  border-color: rgba(253, 251, 248, 0.6);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: var(--space-md) 2rem;
  background: var(--color-dark);
  border-top: 1px solid rgba(253, 251, 248, 0.06);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(253, 251, 248, 0.4);
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.3);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: rgba(253, 251, 248, 0.6);
}

.footer__credit {
  font-size: 0.7rem;
  color: rgba(253, 251, 248, 0.2);
  margin-top: var(--space-sm);
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer__credit a {
  color: rgba(253, 251, 248, 0.35);
  border-bottom: 1px solid rgba(253, 251, 248, 0.1);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  text-align: center;
  padding: var(--space-xl) 2rem;
  background: var(--color-terracotta);
  color: var(--color-white);
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  margin: 0 auto var(--space-md);
  color: rgba(253, 251, 248, 0.8);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.cta-banner .btn--outline {
  border-color: rgba(253, 251, 248, 0.5);
}

.cta-banner .btn--outline:hover {
  background: rgba(253, 251, 248, 0.15);
  border-color: var(--color-white);
}

/* ========================================
   PAGE HEADER (subpages)
   ======================================== */

.page-header {
  padding: 10rem 2rem var(--space-lg);
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 98, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.page-header h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-header p {
  margin-top: var(--space-sm);
  color: rgba(253, 251, 248, 0.6);
  max-width: 550px;
}

/* ========================================
   SPACES PAGE - ROOM DETAIL
   ======================================== */

.room-detail {
  padding: var(--space-xl) 0;
}

.room-detail__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: var(--space-lg);
}

.room-detail__header h2 {
  margin-top: 0.6rem;
}

.room-detail__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.room-detail__gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-detail__info {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
}

.room-detail__description p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
}

.room-detail__specs {
  background: var(--color-bg-warm);
  padding: var(--space-md);
}

.room-detail__specs h4 {
  margin-bottom: var(--space-sm);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.spec-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-terracotta);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
}

.contact-method {
  padding: var(--space-lg);
  background: var(--color-bg-warm);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
}

.contact-method svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-terracotta);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto var(--space-sm);
}

.contact-method h4 {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.contact-method p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 auto;
}

.contact-method a.contact-method__link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  border-bottom: 1px solid var(--color-terracotta);
  padding-bottom: 2px;
}

.contact-form-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.contact-form-container h3 {
  margin-bottom: 0.5rem;
}

.contact-form-container > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.contact-form-container iframe {
  min-height: 500px;
}

/* ========================================
   GOOGLE REVIEWS LINK
   ======================================== */

.reviews-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2) {
    border-right: none;
  }

  .feature-item:nth-child(1),
  .feature-item:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }

  .room-showcase,
  .room-showcase--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-showcase__image {
    height: 350px;
  }

  .room-showcase--reverse .room-showcase__image {
    order: -1;
  }

  .room-showcase__content {
    padding: var(--space-lg) var(--space-md);
  }

  .room-detail__gallery {
    grid-template-columns: 1fr;
  }

  .room-detail__info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-lg);
    gap: var(--space-md);
    transition: right 0.4s ease;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links.open .nav__link {
    color: rgba(253, 251, 248, 0.7);
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding: 0 1.5rem var(--space-lg);
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: var(--space-lg) 1.5rem;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .intro__image img {
    height: 350px;
  }

  .intro__image-accent {
    display: none;
  }

  .features-strip {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

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

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

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

  .gallery-grid__item--tall {
    grid-row: auto;
  }

  .gallery-grid__item--wide {
    grid-column: span 2;
  }

  .nomad-banner {
    grid-template-columns: 1fr;
  }

  .nomad-banner__image {
    height: 250px;
  }

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

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ========================================
   PAGE LOAD & REVEAL ANIMATIONS
   ======================================== */

body {
  opacity: 0;
  animation: pageLoad 0.5s ease forwards;
}

@keyframes pageLoad {
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Hero entrance */
.hero__label {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero__title {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero__tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.hero__scroll {
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ken Burns hero zoom */
.hero__image img {
  animation: kenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}

/* ========================================
   GALLERY HOVER OVERLAYS
   ======================================== */

.gallery-grid__item::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 15, 0.55);
  color: var(--color-white);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

/* ========================================
   IMAGE SKELETON LOADING
   ======================================== */

.room-showcase__image,
.intro__image,
.nomad-banner__image {
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}

.room-showcase__image::before,
.intro__image::before,
.nomad-banner__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: shimmer 1.8s infinite;
  z-index: 0;
}

.room-showcase__image img,
.intro__image img,
.nomad-banner__image img {
  position: relative;
  z-index: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}


/* ========================================
   CINEMATIC EFFECTS
   ======================================== */

/* Text reveal - clip path wipe from bottom */
.text-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* Image reveal - curtain from left */
.image-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.is-visible {
  clip-path: inset(0 0% 0 0);
}

/* Parallax images need scale to avoid gaps */
.parallax-img {
  will-change: transform;
  transition: none;
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-group > * { opacity: 1; transform: none; }
  .text-reveal { clip-path: none; }
  .image-reveal { clip-path: none; }
  .hero__image img { animation: none; }
  body { opacity: 1; }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero__tagline {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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

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

  .gallery-grid__item--wide {
    grid-column: auto;
  }

  .cta-banner {
    padding: var(--space-lg) 1.5rem;
  }
}
