/* ============================================
   SMK — Sacha Micallef-Korotkevitch
   Design inspired by bump.fr — bold editorial,
   dark/cream contrast, generous whitespace.
============================================= */

:root {
  --black: #0b0b0c;
  --black-soft: #141416;
  --cream: #f5f3ee;
  --cream-soft: #ebe8e0;
  --ink: #1a1a1a;
  --muted-dark: #8b8a85;
  --muted-light: #6b6a64;
  --accent: #C9E900;

  --font-display: 'Clash Display', 'Satoshi', sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --container: 1240px;
  --section-pad: clamp(4rem, 9vw, 9rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

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

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,.8,.24,1), transform 0.8s cubic-bezier(.16,.8,.24,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-color: rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.main-nav a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.main-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(245,243,238,0.35);
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-cta:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(201,233,0,0.18) 0%, rgba(201,233,0,0) 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 24rem); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy {
  max-width: 38rem;
}
.hero-carousel {
  width: 100%;
  max-width: 24rem;
  justify-self: end;
}
.carousel {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.18);
  background: rgba(12, 12, 12, 0.95);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem 1.75rem 2.75rem;
  background: linear-gradient(to top, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.6) 60%, rgba(11,11,12,0) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.carousel:hover .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}
.carousel-caption h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.carousel-caption p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(245,243,238,0.85);
}
.carousel-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 1;
}
.carousel-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: none;
  background: rgba(245, 243, 238, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.15);
}
.eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-tagline {
  margin-top: 1.25rem;
  max-width: 100%;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}
.hero-tagline a {
  display: inline-block;
  color: var(--black);
  background: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  transform: rotate(-2deg);
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-tagline a:hover {
  transform: rotate(0deg) scale(1.05);
  background: var(--cream);
}
.hero-bottom {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(245,243,238,0.75);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--cream);
}
.btn-ghost {
  border: 1px solid rgba(245,243,238,0.3);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(245,243,238,0.5);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Marquee ---------- */
.marquee-section {
  background: var(--accent);
  border-top: 1px solid rgba(245,243,238,0.1);
  padding: 0.8rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee-track span:nth-child(2n) { color: white; opacity: 0.7; font-size: 1.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section generic ---------- */
section { padding: var(--section-pad) 0; }
.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}
.about .section-title {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.section-title.big { font-size: clamp(2.2rem, 4.6vw, 3.75rem); max-width: 16ch; margin-bottom: 3.5rem; }
.section-title.light { color: var(--cream); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-media {
  position: sticky;
  top: 8rem;
}
.about-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
}
.about-text {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  text-align: justify;
  margin-bottom: 1.25rem;
  max-width: 34rem;
}
.stats {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 34rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  background: var(--accent);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  transform: rotate(-2deg);
  transition: transform 0.25s ease, background 0.25s ease;
}
.stat-number:hover {
  transform: rotate(0deg) scale(1.05);
  background: var(--cream);
}
.stat-label {
  font-size: 0.85rem;
  text-align: center;
  color: var(--ink);
  margin-top: 0.6rem;
}

/* ---------- Services ---------- */
.services { background: var(--black); color: var(--cream); }
.services .section-title { color: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,243,238,0.12);
  border: 1px solid rgba(245,243,238,0.12);
}
.service-card {
  background: var(--black);
  padding: 2.25rem 1.75rem;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--black-soft); }
.service-index {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 1rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.5;
}

/* ---------- Work ---------- */
.work { background: var(--black-soft); color: var(--cream); }
.work-list {
  display: flex;
  flex-direction: column;
}
.work-item {
  border-top: 1px solid rgba(245,243,238,0.12);
}
.work-item:last-child { border-bottom: 1px solid rgba(245,243,238,0.12); }
.work-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.work-item-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.work-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid rgba(201,233,0,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.work-toggle-icon {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(245,243,238,0.3);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.work-toggle-icon::before,
.work-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.work-toggle-icon::before { width: 12px; height: 2px; }
.work-toggle-icon::after { width: 2px; height: 12px; }
.work-item.open .work-toggle-icon { background: var(--accent); border-color: var(--accent); }
.work-item.open .work-toggle-icon::before,
.work-item.open .work-toggle-icon::after { background: var(--black); }
.work-item.open .work-toggle-icon::after { transform: translate(-50%, -50%) scale(0); opacity: 0; }
.work-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.work-item.open .work-body { grid-template-rows: 1fr; }
.work-body-inner { overflow: hidden; }
.work-item p {
  color: rgba(245,243,238,0.7);
  font-size: 1rem;
  max-width: 60ch;
  padding-bottom: 0.25rem;
}
.work-results {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.work-results span {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 500;
  background: rgba(245,243,238,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}
.work-gallery {
  position: relative;
  width: 100%;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}
.work-gallery-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.work-gallery-track::-webkit-scrollbar { display: none; }
.work-gallery-item {
  position: relative;
  flex: 0 0 clamp(150px, 20vw, 230px);
  aspect-ratio: 4 / 3;
  border-radius: 0.85rem;
  overflow: hidden;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  scroll-snap-align: start;
}
.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-gallery-item:hover img { transform: scale(1.06); }
.work-gallery-item[data-type="video"]::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cream);
  background: rgba(11,11,12,0.25);
}
.work-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,243,238,0.35);
  background: rgba(11,11,12,0.6);
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.work-gallery-arrow:hover { border-color: var(--accent); color: var(--accent); }
.work-gallery-arrow.prev { left: 0.5rem; }
.work-gallery-arrow.next { right: 0.5rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11,11,12,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-stage {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 0.5rem;
  display: block;
}
.lightbox-close,
.lightbox-arrow {
  position: fixed;
  border: 1px solid rgba(245,243,238,0.35);
  background: rgba(11,11,12,0.6);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.75rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- Experience ---------- */
.experience { background: var(--cream); }
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.timeline-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.timeline-date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.timeline-org {
  display: block;
  font-size: 0.9rem;
  color: var(--muted-light);
  margin-bottom: 0.75rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--muted-light);
  max-width: 65ch;
}

.education {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.education-item {
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 1rem;
}
.education-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.education-item span {
  font-size: 0.88rem;
  color: var(--muted-light);
}

/* ---------- Contact ---------- */
.contact { background: var(--black); color: var(--cream); text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 2.5rem;
}
.contact-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.contact-link {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.contact-link:hover { color: var(--accent); border-color: var(--accent); }
.contact-location {
  color: rgba(245,243,238,0.5);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(245,243,238,0.1);
  padding: 1.75rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: rgba(245,243,238,0.5);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (min-width: 1101px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(280px, 27rem); }
  .hero-carousel { max-width: 27rem; }
  .carousel { aspect-ratio: 3 / 4.6; }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-carousel { max-width: 100%; justify-self: stretch; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 260px; margin: 0 auto 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .education { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 320px;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .work-gallery-item { flex-basis: clamp(130px, 42vw, 190px); }
  .lightbox-arrow { width: 2.5rem; height: 2.5rem; font-size: 1.4rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 2.25rem; height: 2.25rem; font-size: 1.25rem; }
}
