/* ==========================================================================
   Kylena Management Limited — Main Stylesheet
   Static site: HTML5 + CSS3 + Bootstrap 5 + Vanilla JS
   Brand: Navy #0B2341 | Gold #C9A227 | White
   --------------------------------------------------------------------------
   Table of contents
   1.  Design tokens (CSS variables)
   2.  Base & typography
   3.  Helpers / utilities
   4.  Preloader
   5.  Navbar
   6.  Buttons
   7.  Hero & page headers
   8.  Sections, cards, features
   9.  Counters, process, testimonials
   10. Portfolio & filters
   11. Team, careers, insights
   12. Forms & contact
   13. Footer
   14. Floating elements (WhatsApp, back to top, cookies, search)
   15. Responsive tweaks
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --navy: #0b2341;
  --navy-800: #0f2c52;
  --navy-700: #143665;
  --gold: #c9a227;
  --gold-soft: #e3c766;
  --ink: #16233a;
  --body: #5a6577;
  --line: #e6e9ef;
  --bg-soft: #f6f8fb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 6px 18px rgba(11, 35, 65, 0.06);
  --shadow: 0 18px 40px rgba(11, 35, 65, 0.1);
  --shadow-lg: 0 30px 70px rgba(11, 35, 65, 0.16);

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. Base & typography ---------------------------------------------------- */
* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-title {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* 3. Helpers -------------------------------------------------------------- */
.text-gold {
  color: var(--gold) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.bg-navy {
  background-color: var(--navy) !important;
}
.bg-soft {
  background-color: var(--bg-soft) !important;
}
.bg-navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #071930 60%, var(--navy-700) 100%);
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow::before {
  display: none;
}
.lead-muted {
  color: var(--body);
  font-size: 1.05rem;
}

.divider-gold {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 18px 0;
}

/* 4. Preloader ------------------------------------------------------------ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  text-align: center;
  color: #fff;
}
.loader-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.loader-mark span {
  font-family: var(--font-head);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 5. Navbar --------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  padding: 8px 0;
}
.topbar a {
  color: rgba(255, 255, 255, 0.72);
}
.topbar a:hover {
  color: var(--gold);
}

.navbar-kylena {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: all 0.3s var(--ease);
}
.navbar-kylena.is-stuck {
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img {
  height: 46px;
  width: auto;
}
.brand-text strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand-text small {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.navbar-kylena .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px !important;
  position: relative;
}
.navbar-kylena .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.navbar-kylena .nav-link:hover::after,
.navbar-kylena .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-kylena .nav-link.active {
  color: var(--navy);
  font-weight: 600;
}
.navbar-toggler {
  border: 1px solid var(--line);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* 6. Buttons -------------------------------------------------------------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 26px;
  transition: all 0.3s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}
.btn-gold:hover {
  background: #b8931f;
  color: #fff;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-light-gold {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline-light-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.link-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-more i {
  transition: transform 0.25s var(--ease);
  color: var(--gold);
}
.link-more:hover i {
  transform: translateX(4px);
}

/* 7. Hero & page headers -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 20, 38, 0.94) 15%, rgba(11, 35, 65, 0.72) 60%, rgba(11, 35, 65, 0.4) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  max-width: 16ch;
}
.hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  font-size: 1.08rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.page-header {
  position: relative;
  padding: 150px 0 80px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201, 162, 39, 0.22), transparent 55%);
}
.page-header .container {
  position: relative;
}
.page-header h1 {
  color: #fff;
}
.page-header .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
.page-header .breadcrumb .active {
  color: var(--gold);
}

/* 8. Cards & features ----------------------------------------------------- */
.card-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  height: 100%;
}
.card-soft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.4);
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__media img {
  transform: scale(1.07);
}
.service-card__icon {
  position: absolute;
  left: 20px;
  bottom: -24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.service-card__body {
  padding: 40px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__body p {
  font-size: 0.94rem;
}

.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 35, 65, 0.06);
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.icon-tile.gold {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-row i {
  color: var(--gold);
  margin-top: 6px;
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-frame img {
  width: 100%;
  display: block;
}
.badge-stat {
  position: absolute;
  right: -18px;
  bottom: -18px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow);
}
.badge-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

/* 9. Counters, process, testimonials -------------------------------------- */
.counter-box {
  text-align: center;
  padding: 26px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.counter-box:last-child {
  border-right: 0;
}
.counter-box .num {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.counter-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  height: 100%;
  transition: all 0.35s var(--ease);
}
.process-step:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.process-step:hover h3,
.process-step:hover p {
  color: #fff;
}
.process-step .step-no {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: rgba(11, 35, 65, 0.12);
  line-height: 1;
  transition: color 0.35s;
}
.process-step:hover .step-no {
  color: var(--gold);
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial .quote-mark {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial p {
  font-size: 1.02rem;
  color: var(--ink);
  font-style: italic;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.avatar-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.carousel-nav .btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
}

/* 10. Portfolio ----------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
}
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 20, 38, 0.92) 8%, rgba(6, 20, 38, 0) 65%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.project-card__overlay h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}
.project-card__overlay span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 11. Team, careers, insights --------------------------------------------- */
.team-card {
  text-align: center;
  padding: 34px 22px;
}
.team-avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.9rem;
  border: 3px solid rgba(201, 162, 39, 0.35);
}
.team-card .role {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
  margin: 0 3px;
}
.team-social a:hover {
  background: var(--navy);
  color: #fff;
}

.job-card {
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.job-meta span {
  font-size: 0.84rem;
  color: var(--body);
  margin-right: 16px;
}
.job-meta i {
  color: var(--gold);
  margin-right: 6px;
}

.post-card {
  overflow: hidden;
}
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-card__body {
  padding: 24px;
}
.post-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.accordion-kylena .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-kylena .accordion-button {
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  box-shadow: none;
}
.accordion-kylena .accordion-button:not(.collapsed) {
  background: var(--bg-soft);
  color: var(--navy);
}
.accordion-kylena .accordion-button:focus {
  box-shadow: none;
  border-color: var(--line);
}

/* 12. Forms & contact ------------------------------------------------------ */
.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--body);
}

.contact-tile {
  display: flex;
  gap: 16px;
  padding: 24px;
}
.contact-tile i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.newsletter {
  background: linear-gradient(135deg, var(--navy), #071930);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
}
.newsletter h2 {
  color: #fff;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #0a1e38 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 54px;
}
.cta-band h2 {
  color: #fff;
}

/* 13. Footer --------------------------------------------------------------- */
.footer {
  background: #08182c;
  color: rgba(255, 255, 255, 0.66);
  padding: 76px 0 0;
  font-size: 0.92rem;
}
.footer h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer a {
  color: rgba(255, 255, 255, 0.66);
}
.footer a:hover {
  color: var(--gold);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer .brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer .brand-line img {
  height: 52px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.85rem;
}

/* 14. Floating elements ---------------------------------------------------- */
.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 1040;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
  border: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.whatsapp-float {
  bottom: 20px;
  background: #25d366;
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}
.back-to-top {
  bottom: 84px;
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
}

.cookie-notice {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  z-index: 1050;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-notice.show {
  transform: translateY(0);
}
.cookie-notice p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(6, 20, 38, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.search-overlay.show {
  opacity: 1;
  visibility: visible;
}
.search-overlay input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.4rem;
  padding: 14px 4px;
  width: 100%;
  outline: none;
}
.search-overlay input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.search-results a {
  display: block;
  padding: 12px 4px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-results a:hover {
  color: var(--gold);
}
.search-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
}

/* 15. Responsive ----------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section {
    padding: 68px 0;
  }
  .hero {
    min-height: 78vh;
    padding: 120px 0 70px;
  }
  .navbar-kylena .navbar-nav {
    padding: 12px 0;
  }
  .counter-box {
    border-right: 0;
  }
  .newsletter,
  .cta-band {
    padding: 32px;
  }
  .badge-stat {
    right: 10px;
    bottom: -14px;
  }
}

@media (max-width: 575.98px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .page-header {
    padding: 130px 0 60px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
