/* ═══════════════════════════════════════════════
   THE MARQ — style.css
   Luxury real estate. White & black. Gold accent.
   Cormorant Garamond × Inter
═══════════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --black: #0e0d0b;
  --ink: #1a1813;
  --ink2: #5a5650;
  --line: #e8e4dc;
  --paper: #f8f5ef;
  --cream: #faf7f2;
  --gold: #b08d4a;
  --gold2: #8c6e36;
  --dark: #111009;
  --dark2: #1e1c17;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--cream { background: var(--cream); }

/* ── Typography ── */
.eyebrow { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 14px; }
.eyebrow--light { color: var(--gold); }
.h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; line-height: 1.08; color: var(--ink); }
.h2 em { font-style: italic; color: var(--gold2); }
.h2--light { color: var(--white); }
.h2--light em { color: var(--gold); }
.body-text { font-size: 1rem; color: var(--ink2); line-height: 1.75; margin-bottom: 20px; }
.body-text strong { color: var(--ink); }
.section-sub { font-size: 1.05rem; color: var(--ink2); max-width: 640px; margin-bottom: 48px; line-height: 1.7; }
.note { font-size: .76rem; color: var(--ink2); margin-top: 28px; font-style: italic; }

/* ═══ PRELOADER ═══ */
.preloader { position: fixed; inset: 0; z-index: 1000; background: var(--white); display: flex; align-items: center; justify-content: center; transition: opacity .6s var(--ease), visibility .6s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__mark { font-family: var(--serif); font-size: 5rem; font-weight: 600; color: var(--ink); line-height: 1; animation: pulse 1.4s ease-in-out infinite; }
.preloader__bar { width: 120px; height: 1px; background: var(--line); margin: 20px auto 0; overflow: hidden; }
.preloader__fill { height: 100%; background: var(--gold); animation: load 1.4s var(--ease) forwards; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes load { from{width:0} to{width:100%} }

/* ═══ TOP BAR ═══ */
.topbar { background: var(--dark); color: #c8c3b8; font-size: .74rem; letter-spacing: .04em; }
.topbar__row { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; gap: 16px; }
.topbar__links { display: flex; gap: 20px; }
.topbar__links a:hover { color: var(--gold); }
@media (max-width: 640px) { .topbar__row span:first-child { display: none; } .topbar__row { justify-content: center; } }

/* ═══ HEADER ═══ */
.header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.94); backdrop-filter: blur(12px) saturate(180%); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 4px 24px rgba(14,13,11,.08); }
.header__row { display: flex; align-items: center; gap: 32px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__emblem { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.logo__text { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; line-height: 1.1; display: flex; flex-direction: column; }
.logo__text span { font-family: var(--sans); font-size: .6rem; font-weight: 400; color: var(--ink2); letter-spacing: .06em; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: .86rem; font-weight: 500; letter-spacing: .02em; color: var(--ink2); transition: color .2s; position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-wa { display: flex; align-items: center; gap: 7px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 2px; font-size: .82rem; font-weight: 500; transition: .2s; }
.btn-wa:hover { border-color: #25D366; color: #25D366; }
.btn-enquire { background: var(--ink); color: var(--white); padding: 9px 20px; border-radius: 2px; font-size: .82rem; font-weight: 600; transition: .2s; }
.btn-enquire:hover { background: var(--gold2); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 1px solid var(--line); border-radius: 2px; padding: 9px 10px; cursor: pointer; margin-left: auto; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: .3s; }
@media (max-width: 960px) { .nav,.header__actions { display: none; } .burger { display: flex; } .nav.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 8px 0; z-index: 90; } .nav.open a { padding: 14px 24px; border-bottom: 1px solid var(--line); } }

/* ═══ HERO ═══ */
.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 80px; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__slide.active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,7,.75) 0%, rgba(10,9,7,.35) 50%, rgba(10,9,7,.15) 100%); }
.hero__content { position: relative; z-index: 2; color: var(--white); padding-bottom: 20px; }
.hero__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero__title { font-family: var(--serif); font-size: clamp(5rem, 13vw, 10rem); font-weight: 600; line-height: .9; letter-spacing: .04em; margin-bottom: 22px; }
.hero__title-sub { display: block; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 400; font-style: italic; color: rgba(255,255,255,.7); letter-spacing: .06em; margin-bottom: 6px; }
.hero__tagline { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 36px; max-width: 540px; }
.hero__stats { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.hero__stat { padding: 0 28px; text-align: center; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat strong { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; color: var(--white); }
.hero__stat span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero__stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-primary { background: var(--gold); color: var(--white); padding: 16px 32px; border-radius: 2px; font-size: .9rem; font-weight: 600; letter-spacing: .04em; transition: background .2s; }
.cta-primary:hover { background: var(--gold2); }
.cta-ghost { border: 1px solid rgba(255,255,255,.4); color: var(--white); padding: 16px 28px; border-radius: 2px; font-size: .9rem; font-weight: 500; transition: border-color .2s, background .2s; }
.cta-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.hero__dots { position: absolute; bottom: 32px; right: 32px; z-index: 3; display: flex; gap: 8px; }
.hero__dot { width: 28px; height: 2px; background: rgba(255,255,255,.3); border: 0; cursor: pointer; transition: .3s; padding: 0; }
.hero__dot.active { background: var(--gold); width: 48px; }
.scroll-cue { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue__line { width: 1px; height: 40px; background: rgba(255,255,255,.3); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ═══ STAT BAND ═══ */
.band { background: var(--dark2); border-top: 1px solid #2a2820; border-bottom: 1px solid #2a2820; }
.band__row { display: flex; align-items: center; padding: 28px 24px; overflow-x: auto; gap: 0; }
.band__item { flex: 1; min-width: 140px; text-align: center; }
.band__num { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.band__label { font-size: .72rem; color: #9b9590; text-transform: uppercase; letter-spacing: .1em; }
.band__div { width: 1px; height: 36px; background: #3a372e; flex-shrink: 0; }

/* ═══ TWO-COL ═══ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.icon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.icon-item { display: flex; gap: 14px; align-items: flex-start; }
.icon-box { width: 44px; height: 44px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--gold2); flex-shrink: 0; border-radius: 2px; }
.icon-item strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.icon-item p { font-size: .8rem; color: var(--ink2); margin: 0; }
.img-stack { position: relative; }
.img-stack__main { width: 100%; height: 540px; object-fit: cover; border-radius: 2px; }
.img-stack__badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 18px 22px; border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.img-stack__badge strong { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 2px; }
.img-stack__badge span { font-size: .76rem; color: var(--ink2); text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } .two-col--reverse { direction: ltr; } .img-stack__main { height: 340px; } .img-stack__badge { bottom: -14px; left: 14px; } }

/* ═══ GALLERY ═══ */
.gallery { padding: 0 0 80px; }
.gallery__grid { padding: 0 24px; max-width: var(--max); margin: 0 auto 16px; display: grid; gap: 16px; }
.gallery__grid--1 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 400px; }
.gallery__item--hero { grid-row: span 1; }
.gallery__grid--2 { grid-template-columns: 1fr 1fr 2fr 1fr; grid-template-rows: 260px; }
.gallery__item--wide { }
.gallery__grid--3 { grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px; }
.gallery__item { margin: 0; overflow: hidden; position: relative; border-radius: 2px; cursor: pointer; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,9,7,.7), transparent); color: white; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; padding: 16px 14px 12px; opacity: 0; transition: opacity .3s; }
.gallery__item:hover figcaption { opacity: 1; }
@media (max-width: 900px) {
  .gallery__grid--1 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--hero { grid-column: span 2; height: 260px; }
  .gallery__grid--2 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--wide { grid-column: span 2; height: 200px; }
  .gallery__grid--3 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item { height: 180px; }
}
@media (max-width: 560px) {
  .gallery__grid--1,.gallery__grid--2,.gallery__grid--3 { grid-template-columns: 1fr; }
  .gallery__item--hero,.gallery__item--wide { grid-column: span 1; }
}

/* ═══ AMENITY TABS ═══ */
.amenity-tabs { margin-top: 48px; }
.amenity-tabs__nav { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 40px; overflow-x: auto; }
.atab { background: none; border: 0; border-bottom: 2px solid transparent; padding: 12px 24px; font-size: .88rem; font-weight: 500; color: var(--ink2); cursor: pointer; transition: .2s; white-space: nowrap; margin-bottom: -1px; }
.atab.active,.atab:hover { color: var(--ink); border-bottom-color: var(--gold); }
.acontent { display: none; }
.acontent.active { display: block; }
.amenity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.acard { border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.acard__img { height: 220px; background-size: cover; background-position: center; transition: transform .5s var(--ease); }
.acard:hover .acard__img { transform: scale(1.04); }
.acard h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin: 20px 20px 8px; }
.acard p { font-size: .88rem; color: var(--ink2); margin: 0 20px 20px; line-height: 1.6; }
@media (max-width: 760px) { .amenity-cards { grid-template-columns: 1fr; } }

/* ═══ UNIT CARDS ═══ */
.units-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.unit-card { border: 1px solid var(--line); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.unit-card:hover { box-shadow: 0 20px 60px rgba(14,13,11,.1); transform: translateY(-4px); }
.unit-card--featured { border-color: var(--gold); position: relative; }
.unit-card__top { position: relative; }
.unit-img { height: 240px; background-size: cover; background-position: center; transition: transform .5s var(--ease); }
.unit-card:hover .unit-img { transform: scale(1.04); }
.unit-card__top { overflow: hidden; }
.unit-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95); padding: 5px 12px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border-radius: 1px; }
.unit-tag--gold { background: var(--gold); color: #fff; }
.unit-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.unit-card__body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.unit-size { font-size: 1.5rem; font-family: var(--serif); font-weight: 600; color: var(--gold2); margin-bottom: 16px; line-height: 1; }
.unit-size span { display: block; font-family: var(--sans); font-size: .72rem; color: var(--ink2); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.unit-features { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.unit-features li { font-size: .88rem; color: var(--ink2); padding-left: 16px; position: relative; }
.unit-features li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.unit-price { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); margin-top: auto; margin-bottom: 16px; }
.unit-price span { font-family: var(--sans); font-size: .76rem; color: var(--ink2); font-weight: 400; }
.unit-cta { display: block; text-align: center; border: 1px solid var(--ink); padding: 12px; font-size: .86rem; font-weight: 600; letter-spacing: .04em; transition: .2s; }
.unit-cta:hover { background: var(--ink); color: var(--white); }
.unit-cta--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.unit-cta--gold:hover { background: var(--gold2); border-color: var(--gold2); }
@media (max-width: 900px) { .units-grid { grid-template-columns: 1fr; } }

/* ═══ USP STRIP ═══ */
.usp-strip { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp-strip__inner { display: flex; align-items: stretch; padding: 32px 24px; overflow-x: auto; gap: 0; }
.usp { flex: 1; min-width: 160px; display: flex; gap: 12px; align-items: flex-start; padding: 0 24px; border-right: 1px solid var(--line); }
.usp:first-child { padding-left: 0; }
.usp:last-child { border-right: 0; }
.usp svg { color: var(--gold2); flex-shrink: 0; margin-top: 2px; }
.usp strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.usp p { font-size: .78rem; color: var(--ink2); margin: 0; }

/* ═══ LOCATION ═══ */
.map-wrap { position: relative; border-radius: 2px; overflow: hidden; height: 480px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-badge { position: absolute; bottom: 20px; left: 20px; background: var(--white); padding: 14px 18px; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.map-badge strong { display: block; font-family: var(--serif); font-size: 1rem; }
.map-badge span { font-size: .76rem; color: var(--ink2); }
.location-list { list-style: none; padding: 0; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.location-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink2); }
.lpin { flex-shrink: 0; width: 22px; }
.location-list strong { color: var(--ink); }
@media (max-width: 900px) { .map-wrap { height: 300px; } }

/* ═══ FAQ ═══ */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.faq-layout__sticky { position: sticky; top: 100px; }
.faq-contact-btn { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid #3a3730; color: var(--white); font-size: .86rem; font-weight: 500; transition: .2s; border-radius: 2px; }
.faq-contact-btn:hover { border-color: var(--gold); color: var(--gold); }
.faq-contact-btn--wa:hover { border-color: #25D366; color: #25D366; }
.faq-items { border-top: 1px solid #2e2c26; }
.faq-item { border-bottom: 1px solid #2e2c26; }
.faq-q { width: 100%; background: none; border: 0; padding: 22px 0; color: var(--white); font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.4; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a.open { max-height: 400px; }
.faq-a p { color: #b8b3aa; font-size: .92rem; line-height: 1.75; padding-bottom: 20px; }
.faq-a a { color: var(--gold); }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 40px; } .faq-layout__sticky { position: static; } }

/* ═══ CONTACT ═══ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-photo { margin-top: 28px; position: relative; border-radius: 2px; overflow: hidden; height: 380px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,9,7,.75), transparent); color: var(--white); padding: 24px 20px 16px; }
.contact-photo__overlay strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.contact-photo__overlay span { font-size: .78rem; opacity: .8; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.form input,.form select,.form textarea { font: inherit; padding: 13px 14px; border: 1px solid var(--line); border-radius: 2px; background: var(--white); color: var(--ink); font-size: .92rem; transition: border-color .2s; }
.form input:focus,.form select:focus,.form textarea:focus { border-color: var(--gold); outline: none; }
.form textarea { resize: vertical; min-height: 90px; }
.form-submit { background: var(--ink); color: var(--white); border: 0; padding: 16px 28px; font-size: .92rem; font-weight: 600; letter-spacing: .06em; cursor: pointer; border-radius: 2px; transition: background .2s; margin-top: 4px; }
.form-submit:hover { background: var(--gold2); }
.form-status { font-size: .84rem; min-height: 1.2em; }
.form-status.ok { color: #2e7d44; }
.form-status.err { color: #b23a2a; }
.form-note { font-size: .74rem; color: var(--ink2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-row { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */
.footer { background: var(--dark); color: #c8c3b8; padding-top: 56px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; align-items: start; padding-bottom: 40px; border-bottom: 1px solid #2a2820; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); width: 54px; height: 54px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand strong { display: block; font-family: var(--serif); color: var(--white); font-size: 1rem; letter-spacing: .1em; }
.footer-brand p { font-size: .78rem; color: #8a857d; margin-top: 4px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 20px; align-self: center; }
.footer-nav a { font-size: .84rem; color: #8a857d; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-contact a { font-size: .86rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-wa { display: flex; align-items: center; gap: 8px; color: #25D366; margin-top: 4px; font-weight: 600; }
.footer-disc { font-size: .73rem; color: #5e5a52; line-height: 1.75; padding: 24px 0 8px; }
.footer-disc a { color: #8a857d; text-decoration: underline; }
.footer-copy { font-size: .72rem; color: #4a4741; padding-bottom: 100px; margin-top: 8px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } .footer-contact { align-items: flex-start; } }

/* ═══ MOBILE BAR ═══ */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.06); }
.mobile-bar__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px 8px; font-size: .82rem; font-weight: 600; border-right: 1px solid var(--line); }
.mobile-bar__btn:last-child { border-right: 0; }
.mobile-bar__btn--wa { color: #25D366; }
.mobile-bar__btn--cta { background: var(--gold); color: var(--white); }
@media (max-width: 780px) { .mobile-bar { display: flex; } .section { padding-bottom: 116px; } .footer-copy { padding-bottom: 116px; } }

/* ═══ FLOATING WHATSAPP ═══ */
.float-wa { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,.35); transition: transform .2s; }
.float-wa:hover { transform: scale(1.08); }
.float-wa__pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: ripple 2s ease-out infinite; }
@keyframes ripple { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.8);opacity:0} }
@media (max-width: 780px) { .float-wa { bottom: 88px; } }

/* ═══ CHAT WIDGET ═══ */
/* .chat-widget positioning now inline in HTML */
.chat-trigger { width: 54px; height: 54px; background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform .2s, background .2s; }
.chat-trigger:hover { transform: scale(1.06); background: var(--dark2); }
/* chat panel — all styles now fully inline in HTML */
.chat-messages { min-height: 180px; max-height: 240px; overflow-y: auto; padding: 14px; background: var(--paper); display: flex; flex-direction: column; gap: 10px; }
.chat-msg--bot .chat-msg__bubble { background: var(--white); border: 1px solid var(--line); padding: 10px 13px; border-radius: 0 10px 10px 10px; font-size: .86rem; line-height: 1.55; max-width: 88%; }
.chat-msg--user .chat-msg__bubble { background: var(--ink); color: var(--white); padding: 10px 13px; border-radius: 10px 0 10px 10px; font-size: .86rem; line-height: 1.55; max-width: 88%; align-self: flex-end; }
.chat-msg--user { display: flex; justify-content: flex-end; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px; border-top: 1px solid var(--line); background: var(--white); }
.chat-quick button { font-size: .74rem; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; cursor: pointer; transition: .2s; }
.chat-quick button:hover { border-color: var(--gold); color: var(--gold2); }
.chat-input-row { display: flex; border-top: 1px solid var(--line); }
.chat-input-row input { flex: 1; border: 0; padding: 12px 14px; font: inherit; font-size: .88rem; background: transparent; }
.chat-input-row button { background: var(--gold); border: 0; width: 48px; cursor: pointer; color: var(--white); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.chat-input-row button:hover { background: var(--gold2); }
@media (max-width: 780px) { #chatWidget { bottom: 168px !important; right: 14px !important; } #chatPanel { width: calc(100vw - 28px) !important; right: 0 !important; } }

/* ═══ MODAL ═══ — all styles now inline in HTML */

/* ═══ SCROLL REVEAL ═══ */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease) var(--d,0s), transform .7s var(--ease) var(--d,0s); }
  .reveal-up.shown { opacity: 1; transform: none; }
}
