/* ==========================================================================
   AGARWAL SKYRISE — Landing Page Stylesheet
   Design tokens
   Sand    #EDE1C4   Charcoal #2B2620   Gold #B08D57
   Forest  #3F6B4D   Chartreuse #A8B23C  Cream #F7F1E1
   Type: Display — 'Cormorant Garamond' | Body — 'Jost' | Utility — 'Jost' (tracked caps)
   ========================================================================== */
@font-face {
  font-family: "Bauhaus"; 
  src: url("../assets/fonts/ITC-Bauhaus-Medium.otf") format("opentype"); 
  font-display: swap;  
  font-weight: 500;
  font-style: normal;
}
:root {
  --sand: #EDE1C4;
  --sand-deep: #E1D0A3;
  --cream: #F8F3E6;
  --white: #FFFFFF;
  --charcoal: #2B2620;
  --charcoal-soft: #4A433A;
  --gold: #B08D57;
  --gold-light: #D4B87F;
  --forest: #3F6B4D;
  --forest-deep: #183a30;
  --chartreuse: #A8B23C;

  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Inter", sans-serif;
  --font-utility: "Bauhaus";
  --radius: 2px;
  --shadow-soft: 0 12px 40px -20px rgba(43, 38, 32, 0.35);
  --shadow-card: 0 1px 0 rgba(43, 38, 32, 0.06), 0 8px 24px -16px rgba(43, 38, 32, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold-light);
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin: 0.6rem 0 1.1rem;
}

.section-lede {
  max-width: 620px;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

.section-pad {
  padding: 6.5rem 0;
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 4rem 0;
    overflow-x: hidden;
  }
}
.bauhaus {
  font-family: var(--font-utility);
}
.inter {
  font-family: var(--font-body);
}
.bg.bg-cream {
  background: var(--cream);
}

.bg-sand {
  background: var(--sand);
}

.bg-white {
  background: var(--white);
}

.bg-charcoal {
  background: var(--charcoal);
  color: var(--sand);
}
.bg-forest-deep {
  background: var(--forest-deep); 
}
.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3 {
  color: var(--sand);
}

/* Ascent rail — signature element: a rising line of storeys, echoing the
   tower climbing to "starry heights". Visible on desktop as a fixed
   progress rail; collapses away on small screens. */
.ascent-rail {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1030;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .ascent-rail {
    display: flex;
  }
}

.ascent-rail .rail-line {
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(176, 141, 87, 0.55) 15%, rgba(176, 141, 87, 0.55) 85%, transparent);
  position: relative;
}

.ascent-rail .rail-dot {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-deep);
  transform: translate(-50%, -50%);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.ascent-rail .rail-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.18);
  transform: translate(-50%, -50%) scale(1.4);
}

.ascent-rail .rail-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  writing-mode: vertical-rl;
  margin-top: 10px;
  opacity: 0.75;
}

