/* =============================================
   DMR Électrique – Main Stylesheet
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  --bg:          #080c1a;
  --bg-card:     #0f1628;
  --bg-card-2:   #141e33;
  --bg-dark:     #050810;
  --border:      rgba(255, 255, 255, 0.08);
  --border-hover:rgba(255, 200, 60, 0.35);

  --primary:     #f5a623;   /* electric amber */
  --primary-dk:  #d4891e;
  --primary-lt:  #ffcc5e;
  --primary-glow:rgba(245, 166, 35, 0.25);

  --blue:        #2563eb;
  --blue-lt:     #60a5fa;

  --text:        #f1f5f9;
  --text-muted:  #8b9ab4;
  --text-subtle: #4a5a72;

  --radius:      14px;
  --radius-lg:   22px;
  --radius-full: 999px;

  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px var(--primary-glow);

  --transition:  0.25s ease;
  --font-display:'Sora', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1200px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.highlight {
  color: var(--primary);
  position: relative;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}
.section--dark {
  background-color: var(--bg-dark);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p   { color: var(--text-muted); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--primary-lt);
  box-shadow: 0 0 24px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.4rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8, 12, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}

.nav-logo img {
  height: 84px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.lang-sep { opacity: 0.3; }

body.lang-fr .lang-fr,
body.lang-en .lang-en {
  color: var(--primary);
}

/* Nav CTA */
.nav-cta { padding: 0.5rem 1.3rem; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Hero Content */
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}


/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2rem;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-note {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-align: center;
}

.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.badge-top-right { top: 1rem; right: -0.5rem; color: var(--blue-lt); }
.badge-bottom-left { bottom: 1rem; left: -0.5rem; color: var(--primary); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(6px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card--accent {
  background: linear-gradient(135deg, rgba(245,166,35,0.12) 0%, var(--bg-card) 100%);
  border-color: rgba(245,166,35,0.25);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,166,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
}

.service-card h3 { margin-top: 0.25rem; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; flex: 1; }

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}
.service-link:hover { opacity: 0.8; }
.service-link--cta  { font-size: 0.9rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-photo-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card-2) 0%, rgba(245,166,35,0.06) 100%);
  border: 1px dashed rgba(245,166,35,0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  max-height: 420px;
  overflow: hidden;
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.about-credential-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow);
  min-width: 240px;
}

.credential-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.credential-row > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.credential-row strong { font-size: 0.88rem; display: block; }
.credential-row span   { font-size: 0.75rem; color: var(--text-muted); }

.credential-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential-icon svg { width: 18px; height: 18px; fill: var(--primary); }
.credential-icon--green { background: rgba(34,197,94,0.12); }
.credential-icon--green svg { stroke: #22c55e; fill: none; }

.about-content h2  { margin-bottom: 1.25rem; }
.about-content p   { color: var(--text-muted); margin-bottom: 1rem; }

.about-features {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}
.about-features svg {
  width: 18px; height: 18px;
  stroke: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(37,99,235,0.08) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg {
  width: 24px; height: 24px;
  stroke: var(--primary);
}

.why-card h3 { margin-bottom: 0.6rem; }
.why-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dk), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2  { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
a.contact-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(245,166,35,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--primary);
}
.contact-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-item-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item strong { font-size: 0.92rem; }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success svg {
  width: 56px; height: 56px;
  stroke: #22c55e;
  margin: 0 auto 1.25rem;
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p   { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--text);
  margin-bottom: 1.1rem;
}

.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a,
.footer-services a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-services a:hover { color: var(--primary); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p,
.footer-legal {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-credential-card { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Compact nav bar */
  .nav-container { padding: 0.75rem 1rem; }
  .nav-logo img  { height: 50px; }

  /* Mobile nav — dropdown panel below header */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 12, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.5rem 1rem 1rem;
    gap: 0.15rem;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    text-align: left;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 100; }
  .lang-toggle { z-index: 100; }

  .hero { padding: 5.5rem 0 3rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .section-header p { font-size: 0.9rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
[hidden] { display: none !important; }
