/* ============================================
   FEEL FARO GUESTHOUSE — Ultra Premium CSS
   Design: Mediterranean Luxury Boutique
   ============================================ */

/* ── Google Fonts ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── CSS Variables ─────────────────────────── */
:root {
  --gold:        #B8985A;
  --gold-light:  #D4AF72;
  --navy:        #1E2D4A;
  --ocean:       #2E5068;
  --dust-blue:   #6B8FA8;
  --sand:        #F0EDE6;
  --linen:       #FAF9F6;
  --limestone:   #EAE6DC;
  --ochre:       #C9853A;
  --olive:       #7A8C6A;
  --charcoal:    #2A2A28;
  --warm-grey:   #888580;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Language Toggle ───────────────────────── */
[data-lang="en"] { display: block; }
[data-lang="pt"] { display: none; }
body.pt [data-lang="en"] { display: none; }
body.pt [data-lang="pt"] { display: block; }

/* Inline spans */
span[data-lang="en"] { display: inline; }
span[data-lang="pt"] { display: none; }
body.pt span[data-lang="en"] { display: none; }
body.pt span[data-lang="pt"] { display: inline; }

/* ── Typography ────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.t-hero {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.t-section {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.t-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--warm-grey);
}

.t-body-dark {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.t-caption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ── Gold Divider ──────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  border: none;
  display: block;
  margin: 0;
}
.divider--center {
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 152, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

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

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition: var(--transition);
}

.nav.nav--transparent {
  background: transparent;
}

.nav.nav--scrolled {
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  height: 64px;
}

.nav__logo {
  height: 36px;
  width: auto;
  transition: var(--transition);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.nav.nav--scrolled .nav__logo {
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--white); }

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__lang {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}
.nav__lang:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}
.nav.nav--scrolled .nav__lang {
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.2);
}
.nav.nav--scrolled .nav__lang:hover {
  background: var(--charcoal);
  color: var(--white);
}

.nav__book {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 22px;
  background: var(--gold);
  color: var(--white);
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}
.nav__book:hover {
  background: var(--gold-light);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition-fast);
}
.nav.nav--scrolled .nav__hamburger span {
  background: var(--charcoal);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--linen);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--limestone);
  transition: color var(--transition-fast);
}
.mobile-menu__link:hover { color: var(--gold); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.genspark.ai/api/files/s/k5ynqQ2J');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 45, 74, 0.45) 0%,
    rgba(20, 20, 20, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 12px;
  max-width: 700px;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ── Sections ──────────────────────────────── */
.section {
  padding: 120px 80px;
}

.section--sm {
  padding: 80px;
}

.section--tight {
  padding: 60px 80px;
}

.section--no-pad {
  padding: 0;
}

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 72px;
}
@media (max-width: 480px) {
  .section__header { margin-bottom: 40px; }
}

/* ── THE FEELING ───────────────────────────── */
.feeling {
  background: var(--navy);
  color: var(--white);
  padding: 140px 80px;
}

.feeling__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.feeling__poem {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}

.feeling__poem em {
  font-style: italic;
  color: var(--gold-light);
}

.feeling__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.feeling__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.feeling__image-wrap:hover img {
  transform: scale(1.03);
}

.feeling__image-caption {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  padding: 60px 28px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── ROOMS PREVIEW ─────────────────────────── */
.rooms-preview {
  background: var(--linen);
  padding: 120px 80px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}

.room-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.room-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-card__img {
  transform: scale(1.05);
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 50%);
  transition: var(--transition);
}
.room-card:hover .room-card__overlay {
  background: linear-gradient(to top, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.2) 70%);
}

.room-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 28px;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.room-card:hover .room-card__info {
  transform: translateY(0);
}

.room-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.room-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.room-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin var(--transition);
}
.room-card:hover .room-card__desc {
  max-height: 80px;
}

/* ── WHY FEEL FARO ─────────────────────────── */
.why {
  background: var(--white);
  padding: 120px 80px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 72px;
}

.why__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.why__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
}

.why__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--warm-grey);
}