/* ---------- Navbar ---------- */
.site-nav {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 1040;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(248, 243, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(43, 38, 32, 0.08);
  padding: 0.7rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-lockup .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.brand-lockup .brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

.leaf-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.site-nav .nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline-line {
  background: var(--cream);
  border: 1px solid rgba(43, 38, 32, 0.35);
  color: var(--charcoal);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-line:hover,
.btn-outline-line:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.bg-charcoal .btn-outline-line {
  border-color: rgba(237, 225, 196, 0.4);
  color: var(--sand);
}

.bg-charcoal .btn-outline-line:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Nav & UI Polish */
.site-nav {
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(248, 243, 230, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
 
/* ---------- Hero ---------- */

/* Swiper Hero Styling */
.hero-section {
  height: 90vh;
  min-height: 600px;
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0%;
  transform: translateY(40%);
  /* display: flex; */
  align-items: center; 
  /* padding-top: 80px; */
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}
/* Desktop: Side-by-Side */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem; /* Space between buttons */
  margin-top: 2.5rem;
  align-items: center;
}

/* Base button styles to ensure they align perfectly */
.hero-cta-row .btn-gold, 
.hero-cta-row .btn-outline-line,
.hero-cta-row .btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px; /* Gives buttons a consistent premium weight */
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevents text from wrapping inside the button */
}

/* Mobile: Stacked Vertical */
@media (max-width: 576px) {
  .hero-cta-row {
    flex-direction: column; /* Stacks buttons vertically */
    gap: 1rem;
    width: 100%;
  }

  .hero-cta-row .btn-gold, 
  .hero-cta-row .btn-outline-line,
  .hero-cta-row .btn-outline-white {
    width: 100%; /* Full width buttons for easy thumb tapping */
    min-width: unset;
  }
}

/* Premium "The Legacy" button adjustment */
.btn-outline-line {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  background: transparent;
}

.btn-outline-line:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--sand) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* Gallery Grid (Premium Masonry) */
.premium-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.item-tall {
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
}

/* 1x2 - Tall (Vertical) */
.gallery-item.item-tall {
  grid-row: span 2;
}

/* 2x1 - Wide (Horizontal) */
.gallery-item.item-wide {
  grid-column: span 2;
}

/* 2x2 - The "Big Featured" Square */
.gallery-item.item-square {
  grid-column: span 2;
  grid-row: span 2;
}

/* 3x1 - Ultra Wide (Cinematic) */
.gallery-item.item-ultra-wide {
  grid-column: span 3;
}

/* 4x1 - Full Row (Banner style) */
.gallery-item.item-full {
  grid-column: 1 / -1; /* Spans all 4 columns */
  grid-auto-rows: 300px; /* Force a bit more height for full width */
}

/* 1x3 - Super Tall (Architectural) */
.gallery-item.item-tower {
  grid-row: span 3;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 38, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
/* Tablet (Max 992px) */
@media (max-width: 992px) {
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr); /* Drop to 2 columns */
  }
  .gallery-item.item-ultra-wide,
  .gallery-item.item-full {
    grid-column: span 2; /* All wide items take full width of tablet */
  }
}

/* Mobile (Max 576px) */
@media (max-width: 576px) {
  .premium-gallery {
    grid-template-columns: 1fr; /* 1 Column ONLY */
    grid-auto-rows: 280px;      /* Consistent height for mobile */
  }
  
  /* Reset ALL ratios to 1x1 for a clean mobile scroll */
  .gallery-item.item-tall, 
  .gallery-item.item-wide, 
  .gallery-item.item-square, 
  .gallery-item.item-ultra-wide, 
  .gallery-item.item-full,
  .gallery-item.item-tower {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
/* Responsive Tweaks */
@media (max-width: 991px) {
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .item-wide {
    grid-column: span 1;
  }

  .hero-section {
    height: 80vh;
  }
}

@media (max-width: 575px) {
  .premium-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 1rem;
  }

  .item-tall {
    grid-row: span 1;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .ascent-rail {
    display: none;
  }

  /* Rail often causes mobile overflow */
}

/* ---------- Section framing ---------- */
.frame-photo {
  position: relative;
  padding: 14px;
  border: 1px solid var(--gold);
}

.frame-photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  pointer-events: none;
}

.frame-photo img,
.frame-photo .photo-surface {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-surface {
  background: linear-gradient(135deg, #d9c79b, #b9a06b 55%, #cdb47f);
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.photo-surface .surface-tag {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.1rem;
  /* background: linear-gradient(to top, rgba(43, 38, 32, 0.55), transparent); */
  width: 100%;
}

.photo-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.18), transparent 45%);
}

/* ---------- Cards ---------- */
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(43, 38, 32, 0.08);
  padding: 2.4rem 2rem;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pillar-card .pillar-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(43, 38, 32, 0.09);
  font-size: 0.93rem;
}

.amenity-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.amenity-group-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--forest-deep);
}

/* ---------- Unit selector ---------- */
.unit-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.unit-tab-btn {
  border: 1px solid rgba(43, 38, 32, 0.2);
  background: transparent;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: all 0.3s ease;
  cursor: pointer;
}

.unit-tab-btn.active,
.unit-tab-btn:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--sand);
}

.unit-pane {
  display: none;
}

.unit-pane.active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.unit-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(43, 38, 32, 0.18);
  font-size: 0.92rem;
}

.unit-spec-row span:first-child {
  color: var(--charcoal-soft);
}

.unit-spec-row span:last-child {
  font-weight: 500;
}

/* ---------- Location ---------- */
.infra-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(43, 38, 32, 0.1);
}

.infra-card .infra-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  color: var(--sand);
  border-radius: 50%;
  font-size: 1.15rem;
}

.infra-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.infra-card p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.vicinity-list {
  columns: 2;
  column-gap: 2.2rem;
}

@media (max-width: 575.98px) {
  .vicinity-list {
    columns: 1;
  }
}

