/* =====================================================
   PALAIS MONTE CARLO — STYLES
   Brand identity : sober, confidential, anchored
   ===================================================== */

:root {
  --terracotta: #B85A3C;
  --terracotta-deep: #8E4329;
  --ocre: #C9A876;
  --ocre-light: #E2CFA8;
  --atlas: #3F4F3A;
  --laiton: #A6845A;
  --tadelakt: #F5EFE6;
  --tadelakt-deep: #ECE3D2;
  --noir: #1F1A17;
  --noir-soft: #4A4039;

  --header-h: 80px;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--noir);
  background: var(--tadelakt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--terracotta); }

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--terracotta); color: var(--tadelakt); }

/* =====================================================
   TYPOGRAPHY HELPERS
   ===================================================== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.eyebrow.light { color: var(--ocre); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--noir);
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}

.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
.section-title.light { color: var(--tadelakt); }
.section-title.light em { color: var(--ocre-light); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--noir-soft);
  margin-bottom: 32px;
  max-width: 580px;
}

.lede.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede.light { color: var(--ocre-light); max-width: 520px; }
.lede strong { font-style: normal; font-weight: 500; color: var(--terracotta); }

.body { font-size: 16px; line-height: 1.7; color: var(--noir-soft); }
.body.small { font-size: 13px; line-height: 1.6; }

.rule {
  width: 60px;
  height: 1px;
  background: var(--laiton);
  margin: 0 0 32px 0;
}

.rule-center { margin: 0 auto 32px auto; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

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

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .section-title { margin-left: auto; margin-right: auto; }

.section-head.light .section-title { color: var(--tadelakt); }
.section-head.light .section-title em { color: var(--ocre-light); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0);
  backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(166, 132, 90, 0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--tadelakt);
  transition: color 0.3s ease;
}

.site-header.scrolled .logo { color: var(--noir); }

.logo-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-place {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}

.primary-nav {
  display: flex;
  gap: 28px;
}

.primary-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tadelakt);
  transition: color 0.2s ease;
  padding: 4px 0;
  position: relative;
}

.site-header.scrolled .primary-nav a { color: var(--noir-soft); }

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.primary-nav a:hover { color: var(--terracotta); }
.primary-nav a:hover::after { width: 100%; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--tadelakt);
  opacity: 0.8;
}

.site-header.scrolled .lang-switch { color: var(--noir-soft); }

.lang-switch button {
  font: inherit;
  color: inherit;
  opacity: 0.6;
  transition: all 0.2s ease;
  padding: 0;
}

.lang-switch button.active { opacity: 1; color: var(--terracotta); }
.lang-switch button:hover { opacity: 1; }
.lang-switch span { opacity: 0.4; }

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tadelakt);
  background: var(--terracotta);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--tadelakt);
  transition: all 0.2s ease;
}

.site-header.scrolled .menu-toggle span { background: var(--noir); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--terracotta-deep);
  color: var(--tadelakt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(184, 90, 60, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--tadelakt);
  border: 1px solid rgba(245, 239, 230, 0.4);
}

.btn-ghost:hover {
  background: rgba(245, 239, 230, 0.1);
  border-color: rgba(245, 239, 230, 0.7);
  color: var(--tadelakt);
}

.btn-ghost-light {
  background: transparent;
  color: var(--tadelakt);
  border: 1px solid rgba(245, 239, 230, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(245, 239, 230, 0.1);
  color: var(--tadelakt);
}

.btn-block { display: flex; width: 100%; }

.btn-small {
  font-size: 10px;
  padding: 10px 20px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: heroZoom 20s ease-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(31, 26, 23, 0.5) 0%,
      rgba(31, 26, 23, 0.35) 30%,
      rgba(31, 26, 23, 0.7) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  color: var(--tadelakt);
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  color: var(--tadelakt);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ocre-light);
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--ocre-light);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.7s forwards;
}

.hero-pricing {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocre);
  border: 1px solid rgba(201, 168, 118, 0.5);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.8s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 1.0s forwards;
}

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

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(245, 239, 230, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-down span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--tadelakt);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* =====================================================
   ESTATE
   ===================================================== */
