/* ── HumanNear Design System ── */

/* Local font loading — no external requests needed */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans_24pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans_24pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --clay:       #C17B5C;
  --clay-light: #E8C4AE;
  --sage:       #5C7A6B;
  --sage-light: #D4E4DC;
  --ink:        #1C1C2E;
  --ink-soft:   #4A4A5E;
  --cream:      #FAF7F2;
  --warm-white: #FFFFFF;
  --border:     #E4DDD4;
  --shadow:     rgba(28,28,46,0.08);

  --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --max-w: 1140px;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink);
}
.nav-logo span { color: var(--clay); }

.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--ink); background: var(--sage-light);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem;
  min-width: 220px; box-shadow: 0 8px 32px var(--shadow);
}
.nav-dropdown:hover .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 0.6rem 0.85rem;
  font-size: 0.8375rem; border-radius: 6px;
  color: var(--ink-soft); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel a:hover { background: var(--cream); color: var(--ink); }

.nav-cta {
  background: var(--clay); color: var(--warm-white) !important;
  padding: 0.55rem 1.3rem !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.15s !important;
  text-decoration: none;
}
.nav-cta:hover { background: #a6643c !important; transform: translateY(-1px) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: 0.3s;
}

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 190; padding: 2rem 5%;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.9rem 0;
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--clay); }
.mobile-menu-cta {
  display: inline-block; margin-top: 1.5rem;
  background: var(--clay); color: var(--warm-white) !important;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; border-bottom: none !important;
}

