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

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

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

:root {
  --charcoal: #1c1c1c;
  --charcoal-light: #2a2a2a;
  --sand: #d6c9a8;
  --sand-light: #e8dfc8;
  --sand-pale: #f3efe4;
  --cream: #faf7f0;
  --terracotta: #b8694a;
  --terracotta-deep: #9a5539;
  --ocean: #1b3a4b;
  --ocean-light: #2a5a6e;
  --white: #ffffff;
  --text-dark: #1c1c1c;
  --text-muted: #6b6560;
  --text-light: #a09889;
  --border: rgba(28, 28, 28, 0.08);
  --border-sand: rgba(214, 201, 168, 0.4);

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

  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

::selection {
  background: var(--sand);
  color: var(--charcoal);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

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

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

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

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

.text-sm {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

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

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1440px;
}

section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 10rem 0;
  }
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.4s var(--ease-smooth);
}

.nav--scrolled .nav__logo {
  color: var(--charcoal);
}

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

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

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

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

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

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
}

.nav__cta:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.nav--scrolled .nav__cta {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.nav--scrolled .nav__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Mobile menu */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

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

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

.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);
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.nav__mobile.active {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  font-weight: 400;
}

.nav__mobile a:hover {
  color: var(--terracotta);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.lang-switch {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.lang-switch a {
  padding: 0.2rem 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.lang-switch a.active {
  color: var(--white);
}

.nav--scrolled .lang-switch a {
  color: var(--text-light);
}

.nav--scrolled .lang-switch a.active {
  color: var(--charcoal);
}

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

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

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.85) 0%,
    rgba(20, 18, 15, 0.3) 40%,
    rgba(20, 18, 15, 0.1) 70%,
    rgba(20, 18, 15, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 5rem 2.5rem;
  }
}

.hero__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scrollLine 2s var(--ease-smooth) infinite;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

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

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--sand {
  background: var(--sand);
  color: var(--charcoal);
}

.btn--sand:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========================================
   INTRO / ABOUT
   ======================================== */

.intro {
  background: var(--cream);
}

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

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .intro__grid {
    gap: 6rem;
  }
}

.intro__text {
  order: 2;
}

@media (min-width: 768px) {
  .intro__text {
    order: 1;
  }
}

.intro__image {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .intro__image {
    order: 2;
  }
}

.intro__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.intro__image::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sand);
  z-index: -1;
}

.intro__label {
  margin-bottom: 1.5rem;
}

.intro h2 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.intro p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.intro__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.intro__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.intro__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

/* ========================================
   APARTMENTS / ROOMS
   ======================================== */

.apartments {
  background: var(--white);
}

.apartments__header {
  text-align: center;
  margin-bottom: 4rem;
}

.apartments__header h2 {
  margin-bottom: 1rem;
}

.apartments__header p {
  color: var(--text-muted);
  margin: 0 auto;
}

.apartments__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .apartments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.apt-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.apt-card__image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.apt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.apt-card:hover .apt-card__image img {
  transform: scale(1.04);
}

.apt-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.apt-card__body {
  padding: 1.5rem 0;
}

.apt-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.apt-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.apt-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.apt-card__feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.apt-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
}

/* ========================================
   AMENITIES
   ======================================== */

.amenities {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 105, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.amenities__header {
  margin-bottom: 4rem;
}

.amenities .text-label {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.amenities h2 {
  max-width: 500px;
}

.amenities__list {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .amenities__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.amenity-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .amenity-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

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

@media (min-width: 1024px) {
  .amenity-item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .amenity-item:nth-child(3n) {
    border-right: none;
  }
}

.amenity-item__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.25rem;
  color: var(--terracotta);
}

.amenity-item h4 {
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.amenity-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.gallery {
  padding: 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery__item--tall {
  aspect-ratio: 2/3;
}

@media (min-width: 768px) {
  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

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

.reviews {
  background: var(--sand-pale);
  position: relative;
}

.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews__header h2 {
  margin-bottom: 1rem;
}

.reviews__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.review-card {
  padding: 2.5rem;
  background: var(--white);
  position: relative;
}

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

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.reviews__cta {
  text-align: center;
}

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

.location {
  background: var(--white);
}

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

@media (min-width: 768px) {
  .location__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.location__text h2 {
  margin-bottom: 1.5rem;
}

.location__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.location__distances {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location__distance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.location__distance-name {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.location__distance-value {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
}

.location__map {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--sand-pale);
}

@media (min-width: 768px) {
  .location__map {
    aspect-ratio: auto;
    min-height: 450px;
  }
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.05);
}

/* ========================================
   NOMAD / EXTENDED STAY
   ======================================== */

.nomad {
  background: var(--ocean);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.nomad::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  background: linear-gradient(45deg, rgba(214, 201, 168, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .nomad__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.nomad .text-label {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.nomad h2 {
  margin-bottom: 1.5rem;
}

.nomad p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.nomad__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.nomad__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.nomad__feature-icon {
  width: 24px;
  height: 24px;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.nomad__feature-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.nomad__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

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

.contact {
  background: var(--cream);
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact > .container > p {
  color: var(--text-muted);
  margin: 0 auto 3rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.contact__info-item {
  text-align: center;
}

.contact__info-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.contact__info-value {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.contact__info-value a {
  transition: color 0.2s;
}

.contact__info-value a:hover {
  color: var(--terracotta);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.4);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer__text {
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer__credit {
  font-size: 0.72rem;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--white);
}

/* ========================================
   DIVIDER
   ======================================== */

.divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 1.5rem 0;
}

.divider--center {
  margin: 1.5rem auto;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  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; }

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */

.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

.page-header .text-label {
  color: var(--sand);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem auto 0;
}

/* ========================================
   ROOMS PAGE - DETAILED
   ======================================== */

.room-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.room-detail:last-child {
  border-bottom: none;
}

.room-detail__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .room-detail__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.room-detail:nth-child(even) .room-detail__grid {
  direction: ltr;
}

@media (min-width: 768px) {
  .room-detail:nth-child(even) .room-detail__images {
    order: 2;
  }

  .room-detail:nth-child(even) .room-detail__info {
    order: 1;
  }
}

.room-detail__images {
  display: grid;
  gap: 4px;
}

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

.room-detail__info h3 {
  margin-bottom: 0.75rem;
}

.room-detail__type {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.room-detail__desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.room-detail__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.room-detail__amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.room-detail__amenity svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
  flex-shrink: 0;
}

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

.contact-page__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-page__form-area {
  background: var(--white);
  padding: 2.5rem;
}

.contact-page__form-area h3 {
  margin-bottom: 0.5rem;
}

.contact-page__form-area > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-page__form-area iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

.contact-page__details h3 {
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-detail__value {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-detail__value a:hover {
  color: var(--terracotta);
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ========================================
   PRINT
   ======================================== */

@media print {
  .nav, .hero__scroll, .footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  section {
    padding: 2rem 0;
  }
}