/* ── TESTIMONIALS ──────────────────────────── */
.testimonials {
  background: var(--sand);
  padding: 120px 80px;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(50% - 16px);
  background: var(--white);
  padding: 52px 48px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--gold-light);
  opacity: 0.4;
  position: absolute;
  top: 32px;
  left: 40px;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.testimonial-card__name {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.testimonials__nav {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--limestone);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}
.testimonials__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── FARO REIMAGINED ───────────────────────── */
.faro-reimagined {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faro-reimagined__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.genspark.ai/api/files/s/traKCAbj');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.3s;
}

.faro-reimagined__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 45, 74, 0.7);
}

.faro-reimagined__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 80px;
  max-width: 800px;
}

.faro-reimagined__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.faro-reimagined__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

/* ── BOOK CTA ──────────────────────────────── */
.book-cta {
  background: var(--linen);
  padding: 120px 80px;
  text-align: center;
}

.book-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 16px 0 12px;
}

.book-cta__sub {
  font-size: 0.9rem;
  color: var(--warm-grey);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.book-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #25D366;
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}
.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer__logo {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  display: block;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social-link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer__social-link:hover {
  color: var(--gold-light);
}

/* ── STICKY BOOK ───────────────────────────── */
.sticky-book {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.sticky-book.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-book__wa {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}
.sticky-book__wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.sticky-book__wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ── ROOMS PAGE ────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.2) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: white;
}

/* ── ROOM DETAIL ───────────────────────────── */
.room-detail {
  padding: 100px 80px;
  background: var(--linen);
}

.room-detail__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.room-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(30, 45, 74, 0.07), 0 1px 4px rgba(30, 45, 74, 0.04);
  padding: 48px;
  transition: box-shadow 0.35s ease;
}
.room-item:hover {
  box-shadow: 0 8px 40px rgba(30, 45, 74, 0.13), 0 2px 8px rgba(30, 45, 74, 0.06);
}
.room-item:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.room-item:nth-child(even) .room-item__gallery {
  order: -1;
}

.room-item__gallery {
  position: relative;
}

.room-item__main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.room-item__accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 3/4;
  object-fit: cover;
  bottom: -40px;
  right: -40px;
  border: 6px solid var(--linen);
}
.room-item:nth-child(even) .room-item__accent {
  right: auto;
  left: -40px;
}

.room-item__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--limestone);
  line-height: 1;
  margin-bottom: 8px;
}

.room-item__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  margin: 12px 0 20px;
}

.room-item__story {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--warm-grey);
  margin-bottom: 36px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.amenity-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--limestone);
}

/* ── STAY OPTIONS PAGE ─────────────────────── */
.stay-options {
  padding: 100px 80px;
}

.stay-options__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 72px;
}

.stay-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.stay-card--full {
  grid-column: span 2;
  min-height: 400px;
}

.stay-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  opacity: 0.7;
}
.stay-card:hover .stay-card__bg {
  transform: scale(1.04);
  opacity: 0.85;
}

.stay-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.85), transparent 60%);
}

.stay-card__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  color: white;
}

.stay-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.stay-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.stay-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  margin-bottom: 24px;
}

/* ── FARO GUIDE PAGE ───────────────────────── */
.guide-section {
  padding: 100px 80px;
  background: var(--white);
}

.guide-grid {
  max-width: 1280px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.guide-card {
  background: var(--linen);
  padding: 52px 40px;
  transition: background var(--transition-fast);
}
.guide-card:hover { background: var(--sand); }

.guide-card__icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.guide-card__category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.guide-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
}

.guide-card__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--limestone);
}
.guide-item:last-child { border-bottom: none; }

.guide-item__name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
}
.guide-item__desc {
  font-size: 0.78rem;
  color: var(--warm-grey);
  line-height: 1.5;
}

