/* Mo Motorcycle Repairs — brand colors sourced from client intake doc:
   #3E5BA9 (blue) + #E81D23 (red), "classy with red and blue to attract riders" */
:root {
  --blue: #3e5ba9;
  --blue-dark: #2c4380;
  --red: #e81d23;
  --red-dark: #b91419;
  --ink: #16192b;
  --ink-soft: #4a4f6a;
  --paper: #ffffff;
  --paper-soft: #f4f6fb;
  --line: #e3e7f2;
  --shadow: 0 20px 45px -20px rgba(22, 25, 43, 0.25);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-alt { background: var(--paper-soft); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 24px -10px rgba(232, 29, 35, 0.55); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 16px 30px -10px rgba(232, 29, 35, 0.65); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.35);
  padding: 0.6rem 0;
}
.brand { display: flex; align-items: center; gap: 0.65em; text-decoration: none; color: #fff; font-weight: 800; font-size: 1.15rem; transition: color 0.3s var(--ease); }
.site-header.is-scrolled .brand { color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; }
.main-nav a {
  text-decoration: none; color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.94rem;
  position: relative; padding-bottom: 4px; transition: color 0.3s var(--ease);
}
.site-header.is-scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.5em;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; padding: 0.55em 1em; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.site-header.is-scrolled .lang-btn { background: var(--paper-soft); border-color: var(--line); color: var(--ink); }
.lang-btn:hover { background: rgba(255,255,255,0.25); }
.site-header.is-scrolled .lang-btn:hover { background: #eaeefb; }
.lang-btn svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.lang-switch.open .lang-btn svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; background: #fff;
  border-radius: 12px; box-shadow: var(--shadow); padding: 0.4rem; min-width: 170px;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.97);
  transition: all 0.25s var(--ease); z-index: 50;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 0.6em 0.8em; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  color: var(--ink); cursor: pointer; transition: background 0.2s;
}
.lang-menu button:hover { background: var(--paper-soft); }
.lang-menu button.active { color: var(--red); background: #fdeceb; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px; border: none;
  background: rgba(255,255,255,0.15); cursor: pointer; position: relative;
}
.site-header.is-scrolled .nav-toggle { background: var(--paper-soft); }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 55%, #24346b 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(2px);
  background: radial-gradient(circle at 30% 30%, rgba(232,29,35,0.55), transparent 70%);
  animation: float 9s ease-in-out infinite;
}
.hero::before { width: 480px; height: 480px; top: -140px; right: -120px; }
.hero::after { width: 340px; height: 340px; bottom: -120px; left: -80px; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.06); }
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35);
  padding: 0.5em 1em; border-radius: 999px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; color: #ffd166; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 0.6em; }
