/* ==========================================================================
   MWALI SUITES — design system
   "Stays that elevate every moment"
   Palette: navy + gold + cream
   Fonts:  Cormorant Garamond (display) · Outfit (body)
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #0D1524;
  --navy-2:      #182338;
  --navy-3:      #2A2E35;
  --royal:       #3D4B68;
  --gold:        #D4AF37;
  --gold-deep:   #B89222;
  --gold-pale:   #F5E6A8;
  --champagne:   #E8D5A0;
  --cream:       #F7F5F0;
  --cream-deep:  #E7DDC6;
  --cream-light: #FAF9F3;
  --ink:         #0D1524;
  --ink-2:       #2A2E35;
  --ink-3:       #5A6275;
  --ink-4:       #8B92A3;
  --border:      #DCD3BD;
  --border-deep: #B8AC8E;
  --line-soft:   rgba(13,21,36,0.08);
  --line-gold:   rgba(212,175,55,0.35);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Radius / shadow */
  --r-sm: 4px;
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(13,21,36,.06), 0 1px 3px rgba(13,21,36,.04);
  --shadow:    0 2px 4px rgba(13,21,36,.06), 0 8px 16px rgba(13,21,36,.08);
  --shadow-lg: 0 4px 8px rgba(13,21,36,.08), 0 24px 48px rgba(13,21,36,.14);
  --shadow-xl: 0 8px 16px rgba(13,21,36,.10), 0 40px 80px rgba(13,21,36,.22);

  /* Container */
  --container: 1240px;
  --container-wide: 1380px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold-deep); }

::selection { background: var(--gold-pale); color: var(--navy); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display       { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.005em; }
.display-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); opacity: .9; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 6vw, 78px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin: 0 0 1em; }
.lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; color: var(--ink-2); }

.divider-gold {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 18px 0;
}
.divider-gold.center { margin: 18px auto; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container       { max-width: var(--container);      margin: 0 auto; padding: 0 28px; }
.container-wide  { max-width: var(--container-wide); margin: 0 auto; padding: 0 28px; }
.section         { padding: 96px 0; }
.section-sm      { padding: 64px 0; }
.section-lg      { padding: 128px 0; }

@media (max-width: 720px) {
  .section    { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .container, .container-wide { padding: 0 20px; }
}

.bg-cream      { background: var(--cream); }
.bg-cream-lt   { background: var(--cream-light); }
.bg-cream-dp   { background: var(--cream-deep); }
.bg-navy       { background: var(--navy); color: var(--cream); }
.bg-navy-grad  { background: linear-gradient(180deg, #0D1524 0%, #182338 100%); color: var(--cream); }

.text-center { text-align: center; }
.max-prose   { max-width: 720px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 21, 36, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(212,175,55,.25);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav.solid {
  background: #0D1524;
  border-bottom-color: rgba(212,175,55,.25);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.nav-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.nav-brand .nb-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--gold);
  line-height: 1;
  text-transform: uppercase;
}
.nav-brand .nb-tag {
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: .8;
  margin-top: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,245,240,.78);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%; left: 0;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-inner { padding: 14px 20px; }
  .nav-brand .nb-name { font-size: 18px; letter-spacing: .18em; }
  .nav-brand img { width: 48px; height: 48px; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--navy);
  border-left: 1px solid rgba(212,175,55,.3);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
  z-index: 70;
  padding: 80px 28px 28px;
  color: var(--cream);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,245,240,.85);
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .nav-cta {
  display: inline-flex;
  margin-top: 22px;
}
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-scrim.show { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-bg img.active { opacity: .65; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,21,36,.45) 0%, rgba(13,21,36,.20) 35%, rgba(13,21,36,.85) 100%),
    radial-gradient(ellipse at top right, rgba(212,175,55,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(212,175,55,.018) 40px, rgba(212,175,55,.018) 41px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 200px 28px 96px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  line-height: 1.04;
  margin: 24px 0 24px;
  color: var(--cream);
  max-width: 17ch;
}
.hero h1 em { font-style: italic; color: var(--gold-pale); }
.hero p.lede {
  max-width: 56ch;
  color: rgba(247,245,240,.82);
  font-size: clamp(16px, 1.35vw, 19px);
}
.hero-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Slide indicators */
.hero-dots {
  position: absolute;
  bottom: 38px;
  right: 38px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  appearance: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.hero-dots button.active {
  width: 32px;
  border-radius: 999px;
  background: var(--gold);
  border-color: var(--gold);
}

/* Sub-page hero (shorter) */
.subhero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
  color: var(--cream);
}
.subhero .hero-bg img.active { opacity: .55; }
.subhero .hero-inner { padding: 180px 28px 72px; }
.subhero h1 { font-size: clamp(40px, 5.4vw, 72px); margin: 18px 0 14px; max-width: 22ch; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-pale); color: var(--navy); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,245,240,.45);
}
.btn-ghost:hover { background: rgba(247,245,240,.08); color: var(--gold-pale); border-color: var(--gold); }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-2); color: var(--gold-pale); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { color: var(--navy); margin: 12px 0 18px; }
.section-head p  { color: var(--ink-3); }
.section-head.left { text-align: left; margin: 0 0 56px; }

/* ==========================================================================
   CARDS · STAYS / SERVICES
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-deep);
}
.card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--navy);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body .eyebrow { margin-bottom: 8px; }
.card-body h3 { color: var(--navy); margin-bottom: 12px; }
.card-body p { color: var(--ink-3); flex: 1; }
.card-body .cta-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap .2s ease, color .2s ease;
}
.card:hover .cta-link { gap: 14px; color: var(--gold-deep); }

/* Compact pill list inside cards */
.feat-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feat-list li {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 5px 12px;
  background: var(--cream-deep);
  color: var(--navy);
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   FEATURED PROPERTY / SPLIT BLOCK
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse > :first-child { order: 2; }
.split .media {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .body h2 { color: var(--navy); margin: 12px 0 18px; }
.split .body p  { color: var(--ink-3); }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .split .media { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .v {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.stat .v .g { color: var(--gold-deep); }
.stat .k {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); padding: 22px 12px; }
  .stat:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ==========================================================================
   PILLAR / FEATURE ICONS
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media (max-width: 1024px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars { grid-template-columns: 1fr; } }
.pillar {
  text-align: left;
}
.pillar .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.2);
}
.pillar h4 { color: var(--navy); margin-bottom: 8px; }
.pillar p { color: var(--ink-3); font-size: 15px; }

/* ==========================================================================
   QUOTES / TESTIMONIALS
   ========================================================================== */
.quote-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(212,175,55,.10) 0%, transparent 50%);
  pointer-events: none;
}
.quote {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 18px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  margin: 0 0 28px;
  color: var(--cream);
}
.quote .by {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: .8;
}

