/* ============================================================
   HIGHLANDS ADVISORY GROUP — STYLESHEET
   Brand: Navy #081E3B | Gold #C29A48
   ============================================================ */

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

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #081E3B;
  --gold:   #C29A48;
  --gold-lt:#D4AE60;
  --white:  #FFFFFF;
  --cream:  #F4F1EC;
  --off-white: #F7F5F1;
  --gray-light: #E8E4DC;
  --gray:   #8A8276;
  --text:   #1A1A1A;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --max:    1120px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 17px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 500; font-family: var(--sans); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

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

section { padding: 6rem 0; }
section.tight { padding: 4rem 0; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 241, 236, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(194, 154, 72, 0.35);
  transition: box-shadow var(--transition);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .nav-logo-img { height: 34px; }
}

/* Text wordmark in nav (when logo image is removed) */
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav-wordmark:hover { color: var(--gold); }

/* Large logo in hero section */
.hero-logo {
  display: inline-block;
  background: var(--cream);
  padding: 1rem 1.75rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}
.hero-logo img {
  max-width: 280px;
  width: 90%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8, 30, 59, 0.7);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { font-size: 0.9rem; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,154,72,0.3);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 11rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(194,154,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,154,72,0.4), transparent);
}

.hero-content { max-width: 760px; }

.hero h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .rule { margin: 1.2rem auto 0; }

.rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.2rem;
}

/* ── PROBLEM / SOLUTION ──────────────────────────────────── */
.problem-solution { background: var(--off-white); }

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ps-col h3 { margin-bottom: 1.5rem; }
.ps-col h3.gold { color: var(--navy); }

.ps-list { list-style: none; }

.ps-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  color: #444;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ps-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.ps-col.problems .ps-list li::before { background: #C0392B; }
.ps-col.solutions .ps-list li::before { background: var(--gold); }

@media (max-width: 768px) {
  .ps-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── SERVICES PREVIEW ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-light);
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background var(--transition);
}

.service-card:hover { background: var(--off-white); }

.service-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.service-duration {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT SNIPPET ───────────────────────────────────────── */
.about-snippet { background: var(--navy); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.photo-frame {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(194,154,72,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
}

.photo-placeholder .initials {
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
}

.photo-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0.5;
}

.about-text .eyebrow { color: var(--gold); }
.about-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.72); }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(194,154,72,0.2);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 280px; }
}

/* ── QUOTE / CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
  padding: 5rem 0;
}

.cta-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.45;
}

.cta-band blockquote em {
  font-style: normal;
  color: var(--gold);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-block {
  display: inline-block;
  background: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-top: 1rem;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO (interior pages) ──────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 5rem;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,154,72,0.4), transparent);
}

.page-hero h1 { color: var(--white); }
.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-list { padding: 5rem 0; }

.service-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-item:first-child { padding-top: 0; }

.service-meta { }

.service-meta h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(194,154,72,0.4);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-body p { color: #444; margin-bottom: 1rem; }

.service-delivers h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.delivers-list { list-style: none; }

.delivers-list li {
  font-size: 0.9rem;
  color: #555;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.delivers-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .service-item { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-full { padding: 5rem 0; }

.about-full-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-sidebar .photo-frame {
  aspect-ratio: 3/4;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
}

.about-sidebar .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-sidebar-stats {
  margin-top: 2rem;
  border-top: 2px solid var(--gold);
  padding-top: 1.5rem;
}

.about-sidebar-stats .stat-item { margin-bottom: 1.25rem; }

.about-sidebar-stats .stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.about-sidebar-stats .stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.about-body h2 { margin-bottom: 1.5rem; }
.about-body p { color: #444; }
.about-body .pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  background: var(--off-white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}

.about-pillars {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar {
  border-top: 2px solid var(--gold);
  padding-top: 1.25rem;
}

.pillar h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar p { font-size: 0.9rem; color: #555; }

@media (max-width: 900px) {
  .about-full-grid { grid-template-columns: 1fr; }
  .about-sidebar { max-width: 320px; }
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── INSIGHTS PAGE ───────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  padding: 5rem 0;
}

.insight-card {
  border: 1px solid var(--gray-light);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.insight-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(8,30,59,0.08);
}

.insight-img {
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.insight-img img { width: 100%; height: 100%; object-fit: cover; }

.insight-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0e2d5a 100%);
}

.insight-img-placeholder span {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
}

.insight-body { padding: 1.75rem; }

.insight-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.insight-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.insight-card p { font-size: 0.88rem; color: #555; }

.insight-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.78rem;
  color: var(--gray);
}

.coming-soon-banner {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--off-white);
  border: 1.5px dashed var(--gray-light);
  color: var(--gray);
  font-size: 0.9rem;
}

.coming-soon-banner .big {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  padding: 5rem 0;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p { font-size: 0.95rem; color: #555; }

.contact-detail {
  margin-top: 2rem;
  border-top: 1px solid var(--gray-light);
  padding-top: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(194,154,72,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.contact-detail-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.contact-detail-item a {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
}

.contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-wrap .sub {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  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 var(--gray-light);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.75rem;
  text-align: center;
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(194,154,72,0.08);
  border: 1px solid rgba(194,154,72,0.3);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.color-gold { color: var(--gold); }
.color-navy { color: var(--navy); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
