/* Nicole Lloyd — Realtor | South Florida
   Brand: Navy #1a3a5c · Gold #d4a843 · White #ffffff
   Typography: Montserrat (headings) · Inter (body)
   Mobile-first */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2338;
  --navy-mid: #234b73;
  --gold: #d4a843;
  --gold-light: #e8c46a;
  --gold-dark: #b8902e;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --light-gray: #f0eff0;
  --mid-gray: #9a9a9a;
  --dark-gray: #333333;
  --text: #1c1c1c;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(3rem, 8vw, 6rem) 1.25rem;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-lg: 0 8px 48px rgba(26,58,92,0.16);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: var(--section-pad); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--cream { background: var(--off-white); }
.section--gold { background: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--navy-dark);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: none;
}
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,56,0.96) 40%, rgba(26,58,92,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 1.25rem 4rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-style: italic;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-badge {
  display: flex;
  flex-direction: column;
}
.hero-badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ── SEARCH BAR ── */
.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin-bottom: 2rem;
}
.search-bar p {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: none;
}
.search-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--gold); }
.search-bar .btn { width: 100%; justify-content: center; }

@media (min-width: 600px) {
  .search-bar-row { flex-direction: row; }
  .search-bar .btn { width: auto; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  padding: 2rem 1.25rem;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.stat-item-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-item-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-top: 4px;
}

@media (min-width: 640px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ── AWARDS BAR ── */
.awards-bar {
  background: var(--navy);
  padding: 1.5rem 1.25rem;
}
.awards-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.award-badge-icon {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
.award-badge-text {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── INTRO / ABOUT SNIPPET ── */
.intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.intro-photo-wrap {
  position: relative;
}
.intro-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto;
  display: block;
}
.intro-photo-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { color: #444; margin-bottom: 1.25rem; }
.intro-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.intro-cred {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.intro-cred::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (min-width: 860px) {
  .intro-grid { grid-template-columns: 1fr 1.2fr; }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: #555; max-width: none; }

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: none;
}
.testimonial-reviewer {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial-platform {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── FEATURED LISTING TEASER ── */
.listings-teaser {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.listing-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--navy-mid);
}
.listing-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
}
.listing-body { padding: 1.25rem; }
.listing-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.listing-address {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0.75rem;
  max-width: none;
}
.listing-details {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 500;
}

@media (min-width: 640px) {
  .listings-teaser { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .listings-teaser { grid-template-columns: repeat(3, 1fr); }
}

/* ── MARKET UPDATE CTA ── */
.market-cta {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.market-cta-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}
.market-cta-text h2 { color: var(--white); margin-bottom: 1rem; }
.market-cta-text p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; max-width: 48ch; }

@media (min-width: 860px) {
  .market-cta { grid-template-columns: 1fr 1.3fr; }
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1rem;
}
.contact-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: #444;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--navy-dark);
  padding: 10rem 1.25rem 5rem;
  text-align: center;
}
.about-hero h1 { color: var(--white); }
.about-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.about-photo {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: #444; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 2fr 3fr; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 9rem 1.25rem 4rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 55ch; font-size: 1.05rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.25rem 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-bottom .license {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: #555; font-size: 1.05rem; }
.section-header .underline {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.75rem;
}

/* ── REVIEWS PAGE ── */
.reviews-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-intro h2 { margin-bottom: 0.75rem; }
.reviews-intro p { color: #555; max-width: 55ch; margin: 0 auto; }
.reviews-aggregate {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.reviews-agg-item { text-align: center; }
.reviews-agg-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.reviews-agg-label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.reviews-agg-stars { color: var(--gold); font-size: 1.2rem; }

/* ── COMMERCIAL PAGE ── */
.commercial-highlight {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  margin: 2rem 0;
}
.commercial-highlight h3 { color: var(--gold); margin-bottom: 0.5rem; }
.commercial-highlight p { color: rgba(255,255,255,0.85); max-width: none; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }

/* ── SCROLL ANIMATION (with fallback) ── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.will-animate {
  opacity: 0;
  transform: translateY(24px);
}
.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}
