/* ========================================
   OLYMPOS LODGE — Home Page Styles
   Hero, intro, conviction, location teaser,
   story, rooms grid, nature, experience,
   parallax, voices, gallery teaser,
   sticky heading.
   Loaded on index.html only.
   ======================================== */


/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

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

.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md) var(--space-xl);
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateY(-100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ========================================
   INTRO
   ======================================== */
.intro {
  padding: 3.84rem 5.4rem;
  background-color: var(--color-warm-white); background-image: var(--paper-texture);
}

.intro-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.intro-col {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
  text-align: left;
}

.intro-col p {
  margin: 0 0 0.8em;
}

.intro-col p:last-child {
  margin-bottom: 0;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.79rem 0;
}

.gold-divider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-fade-edge) 3%,
    var(--gold-fade-mid) 6%,
    var(--color-warm-gold) 12%,
    var(--color-warm-gold) 88%,
    var(--gold-fade-mid) 94%,
    var(--gold-fade-edge) 97%,
    transparent 100%
  );
}

/* ========================================
   GLANCE — ink-bleed reveal stats
   ======================================== */
.glance {
  padding: 4.5rem 2rem;
  background-color: var(--color-warm-white);
  background-image: var(--paper-texture);
}

.glance__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.glance__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.glance__number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
}

.glance__label {
  font-family: var(--font-sc);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
}

.glance__rule {
  width: 1px;
  height: 3.5rem;
  background: var(--color-warm-gold);
  opacity: 0.5;
}

/* Ink-bleed clip-path reveal */
.ink-bleed {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stagger: second stat delays, third delays more */
.glance__stat:nth-child(3) .ink-bleed { transition-delay: 0.25s; }
.glance__stat:nth-child(5) .ink-bleed { transition-delay: 0.5s; }

/* When the parent .reveal gains .visible, reveal the ink */
.glance__stat.visible .ink-bleed {
  clip-path: inset(0 0% 0 0);
}

@media (max-width: 768px) {
  .glance { padding: 3rem 1.5rem; }
  .glance__inner { gap: 2rem; }
  .glance__number { font-size: clamp(2rem, 8vw, 2.8rem); }
  .glance__rule { height: 2.5rem; }
}

@media (max-width: 480px) {
  .glance__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .glance__rule {
    width: 3rem;
    height: 1px;
  }
}

/* ========================================
   CONVICTION
   ======================================== */
.conviction {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  padding: 6rem 8rem 8rem 4rem;
}
.conviction__text {
  flex: 3 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.conviction__sentence {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.01em;
  max-width: 680px;
  text-align: right;
}
.conviction__sig {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 680px;
  width: 100%;
  margin-top: 1.8rem;
}
.conviction__rule {
  width: 3rem;
  height: 1px;
  background: var(--color-warm-gold);
  margin-bottom: 0.9rem;
}
.conviction__byline {
  font-family: var(--font-sc);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--color-warm-gold);
  opacity: 1;
}
.conviction__image {
  flex: 0 0 auto;
  padding: 1.5rem;
  background-color: var(--color-cream); background-image: var(--paper-texture);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.conviction__image img {
  display: block;
  width: 680px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conviction {
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 2rem 5rem;
  }
  .conviction__text {
    justify-content: center;
  }
  .conviction__sentence {
    text-align: center;
    max-width: 100%;
  }
  .conviction__image img {
    width: 200px;
  }
}


/* ========================================
   ROOMS
   ======================================== */
.rooms {
  padding: var(--space-2xl) 0 var(--space-xl);
  background-color: var(--color-cream); background-image: var(--paper-texture);
}

/* Editorial rows */
.rooms-list {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.room-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 0;
}

.room-separator::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-fade-edge) 3%,
    var(--gold-fade-mid) 6%,
    var(--color-warm-gold) 12%,
    var(--color-warm-gold) 88%,
    var(--gold-fade-mid) 94%,
    var(--gold-fade-edge) 97%,
    transparent 100%
  );
}

.room-row {
  display: grid;
  grid-template-columns: 53fr 47fr;
  height: 540px;
  text-decoration: none;
  color: inherit;
}

