/* ============================================================
   APEXLANDBASE — MASTER STYLESHEET
   Version 2.0 | Cream / White / Gold luxury theme
   All pages inherit from this file
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #FAFAF8;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Core palette */
  --gold:        #9A7B4F;
  --gold-lt:     #B8955E;
  --gold-pale:   #F5EFE6;
  --gold-dark:   #7A5F38;
  --cream:       #F4F1EB;
  --cream-dark:  #EDE8DF;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --border:      #E2DBD0;
  --border-lt:   #EDE8E0;

  /* Text */
  --text:        #1A1A1A;
  --text-mid:    #4A4540;
  --text-light:  #8A8480;
  --text-xlight: #B0A89E;

  /* Project accent colours */
  --oberoi:      #8B7355;
  --max:         #2D5016;
  --sobha:       #1B4332;
  --emaar:       #1B3A6B;
  --dlf:         #5C1A1A;
  --godrej:      #1A3A2A;
  --elan:        #2A1A4A;
  --delphine:    #1A2A4A;
  --ashiana:     #3A2A1A;
  --whiteland:   #2A3A2A;

  /* Spacing */
  --gap:         clamp(56px, 8vw, 100px);
  --gap-sm:      clamp(32px, 4vw, 56px);
  --container:   1320px;
  --radius:      0px; /* Sharp edges — luxury aesthetic */
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.font-serif  { font-family: 'Playfair Display', serif; }
.font-sans   { font-family: 'Inter', sans-serif; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: .92rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── TOP BAR ──────────────────────────────────────────────── */
.top-bar {
  background: var(--text);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  letter-spacing: .08em;
}
.top-bar a { color: var(--gold-lt); font-weight: 500; }
.top-bar a:hover { color: #fff; }
.top-bar-social { display: flex; gap: 16px; align-items: center; }
.top-bar-social a img { width: 18px; height: 18px; opacity: .7; transition: opacity .2s; }
.top-bar-social a:hover img { opacity: 1; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text); }
.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu a {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-8px);
}
.nav-menu li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: .72rem;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--border-lt);
  border-bottom-color: var(--border-lt) !important;
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: none !important; }
.nav-dropdown a:hover { background: var(--gold-pale); color: var(--gold); }

.nav-cta {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: #fff;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: .3s;
}

/* ── STICKY BOTTOM BAR ────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  box-shadow: 0 -2px 20px rgba(0,0,0,.2);
}
.sticky-bar-text { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.sticky-bar-text strong { color: #fff; font-size: .95rem; }
.sticky-bar-btns { display: flex; gap: 12px; }
.sticky-btn-call, .sticky-btn-wa {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 22px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: .2s;
  white-space: nowrap;
}
.sticky-btn-call { color: #fff; }
.sticky-btn-call:hover { background: #fff; color: var(--text); border-color: #fff; }
.sticky-btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.sticky-btn-wa:hover { background: #1ebe5d; }

/* ── SECTION TAGS ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 32px;
  transition: .2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold     { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline  { background: transparent; color: var(--text); border: 1.5px solid var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: #fff; }
.btn-white    { background: #fff; color: var(--text); }
.btn-white:hover { background: var(--cream); }
.btn-dark     { background: var(--text); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-sm { padding: 10px 22px; font-size: .68rem; }
.btn-lg { padding: 18px 42px; font-size: .78rem; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.card:hover {
  box-shadow: 0 12px 48px rgba(154,123,79,.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── PROPERTY CARD ────────────────────────────────────────── */