.estate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.estate-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  border-top: 0.5px solid var(--laiton);
  padding-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
}

.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laiton);
}

.estate-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.estate-photo:hover img { transform: scale(1.04); }

/* =====================================================
   OFFERS
   ===================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.offer-card {
  background: var(--tadelakt);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(31, 26, 23, 0.25);
}

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

.offer-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(31, 26, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--tadelakt);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
  border: 0.5px solid rgba(201, 168, 118, 0.4);
}

.offer-price-tag strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ocre-light);
}

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

.offer-card:hover .offer-photo img { transform: scale(1.06); }

.offer-body {
  padding: 36px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.offer-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 16px;
}

.offer-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--noir-soft);
  margin-bottom: 20px;
}

.offer-list {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.offer-list li {
  font-size: 13px;
  font-family: var(--sans);
  color: var(--noir-soft);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-top: 0.5px solid rgba(166, 132, 90, 0.3);
}

.offer-list li:last-child { border-bottom: 0.5px solid rgba(166, 132, 90, 0.3); }

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

.offer-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: auto;
  padding-top: 8px;
  align-self: flex-start;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.offer-cta:hover {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

/* =====================================================
   WEDDING MENTION (discreet, by inquiry)
   ===================================================== */
.wedding-mention {
  margin-top: 56px;
  padding: 28px 32px;
  border-top: 0.5px solid var(--laiton);
  border-bottom: 0.5px solid var(--laiton);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.wedding-mention-text { flex: 1; min-width: 280px; }

.wedding-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 8px;
}

.wedding-mention-text p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--noir-soft);
  margin: 0;
  max-width: 600px;
}

.wedding-mention .offer-cta {
  flex-shrink: 0;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing { background: var(--tadelakt-deep); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--tadelakt);
  padding: 40px 32px;
  border: 0.5px solid var(--laiton);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(31, 26, 23, 0.15);
  border-color: var(--terracotta);
}

.pricing-card-featured {
  background: var(--noir);
  color: var(--tadelakt);
  border-color: var(--terracotta);
  position: relative;
}

.pricing-card-featured::before {
  content: "★";
  position: absolute;
  top: -16px;
  left: 32px;
  background: var(--terracotta);
  color: var(--tadelakt);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pricing-tier {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.pricing-card-featured .pricing-tier { color: var(--ocre); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--laiton);
}

.pricing-currency {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--noir-soft);
  margin-right: 2px;
}

.pricing-card-featured .pricing-currency { color: var(--ocre-light); }

.pricing-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--noir);
  letter-spacing: -0.02em;
}

.pricing-card-featured .pricing-num { color: var(--tadelakt); }

.pricing-period {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laiton);
  margin-left: 6px;
}

.pricing-amount-quote { padding-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }

.pricing-quote-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--laiton);
}

.pricing-currency-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: var(--terracotta);
}

.pricing-capacity-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--noir-soft);
  margin: 0 0 18px;
  padding: 0;
}

.pricing-villa {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 0.5px solid var(--laiton);
  background: rgba(166, 132, 90, 0.06);
  border-radius: 2px;
}

.pricing-villa-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.pricing-villa-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--noir-soft);
  margin: 0;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.pricing-list li {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--noir-soft);
  padding: 8px 0 8px 22px;
  position: relative;
}

.pricing-card-featured .pricing-list li { color: var(--ocre-light); opacity: 0.9; }

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

.pricing-card-featured .pricing-list li::before { color: var(--ocre); }

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 0.5px solid var(--laiton);
}

.pricing-note-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.pricing-note p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--noir-soft);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--tadelakt-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 26, 23, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item.span-2-rows { grid-row: span 2; }

/* =====================================================
   EXPERIENCE
   ===================================================== */
.experience {
  position: relative;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 23, 0.85) 0%, rgba(31, 26, 23, 0.95) 100%);
  z-index: 1;
}

