/* ================================================================
   Pan Treuhand GmbH — Main Stylesheet
   Design: Swiss luxury financial aesthetic
   Fonts: Cormorant (display serif) + DM Sans (body sans)
   ================================================================ */

/* ----------------------------------------------------------------
   1. Design Tokens
---------------------------------------------------------------- */
:root {
  /* Palette */
  --c-navy-900:   #070E1F;
  --c-navy-800:   #0C1B35;
  --c-navy-700:   #122040;
  --c-navy-600:   #1B3060;
  --c-blue-500:   #2B5AA8;
  --c-blue-400:   #3A6BC5;
  --c-blue-300:   #618DD8;
  --c-gray-50:    #F6F7FB;
  --c-gray-100:   #ECF0F8;
  --c-gray-200:   #DDE2EF;
  --c-gray-300:   #BBC5DC;
  --c-gray-400:   #8A98B6;
  --c-gray-500:   #626F8E;
  --c-gray-700:   #2D3A58;
  --c-white:      #FFFFFF;

  /* Semantic */
  --c-text:       #181F36;
  --c-text-mid:   #4A5571;
  --c-text-light: #7F8EAE;
  --c-border:     #DDE3F0;
  --c-border-dark: rgba(255,255,255,0.08);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,20,60,0.06), 0 1px 2px rgba(10,20,60,0.04);
  --shadow-md:  0 4px 16px rgba(10,20,60,0.08), 0 2px 6px rgba(10,20,60,0.04);
  --shadow-lg:  0 8px 32px rgba(10,20,60,0.12), 0 4px 12px rgba(10,20,60,0.06);
  --shadow-xl:  0 16px 56px rgba(10,20,60,0.16), 0 8px 24px rgba(10,20,60,0.08);

  /* Type */
  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing & Layout */
  --max-w:   1140px;
  --radius:  6px;
  --radius-lg: 12px;
  --section-py: 7.5rem;

  /* Motion */
  --ease:    220ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in: 180ms cubic-bezier(0.55, 0, 1, 0.45);
}

/* ----------------------------------------------------------------
   2. Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ----------------------------------------------------------------
   3. Layout Utilities
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ----------------------------------------------------------------
   4. Header & Navigation
---------------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-navy-800);
  border-bottom: 1px solid var(--c-border-dark);
  transition: background var(--ease), box-shadow var(--ease);
}

#site-header.scrolled {
  background: rgba(12, 27, 53, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.28);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-white);
  transition: opacity var(--ease);
}

.nav-logo a span {
  font-weight: 400;
  opacity: 0.65;
}

.nav-logo a:hover { opacity: 0.85; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.125rem;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width var(--ease);
}

.nav-links a:hover {
  color: var(--c-white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.78);
  border-radius: 1px;
  transition: transform 280ms ease, opacity 280ms ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   5. Hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background-color: var(--c-navy-800);
  overflow: hidden;
}

/* Fine grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 68px 68px;
  background-position: center;
  pointer-events: none;
}

/* Warm center glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 65% at 50% 45%,
    rgba(30, 58, 120, 0.55) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Edge vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 45%,
    rgba(5, 10, 25, 0.6) 100%
  );
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 3rem 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.28s forwards;
}

.hero-rule {
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.44s forwards;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.56);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.58s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.72s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------------
   6. Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
  cursor: pointer;
}

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

.btn-outline:hover {
  border-color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.06);
}

.btn-primary {
  background: var(--c-blue-500);
  color: var(--c-white);
  border: 1.5px solid var(--c-blue-500);
  width: 100%;
}

.btn-primary:hover:not(:disabled) {
  background: var(--c-blue-400);
  border-color: var(--c-blue-400);
  box-shadow: 0 6px 20px rgba(43,90,168,0.4);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button loading state */
.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline; }

/* ----------------------------------------------------------------
   7. Section Header (shared)
---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin-bottom: 0.875rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-text-mid);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   8. Services Section
---------------------------------------------------------------- */
.services-section {
  padding: var(--section-py) 0;
  background: var(--c-gray-50);
}

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

/* Service card */
.service-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.875rem 1.875rem;
  transition: transform var(--ease), box-shadow var(--ease);
  overflow: hidden;
}

/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue-500) 0%, var(--c-blue-300) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  color: var(--c-blue-500);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.005em;
}

.service-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-text-mid);
  line-height: 1.65;
}

