/* ============================================================
   RIAD SEBTI SPA — AFTER DESIGN PROPOSAL
   Original HTML/CSS — not derived from riadsebti.com source
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --cream:        #FAF6F0;
  --cream-deep:   #EDE4D8;
  --dark:         #1C0F09;
  --dark-mid:     #2E1A10;
  --terra:        #8B3A2A;
  --terra-hover:  #A34636;
  --gold:         #C09A52;
  --gold-hover:   #D4AE68;
  --text:         #3C2A1E;
  --text-muted:   #7A6557;
  --border:       #DDD0C0;
  --white:        #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --pad:   clamp(1.25rem, 5vw, 2rem);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm:  0 1px 4px rgba(28,15,9,.07);
  --shadow-md:  0 4px 20px rgba(28,15,9,.11);
  --shadow-lg:  0 10px 40px rgba(28,15,9,.16);

  --ease:    0.3s ease;
  --ease-lg: 0.55s cubic-bezier(.22,1,.36,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
p  { color: var(--text); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm  { font-size: .85rem;  padding: .55rem 1.2rem; }
.btn-md  { font-size: .95rem;  padding: .75rem 1.6rem; }
.btn-lg  { font-size: 1rem;    padding: .9rem  2rem;   }
.btn-block { width: 100%; display: flex; }

.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover { background: var(--terra-hover); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-hover); box-shadow: 0 6px 24px rgba(192,154,82,.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,246,240,.5);
}
.btn-outline-light:hover {
  background: rgba(250,246,240,.12);
  border-color: var(--cream);
  color: var(--white);
}

/* ── Common section elements ── */
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-desc {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: .75rem;
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--ease-lg), transform var(--ease-lg);
}
.reveal.reveal-right { transform: translateX(28px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ══════════════════════════════════════════
   PROPOSAL BANNER
══════════════════════════════════════════ */
.proposal-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding: .6rem var(--pad);
  background: #1C0F09;
  color: #E8C97A;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: center;
  z-index: 200;
  position: relative;
}
.proposal-banner .banner-icon { font-size: 1em; }
.proposal-banner a {
  color: var(--gold-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.proposal-banner a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.logo { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.logo:hover .logo-main { color: var(--terra); }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--terra); background: rgba(139,58,42,.06); }

.header-right { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 1rem var(--pad) 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  display: block;
  padding: .7rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}
.mobile-menu a:hover { background: rgba(139,58,42,.07); color: var(--terra); }
.mobile-cta {
  margin-top: .5rem;
  background: var(--terra) !important;
  color: var(--white) !important;
  text-align: center;
}
.mobile-cta:hover { background: var(--terra-hover) !important; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #5A2010 0%, #2E1208 40%, #1C0A04 100%);
}

/* Subtle geometric overlay — Moroccan star motif in CSS */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C09A52' stroke-opacity='0.10' stroke-width='1'%3E%3Cpolygon points='40,8 46,26 64,26 50,38 56,56 40,44 24,56 30,38 16,26 34,26'/%3E%3Crect x='10' y='10' width='60' height='60' stroke-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* Ambient warm glow */
.hero-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(192,154,82,.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--pad);
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250,246,240,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(250,246,240,.45);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,246,240,.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .45; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  padding: 1.5rem 0;
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(250,246,240,.7);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-text p:not(.about-lead):not(.section-eyebrow) {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img { width: 100%; object-fit: cover; display: block; }
.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,15,9,.25));
  z-index: 1;
}

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.badge-star { font-size: .9rem; letter-spacing: .08em; }
.badge-label { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   ROOMS
══════════════════════════════════════════ */
.rooms-section { background: var(--cream-deep); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.04); }

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(28,15,9,.7);
  color: rgba(250,246,240,.9);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.room-tag--gold {
  background: var(--gold);
  color: var(--dark);
}

.room-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .75rem;
}
.room-body h3 { font-size: 1.25rem; }
.room-body > p { color: var(--text-muted); font-size: .92rem; flex: 1; }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.room-features li {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-deep);
  padding: .25rem .65rem;
  border-radius: 999px;
}

.room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  gap: .5rem;
}
.room-price { display: flex; flex-direction: column; gap: 0; }
.price-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.price-val   { font-size: .9rem; font-weight: 600; color: var(--dark); }

.rooms-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ══════════════════════════════════════════
   ORNAMENT DIVIDER