.experience .container { position: relative; z-index: 2; }

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

.pillar {
  border-top: 0.5px solid var(--laiton);
  padding-top: 32px;
}

.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--ocre);
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--tadelakt);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ocre-light);
  opacity: 0.85;
}

/* =====================================================
   LOCATION
   ===================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  order: -1;
}

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

.distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin: 32px 0;
  border-top: 0.5px solid var(--laiton);
  padding-top: 32px;
}

.distance-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
}

.distance-num span {
  font-size: 22px;
  color: var(--laiton);
  margin-left: 4px;
}

.distance-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laiton);
  margin-top: 4px;
}

/* =====================================================
   INQUIRY
   ===================================================== */
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.inquiry-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 32px;
}

.inquiry-direct .btn { width: 100%; max-width: 360px; }

.inquiry-form {
  background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(245, 239, 230, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label > span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocre);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.3);
  color: var(--tadelakt);
  padding: 8px 0;
  transition: border-color 0.2s ease;
}

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

.form-row select option { background: var(--noir); color: var(--tadelakt); }

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

.form-disclaimer {
  font-size: 11px;
  color: var(--ocre);
  opacity: 0.7;
  margin-top: 12px;
  line-height: 1.5;
}

/* =====================================================
   SPLASH SCREEN — first-visit language picker
   Ultra-elegant editorial, full viewport, brand-aligned
   ===================================================== */
html.splash-open, html.splash-open body { overflow: hidden; }

.lang-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 520ms cubic-bezier(.4,0,.2,1);
  font-family: var(--serif);
}
.lang-splash.is-visible { opacity: 1; }
.lang-splash.is-leaving { opacity: 0; pointer-events: none; }

.lang-splash .splash-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184,90,60,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(166,132,90,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #15110E 0%, #1F1A17 45%, #15110E 100%);
}

.lang-splash .splash-frame {
  position: relative;
  width: min(960px, 92vw);
  max-height: 92vh;
  padding: 56px clamp(24px, 5vw, 72px);
  text-align: center;
  color: var(--tadelakt, #F5EFE6);
  transform: translateY(8px);
  transition: transform 760ms cubic-bezier(.2,.8,.2,1) 80ms;
  overflow-y: auto;
}
.lang-splash.is-visible .splash-frame { transform: translateY(0); }

/* Brand mark */
.splash-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
}
.splash-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 28px);
  letter-spacing: 0.02em;
  color: var(--tadelakt, #F5EFE6);
}
.splash-place {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton, #A6845A);
}

/* Decorative rule with central dot */
.splash-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 26px;
  width: min(280px, 60%);
}
.splash-rule::before, .splash-rule::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--laiton, #A6845A), transparent);
}
.splash-rule span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--terracotta, #B85A3C);
}

.splash-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ocre-light, #D9B98A);
  margin: 0 0 38px;
  opacity: 0.85;
}

/* 7 language grid: 4 cols → 2 → 1 */
.splash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.splash-grid > .splash-lang:nth-child(5) { grid-column: 1 / 2; }
.splash-grid > .splash-lang:nth-child(6) { grid-column: 2 / 3; }
.splash-grid > .splash-lang:nth-child(7) { grid-column: 3 / 4; }
@media (max-width: 720px) {
  .splash-grid { grid-template-columns: repeat(2, 1fr); }
  .splash-grid > .splash-lang:nth-child(n) { grid-column: auto; }
}
@media (max-width: 380px) {
  .splash-grid { grid-template-columns: 1fr; }
}