.room-row--reverse {
  grid-template-columns: 47fr 53fr;
}

.room-row--reverse .room-row__image {
  order: 2;
}

.room-row--reverse .room-row__content {
  order: 1;
}

.room-row__image {
  position: relative;
  overflow: hidden;
  display: block;
}

.room-row__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.room-row__image:hover img {
  transform: scale(1.04);
}

.room-row__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-md) 2rem var(--space-lg) var(--space-xl);
  background-color: var(--color-cream); background-image: var(--paper-texture);
  overflow: hidden;
}

.room-row--reverse .room-row__content {
  padding: var(--space-md) var(--space-xl) var(--space-lg) 2rem;
}

.room-row__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.room-row__content a:not(.room-row__link) {
  text-decoration: none;
  color: inherit;
}

.room-row__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.room-row__content a:hover h3 {
  color: var(--color-warm-gold);
}

.room-row__content p {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 46ch;
  margin-top: auto;
  margin-bottom: var(--space-md);
  cursor: text;
  user-select: text;
}

.room-row__link {
  font-family: var(--font-cinzel);
  font-size: 0.863rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  text-decoration: none;
  transition: letter-spacing var(--transition);
}

.room-row__link:hover {
  letter-spacing: 0.22em;
}

/* --- Landscape feature row (Badrutt's Palace aesthetic) --- */
.room-row--landscape {
  grid-template-columns: 1065px 1fr;
  height: 605px;
  /* Match the Super Deluxe feature card — reclaim 50% of the 1440px cap on both sides */
  margin-left: min(0px, calc((1440px - 100vw) * 0.25 + 7px));
  margin-right: min(0px, calc((1440px - 100vw) * 0.25 - 3px));
}

/* Flanking dividers: full-viewport muted line, extra breathing room */
.room-row--landscape + .room-separator,
.room-separator:has(+ .room-row--landscape) {
  padding: 3.36rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.room-row--landscape + .room-separator::before,
.room-separator:has(+ .room-row--landscape)::before {
  background: #b4a894;
}

.room-row--landscape .room-row__image {
  height: 600px;
  align-self: start;
}

.room-row--landscape .room-row__content {
  padding: 10px 0 5px 65px;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
}

.room-row--landscape.room-row--reverse {
  grid-template-columns: 1fr 1065px;
  margin-left: min(0px, calc((1440px - 100vw) * 0.25 - 3px));
  margin-right: min(0px, calc((1440px - 100vw) * 0.25 + 7px));
}

.room-row--landscape.room-row--reverse .room-row__content {
  padding: 10px 65px 5px 0;
}

.room-row--landscape .room-row__content > a:first-child {
  align-self: flex-start;
}

.room-row--landscape .room-row__content h3 {
  font-family: var(--font-sc);
  font-weight: 500;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.009em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  color: #8a7040;
}

.room-row--landscape .room-row__specs {
  align-self: flex-start;
  justify-content: flex-start;
  margin-left: -6px;
  margin-top: 0.63rem;
  margin-bottom: 0.63rem;
  font-size: 13px;
  font-family: var(--font-cinzel);
  font-weight: 500;
  transform: translateX(4px);
}

.room-row--landscape .room-row__spec-icon {
  width: 24px;
  height: 24px;
  transform: translateY(-1px);
}

.room-row--landscape .room-row__spec-icon--size {
  width: 28px;
  height: 28px;
  transform: translate(2px, -1px);
}

.room-row--landscape .room-row__spec-sep {
  font-size: 1.6rem;
}

.room-row--landscape .room-row__content p {
  max-width: none;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
  font-size: 19px;
  line-height: 1.5;
  text-wrap: pretty;
}

.room-row--landscape .room-row__link {
  margin-top: 0;
  font-size: 13.75px;
}

/* --- Rooms carousel (homepage only) --- */
.rooms-carousel {
  position: relative;
}

.rooms-list--carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rooms-list--carousel::-webkit-scrollbar {
  display: none;
}

.rooms-list--carousel > .room-row {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  margin-left: 0;
  margin-right: 0;
}

.rooms-list--carousel > .room-separator {
  display: none;
}

.rooms-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.9);
  background-image: var(--paper-texture);
  border: 1px solid rgba(142, 116, 65, 0.25);
  color: var(--color-warm-gold);
  font-family: var(--font-cinzel);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.rooms-carousel__btn:hover {
  background: var(--color-cream);
  border-color: var(--color-warm-gold);
}

