@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --blue-50:  #f0f7ff;
  --blue-100: #dbeefe;
  --blue-200: #bfddfd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --charcoal: #1a2332;
  --dark:     #0f172a;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --white:    #ffffff;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg:  0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);

  --max-w: 1160px;
  --section-py: clamp(56px, 8vw, 100px);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--light { background: var(--blue-50); }
.section--grey  { background: var(--grey-100); }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: .5rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 560px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-200);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ── Top Bar ───────────────────────────────────────────── */
.topbar {
  background: var(--charcoal);
  color: var(--grey-400);
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--blue-200); transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links svg { width: 13px; height: 13px; }

/* ── Navigation ────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--dark);
  flex-shrink: 0;
}
.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-500);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-600); background: var(--blue-50); }
.nav-cta { margin-left: 8px; }

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--white) 55%, var(--blue-100) 100%);
  padding: clamp(64px, 10vw, 110px) 0 clamp(56px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96,165,250,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--blue-600);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--grey-500);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--grey-500);
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 5px 12px;
  border-radius: 999px;
}
.trust-pill svg { width: 13px; height: 13px; color: var(--teal-500); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  transition: transform .3s;
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.hero-card p { font-size: .85rem; color: var(--grey-500); }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Service Cards ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .28s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}
.service-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.6;
  flex: 1;
}
.service-card a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: gap .2s;
}
.service-card a:hover { gap: 9px; }

/* Card icon colours */
.icon-bond    { background: #eff6ff; }
.icon-std     { background: #f0fdf4; }
.icon-deep    { background: #faf5ff; }
.icon-comm    { background: #fff7ed; }
.icon-airbnb  { background: #fdf2f8; }

/* ── Why Choose ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: box-shadow .2s;
}
.why-item:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 42px; height: 42px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.why-item p  { font-size: .84rem; color: var(--grey-500); }

/* ── How It Works ──────────────────────────────────────── */
.steps { display: flex; gap: 0; position: relative; flex-wrap: wrap; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 56px; right: 56px;
  height: 2px;
  background: var(--blue-100);
  z-index: 0;
}
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--blue-100);
}
.step h4 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.step p  { font-size: .84rem; color: var(--grey-500); }

/* ── Areas ─────────────────────────────────────────────── */
.areas-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  background: var(--white);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  font-size: .85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  transition: all .2s;
}
.area-pill:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 50%, var(--charcoal) 100%);
  padding: clamp(56px, 8vw, 90px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: .8rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: var(--blue-50); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-500); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--grey-500);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Checklist ─────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--grey-500);
}
.checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Two-column checklist */
.checklist-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

/* ── Disclaimer ────────────────────────────────────────── */
.disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .86rem;
  color: #92400e;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0;
}
.disclaimer::before { content: '⚠️'; flex-shrink: 0; }

/* ── Tally Form Block ──────────────────────────────────── */
.tally-block {
  background: var(--blue-50);
  border: 2px dashed var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.tally-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.tally-block p { font-size: .9rem; color: var(--grey-500); margin-bottom: 16px; }
.tally-placeholder {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  padding: 32px;
  font-size: .85rem;
  color: var(--grey-400);
  font-family: monospace;
}
.tally-embed-area {
  min-height: 400px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--blue-200);
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--white) 60%);
  padding: clamp(52px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--grey-200);
}
.page-hero .tag { display: block; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: .9rem;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--grey-500);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.page-hero .hero-actions { margin-bottom: 1.5rem; }

/* ── Content Layout ────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.sidebar-sticky { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

/* ── Contact ───────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item span { font-size: .82rem; color: var(--grey-400); display: block; }
.contact-item a, .contact-item strong { font-weight: 600; color: var(--dark); }

/* ── Thank You ─────────────────────────────────────────── */
.thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--white) 100%);
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 12px var(--blue-100);
}
.thankyou h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: .8rem;
}
.thankyou p { color: var(--grey-500); font-size: 1rem; max-width: 460px; margin: 0 auto .6rem; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* ── About ─────────────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  font-size: .9rem;
  color: var(--grey-500);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.value-card::before {
  content: '→';
  color: var(--blue-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
footer h4 { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
footer ul { display: flex; flex-direction: column; gap: 8px; }
footer ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
footer ul li a:hover { color: var(--white); }
.footer-contact a { font-size: .86rem; color: var(--blue-200); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-disclaimer { max-width: 600px; line-height: 1.6; color: rgba(255,255,255,.4); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 100px 32px 40px;
    gap: 8px;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.mobile-open a { font-size: 1.1rem; padding: 12px 16px; }
  .nav-cta.mobile-open { display: flex; margin-top: 16px; }
  .checklist-2col { grid-template-columns: 1fr; }
  .hero-card-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
}

/* ── Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