.splash-lang {
  position: relative;
  appearance: none;
  background: rgba(245,239,230,0.02);
  border: 0.5px solid rgba(166,132,90,0.28);
  color: var(--tadelakt, #F5EFE6);
  cursor: pointer;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background 360ms ease, border-color 360ms ease, transform 320ms cubic-bezier(.2,.8,.2,1);
  border-radius: 1px;
}
.splash-lang::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 28px;
  height: 0.5px;
  background: var(--terracotta, #B85A3C);
  transition: transform 360ms cubic-bezier(.2,.8,.2,1);
}
.splash-lang:hover, .splash-lang:focus-visible {
  background: rgba(184,90,60,0.06);
  border-color: rgba(184,90,60,0.55);
  outline: none;
}
.splash-lang:hover::after, .splash-lang:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}
.splash-lang.is-detected {
  border-color: rgba(184,90,60,0.55);
}
.splash-lang.is-detected::before {
  content: "•";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 12px;
  color: var(--terracotta, #B85A3C);
  line-height: 1;
}

.splash-lang-greet {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--ocre-light, #D9B98A);
  margin-bottom: 2px;
  opacity: 0.75;
}
.splash-lang-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.01em;
  color: var(--tadelakt, #F5EFE6);
  line-height: 1.2;
}
.splash-lang-code {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton, #A6845A);
  margin-top: 6px;
}

/* CJK / Arabic native fonts inside their buttons */
.splash-lang[lang="zh"] .splash-lang-name { font-family: 'Noto Serif SC','Songti SC',serif; }
.splash-lang[lang="ja"] .splash-lang-name { font-family: 'Noto Serif JP','Hiragino Mincho ProN',serif; }
.splash-lang[lang="ar"] .splash-lang-name { font-family: 'Amiri','Noto Sans Arabic',serif; font-size: clamp(22px, 2.2vw, 26px); }
.splash-lang[lang="ar"] .splash-lang-greet { font-family: 'Amiri','Noto Sans Arabic',serif; font-style: normal; }
.splash-lang[lang="zh"] .splash-lang-greet,
.splash-lang[lang="ja"] .splash-lang-greet { font-family: 'Noto Serif SC','Noto Serif JP',serif; font-style: normal; }

/* Skip link */
.splash-skip {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--laiton, #A6845A);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 14px;
  transition: color 240ms ease;
}
.splash-skip:hover, .splash-skip:focus-visible {
  color: var(--terracotta, #B85A3C);
  outline: none;
}

/* Stagger language buttons in */
.lang-splash .splash-lang {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}
.lang-splash.is-visible .splash-lang { opacity: 1; transform: translateY(0); }
.lang-splash.is-visible .splash-lang:nth-child(1) { transition-delay: 180ms; }
.lang-splash.is-visible .splash-lang:nth-child(2) { transition-delay: 240ms; }
.lang-splash.is-visible .splash-lang:nth-child(3) { transition-delay: 300ms; }
.lang-splash.is-visible .splash-lang:nth-child(4) { transition-delay: 360ms; }
.lang-splash.is-visible .splash-lang:nth-child(5) { transition-delay: 420ms; }
.lang-splash.is-visible .splash-lang:nth-child(6) { transition-delay: 480ms; }
.lang-splash.is-visible .splash-lang:nth-child(7) { transition-delay: 540ms; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .lang-splash, .lang-splash .splash-frame, .lang-splash .splash-lang { transition-duration: 200ms !important; transition-delay: 0ms !important; }
}


/* =====================================================
   CJK (Chinese / Japanese) — font fallbacks
   Latin serif lacks CJK glyphs; cascade through Noto.
   ===================================================== */
html.lang-zh body,
html.lang-zh p,
html.lang-zh h1,
html.lang-zh h2,
html.lang-zh h3,
html.lang-zh h4,
html.lang-zh li,
html.lang-zh a,
html.lang-zh button,
html.lang-zh input,
html.lang-zh textarea,
html.lang-zh select {
  font-family: 'Noto Sans SC', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
html.lang-zh h1.title,
html.lang-zh h2.section-title,
html.lang-zh h3.subsection-title,
html.lang-zh .lede,
html.lang-zh .closing-text,
html.lang-zh .hero-title,
html.lang-zh .hero-sub,
html.lang-zh .cover-title,
html.lang-zh .cover-sub,
html.lang-zh .fnb-name,
html.lang-zh .pull {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', 'Songti SC', serif;
}

html.lang-ja body,
html.lang-ja p,
html.lang-ja h1,
html.lang-ja h2,
html.lang-ja h3,
html.lang-ja h4,
html.lang-ja li,
html.lang-ja a,
html.lang-ja button,
html.lang-ja input,
html.lang-ja textarea,
html.lang-ja select {
  font-family: 'Noto Sans JP', 'Inter', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}
html.lang-ja h1.title,
html.lang-ja h2.section-title,
html.lang-ja h3.subsection-title,
html.lang-ja .lede,
html.lang-ja .closing-text,
html.lang-ja .hero-title,
html.lang-ja .hero-sub,
html.lang-ja .cover-title,
html.lang-ja .cover-sub,
html.lang-ja .fnb-name,
html.lang-ja .pull {
  font-family: 'Noto Serif JP', 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
}

/* CJK doesn't use italic for emphasis — flatten editorial italics */
html.lang-zh em, html.lang-zh i, html.lang-zh .lede,
html.lang-ja em, html.lang-ja i, html.lang-ja .lede {
  font-style: normal;
}

/* CJK lang button: keep readable size for Han characters */
.lang-switch button[lang="zh"],
.lang-switch button[lang="ja"] {
  font-family: 'Noto Sans SC', 'Noto Sans JP', 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

/* =====================================================
   RTL (Arabic) — overrides for right-to-left layout
   ===================================================== */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] li,
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  font-family: 'Noto Sans Arabic', 'Amiri', sans-serif;
}

/* Editorial serif elements use Amiri for elegant Arabic */
html[dir="rtl"] h1.title,
html[dir="rtl"] h2.section-title,
html[dir="rtl"] h3.subsection-title,
html[dir="rtl"] .lede,
html[dir="rtl"] .closing-text,
html[dir="rtl"] .pull,
html[dir="rtl"] .pull-attr,
html[dir="rtl"] .editorial,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .cover-title,
html[dir="rtl"] .cover-sub,
html[dir="rtl"] .pricing-num,
html[dir="rtl"] .stat-num,
html[dir="rtl"] .cell-num,
html[dir="rtl"] .pricing-currency-text,
html[dir="rtl"] .fnb-name,
html[dir="rtl"] .fnb-num,
html[dir="rtl"] .cluster-price-num,
html[dir="rtl"] .distance-num,
html[dir="rtl"] .pillar-num,
html[dir="rtl"] .feature-num,
html[dir="rtl"] .include-num,
html[dir="rtl"] .toc-num,
html[dir="rtl"] .timeline-title,
html[dir="rtl"] .h-tl-title,
html[dir="rtl"] .wa-step-title {
  font-family: 'Amiri', 'Noto Sans Arabic', serif;
}

/* RTL list items: dash on the right */
html[dir="rtl"] .pricing-list li,
html[dir="rtl"] .offer-list li,
html[dir="rtl"] .amenity-cat li {
  padding-left: 0;
  padding-right: 22px;
}
html[dir="rtl"] .pricing-list li::before,
html[dir="rtl"] .offer-list li::before,
html[dir="rtl"] .amenity-cat li::before {
  left: auto;
  right: 0;
}

/* Hero alignment */
html[dir="rtl"] .hero-content,
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-sub {
  text-align: right;
}

html[dir="rtl"] .hero-ctas {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Lang switch RTL */
html[dir="rtl"] .lang-switch {
  flex-direction: row-reverse;
}

/* WhatsApp sticky on the left for RTL */
html[dir="rtl"] .whatsapp-sticky {
  right: auto;
  left: 24px;
}

@media (max-width: 768px) {
  html[dir="rtl"] .whatsapp-sticky {
    right: auto;
    left: 16px;
  }
}

/* Cookie banner on the right for RTL */
html[dir="rtl"] .cookie-banner {
  left: auto;
  right: 24px;
}

@media (max-width: 768px) {
  html[dir="rtl"] .cookie-banner {
    left: 16px;
    right: 16px;
  }
}

/* Italic doesn't render well in Arabic — flatten it */
html[dir="rtl"] em,
html[dir="rtl"] i,
html[dir="rtl"] .hero-title em,
html[dir="rtl"] h1.title em,
html[dir="rtl"] h2.section-title em,
html[dir="rtl"] .lede,
html[dir="rtl"] .closing-text,
html[dir="rtl"] .pull,
html[dir="rtl"] .pricing-num,
html[dir="rtl"] .stat-num,
html[dir="rtl"] .cell-num {
  font-style: normal;
}

/* Numbers (kept LTR for readability) */
html[dir="rtl"] .stat-num,
html[dir="rtl"] .pricing-num,
html[dir="rtl"] .cell-num,
html[dir="rtl"] .fnb-num,
html[dir="rtl"] .cluster-price-num,
html[dir="rtl"] .distance-num,
html[dir="rtl"] .pillar-num,
html[dir="rtl"] .feature-num,
html[dir="rtl"] .include-num,
html[dir="rtl"] .pricing-amount,
html[dir="rtl"] .cluster-price-amount,
html[dir="rtl"] .fnb-price {
  direction: ltr;
  unicode-bidi: embed;
}

/* =====================================================
   F&B — TROIS TABLES DU PALAIS
   ===================================================== */
.fnb {
  background: var(--tadelakt);
  border-top: 0.5px solid rgba(166, 132, 90, 0.3);
}

.fnb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.fnb-card {
  background: var(--tadelakt-deep);
  padding: 40px 32px 36px;
  border: 0.5px solid var(--laiton);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.fnb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(31, 26, 23, 0.18);
  border-color: var(--terracotta);
}

.fnb-card-featured {
  background: var(--noir);
  color: var(--tadelakt);
  border-color: var(--terracotta);
}

.fnb-card-featured::before {
  content: "★";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--tadelakt);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.fnb-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.fnb-card-featured .fnb-tag { color: var(--ocre); }

.fnb-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  color: var(--noir);
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}

.fnb-card-featured .fnb-name { color: var(--tadelakt); }

.fnb-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--laiton);
}