/* ── ABOUT PAGE ────────────────────────────── */
.about-section {
  padding: 100px 80px;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image__main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image__float {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -48px;
  right: -48px;
  border: 8px solid var(--white);
}

.about-content {
  padding: 40px 0;
}
.about-content .t-section {
  color: var(--navy);
  margin: 16px 0 28px;
}
.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

/* ── BOOK DIRECT PAGE ──────────────────────── */
.book-direct {
  padding: 100px 80px;
  background: var(--linen);
}

.book-direct__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.book-benefits {
  padding: 60px 0 0;
}

.book-benefits__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  margin: 12px 0 32px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.benefit-item__text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.benefit-item__text span {
  font-size: 0.8rem;
  color: var(--warm-grey);
}

/* Form */
.book-form {
  background: var(--white);
  padding: 52px 48px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--linen);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ── FAQ ───────────────────────────────────── */
.faq-section {
  padding: 100px 80px;
  background: var(--white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--limestone);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-question:hover .faq-q-text {
  color: var(--gold);
}

.faq-q-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: var(--transition-fast);
}
.faq-icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 3px;
}
.faq-icon::after {
  width: 1px;
  height: 14px;
  left: 9.5px;
  top: 3px;
}
.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm-grey);
}

/* ── REVEAL ANIMATIONS ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── COMMON SPACES SECTION ─────────────────── */
.spaces-section {
  padding: 120px 80px;
  background: var(--sand);
}

.spaces-grid {
  max-width: 1280px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.space-feature {
  position: relative;
}
.space-feature__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.space-feature__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.space-info {
  padding: 20px 0;
}
.space-info .t-section {
  color: var(--navy);
  margin: 12px 0 24px;
}
.space-info p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm-grey);
  margin-bottom: 16px;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1200px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid .room-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/7;
  }
}