.property-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
  color: inherit;
}
.property-card:hover {
  box-shadow: 0 16px 56px rgba(154,123,79,.18);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.property-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.property-card:hover img { transform: scale(1.04); }
.property-card-body { padding: 24px; }
.property-card-tag {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.property-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.property-card-location {
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.property-card-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.property-card-spec {
  font-size: .72rem;
  color: var(--text-mid);
  background: var(--cream);
  padding: 4px 10px;
  letter-spacing: .04em;
}
.property-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.property-card-cta {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.property-card:hover .property-card-cta { gap: 14px; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 13px 16px;
  font-size: .88rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-lt); }
.form-submit:disabled { background: var(--text-light); cursor: not-allowed; }

/* ── HERO (reusable) ──────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.65) 42%,
    rgba(255,255,255,.0) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  background: var(--white);
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.stat-label {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── SECTION SPACING ──────────────────────────────────────── */
.section { padding: var(--gap) 48px; }
.section-sm { padding: var(--gap-sm) 48px; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark  { background: var(--text); }
.section-gold  { background: var(--gold); }

/* ── GRID UTILITIES ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-gap-lg { gap: 80px; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
.divider-gold { height: 2px; background: var(--gold); }

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid currentColor;
}
.badge-gold { color: var(--gold); border-color: var(--gold); }
.badge-dark { color: var(--text); border-color: var(--text); }
.badge-white { color: #fff; border-color: #fff; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── BROCHURE MODAL ───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,26,26,.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.modal-header {
  background: var(--gold);
  padding: 28px 32px;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.modal-header p { font-size: .75rem; color: rgba(255,255,255,.75); font-weight: 300; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: #fff; font-size: 1.3rem;
  cursor: pointer; opacity: .7;
  line-height: 1;
}
.modal-close:hover { opacity: 1; }
.modal-body { padding: 28px 32px; }
.modal-note { font-size: .72rem; color: var(--text-light); margin-top: 14px; line-height: 1.65; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--text);
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 24px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a img { width: 20px; height: 20px; opacity: .45; transition: opacity .2s; filter: brightness(0) invert(1); }
.footer-social a:hover img { opacity: .9; }
.footer-col-title { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: .68rem; color: rgba(255,255,255,.25); line-height: 1.65; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .68rem; color: rgba(255,255,255,.3); letter-spacing: .06em; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── RERA BOX ─────────────────────────────────────────────── */
.rera-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
}
.rera-box p { font-size: .72rem; color: var(--text-light); line-height: 1.75; }
.rera-box strong { color: var(--text); }

/* ── GALLERY STRIP ────────────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-strip .g-img {
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  overflow: hidden;
  transition: transform .4s;
}
.gallery-strip .g-img:first-child { grid-row: 1 / 3; }
.gallery-strip:hover .g-img { transform: scale(1.02); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; padding: 28px 0; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 56px; animation: marquee 28s linear infinite; width: max-content; align-items: center; }
.marquee-track img { height: 36px; width: auto; opacity: .55; filter: grayscale(100%); transition: opacity .3s, filter .3s; flex-shrink: 0; }
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WHY US CARDS ─────────────────────────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.why-card:hover { border-bottom-color: var(--gold); box-shadow: 0 8px 40px rgba(154,123,79,.1); }
.why-icon { font-size: 2rem; margin-bottom: 18px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 10px; }
.why-card p { font-size: .82rem; color: var(--text-light); line-height: 1.75; }

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 90px; right: 24px;
  background: var(--text);
  color: #fff;
  padding: 14px 22px;
  font-size: .8rem;
  letter-spacing: .04em;
  z-index: 400;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .7rem; color: var(--text-light); letter-spacing: .06em; padding: 14px 0; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-xlight); }

/* ── BLOG CARD ────────────────────────────────────────────── */
.blog-card { background: var(--white); border: 1px solid var(--border); transition: box-shadow .3s, border-color .3s; }
.blog-card:hover { box-shadow: 0 12px 48px rgba(154,123,79,.12); border-color: var(--gold); }
.blog-card-img { height: 220px; background-size: cover; background-position: center; background-color: var(--cream-dark); }
.blog-card-body { padding: 28px 24px; }
.blog-card-tag { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: .8rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.blog-card-meta { font-size: .68rem; color: var(--text-xlight); letter-spacing: .06em; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 0 20px; }
  .top-bar { padding: 10px 20px; font-size: .68rem; }
  .section { padding: var(--gap) 20px; }
  .section-sm { padding: var(--gap-sm) 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .sticky-bar { padding: 12px 20px; }
  .sticky-bar-text { display: none; }
  .footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-strip .g-img:first-child { grid-row: auto; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-lg { padding: 14px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