.fnb-currency {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laiton);
}

.fnb-card-featured .fnb-currency { color: var(--ocre); }

.fnb-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}

.fnb-card-featured .fnb-num { color: var(--ocre-light); }

.fnb-card .fnb-num[data-i18n="fnb.t1_price"] {
  font-size: 28px;
  color: var(--terracotta);
  font-style: italic;
  letter-spacing: 0;
}

.fnb-card .fnb-price > span[data-i18n="fnb.t1_price"] {
  font-style: italic;
}

.fnb-currency-suffix {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--terracotta);
}

.fnb-card-featured .fnb-currency-suffix { color: var(--ocre-light); }

.fnb-desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--noir-soft);
}

.fnb-card-featured .fnb-desc { color: var(--ocre-light); opacity: 0.92; }

.fnb-desc em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.fnb-card-featured .fnb-desc em { color: var(--tadelakt); }

.fnb-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--noir-soft);
  max-width: 720px;
  margin: 32px auto 0;
}

@media (max-width: 1024px) {
  .fnb-grid { grid-template-columns: 1fr; max-width: 480px; margin: 32px auto 0; }
}

@media (max-width: 768px) {
  .fnb-card { padding: 32px 24px 28px; }
  .fnb-name { font-size: 28px; }
  .fnb-num { font-size: 48px; }
}

