/* Buyereport — upgraded homepage */
:root {
  --bg-page: #f0f4f3;
  --bg-card: #ffffff;
  --bg-alt: #e4ece9;
  --ink: #14201e;
  --ink-muted: #5a6e68;
  --primary: #0d4f4c;
  --primary-light: #1a6b67;
  --primary-soft: rgba(13, 79, 76, 0.08);
  --accent: #d4a03c;
  --accent-hover: #b88a2e;
  --accent-soft: rgba(212, 160, 60, 0.14);
  --border: rgba(20, 32, 30, 0.08);
  --hero-deep: #062826;
  --hero-mid: #0a3d3a;
  --shadow-sm: 0 2px 8px rgba(20, 32, 30, 0.04);
  --shadow: 0 8px 32px rgba(20, 32, 30, 0.07);
  --shadow-lg: 0 24px 64px rgba(20, 32, 30, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --space: clamp(1rem, 4vw, 2rem);
  --container: min(1160px, 100% - 2 * var(--space));
  --header-h: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ========= Header ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(240, 244, 243, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary-light);
}

.logo--footer {
  color: #fff;
}

.logo--footer:hover {
  color: var(--accent);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 20px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

  .site-nav {
    position: absolute;
    left: var(--space);
    right: var(--space);
    top: calc(100% + 0.5rem);
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    border-radius: 8px;
  }
}

/* ========= Hero ========= */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--hero-deep) 0%, var(--hero-mid) 45%, #0f524e 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  top: -10%;
  right: -5%;
  background: rgba(212, 160, 60, 0.18);
}

.hero-orb--2 {
  width: 320px;
  height: 320px;
  bottom: -15%;
  left: 10%;
  background: rgba(26, 107, 103, 0.35);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 2rem;
  line-height: 1.75;
  max-width: 34ch;
}

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

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

@media (max-width: 860px) {
  .hero-panel {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

.hero-stat {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .hero-stat {
    flex: 1 1 140px;
  }
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ========= Trust bar ========= */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-bottom: 1rem;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--hero-deep);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(212, 160, 60, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 60, 0.4);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ========= Sections ========= */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 0.75rem;
}

.section-label--light {
  color: var(--accent);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  max-width: 24ch;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.heading-light {
  color: #fff;
  max-width: none;
}

.section p {
  color: var(--ink-muted);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-header--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.section-header--center h2 {
  max-width: none;
}

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

.section-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 36ch;
}

.prose {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ========= Story ========= */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
  }
}

.story-visual {
  position: relative;
  height: 320px;
}

.story-card {
  position: absolute;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-card--1 {
  top: 0;
  left: 0;
  width: 55%;
  z-index: 3;
}

.story-card--2 {
  top: 38%;
  right: 0;
  width: 52%;
  z-index: 2;
  background: var(--primary);
  border-color: transparent;
}

.story-card--2 .story-card-label,
.story-card--2 .story-card-num {
  color: #fff;
}

.story-card--3 {
  bottom: 0;
  left: 15%;
  width: 50%;
  z-index: 1;
  background: var(--accent-soft);
  border-color: rgba(212, 160, 60, 0.25);
}

.story-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.story-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-hover);
  line-height: 1;
}

.story-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
}

.story-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ========= Services / Cards ========= */
.section-services {
  background: var(--bg-card);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(13, 79, 76, 0.15);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.card-index {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  color: var(--primary);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ========= Values ========= */
.section-values {
  background: linear-gradient(160deg, var(--hero-deep) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.section-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 90% 20%, rgba(212, 160, 60, 0.12), transparent);
  pointer-events: none;
}

.section-values .container {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value {
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.value:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 60, 0.3);
}

.value-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.value p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ========= Process ========= */
.section-process {
  background: var(--bg-alt);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 769px) {
  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.process-list li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem;
  position: relative;
}

@media (min-width: 769px) {
  .process-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 1px;
    height: calc(100% - 3rem);
    background: var(--border);
  }
}

.process-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.process-step {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.process-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.process-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ========= Testimonials ========= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.quote {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quote:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.quote-stars {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.quote p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.7;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.quote-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ========= CTA ========= */
.section-cta {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 160, 60, 0.2), transparent 50%);
  pointer-events: none;
}

.cta-inner h2,
.cta-inner p {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 0.75rem;
  max-width: none;
}

.cta-inner p {
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
  font-size: 1.05rem;
}

.cta-inner .btn {
  position: relative;
  z-index: 1;
}

/* ========= Legal ========= */
.section-legal {
  padding-top: 0;
  border-top: 1px solid var(--border);
}

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

@media (max-width: 640px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

.legal-block {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.legal-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.legal-block a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-block a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ========= Footer ========= */
.site-footer {
  background: var(--hero-deep);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22ch;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

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

.footer-bottom p {
  margin: 0;
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.to-top svg {
  width: 1rem;
  height: 1rem;
}

.to-top:hover {
  color: #e8b84d;
  transform: translateY(-2px);
}

/* ========= Scroll reveal ========= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .eyebrow-dot {
    animation: none;
  }

  .btn:hover,
  .card:hover,
  .quote:hover,
  .to-top:hover {
    transform: none;
  }
}
