/* ============================================================
   Nicole Lloyd | REALTOR® — Stylesheet
   Luxury South Florida · Navy + Champagne Gold + White
   Mobile-first · CSS Variables · Cormorant + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* === Design Tokens === */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #162235;
  --navy-deep:   #070E16;
  --gold:        #C9A96E;
  --gold-light:  #D9BF8F;
  --gold-dark:   #A8834A;
  --gold-faint:  rgba(201, 169, 110, 0.10);
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --charcoal:    #2C2C2C;
  --gray-light:  #E5E1D8;
  --gray-mid:    #9A9590;
  --text:        #3A3734;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:   1180px;
  --sp-xl:   6rem;
  --sp-lg:   4.5rem;
  --sp-md:   3rem;
  --sp-sm:   2rem;
  --sp-xs:   1.25rem;

  --radius:      2px;
  --shadow:      0 4px 24px rgba(13, 27, 42, 0.10);
  --shadow-lg:   0 12px 48px rgba(13, 27, 42, 0.18);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* === Typography Scale === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p  { line-height: 1.8; }

/* === Container === */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* === Utility Classes === */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.gold-line {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.4rem;
}
.gold-line--center { margin-inline: auto; }
.body-text { color: #5a5652; line-height: 1.9; }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }
.text-navy  { color: var(--navy) !important; }
.text-center { text-align: center; }
.section__intro {
  color: var(--gray-mid);
  max-width: 520px;
  margin-inline: auto;
  margin-top: 0.5rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.82rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold         { background: var(--gold); color: var(--navy); }
.btn-gold:hover   { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,169,110,0.35); }
.btn-navy         { background: var(--navy); color: var(--white); }
.btn-navy:hover   { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* === Navigation === */
.site-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 999;
  padding-block: 1.5rem;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: var(--navy);
  padding-block: 0.9rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.nav-links a:hover { color: var(--gold); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1.5rem 2rem;
  gap: 0;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-phone { padding-top: 1rem; border-bottom: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
}

/* === Hero (Full-Bleed) === */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,14,22,0.85) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 8rem 1.5rem 5rem;
}
.hero-content h1 {
  color: var(--white);
  max-width: 660px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === Page Hero (Interior) === */
.page-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }

/* === Credentials Bar === */
.creds-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.creds-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid rgba(201,169,110,0.15);
  text-align: center;
}
.cred-item:last-child { border-right: none; }
.cred-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cred-label {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 700px) {
  .cred-item {
    padding: 1.25rem 1.25rem;
    border-right: none;
    width: 50%;
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .cred-item:nth-child(odd) { border-right: 1px solid rgba(201,169,110,0.1); }
}

/* === Sections === */
.section       { padding: var(--sp-xl) 1.5rem; }
.section--lg   { padding: var(--sp-lg) 1.5rem; }
.section--sm   { padding: var(--sp-md) 1.5rem; }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--off  { background: var(--off-white); }
.section--deep { background: var(--navy-deep); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep p { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .gold-line { margin-inline: auto; }

/* === Two-Column Grid === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}
.two-col--reverse > *:first-child { order: 1; }
@media (max-width: 768px) {
  .two-col--reverse > *:first-child { order: unset; }
}

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* === Listing Cards === */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .listings-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .listings-grid { grid-template-columns: 1fr; } }
.listing-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.listing-body { padding: 1.5rem; }
.listing-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.75rem;
  border-radius: 1px;
}
.tag-active { background: rgba(201,169,110,0.12); color: var(--gold-dark); }
.tag-sold   { background: rgba(44,44,44,0.07); color: var(--gray-mid); }
.tag-commercial { background: rgba(13,27,42,0.08); color: var(--navy); }
.listing-price {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.listing-address { font-size: 0.88rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.65rem; }
.listing-details {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 0.03em;
}

/* === Reviews === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  padding: 2rem;
  border-left: 2px solid var(--gold);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.review-meta   { font-size: 0.75rem; color: var(--gray-mid); margin-bottom: 0.5rem; }
.review-badge  {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: auto;
}

/* === Services List === */
.services-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.services-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

/* === Market Tags === */
.market-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.market-tag {
  background: var(--gold-faint);
  border: 1px solid rgba(201,169,110,0.22);
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 1px;
}

/* === Stats Grid === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* === Award Badges === */
.awards-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.award-badge {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 1.75rem 2rem;
  text-align: center;
  min-width: 175px;
  transition: var(--transition);
}
.award-badge:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.award-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.award-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.award-sub { font-size: 0.72rem; color: var(--gray-mid); letter-spacing: 0.05em; }

/* === Monogram / Headshot Placeholder === */
.monogram {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(201,169,110,0.2);
}

/* === Process Steps === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.22);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.step p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; }

/* === Sirocco / Case Study === */
.case-study-card {
  background: linear-gradient(135deg, #08111A 0%, #0D1B2A 60%, #14223A 100%);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--gold);
}
.case-study-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.case-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.case-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.case-body {
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.case-details { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; margin-bottom: 2rem; }
.case-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.case-detail::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 600px) { .case-study-card { padding: 2rem 1.5rem; } }

/* === Contact Form === */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--charcoal);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 130px; }

/* === Contact Info Block === */
.contact-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-value a { color: var(--navy); font-weight: 500; }
.contact-value a:hover { color: var(--gold); }

/* === CTA Section === */
.cta-band {
  background: var(--navy);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.6); max-width: 500px; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
.site-footer {
  background: var(--navy-deep);
  padding: 4rem 1.5rem 2rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer-brand { }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-tagline { line-height: 1.8; margin-bottom: 1.25rem; }
.footer-license { font-size: 0.72rem; color: rgba(255,255,255,0.25); line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col nav a { transition: var(--transition); }
.footer-col nav a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.73rem;
}
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-social a:hover { color: var(--gold); }

/* === Scroll-Reveal (CSS only) === */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
}

/* === Divider === */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gray-light);
  margin-block: var(--sp-md);
}

/* === Misc === */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