.rooms-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.rooms-carousel__btn--prev {
  left: 1.5rem;
}

.rooms-carousel__btn--next {
  right: 1.5rem;
}

.rooms-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.rooms-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(142, 116, 65, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.rooms-carousel__dot--active {
  background: var(--color-warm-gold);
  transform: scale(1.35);
}

/* --- Feature row (Çıralı Sahili aesthetic) --- */
.room-row--feature {
  height: 787px; /* 715 × 1.10 → image gains another 10% height */
  /* Reclaim 50% of the .rooms-list 1440px cap on both sides so the card bleeds partially toward the viewport edges */
  margin-left: min(0px, calc((1440px - 100vw) * 0.25));
  margin-right: min(0px, calc((1440px - 100vw) * 0.25));
}

/* Equal 50/50 split — symmetric editorial grid */
.room-row--reverse.room-row--feature {
  grid-template-columns: 1fr 1fr;
}

.room-row--reverse.room-row--feature .room-row__content,
.room-row--feature .room-row__content {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.75rem !important;
  padding-bottom: 1rem !important;
  padding-left: 1.6rem !important;   /* reverse: outer-wall side, 2rem − 20% */
  padding-right: 4.8rem !important;  /* reverse: inner-gap side,   6rem − 20% */
  gap: 0;
}

/* Tighten the gradient dividers flanking the feature card to match, and extend their width to match the card's bleed */
.room-row--feature + .room-separator,
.room-separator:has(+ .room-row--feature) {
  padding: 2.24rem 0; /* 2.8rem − 20% */
  margin-left: min(0px, calc((1440px - 100vw) * 0.25));
  margin-right: min(0px, calc((1440px - 100vw) * 0.25));
}

.room-row--feature .room-row__content h3 {
  max-width: 16ch;
  font-size: 35px;
  margin-bottom: 0.6rem;
}

.room-row--feature .room-row__specs {
  justify-content: center;
  margin-bottom: 0;
}

.room-row--feature .room-row__thumb {
  width: clamp(134px, 14.3vw, 206px);
  height: clamp(170px, 18.2vw, 260px);
  margin: auto 0 0;
  overflow: hidden;
}

.room-row--feature .room-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.room-row--feature .room-row__content p {
  max-width: 86ch;
  margin: auto 0 0.75rem 0;
  text-align: center;
  font-size: 19px;
}

/* --- Rooms Page Hero — sticky, rooms scroll over it --- */
.rooms-page-hero {
  position: relative;
  z-index: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.rooms-page-hero__image {
  position: absolute;
  inset: 0;
}

.rooms-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.rooms-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  text-align: center;
}

.rooms-page-hero__title {
  font-family: var(--font-sc);
  font-size: clamp(3.5rem, 8vw, 140px);
  font-weight: 300;
  font-style: normal;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(18px);
  animation: roomsHeroIn 1.1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
}

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

.rooms-page-hero__subtitle {
  font-family: var(--font-sc);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  letter-spacing: 0.04em;
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(12px);
  animation: roomsHeroIn 1.1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .rooms-page-hero__subtitle,
  .rooms-page-hero__title {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* --- Room Row Specs --- */
.room-row__specs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-accent);
  font-size: 0.961rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #998059;
}

.room-row__spec-sep {
  color: #998059;
  opacity: 0.85;
  font-size: 0.7rem;
}

.room-row__spec-icon {
  width: 1.634rem;
  height: 1.634rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transform: translateY(-2px);
}

.room-row__spec-icon--size {
  width: 2.299rem;
  height: 2.299rem;
  transform: translate(2px, -2px);
}

/* --- Rooms Page modifier — slides over the sticky hero --- */
.rooms--page {
  position: relative;
  z-index: 1;
  padding-top: 0;
  background-color: var(--color-cream);
  background-image: var(--paper-texture);
}

/* --- All Rooms Includes Strip --- */
.rooms-all-includes {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background-color: var(--color-cream);
  background-image: var(--paper-texture);
}

.rooms-all-includes .section-label {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.rooms-all-includes__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.rooms-all-includes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.rooms-all-includes__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-warm-gold);
}