@media (max-width: 1024px) {
  .section, .feeling, .rooms-preview, .why, .testimonials, .book-cta, .footer { padding: 80px 48px; }
  .hero__content { padding: 0 48px 80px; }
  .page-hero__content { padding: 0 48px 60px; }
  .room-detail, .stay-options, .guide-section, .about-section, .book-direct, .faq-section, .spaces-section { padding: 80px 48px; }

  .feeling__inner { grid-template-columns: 1fr; gap: 60px; }
  .feeling__image-wrap { aspect-ratio: 16/9; }

  .room-item,
  .room-item:nth-child(even) { grid-template-columns: 1fr; gap: 40px; }
  .room-item:nth-child(even) .room-item__gallery { order: 0; }
  .room-item__accent { display: none; }

  .stay-options__grid { grid-template-columns: 1fr; }
  .stay-card--full { grid-column: span 1; }

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

  .about-inner { grid-template-columns: 1fr; }
  .about-image__float { display: none; }

  .book-direct__inner { grid-template-columns: 1fr; }

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

/* ── TABLET ─────────────────────────────────── */
@media (max-width: 768px) {
  .section, .feeling, .rooms-preview, .why, .testimonials, .book-cta { padding: 60px 24px; }
  .footer { padding: 60px 24px; }
  .hero__content { padding: 0 24px 60px; }
  .page-hero__content { padding: 0 24px 48px; }
  .room-detail, .stay-options, .guide-section, .about-section, .book-direct, .faq-section, .spaces-section { padding: 60px 24px; }

  .nav { padding: 0 20px; }
  .nav__links, .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  /* Keep Book button on mobile but compact */
  .nav__book { 
    display: inline-flex;
    padding: 7px 14px;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Buttons full-width on mobile */
  .hero__cta .btn { width: 100%; justify-content: center; max-width: 280px; }

  .why__grid { grid-template-columns: 1fr; gap: 36px; }

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

  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid .room-card:first-child {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }

  .testimonial-card { min-width: 90%; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__logo { height: 72px; }

  .book-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .sticky-book { bottom: 20px; right: 16px; }

  .faro-reimagined__bg { background-attachment: scroll; }

  .feeling__poem { font-size: 1.6rem; }

  /* Room items on tablet */
  .room-item { padding: 28px 24px; }

  /* Page hero height */
  .page-hero { height: 45vh !important; min-height: 300px; }
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Base spacing */
  .section, .feeling, .rooms-preview, .why, .testimonials, .book-cta { padding: 48px 20px; }
  .footer { padding: 48px 20px; }
  .hero__content { padding: 0 20px 48px; }
  .page-hero__content { padding: 0 20px 36px; }
  .room-detail, .stay-options, .guide-section, .about-section, .book-direct, .faq-section, .spaces-section { padding: 48px 20px; }

  /* Navigation */
  .nav { padding: 0 16px; height: 60px; }
  .nav.nav--scrolled { height: 56px; }
  .nav__logo { height: 28px; }
  .nav__book { 
    padding: 6px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem) !important; }
  .hero__sub { font-size: 1rem; margin-bottom: 32px; }
  .hero__cta .btn { padding: 13px 28px; font-size: 0.68rem; max-width: 100%; width: 100%; }
  .hero__scroll { display: none; }

  /* Page hero */
  .page-hero { height: 40vh !important; min-height: 260px; }
  .page-hero__content h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .page-hero__content p { font-size: 0.88rem; }

  /* Typography */
  .t-display { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .t-section { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* The Feeling section */
  .feeling { padding: 48px 20px; }
  .feeling__inner { gap: 36px; }
  .feeling__poem { font-size: 1.35rem; line-height: 1.6; }

  /* Room cards grid */
  .rooms-grid { grid-template-columns: 1fr; gap: 2px; }
  .rooms-grid .room-card:first-child { aspect-ratio: 4/3; }
  .room-card { aspect-ratio: 3/4; }

  /* Room items */
  .room-item { padding: 20px 16px; gap: 24px; border-radius: 0; }
  .room-item__number { font-size: 2.5rem; }
  .room-item__name { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Amenity tags */
  .amenity-tag { font-size: 0.62rem; padding: 5px 10px; }

  /* Why grid */
  .why__grid { gap: 28px; }

  /* Testimonials */
  .testimonial-card { min-width: calc(100% - 8px); padding: 36px 28px; }

  /* Book CTA buttons */
  .book-cta__buttons { flex-direction: column; align-items: center; }
  .book-cta__buttons .btn,
  .book-cta__buttons .whatsapp-btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer__logo { height: 60px; }
  .footer__inner { gap: 32px; }

  /* Sticky book */
  .sticky-book { bottom: 16px; right: 12px; gap: 8px; }
  .sticky-book__wa { width: 48px; height: 48px; }

  /* FAQ */
  .faq-q-text { font-size: 0.95rem; }
  .faq-answer.is-open { max-height: 500px; }

  /* Book form */
  .book-form { padding: 24px 16px; }
  .book-benefits { padding: 20px 0 0; }

  /* Spaces / Stay pages sections with inline padding */
  section[style*="padding: 100px 80px"],
  section[style*="padding: 80px"] { padding: 48px 20px !important; }

  /* Carousel images */
  .room-carousel__img { height: 240px !important; }

  /* Section intro with inline padding */
  section[style*="padding: 80px; text-align: center"] { padding: 40px 20px !important; }

  /* About section */
  .about-section { padding: 48px 20px; }
  .about-inner { gap: 40px; }

  /* Faro reimagined */
  .faro-reimagined__content { padding: 48px 20px; }
  .faro-reimagined__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Inline-styled grids in rooms/spaces that use hardcoded padding */
  [style*="padding: 100px 80px"],
  [style*="padding:100px 80px"] { padding: 48px 20px !important; }
}

/* ── SWIPE TOUCH TARGET ──────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets for carousel buttons */
  .room-carousel__btn { width: 48px; height: 48px; }
  /* Make dot targets bigger */
  .room-carousel__dot { width: 10px; height: 10px; padding: 4px; box-sizing: content-box; }
  /* Remove hover effects that don't work on touch */
  .room-card:hover .room-card__desc { max-height: 0; }
  .room-card:hover .room-card__img { transform: none; }
  /* Carousels should allow vertical scroll */
  .room-carousel { touch-action: pan-y; }
  /* Always show sticky WA on mobile */
  .sticky-book {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
