/*! Graffix (c) 2026 Graffix, LLC. All rights reserved. Be different. */
/* ============================================================
   GRAFFIX 2.0 — stylesheet (final)
   Dark + orange. Professional bones, premium detailing.
   ============================================================ */

:root {
  --orange: #ff6600;
  --orange-soft: #ff8c3a;
  --orange-deep: #d94f00;

  --bg: #1a1a1d;
  --bg-deep: #141416;
  --panel: #232327;
  --panel-2: #2a2a30;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f3f3f5;
  --muted: #a8a8b1;
  --faint: #74747d;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Manrope", system-ui, sans-serif;

  --content: 760px;
  --content-wide: 1080px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-snap-type: y proximity;
}
body.is-locked { overflow: hidden; }

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

::selection { background: var(--orange); color: #1a1206; }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: #3a3a40;
  border-radius: 99px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: var(--orange-deep); }

.accent { color: var(--orange); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--bg);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark img {
  width: 58px; height: 58px;
  animation: breathe 1.5s var(--ease) infinite;
  filter: drop-shadow(0 0 22px rgba(255, 102, 0, 0.35));
}
.preloader__bar {
  width: 168px; height: 2px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.18s linear;
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

/* ============================================================
   ATMOSPHERE — grain, cursor, progress
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  z-index: 1200;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--orange);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 52px);
  border-bottom: 1px solid transparent;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease), border-color 0.45s var(--ease);
}
.nav.is-scrolled {
  background: rgba(20, 20, 22, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}
.nav__brand img {
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.35));
  transition: transform 0.5s var(--ease);
}
.nav__brand:hover img { transform: rotate(-12deg) scale(1.06); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.nav__links a:not(.nav__contact)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-current { color: var(--text); }
.nav__links a:not(.nav__contact):hover::after,
.nav__links a.is-current::after { width: 100%; }

.nav__contact {
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  color: var(--text) !important;
  transition: background 0.25s var(--ease), border-color 0.25s, color 0.25s;
}
.nav__contact:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1206 !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.nav__toggle span {
  width: 19px; height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTIONS (centered, scroll-snap)
   ============================================================ */
.section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 5vw, 52px) 96px;
  scroll-snap-align: start;
  overflow: hidden;
}
.section--accent { background: var(--bg-deep); }
.section + .section { border-top: 1px solid var(--line); }

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
}
.content--wide { max-width: var(--content-wide); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.section p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 auto 18px;
  max-width: 620px;
}
.section p strong { color: var(--text); font-weight: 700; }
.lead { font-size: clamp(1.1rem, 2.3vw, 1.34rem); }

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: var(--nav-h); }
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(720px circle at 50% 42%, rgba(255, 102, 0, 0.28), transparent 68%);
}
.orb { display: none; }

.hero__content { z-index: 2; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 13vw, 8.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--text);
}
.hero__tagline {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 500;
  color: var(--text);
  margin: 16px 0 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}
.hero__cue {
  position: absolute;
  bottom: 76px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__cue i {
  width: 1px; height: 42px;
  background: linear-gradient(var(--orange), transparent);
  position: relative;
  overflow: hidden;
}
.hero__cue i::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 45%;
  background: var(--orange);
  animation: cue 1.9s var(--ease-io) infinite;
}
@keyframes cue {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(320%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  border-radius: 99px;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--primary {
  background: var(--orange);
  color: #1a1206;
  box-shadow: 0 12px 30px -10px rgba(255, 102, 0, 0.6);
}
.btn--primary:hover {
  background: var(--orange-soft);
  box-shadow: 0 18px 40px -10px rgba(255, 102, 0, 0.75);
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   ABOUT — stats
   ============================================================ */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 9px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ============================================================
   COMPANIES — cards (spotlight + subtle tilt)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.card {
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.card:hover {
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.85);
}
.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 13px;
  border: 1px solid rgba(255, 102, 0, 0.32);
  border-radius: 99px;
}
.card__no {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--faint);
  opacity: 0.45;
}
.card__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.card__desc {
  color: var(--muted) !important;
  margin: 0 0 22px !important;
  max-width: none !important;
}
.card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.94rem;
  transition: padding-left 0.25s var(--ease), color 0.25s;
}
.card__list li span {
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--faint);
  text-align: right;
}
.card__list li:hover { padding-left: 8px; color: var(--orange); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.25s, gap 0.25s var(--ease);
}
.card__link span { transition: transform 0.25s var(--ease); }
.card__link:hover { color: var(--orange); gap: 12px; }
.card__link:hover span { transform: translateX(3px); }