.rooms-all-includes__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rooms-all-includes__label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .rooms-page-hero {
    height: 100vh;
    min-height: 100vh;
  }
  .rooms-page-hero__overlay {
    padding-bottom: 0;
  }
  .rooms-all-includes__grid {
    gap: 2.5rem 3rem;
  }
  .rooms-all-includes {
    padding: 4rem 0;
  }
  .rooms-page-intro p {
    font-size: 0.95rem;
  }
}

/* ========================================
   NATURE
   ======================================== */
.nature {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nature-visual {
  position: relative;
  overflow: hidden;
}

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

.nature-content {
  display: flex;
  align-items: center;
  background-color: var(--color-warm-white); background-image: var(--paper-texture);
  padding: var(--space-xl);
}

.nature-content .container {
  max-width: 520px;
  padding: 0;
}

.nature-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.nature-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* ========================================
   EXPERIENCE
   ======================================== */
.experience {
  padding: var(--space-2xl) 0;
  background-color: var(--color-warm-white); background-image: var(--paper-texture);
}

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

.experience-card__image {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.experience-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.experience-card__image:hover img {
  transform: scale(1.03);
}

.experience-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.experience-card__content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.text-link {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  transition: color 0.3s;
}

.text-link:hover {
  color: var(--color-deep-blue);
}

/* ========================================
   PARALLAX QUOTE
   ======================================== */
.parallax-quote {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

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

.parallax-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-md);
}

.parallax-content blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

/* ========================================
   VOICES / GUEST BOOK
   ======================================== */
.voices {
  padding: var(--space-2xl) 0;
  background-color: var(--color-cream); background-image: var(--paper-texture);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.voice-card {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-border);
}

.voice-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.voice-author {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #888;
}

/* ========================================
   GALLERY TEASER
   ======================================== */
.gallery-teaser {
  padding: var(--space-xl) 0 0;
  background-color: var(--color-warm-white); background-image: var(--paper-texture);
}

.gallery-teaser .section-header {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-lg);
}

.gallery-scroll {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding: 0 var(--space-md) var(--space-xl);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-item {
  flex: 0 0 auto;
  width: 38vw;
  min-width: 300px;
  max-width: 550px;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}


/* ========================================
   ROOMS — STICKY HEADING (desktop only)
   ======================================== */
@media (min-width: 1025px) {
  /* Remove section top padding — sticky header provides the breathing room */
  .rooms {
    padding-top: 0;
    overflow: visible;
  }

  /* Pin the section heading while rooms scroll over it */
  .rooms .container {
    position: sticky;
    top: var(--header-height);
    z-index: 1;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
  }

  /* Centred, flipped hierarchy */
  .rooms .section-header {
    margin-bottom: 0;
    text-align: center;
  }



  /* ODALAR → the hero */
  .rooms .section-label {
    display: block;
    font-family: var(--font-sc);
    font-style: normal;
    font-weight: 300;
    font-size: 140px;
    letter-spacing: 0.07em;
    text-transform: none;
    color: var(--color-warm-gold);
    margin-bottom: 0.6rem;
  }


  /* Rooms list slides over the pinned heading */
  .rooms-list {
    position: relative;
    z-index: 2;
    background-color: var(--color-cream); background-image: var(--paper-texture);
  }

  /* Gold curtain line — text disappears behind this edge as you scroll */
  .rooms-list::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(142, 116, 65, 0.4) 3%,
      rgba(142, 116, 65, 0.75) 6%,
      var(--color-warm-gold) 12%,
      var(--color-warm-gold) 88%,
      rgba(142, 116, 65, 0.75) 94%,
      rgba(142, 116, 65, 0.4) 97%,
      transparent 100%
    );
    margin-bottom: 2.8rem;
  }

  /* Solid cream background so rows fully cover the heading underneath */
  .room-row,
  .room-separator {
    background-color: var(--color-cream); background-image: var(--paper-texture);
  }
}