/* Stagger delays for scroll reveal */
.service-card:nth-child(1) { transition-delay: 0ms; }
.service-card:nth-child(2) { transition-delay: 70ms; }
.service-card:nth-child(3) { transition-delay: 140ms; }
.service-card:nth-child(4) { transition-delay: 210ms; }
.service-card:nth-child(5) { transition-delay: 280ms; }
.service-card:nth-child(6) { transition-delay: 350ms; }

/* ----------------------------------------------------------------
   9. About Section
---------------------------------------------------------------- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--c-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

/* The "30" stat panel */
.about-stat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 4rem;
  border-left: 1px solid var(--c-border);
  text-align: center;
  min-width: 160px;
}

.stat-figure {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-blue-500);
  opacity: 0.18;
}

.stat-descriptor {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-light);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   10. Contact Section
---------------------------------------------------------------- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--c-navy-800);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5.5rem;
  align-items: start;
}

/* Contact info (left) */
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.contact-info > p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.contact-details a,
.contact-details span:not(.detail-label) {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
}

.contact-details a:hover {
  color: var(--c-white);
}

.visit-counter {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

.visit-counter strong {
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

/* Contact form (right) */
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.625rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.honeypot-field {
  position: absolute !important;
  clip: rect(0,0,0,0) !important;
  height: 1px !important;
  overflow: hidden !important;
  width: 1px !important;
  white-space: nowrap !important;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-gray-50);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-gray-400);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--c-white);
  border-color: var(--c-blue-500);
  box-shadow: 0 0 0 3px rgba(43,90,168,0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185,28,28,0.1);
}

.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #b91c1c;
}

.form-success {
  display: none;
  margin-top: 1.125rem;
  padding: 1rem 1.125rem;
  background: rgba(43,90,168,0.07);
  border: 1px solid rgba(43,90,168,0.22);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-blue-500);
  line-height: 1.6;
}

.form-success.visible { display: block; }

.form-error-msg {
  display: none;
  margin-top: 1.125rem;
  padding: 1rem 1.125rem;
  background: rgba(185,28,28,0.06);
  border: 1px solid rgba(185,28,28,0.2);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #b91c1c;
  line-height: 1.6;
}

.form-error-msg.visible { display: block; }

/* ----------------------------------------------------------------
   11. Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--c-navy-900);
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-right: auto;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.36);
  transition: color var(--ease);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.72);
}

.footer-copy {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.26);
  text-align: center;
}

/* ----------------------------------------------------------------
   12. Legal Pages (imprint / privacy)
---------------------------------------------------------------- */
.legal-page {
  padding: 5rem 0 7rem;
  min-height: 70vh;
}

.legal-page .legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.legal-page .legal-meta {
  font-size: 0.875rem;
  color: var(--c-text-light);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 2.5rem 0 0.875rem;
}

.legal-page h2:first-of-type { margin-top: 0; }

.legal-page p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page p:last-of-type { margin-bottom: 0; }

.legal-page a {
  color: var(--c-blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.legal-page a:hover { color: var(--c-blue-400); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-light);
  transition: color var(--ease);
}

.legal-back:hover { color: var(--c-blue-500); }

.legal-back svg { transition: transform var(--ease); }
.legal-back:hover svg { transform: translateX(-3px); }

/* Legal detail list */
.legal-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.legal-detail dt {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

.legal-detail dd {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-text-mid);
}

/* ----------------------------------------------------------------
   13. Scroll Reveal
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* ----------------------------------------------------------------
   14. Responsive — Tablet (≤ 960px)
---------------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --section-py: 5.5rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 640px;
    text-align: center;
  }

  .about-stat {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--c-border);
    padding-top: 2.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }
}

/* ----------------------------------------------------------------
   15. Responsive — Mobile (≤ 768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-py: 4.5rem; }

  /* Hamburger visible */
  .nav-toggle { display: flex; }

  /* Nav links drop-down */
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-navy-800);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }

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

  .nav-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.72);
  }

  /* Services single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Reset card stagger delays on mobile (all animate at once) */
  .service-card { transition-delay: 0ms !important; }

  .contact-form-wrap {
    padding: 1.75rem 1.5rem;
  }

  .footer-brand { margin-right: 0; }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
   16. Small mobile (≤ 480px)
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero { min-height: 82vh; }

  .hero-title { font-size: 2.5rem; }

  .about-stat {
    flex-direction: column;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
   17. Accessibility
---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-blue-400);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

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

  .hero-eyebrow,
  .hero-title,
  .hero-rule,
  .hero-sub,
  .hero-content .btn {
    opacity: 1;
    animation: none;
  }
}