/* ── PAGE WRAPPER ── */
.page-body { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 6rem 5% 5rem; position: relative; overflow: hidden;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1.5px; background: var(--clay);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600; line-height: 1.06; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.5rem; max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--clay); }
.hero-sub {
  font-size: 1.1rem; color: var(--ink-soft);
  max-width: 520px; line-height: 1.85; margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--ink); color: var(--warm-white);
  padding: 5rem 5% 4rem; text-align: center;
}
.page-hero .hero-eyebrow { color: var(--clay-light); justify-content: center; }
.page-hero .hero-eyebrow::before { background: var(--clay-light); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; color: var(--warm-white);
  margin: 0 auto 1.25rem; max-width: 20ch; line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.65); max-width: 520px;
  margin: 0 auto; font-size: 1.05rem; line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
  border: none; font-family: var(--font-body);
}
.btn-clay { background: var(--clay); color: var(--warm-white); }
.btn-clay:hover { background: #a6643c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(193,123,92,0.3); }
.btn-outline-clay { background: transparent; color: var(--clay); border: 1.5px solid var(--clay); }
.btn-outline-clay:hover { background: var(--clay); color: var(--warm-white); }
.btn-outline-ink { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline-ink:hover { border-color: var(--clay); color: var(--clay); }
.btn-white { background: var(--warm-white); color: var(--clay); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { background: transparent; color: var(--warm-white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--warm-white); }

/* ── SECTIONS ── */
.section { padding: 6rem 5%; }
.section-sm { padding: 4rem 5%; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-bg-white { background: var(--warm-white); }
.section-bg-ink { background: var(--ink); }
.section-bg-sage { background: var(--sage-light); }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 0.85rem;
}
.section-label-light { color: var(--clay-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-title-light { color: var(--warm-white); }
.section-body { font-size: 1.05rem; color: var(--ink-soft); max-width: 560px; line-height: 1.85; }
.section-body-light { color: rgba(255,255,255,0.65); }
.section-header-centered { text-align: center; }
.section-header-centered .section-body { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--warm-white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }

.service-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 0.75rem;
}
.service-list { list-style: none; margin: 1rem 0 1.5rem; }
.service-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: var(--ink-soft);
  padding: 0.45rem 0; border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%; background: var(--clay-light);
}
.card-link {
  font-size: 0.875rem; font-weight: 600; color: var(--clay);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.75rem; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }

/* ── VALUES ── */
.value-pill {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.value-pill .vi { font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-pill h4 { font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9375rem; }
.value-pill p { font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.how-step { text-align: center; padding: 2.5rem 1.5rem; }
.how-step-num {
  font-family: var(--font-display); font-size: 5rem; font-weight: 600;
  color: rgba(193,123,92,0.15); line-height: 1; margin-bottom: 0.75rem;
}
.how-step h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--warm-white); }
.how-step p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── QUOTE ── */
.quote-block { border-left: 3px solid var(--clay); padding-left: 1.5rem; margin: 2rem 0; }
.quote-block p { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--ink); line-height: 1.6; }
.quote-block cite { display: block; margin-top: 0.75rem; font-size: 0.8125rem; font-style: normal; color: var(--ink-soft); font-weight: 500; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--warm-white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-3px); }
.blog-card-img { height: 180px; background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.6rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card p { font-size: 0.875rem; color: var(--ink-soft); flex: 1; line-height: 1.7; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-date { font-size: 0.78rem; color: var(--ink-soft); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8375rem; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 0.9375rem;
  padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--warm-white); color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(193,123,92,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb;
  border-radius: 8px; padding: 1rem 1.25rem; font-size: 0.9375rem; display: none;
}
.form-error {
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
  border-radius: 8px; padding: 1rem 1.25rem; font-size: 0.9375rem; display: none;
}

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 5rem 5% 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-brand .nav-logo { color: var(--warm-white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1rem 5%; background: var(--warm-white); border-bottom: 1px solid var(--border); font-size: 0.8125rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--clay); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── UTILITY ── */
.text-clay { color: var(--clay); }
.text-muted { color: var(--ink-soft); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.tag { display: inline-block; padding: 0.3rem 0.75rem; background: var(--sage-light); color: var(--sage); border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

/* ── FOUNDER SECTION ── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.founder-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
}
.founder-img {
  width: 140px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 10%;
  margin: 0 auto 1rem;
  border: 3px solid var(--clay-light);
  display: block;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.founder-role {
  font-size: 0.8125rem;
  color: var(--clay);
  font-weight: 500;
  margin-top: 0.3rem;
}
.founder-location {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}
.founder-title {
  font-size: 2rem !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Typography */
  .hero h1 { font-size: 2.6rem; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 2rem; }

  /* Layout */
  .grid-2,
  .grid-3,
  .grid-4,
  .how-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: auto; padding: 5rem 5% 3.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 3.5rem 5% 2.5rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Sections */
  .section { padding: 3.5rem 5%; }
  .section-sm { padding: 2.5rem 5%; }
  .section-body { font-size: 0.9375rem; max-width: 100%; }

  /* Cards */
  .card { padding: 1.5rem; }
  .grid-auto { grid-template-columns: 1fr; }
  .grid-auto-sm { grid-template-columns: 1fr 1fr; }

  /* How it works */
  .how-step { padding: 1.75rem 1rem; }
  .how-step-num { font-size: 3.5rem; }

  /* Intro strip */
  .section-sm .section-inner > div { flex-direction: column; gap: 2rem; }

  /* Founder section — stack on mobile */
  .section-bg-sage .section-inner > div,
  .section-bg-white .section-inner > .grid-2 { gap: 2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 3rem 5% 2rem; }

  /* Blog cards */
  .grid-3 { grid-template-columns: 1fr; }
  .blog-card-img { height: 200px; }

  /* Founder section — stack on mobile */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founder-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    padding: 1.25rem;
  }
  .founder-img {
    width: 80px;
    height: 90px;
    flex-shrink: 0;
    margin: 0;
  }
  .founder-title {
    font-size: 1.6rem !important;
  }

  /* Inline style overrides for grid-2 used in sections */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Fix founder image on mobile */
  img[alt*="Joseph"] {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 480px) {
  /* Typography */
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }

  /* Layout */
  .grid-auto-sm { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }

  /* Nav */
  .nav-logo { font-size: 1.3rem; }
  .site-nav { padding: 0 4%; }

  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }

  /* Cards */
  .card { padding: 1.25rem; }
  .card h3 { font-size: 1.2rem; }

  /* Sections */
  .section { padding: 3rem 4%; }
  .section-sm { padding: 2rem 4%; }

  /* Values grid */
  .grid-auto-sm { grid-template-columns: 1fr; }

  /* How it works dark section */
  .how-step h3 { font-size: 1.25rem; }
  .how-step p { font-size: 0.875rem; }

  /* Quote */
  .quote-block p { font-size: 1.1rem; }

  /* Blog */
  .blog-card-img { height: 160px; }
  .blog-card-body { padding: 1.25rem; }

  /* Contact form */
  .contact-form { gap: 1rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.875rem; padding: 0.65rem 0.875rem; }

  /* Footer */
  .site-footer { padding: 2.5rem 4% 1.5rem; }
  .footer-col h5 { margin-bottom: 0.875rem; }

  /* CTA section */
  [style*="background:var(--clay)"] .section-title,
  [style*="background: var(--clay)"] .section-title { font-size: 1.6rem; }
}

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