.vicinity-list li {
  break-inside: avoid;
  list-style: none;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(43, 38, 32, 0.15);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.vicinity-list li .place {
  color: var(--charcoal-soft);
}

.vicinity-list li .dist {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  border-top: 1px solid rgba(237, 225, 196, 0.15);
  border-bottom: 1px solid rgba(237, 225, 196, 0.15);
}

.stat-block {
  text-align: center;
  padding: 2.2rem 1rem;
}

.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-light);
  display: block;
}

.stat-block .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 225, 196, 0.75);
  margin-top: 0.4rem;
}

/* ---------- Testimony / trust band (about) ---------- */
.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 2.2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.trust-badge i {
  color: var(--forest-deep);
  font-size: 1.3rem;
}

/* ---------- FAQ ---------- */
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43, 38, 32, 0.15);
}

.accordion-button {
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  padding: 1.4rem 0;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold);
  background: transparent;
}

.accordion-button::after {
  filter: sepia(1) saturate(3) hue-rotate(0deg) brightness(0.8);
}

.accordion-body {
  padding: 0 0 1.6rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* ---------- Lead form ---------- */
.lead-section {
  position: relative;
  overflow: hidden;
}

.lead-form-panel {
  background: var(--cream);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 575.98px) {
  .lead-form-panel {
    padding: 1.75rem;
  }
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43, 38, 32, 0.3);
  border-radius: 0;
  padding: 0.65rem 0.2rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--charcoal);
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
  background: transparent;
}

.form-control::placeholder {
  color: rgba(43, 38, 32, 0.35);
}

.invalid-feedback {
  font-size: 0.76rem;
}

.form-check-label {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
}

.form-status-msg {
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  margin-top: 1rem;
  display: none;
}

.form-status-msg.show {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

.form-status-msg.success {
  background: rgba(63, 107, 77, 0.12);
  color: var(--forest-deep);
  border-left: 3px solid var(--forest-deep);
}

.form-status-msg.error {
  background: rgba(176, 60, 40, 0.1);
  color: #8C2F1F;
  border-left: 3px solid #8C2F1F;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 4rem 0 1.6rem;
}

.site-footer a.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(237, 225, 196, 0.75);
  padding: 0.35rem 0;
  transition: color 0.25s ease;
}

.site-footer a.footer-link:hover {
  color: var(--gold-light);
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-divider {
  border-color: rgba(237, 225, 196, 0.15);
  margin: 2.4rem 0 1.6rem;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(237, 225, 196, 0.5);
  line-height: 1.8;
}

.social-dot {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 225, 196, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  transition: all 0.3s ease;
}

.social-dot:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  background: var(--charcoal);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.7rem;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .mobile-cta-bar {
    display: none;
  }
}

.mobile-cta-bar .btn-gold,
.mobile-cta-bar a.btn-outline-line {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Back-to-top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .back-to-top {
    bottom: 30px;
  }
}


/* ==============================
   FRAUD ALERT STRIP
================================= */

.fraud-alert-strip {
    background: #fff7f7;
    border: 1px solid #f3b4b4;
    color: #111;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.fraud-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 45px 12px 16px;
    position: relative;
}

.fraud-alert-icon {
    font-size: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}

.fraud-alert-text {
    font-size: 14px;
    line-height: 1.45;
}

.fraud-alert-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.fraud-alert-heading {
    font-weight: 700;
    margin-bottom: 4px;
}

.fraud-alert-description {
    font-weight: 400;
}

.fraud-alert-description strong {
    font-weight: 700;
}

.fraud-alert-close {
    position: absolute;
    top: 12px;
    right: 15px;

    width: 28px;
    height: 28px;

    border: 0;
    background: transparent;

    font-size: 27px;
    line-height: 24px;
    font-weight: 300;

    color: #111;
    cursor: pointer;
    padding: 0;
}

.fraud-alert-close:hover {
    opacity: 0.6;
}


/* ==============================
   MOBILE
================================= */

@media (max-width: 767.98px) {

    .fraud-alert-content {
        gap: 9px;
        padding: 10px 0px 10px 12px;
        flex-direction: column;
    }

    .fraud-alert-icon {
        font-size: 17px;
        margin-top: 1px;
    }

    .fraud-alert-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .fraud-alert-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .fraud-alert-heading {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .fraud-alert-close {
        top: 9px;
        right: 10px;
        font-size: 24px;
    }
}