/* ============================================================
   GROUP — monogram + CTA
   ============================================================ */
.monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.monogram span {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.4s var(--ease);
}
.monogram:hover span { transform: translateY(-6px); }
.monogram i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--faint);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  will-change: transform;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, gap 0.25s var(--ease);
}
.link-cta span { transition: transform 0.25s var(--ease); }
.link-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1206;
  gap: 13px;
}
.link-cta:hover span { transform: translateX(3px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__mail {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--orange);
  position: relative;
}
.contact__mail::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.contact__mail:hover::after { transform: scaleX(1); }
.contact__sub { margin-top: 22px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 46px clamp(20px, 5vw, 52px);
}
.footer__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--orange); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  order: 3;
  font-size: 0.8rem;
}
.footer__legal .sep { color: var(--faint); }
.footer__legal a,
.footer__legal button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--faint);
  cursor: pointer;
  transition: color 0.25s;
}
.footer__legal a:hover,
.footer__legal button:hover { color: var(--orange); }
.footer__copy {
  width: 100%;
  order: 4;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--faint);
}

/* ============================================================
   COOKIE CONSENT + LEGAL REDIRECT WARNING
   ============================================================ */
#cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 9600;
  max-width: 620px;
  margin-inline: auto;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
#cookie-banner.visible { transform: translateY(0); opacity: 1; }
#cookie-banner p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  color: var(--muted);
  max-width: none;
  text-align: left;
}
#cookie-banner p a { color: var(--orange); font-weight: 600; }
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-actions button {
  flex: 0 0 auto;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-actions button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1206;
}
.cookie-actions button:not(.primary):hover { border-color: var(--orange); color: var(--orange); }
.cookie-actions button.primary:hover { background: var(--orange-soft); }

#redirect-modal {
  position: fixed;
  inset: 0;
  z-index: 9700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(4px);
}
#redirect-modal.visible { display: flex; }
.redirect-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  text-align: center;
}
.redirect-card .eyebrow {
  display: block;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.redirect-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
}
.redirect-card h3 span { color: var(--orange); }
.redirect-card .detail {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
}
.redirect-count {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}
.redirect-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.redirect-actions button {
  flex: 1;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.redirect-actions button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1206;
}
.redirect-actions button:not(.primary):hover { border-color: var(--orange); color: var(--orange); }
.redirect-actions button.primary:hover { background: var(--orange-soft); }

@media (max-width: 480px) {
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-actions { flex-direction: column; }
}

/* ============================================================
   SCROLL ARROWS (from the original)
   ============================================================ */
.scroll-arrow {
  position: fixed;
  left: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  z-index: 1001;
  transform: translateX(-50%);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.scroll-arrow svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-arrow:hover { transform: translateX(-50%) scale(1.18); }
#scrollDown { bottom: 20px; }
#scrollUp { top: 90px; transform: translateX(-50%) rotate(180deg); }
#scrollUp:hover { transform: translateX(-50%) rotate(180deg) scale(1.18); }
.scroll-arrow.fade { opacity: 0; pointer-events: none; }

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

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 8px;
    padding: 22px clamp(20px, 5vw, 52px) 30px;
    background: rgba(20, 20, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { width: 100%; padding: 11px 0; font-size: 1rem; }
  .nav__links a:not(.nav__contact)::after { display: none; }
  .nav__contact { text-align: center; margin-top: 6px; }
  .nav__toggle { display: flex; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .scroll-arrow { display: none; }
}
