/* ==========================================================================
   Laturizm — laturizm.com
   Brand palette derived from the Laturizm logo
   ========================================================================== */

:root {
  /* Brand */
  --plum: #430e45;
  --plum-deep: #2d0a30;
  --plum-soft: #5d2160;
  --berry: #b7195b;
  --magenta: #dc2387;
  --pink: #ed4d73;
  --coral: #f1697c;
  --sky: #4ba5db;
  --lavender: #929dcf;
  --lilac: #c7d9f0;
  --violet: #753594;
  --ink: #231f20;

  /* Surfaces & text */
  --bg: #ffffff;
  --bg-tint: #faf6fb;
  --bg-tint-2: #f5eef7;
  --line: #ecdff0;
  --text: #3d3440;
  --muted: #75677a;

  /* Type */
  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Misc */
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(67, 14, 69, .06), 0 4px 14px rgba(67, 14, 69, .06);
  --shadow-lg: 0 6px 18px rgba(67, 14, 69, .10), 0 20px 44px rgba(67, 14, 69, .12);
  --grad-accent: linear-gradient(100deg, var(--magenta), var(--berry));
  --wrap: 1140px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--berry); text-decoration: none; }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--plum);
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 92px 0; }
.section--tint { background: var(--bg-tint); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); }
.section-head p { color: var(--muted); font-size: 17.5px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  border: 0;
}

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(183, 25, 91, .32);
}
.btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 28px rgba(183, 25, 91, .4); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
}
.btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .08); }

.btn--outline {
  background: #fff;
  color: var(--plum);
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--plum-soft); color: var(--plum); }

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--plum-deep);
  color: #e8dcec;
  font-size: 13.5px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}

.topbar a { color: #e8dcec; font-weight: 600; }
.topbar a:hover { color: #fff; }

.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { flex: none; opacity: .75; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(67, 14, 69, .07);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }

.nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav a:not(.btn):hover { color: var(--plum); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav .btn { padding: 11px 22px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
}

.lang-switch a, .lang-switch span {
  padding: 7px 12px;
  color: var(--muted);
}

.lang-switch [aria-current="true"] {
  background: var(--plum);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--plum);
  border-radius: 3px;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(220, 35, 135, .38), transparent 62%),
    radial-gradient(700px 500px at -8% 110%, rgba(117, 53, 148, .5), transparent 60%),
    linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 55%, #571a58 100%);
  color: #fff;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 40px;
  padding-top: 96px;
  padding-bottom: 104px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.6vw, 60px);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--coral), var(--magenta) 55%, var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 18.5px;
  line-height: 1.7;
  color: #ead9ee;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: #f3e8f5;
  backdrop-filter: blur(4px);
}

.stat-chip svg { flex: none; color: var(--coral); }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero-art img {
  width: min(480px, 100%);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .35));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-14px) rotate(0.001deg); }
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .14), transparent 70%);
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.cards-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}

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

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card:hover .card-media img { transform: scale(1.05); }

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45, 10, 48, .55));
}

.card-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 22.5px; margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 15.5px; flex: 1; margin-bottom: 18px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--berry);
}

.card-link svg { transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }

.cards-icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 26px;
}

.icard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.icard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.icard-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bg-tint-2);
  color: var(--plum);
  margin-bottom: 18px;
}

.icard h3 { font-size: 19px; margin-bottom: 8px; }
.icard p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.icard .card-link { font-size: 13.5px; }

/* --------------------------------------------------------------------------
   About / Kurumsal
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 60px;
  align-items: center;
}

.about-copy .section-head { margin-bottom: 26px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--text);
}

.check-list svg { flex: none; margin-top: 3px; color: var(--magenta); }

.about-panel {
  position: relative;
  background: linear-gradient(165deg, var(--plum-deep), var(--plum) 60%, var(--plum-soft));
  border-radius: 22px;
  padding: 40px 36px;
  color: #f0e4f3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: url("../img/favicon.svg") no-repeat center / contain;
  opacity: .16;
  transform: rotate(14deg);
}

.about-panel h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}

.about-panel p { color: #dcc8e1; font-size: 15px; }

.dept-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.dept-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  font-size: 14px;
}

.dept-list span { color: #e9d9ed; font-weight: 600; }
.dept-list a { color: #fff; font-weight: 700; white-space: nowrap; }
.dept-list a:hover { color: var(--coral); }

/* --------------------------------------------------------------------------
   Memberships
   -------------------------------------------------------------------------- */

.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.partner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  display: grid;
  place-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 0;
  margin: 0;
}

