/* ============================================================
   Dubai Hills Agent
   Matched to dubaihillsagent.com: cream editorial canvas with
   warm dark bands, Cormorant Garamond headlines, DM Sans body,
   brass-gold accent. Verified against the live site's computed
   styles, July 2026.
   ============================================================ */

:root {
  /* Canvas and ink (light sections dominate, as on the live site) */
  --cream-bg:   #f6f3ee;   /* body canvas, hsl(33 33% 95%) */
  --cream-mut:  #f1ece3;   /* muted band, How I Work */
  --ink:        #1b1713;   /* body text on light */
  --ink-soft:   rgba(27,23,19,0.68);
  --ink-line:   rgba(27,23,19,0.1);

  /* Dark bands */
  --dark:       #1a1612;   /* communities, contact */
  --deep:       #13100c;   /* off-plan */
  --black:      #000000;   /* footer */
  --cream-text: #e8e0d5;   /* primary text on dark */
  --cream-dim:  rgba(232,224,213,0.72);
  --white-line: rgba(255,255,255,0.1);
  --white-line2:rgba(255,255,255,0.2);

  /* Accent */
  --gold:       #ba9d5a;   /* hsl(42 41% 54%) */
  --gold-soft:  rgba(186,157,90,0.5);
  --gold-tint:  rgba(186,157,90,0.1);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --r: 4px;
  --sec-pad: 128px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Sections ---------- */
.sec { padding: var(--sec-pad) 0; }
@media (max-width: 760px) { .sec { padding: 72px 0; } }

.sec--cream { background: var(--cream-bg); color: var(--ink); }
.sec--muted { background: var(--cream-mut); color: var(--ink); }
.sec--dark  { background: var(--dark); color: var(--cream-dim); }
.sec--deep  { background: var(--deep); color: var(--cream-dim); }

/* ---------- Type ---------- */
h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  max-width: 20ch;
}
.sec--dark h2, .sec--deep h2 { color: #ffffff; }

.body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.sec--dark .body, .sec--deep .body { color: var(--cream-dim); }

.sec__head { margin-bottom: 56px; }
.sec__head h2 { margin-bottom: 20px; }
.sec__intro { max-width: 62ch; }
.sec__stamp { margin-top: 16px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* Eyebrow: serif number, gold rule, uppercase label (live pattern) */
.eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.eyebrow .no { font-family: var(--serif); font-size: 24px; line-height: 1; color: var(--gold); }
.eyebrow .rule { width: 40px; height: 1px; background: var(--gold-soft); }
.eyebrow .t { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.sec--dark .eyebrow .t, .sec--deep .eyebrow .t { color: var(--cream-dim); }

/* ---------- Buttons (4px radius, 48px tall, live spec) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 32px;
  font-family: var(--sans); font-size: 16px; font-weight: 500; letter-spacing: 0.025em;
  border-radius: var(--r); border: 1px solid transparent;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn--solid { background: var(--gold); color: var(--cream-bg); border-color: var(--gold); }
.btn--solid:hover { background: #a98d4e; border-color: #a98d4e; }
.btn--ghost { background: transparent; color: #ffffff; border-color: var(--white-line2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--line { background: transparent; color: var(--ink); border-color: rgba(27,23,19,0.25); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }
.btn--onlight { color: #ffffff; }
.btn--nav { height: 40px; padding: 0 22px; font-size: 15px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.cta-row--center { justify-content: center; }

/* ============================================================
   NAV: fixed, transparent over hero, cream + blur once scrolled
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; background: transparent; border-bottom: 1px solid transparent; transition: background .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease; }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { height: 44px; width: auto; transition: filter .3s ease, height .3s ease; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 15px; color: #ffffff; letter-spacing: 0.01em; transition: color .25s ease; }
.nav__links a:hover { color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__social { display: flex; align-items: center; gap: 14px; }
.nav__social a { color: #ffffff; transition: color .25s ease; }
.nav__social a:hover { color: var(--gold); }
.nav__social svg { width: 19px; height: 19px; }

/* Scrolled state */
.nav.solid { background: rgba(246,243,238,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--ink-line); padding: 8px 0; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.nav.solid .nav__logo { filter: brightness(0); }
.nav.solid .nav__links a { color: var(--ink); }
.nav.solid .nav__links a:hover { color: var(--gold); }
.nav.solid .nav__social a { color: var(--ink); }
.nav.solid .nav__social a:hover { color: var(--gold); }

.nav__burger { display: none; background: none; border: none; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: #ffffff; margin: 5px 0; transition: .3s; }
.nav.solid .nav__burger span { background: var(--ink); }

@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-bg); border-bottom: 1px solid var(--ink-line);
    padding: 24px; gap: 16px;
  }
  .nav__links.open a { color: var(--ink); }
}
@media (max-width: 560px) { .nav__social { display: none; } }

/* ============================================================
   HERO: full-viewport image, dark gradient, left copy,
   stats band at the base (live treatment)
   ============================================================ */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, #1a1612 100%); }
.hero__main { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; width: 100%; padding-top: 128px; padding-bottom: 48px; }
.hero__text { max-width: 768px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 60ch; margin-bottom: 28px; }
.hero__tagline { font-size: 18px; font-style: italic; font-weight: 500; color: var(--gold); margin-bottom: 40px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* Floating glass stat cards over the hero image */
.glass {
  position: absolute; z-index: 2;
  background: rgba(19,16,12,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(186,157,90,0.35); border-radius: var(--r);
  padding: 15px 18px; min-width: 172px;
}
.glass .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.glass .v { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #ffffff; line-height: 1.05; margin-top: 5px; }
.glass--tl { top: 18%; right: 13%; }
.glass--br { bottom: 14%; right: 6%; }
@media (max-width: 1060px) { .glass { display: none; } }

/* Stats band at the foot of the hero */
.hero__stats { position: relative; z-index: 2; border-top: 1px solid var(--white-line); background: rgba(19,16,12,0.4); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 16px; border-left: 1px solid var(--white-line); }
.stat:first-child { border-left: none; }
.stat .n { font-family: var(--serif); font-size: 36px; font-weight: 700; line-height: 1; color: var(--gold); }
.stat .l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,224,213,0.6); margin-top: 8px; }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--white-line); }
}