.hero h1 span { color: #ffd166; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.86); max-width: 42ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.stat { min-width: 100px; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: #fff; display: flex; align-items: baseline; gap: 0.15em; }
.stat-num .suffix { font-size: 1.2rem; color: #ffd166; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-art .plate {
  width: min(380px, 100%); aspect-ratio: 1; border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: floatY 5s ease-in-out infinite;
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding: 10px;
}
.hero-art .plate svg { width: 62%; color: #fff; }
.hero-art .plate img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 24px;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.55);
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-art .ring {
  position: absolute; border: 2px dashed rgba(255,255,255,0.25); border-radius: 50%;
  width: 115%; height: 115%; animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4em;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  z-index: 2;
}
.scroll-cue .dot {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 999px; position: relative;
}
.scroll-cue .dot::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { animation: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.about-visual { position: relative; }
.about-card {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius); padding: 1.4rem; color: #fff; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.about-card svg { width: 84px; height: 84px; margin-bottom: 1rem; color: #ffd166; }
.about-card h3 { font-size: 1.4rem; margin: 1rem 0.4rem 0.2rem; }
.about-card p { color: rgba(255,255,255,0.85); margin: 0 0.4rem 2rem; }
.about-card img { width: 100%; border-radius: 12px; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.about-card .headshot-row { display: flex; align-items: center; gap: 0.8rem; margin: 0.9rem 0.4rem 0; }
.about-card .headshot-row img { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); aspect-ratio: 1; flex-shrink: 0; }
.about-badge {
  position: absolute; bottom: -22px; right: -18px; background: var(--red);
  color: #fff; border-radius: 16px; padding: 1rem 1.3rem; box-shadow: var(--shadow);
  font-weight: 800; text-align: center; line-height: 1.1;
}
.about-badge .n { font-size: 1.8rem; display: block; }
.about-badge .l { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { color: var(--ink-soft); font-size: 1.05rem; }
.about-meta { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.meta-pill {
  display: flex; align-items: center; gap: 0.6em; background: var(--paper-soft);
  border: 1px solid var(--line); border-radius: 12px; padding: 0.7em 1em; font-weight: 600; font-size: 0.9rem;
}
.meta-pill svg { width: 20px; height: 20px; color: var(--red); }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--red), var(--blue));
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform 0.35s var(--ease);
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.08); }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.why-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Services ---------- */
.section-head.centered { max-width: 620px; margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem 1.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 14px 30px -18px rgba(22,25,43,0.3); border-color: var(--blue); }
.service-name { font-weight: 700; font-size: 0.96rem; }
.service-price { font-weight: 800; color: var(--red); white-space: nowrap; font-size: 0.98rem; }
.services-note { text-align: center; color: var(--ink-soft); margin-top: 2rem; font-style: italic; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-tile {
  aspect-ratio: 1; border-radius: 16px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform 0.4s var(--ease);
}
.gallery-tile:hover { transform: scale(1.03); }
.gallery-tile svg { width: 34%; opacity: 0.9; }
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, rgba(0,0,0,0) 40%, rgba(10,12,30,0.75) 100%);
}
.gallery-tile span {
  position: absolute; bottom: 0.9rem; left: 0.9rem; right: 0.9rem; z-index: 2;
  font-size: 0.82rem; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-tile.g1 { background: linear-gradient(150deg, var(--blue), var(--blue-dark)); }
.gallery-tile.g2 { background: linear-gradient(150deg, var(--red), var(--red-dark)); }
.gallery-tile.g3 { background: linear-gradient(150deg, #24346b, var(--blue)); }
.gallery-tile.g4 { background: linear-gradient(150deg, var(--red-dark), #7a0d10); }
.gallery-tile.g5 { grid-column: span 2; background: linear-gradient(120deg, var(--blue), var(--red)); }
.gallery-tile.g6 { background: linear-gradient(150deg, var(--blue-dark), #101a3c); }
.gallery-tile.g7 { background: linear-gradient(150deg, var(--red), var(--blue)); }
.gallery-tile.g7 img { object-position: top center; }
.gallery-tile.g3 img { object-position: top center; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h4 { margin: 0 0 0.3em; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.contact-card a, .contact-card p { font-weight: 700; font-size: 1.05rem; margin: 0; text-decoration: none; color: var(--ink); }
.contact-card a:hover { color: var(--red); }
.contact-map-note {
  grid-column: 1 / -1; background: var(--paper-soft); border-radius: var(--radius);
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem; color: var(--ink-soft); font-size: 0.92rem;
}
.contact-map-note svg { width: 28px; height: 28px; color: var(--blue); flex-shrink: 0; }

.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff; border-radius: 24px; padding: 3rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 46ch; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #101430; color: rgba(255,255,255,0.75); padding: 3rem 0 1.5rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.6em; color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.6em; }
.footer-tagline { max-width: 32ch; font-size: 0.9rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55em; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.72); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.82rem;
}

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6); text-decoration: none;
  animation: pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 14px 30px -10px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 30px -10px rgba(37,211,102,0.6); }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.g5 { grid-column: span 1; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav ul, .main-nav { position: static; }
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(300px, 80%);
    background: #fff; flex-direction: column; align-items: flex-start; padding: 6rem 1.75rem 2rem;
    transition: right 0.4s var(--ease); box-shadow: -20px 0 40px rgba(0,0,0,0.15);
  }
  .nav-open .main-nav { right: 0; }
  .main-nav ul { flex-direction: column; gap: 1.3rem; }
  .main-nav a { color: var(--ink); }
  .nav-toggle { display: block; }
  .why-grid, .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile.g5 { grid-column: span 1; }
  .cta-band { padding: 2rem 1.4rem; }
}