/* =====================================================
   AMENITIES (full estate facilities)
   ===================================================== */
.amenities {
  background: var(--tadelakt-deep);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.amenity-cat {
  background: var(--tadelakt);
  padding: 28px 24px;
  border-top: 2px solid var(--terracotta);
  display: flex;
  flex-direction: column;
}

.amenity-cat h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--noir);
  margin-bottom: 16px;
  line-height: 1.2;
}

.amenity-cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-cat li {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--noir-soft);
  padding: 7px 0 7px 16px;
  position: relative;
  border-top: 0.5px solid rgba(166, 132, 90, 0.25);
}

.amenity-cat li:first-child { border-top: none; }

.amenity-cat li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 300;
}

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

@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-cat { padding: 24px 20px; }
}

/* =====================================================
   CLOSING WELCOME (Royaume du Maroc)
   ===================================================== */
.closing-welcome {
  background: var(--noir);
  color: var(--tadelakt);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.closing-welcome::before,
.closing-welcome::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background: var(--terracotta);
  left: 50%;
}

.closing-welcome::before { top: 32px; }
.closing-welcome::after { bottom: 32px; }

.closing-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow.center {
  text-align: center;
  margin-bottom: 32px;
}

.closing-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--tadelakt);
  letter-spacing: -0.005em;
}