/* ==========================================================================
   PARTNER CARDS
   ========================================================================== */
.partner-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
}
.partner-card .badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: inset 0 0 0 2px var(--gold), inset 0 0 0 6px var(--navy), 0 12px 24px rgba(13,21,36,.18);
}
.partner-card h3 { color: var(--navy); margin-bottom: 6px; }
.partner-card .role {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.partner-card p { color: var(--ink-3); margin: 0; }
@media (max-width: 640px) {
  .partner-card { grid-template-columns: 1fr; text-align: center; }
  .partner-card .badge { margin: 0 auto; }
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background:
    linear-gradient(180deg, rgba(13,21,36,.85), rgba(13,21,36,.92)),
    url('../img/banner-g2a1-1920x630-1.webp') center/cover no-repeat;
  color: var(--cream);
  padding: 96px 28px;
  text-align: center;
  position: relative;
}
.cta-band::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  width: 240px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 { color: var(--cream); max-width: 22ch; margin: 14px auto 18px; }
.cta-band p  { color: rgba(247,245,240,.78); max-width: 56ch; margin: 0 auto 32px; }
.cta-band .btn-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #06101F;
  color: rgba(247,245,240,.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(212,175,55,.15);
}
.footer-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
.footer-brand img {
  width: 84px; height: 84px; object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
}
.footer-brand h3 {
  font-size: 22px; color: var(--gold);
  letter-spacing: .22em; text-transform: uppercase;
  margin: 14px 0 8px;
}
.footer-brand p { max-width: 38ch; font-size: 14px; line-height: 1.7; }
.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 5px 0; font-size: 14px; }
.footer ul li a { color: rgba(247,245,240,.7); }
.footer ul li a:hover { color: var(--gold); }
.footer-base {
  max-width: var(--container-wide);
  margin: 56px auto 0;
  padding: 22px 28px 0;
  border-top: 1px solid rgba(212,175,55,.12);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: rgba(247,245,240,.45);
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form {
  display: grid;
  gap: 18px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) { .form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.masonry {
  column-count: 3;
  column-gap: 14px;
}
.masonry img {
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
}
.masonry img:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 520px) { .masonry { column-count: 1; } }

/* ==========================================================================
   COMING SOON RIBBON
   ========================================================================== */
.ribbon {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].in { transition-delay: .12s; }
[data-reveal-delay="2"].in { transition-delay: .24s; }
[data-reveal-delay="3"].in { transition-delay: .36s; }
[data-reveal-delay="4"].in { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg img { transition: none; }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 16px rgba(37,211,102,.35),
    0 12px 32px rgba(0,0,0,.18);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, gap .25s ease;
  overflow: hidden;
  white-space: nowrap;
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; flex-shrink: 0; }
.wa-fab .lbl {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transition: max-width .35s ease, opacity .25s ease .05s, margin-left .35s ease;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(37,211,102,.45),
    0 16px 40px rgba(0,0,0,.22);
  width: auto;
  padding: 0 22px 0 16px;
  border-radius: 999px;
}
.wa-fab:hover .lbl {
  max-width: 200px;
  opacity: 1;
  margin-left: 10px;
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(37,211,102,.35);
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: .55; }
  70%  { transform: scale(1.35); opacity: 0;   }
  100% { transform: scale(1.35); opacity: 0;   }
}
@media (max-width: 600px) {
  .wa-fab { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.gold { color: var(--gold-deep); }
.navy { color: var(--navy); }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.flex-row {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  background: rgba(212,175,55,.06);
}
.tag.on-dark {
  color: var(--gold);
  border-color: rgba(212,175,55,.5);
  background: rgba(212,175,55,.10);
}