/* ============================================================
   SPLIT (approach, buying agent)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.split--rev { grid-template-columns: 1fr; max-width: 860px; }
.split h2 { margin-bottom: 24px; }
.split .body + .body { margin-top: 16px; }
.split__media img { width: 100%; border-radius: var(--r); aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media { order: -1; }
  .split__media img { aspect-ratio: 16/11; }
}

/* Gold diamond bullet list */
.points { list-style: none; margin-top: 28px; }
.points li { position: relative; padding: 13px 0 13px 26px; border-top: 1px solid var(--ink-line); font-size: 15px; color: var(--ink-soft); }
.points li:first-child { border-top: none; }
.points li::before { content: ''; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.sec--dark .points li, .sec--deep .points li { border-color: var(--white-line); color: var(--cream-dim); }

/* ============================================================
   COMMUNITIES: dark band, 4-col hairline grid, tap/hover reveal
   ============================================================ */
.comms {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--white-line); border: 1px solid var(--white-line);
  border-radius: var(--r); overflow: hidden;
}
.comm { background: var(--dark); transition: background .3s ease; }
.comm:hover, .comm.open { background: rgba(255,255,255,0.04); }
.comm__top {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  width: 100%; text-align: left; background: none; border: none; padding: 28px;
  color: inherit;
}
.comm__no { font-family: var(--serif); font-size: 15px; color: var(--gold); }
.comm__name { font-family: var(--serif); font-size: 24px; font-weight: 700; line-height: 1.1; color: #ffffff; }
.comm__type { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(232,224,213,0.55); }
.comm__more { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; }
.comm__more i { font-style: normal; transition: transform .3s ease; }
.comm.open .comm__more i { transform: rotate(45deg); }
.comm__detail { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 28px; }
.comm.open .comm__detail { padding-bottom: 24px; }
.comm__detail .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--white-line); font-size: 13px; }
.comm__detail .row span:first-child { color: rgba(232,224,213,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.comm__detail .row span:last-child { color: var(--cream-text); }
.comm__detail p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--cream-dim); }
.comms__note { margin-top: 32px; font-size: 14px; color: var(--cream-dim); font-style: italic; }
@media (max-width: 1080px) { .comms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .comms { grid-template-columns: 1fr; } }