.closing-text em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--laiton);
  margin: 40px auto 24px;
}

.closing-signature {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocre);
}

@media (max-width: 768px) {
  .closing-welcome { padding: 64px 0; }
  .closing-content { padding: 0 24px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--noir);
  color: var(--tadelakt);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(166, 132, 90, 0.3);
}

.footer-brand .logo-place { opacity: 0.6; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--tadelakt);
  opacity: 0.75;
  padding: 4px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover { opacity: 1; color: var(--terracotta); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--laiton);
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   STICKY WHATSAPP
   ===================================================== */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: var(--terracotta);
  color: var(--tadelakt);
  padding: 14px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -12px rgba(184, 90, 60, 0.5), 0 4px 12px -4px rgba(31, 26, 23, 0.2);
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.whatsapp-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-sticky:hover {
  background: var(--terracotta-deep);
  color: var(--tadelakt);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(184, 90, 60, 0.6);
}

.whatsapp-sticky svg { flex-shrink: 0; }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 23, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: min(90vw, 1400px);
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ocre);
  text-align: center;
  letter-spacing: 0.02em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  color: var(--tadelakt);
  font-size: 32px;
  font-family: var(--serif);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close { top: 24px; right: 24px; font-size: 36px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(245, 239, 230, 0.1);
  color: var(--terracotta);
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 98;
  background: var(--noir);
  color: var(--tadelakt);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 380px;
  box-shadow: 0 16px 40px -10px rgba(31, 26, 23, 0.4);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.visible { display: flex; }

.cookie-banner p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ocre-light);
}

.cookie-banner .btn { align-self: flex-start; }

.cookie-banner > div {
  display: flex;
  gap: 8px;
}

/* =====================================================
   REVEAL ANIMATIONS (intersection observer)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .offers-grid { grid-template-columns: 1fr; max-width: 600px; margin: 32px auto 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 32px auto 0; }
  .pricing-notes { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 20px; gap: 16px; }
  .btn-whatsapp-header { display: none; }

  .hero { min-height: 560px; }
  .hero-content { padding: 0 24px; }
  .hero-ctas { gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .estate-grid,
  .location-grid,
  .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .estate-photo,
  .location-photo { aspect-ratio: 16 / 11; max-height: 480px; }
  .location-photo { order: 0; }

  .estate-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 42px; }
  .distances { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .distance-num { font-size: 42px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .pillars { grid-template-columns: 1fr; gap: 32px; }

  .inquiry-form { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-meta { flex-direction: column; gap: 8px; align-items: flex-start; }

  .wedding-mention { flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 16px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-num { font-size: 52px; }
  .offer-price-tag { top: 12px; right: 12px; padding: 6px 12px; }
  .offer-price-tag strong { font-size: 15px; }

  .whatsapp-sticky { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 10px; }
  .whatsapp-sticky span { display: none; }
  .whatsapp-sticky { padding: 14px; }

  .lightbox { padding: 24px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }

  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.span-2-rows { grid-row: span 1; }
  .estate-stats { grid-template-columns: 1fr; }
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .site-header, .whatsapp-sticky, .cookie-banner, .lightbox { display: none !important; }
  .hero { height: auto; min-height: 0; }
}