══════════════════════════════════════════ */
.ornament {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.orn-line { flex: 1; height: 1px; background: var(--border); }
.orn-diamond {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SPLIT SECTIONS (RESTAURANT / SPA)
══════════════════════════════════════════ */
.split-section { background: var(--cream); }
.spa-bg {
  background: var(--dark-mid);
}
.spa-bg .section-eyebrow { color: var(--gold); }
.spa-bg h2              { color: var(--white); }
.spa-bg p               { color: rgba(250,246,240,.72); }
.spa-bg .split-lead     { color: rgba(250,246,240,.85); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.split-lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.split-text h2    { margin-bottom: 1.25rem; }
.split-text p:not(.section-eyebrow):not(.split-lead) {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.spa-bg .split-text p:not(.section-eyebrow):not(.split-lead) {
  color: rgba(250,246,240,.6);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.feature-list li svg { color: var(--gold); margin-top: .22em; flex-shrink: 0; }
.spa-bg .feature-list li { color: rgba(250,246,240,.7); }
.spa-bg .feature-list li svg { color: var(--gold-hover); }

/* ══════════════════════════════════════════
   DISCOVER FEZ
══════════════════════════════════════════ */
.fez-section { background: var(--cream-deep); }

.fez-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.fez-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.fez-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fez-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.fez-card h3 { font-size: 1.15rem; margin-bottom: .65rem; }
.fez-card p  { color: var(--text-muted); font-size: .92rem; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-section { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.review-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: .06em; }
.review-card > p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.review-card footer { display: flex; flex-direction: column; gap: .15rem; }
.review-card footer strong { font-size: .9rem; color: var(--dark); font-weight: 600; }
.review-card footer span  { font-size: .78rem; color: var(--text-muted); }

.reviews-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ══════════════════════════════════════════
   BOOK / CONTACT
══════════════════════════════════════════ */
.book-section {
  background: var(--dark);
}
.book-section .section-eyebrow { color: var(--gold); }
.book-section h2               { color: var(--white); }
.book-section .book-intro      { color: rgba(250,246,240,.65); margin-bottom: 2rem; }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* Form */
.inquiry-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(250,246,240,.6);
  text-transform: uppercase;
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.10);
}
.form-group select option { background: var(--dark-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: .78rem;
  color: rgba(250,246,240,.4);
  text-align: center;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.form-success h3 { color: var(--white); }
.form-success p  { color: rgba(250,246,240,.6); }

/* Contact side */
.contact-block h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.contact-block > p { color: rgba(250,246,240,.65); margin-bottom: 1.5rem; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  margin-bottom: 2rem;
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transform: translateY(-1px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(250,246,240,.65);
}
.contact-detail svg { color: var(--gold); margin-top: .2em; flex-shrink: 0; }
.contact-detail a   { color: var(--gold-hover); transition: color var(--ease); }
.contact-detail a:hover { color: var(--white); }

/* Map placeholder */
.map-placeholder {
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem;
  text-align: center;
}
.map-inner svg { color: var(--gold); opacity: .6; }
.map-inner p   { font-size: .85rem; color: rgba(250,246,240,.4); }
.map-inner .btn-outline {
  border-color: rgba(250,246,240,.3);
  color: rgba(250,246,240,.6);
}
.map-inner .btn-outline:hover {
  background: rgba(250,246,240,.08);
  color: var(--white);
  border-color: rgba(250,246,240,.5);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #120A04;
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.footer-tagline {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc { font-size: .88rem; color: rgba(250,246,240,.4); line-height: 1.65; }

.footer-col h4 { color: rgba(250,246,240,.5); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(250,246,240,.55);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold-hover); }
.footer-col address { display: flex; flex-direction: column; gap: .5rem; }
.footer-col address p { font-size: .88rem; color: rgba(250,246,240,.5); }
.footer-col address a { color: rgba(250,246,240,.55); }
.footer-col address a:hover { color: var(--gold-hover); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(250,246,240,.3); }
.footer-proposal { font-style: italic; }

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav      { display: none; }
  .hamburger { display: flex; }

  .about-grid       { grid-template-columns: 1fr; }
  .about-image      { order: -1; }
  .image-frame      { max-height: 380px; overflow: hidden; }
  .image-frame img  { height: 380px; object-fit: cover; }

  .rooms-grid  { grid-template-columns: 1fr 1fr; }

  .split-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse      { direction: ltr; }
  .split-img          { max-height: 340px; }
  .split-img img      { height: 340px; object-fit: cover; }

  .fez-grid    { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .book-grid   { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-ctas  { flex-direction: column; align-items: center; }
  .btn-lg     { width: 100%; max-width: 280px; }

  .trust-list  { gap: 1rem 1.5rem; justify-content: flex-start; }

  .rooms-grid  { grid-template-columns: 1fr; }
  .fez-grid    { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}
