/* ============================================
   LAREEN DORMITORY — Design System
   Inspired by editorial hospitality (Calistoga spirit)
   ============================================ */

:root {
  --color-sand: #f4efe6;
  --color-cream: #faf7f2;
  --color-terracotta: #c45c3e;
  --color-terracotta-dark: #9e3f28;
  --color-sage: #5a6b5c;
  --color-forest: #2d3a2e;
  --color-ink: #1a1814;
  --color-ink-soft: #3d3830;
  --color-gold: #c9a962;
  --color-white: #ffffff;

  --font-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;

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

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
  --color-taupe: #9a8b7a;
  --color-pool: #4a7c8c;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-ink-soft);
  background: var(--color-cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.rtl {
  font-family: Arial, Tahoma, "Segoe UI", sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--color-terracotta); }
ul { list-style: none; }

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 24, 20, 0.06);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26, 24, 20, 0.12);
  border: 1px solid rgba(154, 139, 122, 0.25);
  flex-shrink: 0;
}

.logo-circle-footer {
  width: 64px;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.logo-img,
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.btn-header {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background: var(--color-forest);
  color: var(--color-cream);
  border-radius: 2px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.btn-header:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-1px);
}

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

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(26, 24, 20, 0.06);
  border-radius: 4px;
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.55rem;
  border: none;
  background: transparent;
  color: var(--color-ink-soft);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.lang-btn:hover {
  color: var(--color-ink);
}

.lang-btn.active {
  background: var(--color-forest);
  color: var(--color-cream);
}

.lang-switcher-mobile {
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease-out);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-cream);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

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

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid rgba(26, 24, 20, 0.25);
}

.btn-ghost:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.btn-full { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) calc(var(--space-lg) + 5rem);
  overflow: hidden;
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 75% 65% at 50% 42%,
      rgba(250, 247, 242, 0.82) 0%,
      rgba(250, 247, 242, 0.5) 45%,
      rgba(26, 24, 20, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(26, 24, 20, 0.2) 0%, transparent 30%, transparent 65%, rgba(26, 24, 20, 0.45) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 85%, var(--color-sage) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, var(--color-pool) 0%, transparent 30%);
}

.hero-stats .stat {
  padding: 0.65rem 1rem;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  border: 1px solid rgba(154, 139, 122, 0.2);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 28px rgba(250, 247, 242, 0.95), 0 1px 6px rgba(250, 247, 242, 0.8);
}

.hero-eyebrow,
.hero-sub {
  text-shadow: 0 1px 16px rgba(250, 247, 242, 0.9);
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  font-style: italic;
  color: var(--color-terracotta);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--color-sage);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-terracotta);
  animation: scrollPulse 2s var(--ease-out) infinite;
}

@keyframes scrollPulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-stats {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  z-index: 3;
  max-width: calc(100% - 2rem);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1;
}

.stat span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.section-tag.light { color: var(--color-gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.section-title.large {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

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

.section-body {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.section-lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  color: var(--color-ink-soft);
}

.section-header.center {
  text-align: center;
}

/* Split layout */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-split.reverse .section-visual { order: 2; }
.section-split.reverse .section-text { order: 1; }

.visual-frame {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-cream);
}

.visual-1 .visual-placeholder {
  background:
    linear-gradient(to top, rgba(26, 24, 20, 0.7) 0%, transparent 50%),
    linear-gradient(135deg, #6b7d6e 0%, #3d4a3f 50%, #2d3a2e 100%);
}

.visual-2 .visual-placeholder {
  background:
    linear-gradient(to top, rgba(26, 24, 20, 0.7) 0%, transparent 50%),
    linear-gradient(135deg, #c45c3e 0%, #9e3f28 40%, #5a3d32 100%);
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 400;
}

.feature-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
}

.link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-terracotta);
}

/* Cards */
.section-full {
  background: var(--color-sand);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}

.amenities-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.card {
  background: var(--color-cream);
  padding: var(--space-lg) var(--space-md);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 24, 20, 0.08);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

/* Quote section */
.section-quote {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--color-forest) 0%, #1e2820 50%, var(--color-ink) 100%);
}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.quote-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.9);
  margin-bottom: var(--space-lg);
}