.partner img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(18%);
  transition: filter .2s ease, transform .2s ease;
}

.partner:hover img { filter: none; transform: scale(1.04); }

.partner figcaption { font-size: 12.5px; font-weight: 700; color: var(--muted); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.contact-cards { display: grid; gap: 18px; align-content: start; }

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-tint-2);
  color: var(--plum);
}

.contact-card h3 { font-size: 18px; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 15px; }
.contact-card a { font-weight: 700; }

.map-panel {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
  background: #fff;
}

.map-frame {
  position: relative;
  flex: 1;
  min-height: 340px;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(420px 260px at 70% 20%, rgba(220, 35, 135, .08), transparent 60%),
    var(--bg-tint-2);
  color: var(--plum);
  padding: 24px;
}

.map-placeholder svg { margin: 0 auto 12px; color: var(--magenta); }
.map-placeholder strong { display: block; font-size: 17px; margin-bottom: 4px; }
.map-placeholder span { color: var(--muted); font-size: 14.5px; }

.map-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  background: #fff;
}

.map-panel-footer a { font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--plum-deep);
  color: #cfb9d4;
  padding: 70px 0 0;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 330px; line-height: 1.7; }

.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { color: #cfb9d4; }
.footer a:hover { color: #fff; }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 3px; opacity: .65; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-weight: 700;
  color: #fff !important;
}

.social-link:hover { border-color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
}

.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #a98cb0;
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art img { animation: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .cards-photo { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .partners { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .topbar .topbar-group:last-child { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(67, 14, 69, .12);
    padding: 14px 24px 22px;
    display: none;
  }

  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 16px; }
  .nav .btn { margin-top: 8px; }
  .lang-switch { align-self: flex-start; margin-top: 6px; }
  .nav-toggle { display: block; }

  .hero .wrap { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 72px; }
  .hero-art { order: -1; min-height: 0; }
  .hero-art img { width: min(300px, 70%); }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 68px 0; }
}

@media (max-width: 620px) {
  .cards-photo { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { flex: 1; }
  .brand img { height: 44px; }

  .topbar .wrap { flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
  .topbar-group { gap: 14px; }

  .map-panel-footer { flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   Visual polish
   -------------------------------------------------------------------------- */

::selection { background: var(--magenta); color: #fff; }

/* Primary button: gradient glides on hover */
.btn--primary {
  background: linear-gradient(100deg, var(--magenta), var(--berry) 55%, var(--violet));
  background-size: 220% 100%;
  background-position: 0% 0%;
  transition: transform .18s ease, box-shadow .18s ease, background-position .4s ease;
}

.btn--primary:hover { background-position: 90% 0%; }

/* Hero: gentle breathing glow behind the fan */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 420px at 68% 34%, rgba(241, 105, 124, .16), transparent 65%);
  opacity: .35;
  animation: hero-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-glow {
  to { opacity: 1; }
}

/* Photo cards: warm brand tint sweeps in on hover */
.card-media::after { transition: background .35s ease; }

.card:hover .card-media::after {
  background: linear-gradient(180deg, rgba(220, 35, 135, .14) 0%, transparent 45%, rgba(45, 10, 48, .58) 100%);
}

/* Icon cards: each service gets its own fan color */
.icard-icon { transition: transform .22s ease; }
.icard:hover .icard-icon { transform: scale(1.08) rotate(-4deg); }

.cards-icon .icard:nth-of-type(1) .icard-icon { background: rgba(220, 35, 135, .10); color: var(--berry); }
.cards-icon .icard:nth-of-type(2) .icard-icon { background: rgba(75, 165, 219, .13); color: #2e7cb0; }
.cards-icon .icard:nth-of-type(3) .icard-icon { background: rgba(117, 53, 148, .11); color: var(--violet); }
.cards-icon .icard:nth-of-type(4) .icard-icon { background: rgba(210, 77, 80, .11); color: #c2403f; }
.cards-icon .icard:nth-of-type(5) .icard-icon { background: rgba(146, 157, 207, .17); color: #55609f; }

/* Partner & contact cards: lift on hover */
.partner { transition: transform .2s ease, box-shadow .2s ease; }
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.contact-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-3px); border-color: #e5cbec; box-shadow: var(--shadow-lg); }

/* Footer: signature fan-gradient hairline */
.footer { position: relative; }

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--magenta) 28%, var(--pink) 52%, var(--coral) 72%, var(--sky) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; opacity: .7; }
  .icard:hover .icard-icon { transform: none; }
  .btn--primary { transition: none; }
}