/* ========================================
   RESPONSIVE — TABLET (home only)
   ======================================== */
@media (max-width: 1024px) {
  .intro-body {
    gap: 0 4rem;
  }

  .room-row {
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

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

  .room-row__content {
    padding: var(--space-xl) var(--space-md);
  }

  .room-row--reverse .room-row__content {
    padding: var(--space-xl) var(--space-md);
  }

  .nature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nature-visual {
    height: 50vh;
    min-height: 350px;
  }

  .nature-content {
    padding: var(--space-lg) var(--space-md);
  }

  .experience-grid {
    gap: var(--space-md);
  }

  .voices-grid {
    grid-template-columns: unset;
    gap: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 var(--space-md) var(--space-lg);
    cursor: grab;
  }

  .voices-grid::-webkit-scrollbar {
    display: none;
  }

  .voices-grid:active {
    cursor: grabbing;
  }

  .voice-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    border-top: 1px solid var(--color-border);
    border-left: none;
  }

  .voices-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    padding-bottom: var(--space-md);
  }

  .voices-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-border);
    transition: background 0.3s;
  }

  .voices-dot.active {
    background: var(--color-warm-gold);
  }

}

/* ========================================
   RESPONSIVE — MOBILE (home only)
   ======================================== */
@media (max-width: 640px) {

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

  .intro-title {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    margin-bottom: var(--space-lg);
  }

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

  .intro-label {
    display: none;
  }

  .intro-col {
    font-size: 1rem;
    text-align: left;
  }

  /* Header stays below URL bar / status bar on iOS */
  .hero-content {
    padding: var(--space-lg) var(--space-md) var(--space-xl);
  }

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

  .room-row__image {
    height: 65vw;
    position: relative;
  }

  .room-row--reverse .room-row__image {
    order: 0;
  }

  .room-row--reverse .room-row__content {
    order: 1;
  }

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

  .room-row--reverse .room-row__content {
    padding: var(--space-lg) var(--space-md) 0;
  }

  /* Sticky heading — same mechanic as desktop */
  .rooms {
    padding-top: 0;
    overflow: visible;
  }

  .rooms .container {
    position: sticky;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    z-index: 1;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-xl);
  }

  .rooms .section-header {
    margin-bottom: 0;
    margin-top: -1.5rem;
    text-align: center;
  }

  /* ODALAR → large gold label */
  .rooms .section-label {
    display: block;
    font-family: var(--font-sc);
    font-style: normal;
    font-weight: 300;
    font-size: clamp(3rem, 14vw, 5rem);
    letter-spacing: 0.07em;
    text-transform: none;
    color: var(--color-warm-gold);
    margin-bottom: 0.5rem;
  }


  /* Rooms list slides over the pinned heading */
  .rooms-list {
    position: relative;
    z-index: 2;
    background-color: var(--color-cream); background-image: var(--paper-texture);
  }

  /* Gold curtain line at top of list */
  .rooms-list::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(142, 116, 65, 0.4) 3%,
      rgba(142, 116, 65, 0.75) 6%,
      var(--color-warm-gold) 12%,
      var(--color-warm-gold) 88%,
      rgba(142, 116, 65, 0.75) 94%,
      rgba(142, 116, 65, 0.4) 97%,
      transparent 100%
    );
    margin-bottom: 2.8rem;
  }

  .room-row,
  .room-separator {
    background-color: var(--color-cream); background-image: var(--paper-texture);
  }

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

  .gallery-item {
    width: 80vw;
    min-width: 250px;
  }

  .gallery-item img {
    height: 280px;
  }

  .parallax-quote {
    height: 50vh;
  }
}