.quote-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.quote-features span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 2px;
}

/* Wellness */
.section-wellness {
  background: var(--color-cream);
}

.wellness-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wellness-item {
  padding: var(--space-md);
  background: var(--color-sand);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--color-terracotta);
  transition: background 0.3s var(--ease-out);
}

.wellness-item:hover {
  background: var(--color-forest);
  color: var(--color-cream);
}

/* Memories & Gallery */
.section-memories {
  max-width: 1200px;
  margin: 0 auto;
}

.memories-content {
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

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

.gallery-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 1;
}

.g1 {
  grid-column: span 2;
  background: linear-gradient(135deg, #8b9a8c, #5a6b5c);
}

.g2 {
  background: linear-gradient(135deg, #4a8c9e, #2d6b7c);
}

.g3 {
  background: linear-gradient(135deg, #7a8f9a, #4a5f6b);
}

.g4 {
  grid-column: span 2;
  background: linear-gradient(135deg, #5a8c6a, #3d6b4a);
}

.gallery-item span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-cream);
  z-index: 1;
}

/* ========== FLOOR CARDS (Villa par étages) ========== */
.section-floors {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ========== MISSION (objectif & fonctionnement) ========== */
.section-mission {
  background: var(--color-sand);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  border-radius: 4px;
}

.mission-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.mission-lead {
  margin-top: var(--space-sm);
}

.booking-banner {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.85rem 1.5rem;
  background: var(--color-forest);
  color: var(--color-cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  max-width: 640px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
}

.mission-block {
  background: var(--color-cream);
  padding: var(--space-lg) var(--space-md);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(26, 24, 20, 0.05);
}

.mission-block-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.mission-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: var(--space-md) 0 var(--space-sm);
}

.mission-list {
  list-style: none;
}

.mission-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-size: 0.85rem;
}

body.rtl .mission-list li {
  padding-left: 0;
  padding-right: 1.25rem;
}

body.rtl .mission-list li::before {
  left: auto;
  right: 0;
}

.floors-intro {
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

/* ========== MEDIA (photos / vidéos par étage) ========== */
.floor-media {
  padding: var(--space-md);
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.media-placeholder {
  text-align: center;
  padding: var(--space-md);
  border: 2px dashed rgba(26, 24, 20, 0.12);
  border-radius: 4px;
  width: 100%;
  max-width: 320px;
}

.media-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.media-placeholder p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.media-hint {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-sage);
}

.media-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.media-slots img,
.media-slots video {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.floor-card {
  position: relative;
  background: var(--color-white);
  border-radius: 4px;
  margin-bottom: var(--space-md);
  box-shadow: 0 12px 40px rgba(26, 24, 20, 0.06);
  overflow: hidden;
}

.floor-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-forest);
  color: var(--color-cream);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.floor-badge sup {
  font-size: 0.65em;
}

.floor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.floor-reverse .floor-content {
  direction: rtl;
}

.floor-reverse .floor-content > * {
  direction: ltr;
}

.floor-text {
  padding: calc(var(--space-md) + 1.5rem) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floor-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.floor-tagline {
  color: var(--color-gold);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.floor-text > p:not(.floor-tagline) {
  margin-bottom: var(--space-sm);
  font-size: 0.98rem;
}

.floor-visual {
  min-height: 280px;
}

.floor-suite {
  background: linear-gradient(160deg, #8b9a8c 0%, #4a5f52 100%);
}

.floor-room {
  background: linear-gradient(160deg, #7a9aab 0%, #4a6b7c 100%);
}

.floor-rdc {
  background: linear-gradient(160deg, #5a6b5c 0%, #3d4a3f 50%, #6b5a4a 100%);
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-row select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(26, 24, 20, 0.12);
  border-radius: 2px;
  background: var(--color-white);
  color: var(--color-ink-soft);
  cursor: pointer;
}

.form-row select:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

/* Contact */
.section-contact {
  background: var(--color-sand);
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info address {
  font-style: normal;
  margin-top: var(--space-md);
}

.contact-info address p {
  margin-bottom: var(--space-md);
}

.contact-info strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.25rem;
}

.contact-phone {
  font-weight: 500;
  font-size: 1.05rem;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

#formPhone {
  direction: ltr;
  text-align: left;
}

.phone-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.contact-wa {
  font-size: 0.9rem;
  color: var(--color-terracotta);
}

.map-block {
  margin-top: var(--space-md);
}

.map-label {
  margin-bottom: 0.75rem;
}

.map-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 24, 20, 0.08);
  aspect-ratio: 16 / 10;
  background: var(--color-sand);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 220px;
}

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-terracotta);
}

/* RTL adjustments */
body.rtl .header {
  flex-direction: row-reverse;
}

body.rtl .nav {
  direction: rtl;
  flex-direction: row;
  gap: 1.35rem;
}

body.rtl .nav a,
body.rtl .mobile-nav a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

body.rtl .mobile-nav {
  direction: rtl;
  align-items: flex-end;
  text-align: right;
}

body.rtl .lang-switcher-mobile {
  align-self: flex-end;
  direction: ltr;
}

body.rtl .header-actions {
  flex-direction: row-reverse;
}

body.rtl .btn-header {
  text-transform: none;
  letter-spacing: 0;
}

body.rtl .hero-stats {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

body.rtl .hero-scroll {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

body.rtl .stat {
  text-align: center;
}

body.rtl .feature-list li {
  padding-left: 0;
  padding-right: 1.5rem;
}

body.rtl .feature-list li::before {
  left: auto;
  right: 0;
}

body.rtl .floor-reverse .floor-content {
  direction: rtl;
}

body.rtl .floor-reverse .floor-content > * {
  direction: rtl;
}

body.rtl .floor-badge {
  left: auto;
  right: 1.25rem;
}

body.rtl .footer {
  direction: rtl;
}

body.rtl .footer-nav {
  direction: rtl;
  flex-direction: row;
}

body.rtl .footer-nav a {
  text-transform: none;
  letter-spacing: 0;
}

body.rtl .footer-note {
  text-align: left;
}

.contact-form {
  background: var(--color-cream);
  padding: var(--space-lg);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(26, 24, 20, 0.06);
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(26, 24, 20, 0.12);
  border-radius: 2px;
  background: var(--color-white);
  transition: border-color 0.3s var(--ease-out);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

/* Footer */
.footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--color-ink);
  color: rgba(250, 247, 242, 0.7);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
}

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

.footer-brand .logo-circle-footer {
  background: var(--color-white);
}

.footer-brand p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-brand em {
  font-style: italic;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

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

.footer-note {
  text-align: right;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.card.reveal { transition-delay: calc(var(--delay, 0) * 0.12s); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .section-split,
  .section-split.reverse {
    grid-template-columns: 1fr;
  }

  .section-split.reverse .section-visual,
  .section-split.reverse .section-text {
    order: unset;
  }

  .cards-grid,
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g1, .g4 { grid-column: span 1; }
  .gallery-item { min-height: 200px; }

  .floor-content,
  .floor-reverse .floor-content {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .floor-visual { min-height: 220px; order: -1; }
  .form-row-half { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-actions .btn-header, .header-actions .btn-curate { display: none; }
  .header-actions .lang-switcher { display: none; }
  .menu-toggle { display: flex; }

  .logo-circle { width: 58px; height: 58px; }
  .amenities-grid { grid-template-columns: 1fr; }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-top: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .stat { text-align: center; }

  .hero-scroll { display: none; }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; }
  .footer-note { text-align: center; }
}