/* Desktop hover reveal (pointer devices) */
@media (hover: hover) {
  .comm:hover .comm__detail { max-height: 320px; padding-bottom: 24px; }
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.loc__map img { width: 100%; border-radius: var(--r); border: 1px solid var(--ink-line); }
.loc__times-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; }
.loc__times-head .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.loc__times-head .t { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.time-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--ink-line); }
.time-row .place { font-size: 15px; color: var(--ink); }
.time-row .mins { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--gold); }
.time-row .mins small { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); }
.loc__note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); font-style: italic; }
@media (max-width: 880px) { .loc { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   HOW I WORK: muted cream band, image + tabbed panels
   ============================================================ */
.work { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.work__media { position: sticky; top: 96px; }
.work__media img { width: 100%; border-radius: var(--r); aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 960px) {
  .work { grid-template-columns: 1fr; gap: 40px; }
  .work__media { position: static; }
  .work__media img { aspect-ratio: 16/10; }
}

.tabs { display: inline-flex; gap: 4px; padding: 4px; background: rgba(27,23,19,0.06); border-radius: var(--r); margin-bottom: 32px; }
.tab { border: none; background: transparent; padding: 8px 20px; border-radius: 3px; font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: background .25s ease, color .25s ease; }
.tab.active { background: var(--cream-bg); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

.panel { display: none; }
.panel.active { display: block; }
.panel .body + .body { margin-top: 14px; }
.panel .points { margin-bottom: 24px; }
.panel .body strong { color: var(--ink); font-weight: 600; }

.work__sub { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); margin: 32px 0 8px; }
.steps { list-style: none; }
.steps li { display: flex; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--ink-line); font-size: 15px; color: var(--ink-soft); }
.steps li:last-child { border-bottom: none; }
.steps li span { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--gold); flex: 0 0 30px; }

.note { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(186,157,90,0.35); border-radius: var(--r); background: var(--gold-tint); }
.note .t { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.note .b { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   OFF-PLAN CARDS (deep dark band)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.card { border: 1px solid var(--white-line); border-radius: var(--r); padding: 32px 26px; background: rgba(255,255,255,0.02); transition: border-color .3s ease; }
.card:hover { border-color: rgba(186,157,90,0.4); }
.card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: #ffffff; margin-bottom: 12px; }
.card p { font-size: 14px; line-height: 1.65; color: var(--cream-dim); }
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ============================================================
   DEVELOPER MARQUEE
   ============================================================ */
.marquee__label { margin: 56px 0 24px; text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(232,224,213,0.5); }
.marquee { overflow: hidden; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); padding: 40px 0; }
.marquee__track { display: flex; gap: 80px; width: max-content; animation: scroll 55s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.45; transition: opacity .3s; }
.marquee img:hover { opacity: 0.9; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; border-top: 1px solid var(--ink-line); }
.faq__item { border-bottom: 1px solid var(--ink-line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .25s ease; }
.faq__q:hover { color: var(--gold); }
.faq__q .ico { flex: 0 0 auto; width: 18px; height: 18px; position: relative; }
.faq__q .ico::before, .faq__q .ico::after { content: ''; position: absolute; background: var(--gold); }
.faq__q .ico::before { top: 8px; left: 0; width: 18px; height: 1.5px; }
.faq__q .ico::after { top: 0; left: 8px; width: 1.5px; height: 18px; transition: transform .3s ease; }
.faq__item.open .ico::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 32px 24px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 70ch; }

/* ============================================================
   CONTACT (dark band)
   ============================================================ */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact__aside .line { display: flex; gap: 12px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--white-line); font-size: 15px; color: var(--cream-text); }
.contact__aside .line .k { color: rgba(232,224,213,0.5); flex: 0 0 88px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact__aside .line a:hover { color: var(--gold); }
.socials { display: flex; gap: 16px; flex-wrap: wrap; }
.socials a { color: var(--cream-text); }
.socials a:hover { color: var(--gold); }

.trust { margin-top: 40px; border: 1px solid var(--white-line); border-radius: var(--r); padding: 24px; }
.trust__head { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #ffffff; margin-bottom: 12px; }
.trow { display: flex; gap: 12px; padding: 9px 0; border-top: 1px solid var(--white-line); font-size: 14px; color: var(--cream-dim); }
.trow .k { flex: 0 0 100px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,224,213,0.5); padding-top: 2px; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border: 1px solid var(--white-line); border-radius: var(--r); padding: 32px; background: rgba(255,255,255,0.02); }
.form__title { grid-column: 1 / -1; font-family: var(--serif); font-size: 28px; font-weight: 600; color: #ffffff; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(232,224,213,0.6); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--cream-text);
  background: rgba(255,255,255,0.04); border: 1px solid var(--white-line2); border-radius: var(--r);
  padding: 12px 14px; transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(232,224,213,0.4); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }

.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg__btn { border: 1px solid var(--white-line2); background: transparent; color: var(--cream-dim); border-radius: var(--r); padding: 9px 18px; font-size: 14px; transition: all .25s ease; }
.seg__btn:hover { border-color: var(--gold); color: var(--gold); }
.seg__btn.active { background: var(--gold); border-color: var(--gold); color: var(--deep); font-weight: 500; }

.form__submit { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form__hint { font-size: 13px; color: rgba(232,224,213,0.5); max-width: 34ch; }
.form__actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Social links with brand icons (footer + contact aside) */
.footer__soc { display: inline-flex; align-items: center; gap: 10px; }
.footer__soc svg { width: 16px; height: 16px; flex: 0 0 auto; }
.socials { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 960px) { .contact { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; padding: 24px; } }

/* ============================================================
   FOOTER (black, as live)
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 48px 0; border-top: 1px solid var(--white-line); }
.footer__top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer__brand { max-width: 420px; }
.footer__logo { height: 40px; width: auto; margin-bottom: 20px; }
.footer__strap { font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.footer__legal { font-size: 13px; line-height: 1.7; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 4px 0; transition: color .25s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--white-line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.04em; }

/* Floating WhatsApp (green, as live) */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: #1b1713; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.35); transition: transform .25s ease, background .25s ease; }
.wa:hover { background: #a98d4e; }
.wa:hover { transform: scale(1.08); }
.wa svg { width: 28px; height: 28px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
