/* ===========================
   RESET & CUSTOM PROPERTIES
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:       #F7F6F3;
  --color-bg-alt:   #FBFBFA;
  --color-surface:  #FFFFFF;
  --color-text:     #111111;
  --color-muted:    #787774;
  --color-border:   #EAEAEA;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Helvetica Neue', 'SF Pro Display', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --nav-h: 64px;
  --max-w: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.25s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  height: var(--nav-h);
  transition: background var(--transition), border-bottom-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  transition: color var(--transition);
}

.nav.scrolled .nav__logo {
  color: var(--color-text);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: var(--space-md);
}

.nav__links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a {
  color: var(--color-muted);
}

.nav__links a:hover {
  color: #FFFFFF;
}

.nav.scrolled .nav__links a:hover {
  color: var(--color-text);
}

/* right cluster: links + language switch */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ===========================
   LANGUAGE SWITCH
   =========================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch__btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.lang-switch__btn:hover {
  color: #FFFFFF;
}

.lang-switch__btn.is-active {
  color: #FFFFFF;
  font-weight: 600;
}

.lang-switch__sep {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.30);
  user-select: none;
}

/* scrolled (light) state */
.nav.scrolled .lang-switch__btn {
  color: var(--color-muted);
}

.nav.scrolled .lang-switch__btn:hover,
.nav.scrolled .lang-switch__btn.is-active {
  color: var(--color-text);
}

.nav.scrolled .lang-switch__sep {
  color: var(--color-border);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: #000;
}

/* Interactive WebGL "Tungsten Reveal" background (see hero engine in main.js) */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none; /* let the cursor-light reach the canvas */
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.80) 0%,
    rgba(8, 8, 8, 0.20) 52%,
    rgba(8, 8, 8, 0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-md);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  pointer-events: none; /* clicks fall through to the light; links re-enable below */
}

.hero__content a {
  pointer-events: auto;
}

.hero__eyebrow {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.hero__scroll {
  display: block;
  margin-top: var(--space-lg);
  width: 1px;
  height: 56px;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0%; }
  100% { top: 100%; }
}


/* ===========================
   SECTION BASE
   =========================== */
.section {
  padding: var(--space-xl) 0;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* italic descender clearance for g, p, q, y, j */
.section__title em {
  font-style: italic;
  color: var(--color-muted);
  display: block;
  padding-bottom: 0.08em;
}

/* ===========================
   SECTIONS FLOW
   =========================== */
.sections-flow {
  position: relative;
}

/* IL FILAMENTO — scroll-drawn amber SVG path in right gutter */
.filament {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - var(--max-w)) / 2);
  height: 100%;
  pointer-events: none;
  overflow: visible;
  display: none;
}

@media (min-width: 1248px) {
  .filament { display: block; }
}

/* ===========================
   ABOUT
   =========================== */
.section--about {
  background: var(--color-bg);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about__image-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #E8E6E1;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.about__img {
  transition: transform 0.8s var(--ease-out);
}

.about__image-wrap:hover .about__img {
  transform: scale(1.03);
}

.about__text {
  position: relative;
  overflow: hidden;
}

/* Ghost numeral — decorative, aria-hidden */
.about__ghost-num {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
}

.about__text .section__label {
  margin-bottom: 1.25rem;
  position: relative;
}

.about__text .section__title {
  margin-bottom: var(--space-md);
}

.body-text p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
  max-width: 48ch;
}

/* ===========================
   WORK
   =========================== */
.section--work {
  background: var(--color-bg);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-surface);
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.work__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.work__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #EDECEA;
}

.work__img-wrap img {
  transition: transform 0.8s var(--ease-out);
}

.work__item:hover .work__img-wrap img {
  transform: scale(1.05);
}

.work__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.work__name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.work__desc {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* clickable work items open the gallery */
.work__item[data-gallery] {
  cursor: pointer;
}

.work__item[data-gallery]:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.work__cue {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
}

.work__item[data-gallery]:hover .work__cue {
  opacity: 1;
  transform: translateX(3px);
}

/* "Book an appointment" CTA in the Consulenza card */
.work__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: 1.25rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 2px;
  transition: background-color var(--transition), color var(--transition);
}

.work__cta::after {
  content: '→';
  font-size: 0.9em;
  transition: transform var(--transition);
}

.work__cta:hover {
  background-color: var(--color-text);
  color: var(--color-surface);
}

.work__cta:hover::after {
  transform: translateX(3px);
}

.work__cta:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

/* ===========================
   LIGHTBOX / CAROUSEL
   =========================== */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(14, 14, 14, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease-out), visibility 0.32s var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__stage {
  flex: 1;
  max-width: min(1100px, 100%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.lightbox.is-open .lightbox__img {
  opacity: 1;
  transform: scale(1);
}

.lightbox__nav,
.lightbox__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.lightbox__nav:hover,
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox__nav {
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__counter {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
  .lightbox__img {
    max-height: 70vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__img {
    transition: none;
  }
}

/* ===========================
   BRANDS
   =========================== */
.section--brands {
  background: var(--color-bg);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

/* split header: headline left, intro right */
.brands__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--space-lg);
}

.brands__header-left .section__title {
  margin-bottom: 0;
}

.brands__intro {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-muted);
  max-width: 44ch;
  align-self: end;
  padding-bottom: 0.5rem;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.brand-card {
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  transition: background 0.2s var(--ease-out);
}

.brand-card:hover {
  background: #F9F9F8;
}

/* panoramic image strip */
.brand-card__img-wrap {
  aspect-ratio: 5/2;
  overflow: hidden;
  background: #EDECEA;
}

.brand-card__img-wrap img {
  transition: transform 0.8s var(--ease-out);
}

.brand-card:hover .brand-card__img-wrap img {
  transform: scale(1.04);
}

.brand-card__body {
  padding: 1.75rem var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-card__name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.brand-card__text {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-muted);
  flex: 1;
}

.brand-card__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--transition), border-color var(--transition);
}

.brand-card__link:hover {
  color: var(--color-text);
  border-color: var(--color-muted);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text);
}

.footer__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.footer__contact {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.75rem;
  transition: color var(--transition);
}

.footer__contact:hover {
  color: var(--color-text);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-end;
  padding-top: 0.25rem;
}

.footer__nav a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-text);
}

/* ghost G monogram */
.footer__ghost {
  position: absolute;
  right: -3rem;
  bottom: 3.5rem;
  font-family: var(--font-serif);
  font-size: 30vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  user-select: none;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy,
.footer__location {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ===========================
   FOOTER — LAMP STATES
   =========================== */

/* footer__inner sits above the glow pseudo-element */
.footer__inner {
  position: relative;
  z-index: 1;
}

/* Dark unlit state */
.footer.is-dark {
  background: #0F0D0C;
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* Lamp glow: tight core + wide ambient — reads as a real point source */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle 80px at var(--lamp-x, 95%) 0px, rgba(245, 210, 130, 0.30) 0%, transparent 100%),
    radial-gradient(ellipse 1000px 600px at var(--lamp-x, 95%) -40px, rgba(200, 150, 80, 0.12) 0%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.footer.is-lit::before {
  opacity: 1;
  transition: opacity 1.6s var(--ease-out) 0.05s;
}

/* Lamp bulb — tiny warm dot at top-center, pendant hanging at the ceiling line */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--lamp-x, 95%);
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  z-index: 0;
  pointer-events: none;
  transition: background 0.3s ease;
}

.footer.is-lit::after {
  background: rgba(250, 220, 140, 0.95);
  box-shadow:
    0 2px 8px 4px rgba(220, 180, 80, 0.5),
    0 4px 30px 12px rgba(200, 150, 70, 0.2);
  transition: background 0.5s ease 0.1s, box-shadow 0.8s ease 0.1s;
}

/* Text colors in dark context (both is-dark and is-lit share dark bg) */
.footer.is-dark .footer__name,
.footer.is-lit .footer__name { color: #EDE9E3; }

.footer.is-dark .footer__tagline,
.footer.is-lit .footer__tagline { color: #5A5652; }

.footer.is-dark .footer__contact,
.footer.is-lit .footer__contact { color: #7A7470; }

.footer.is-dark .footer__contact:hover,
.footer.is-lit .footer__contact:hover { color: #EDE9E3; }

.footer.is-dark .footer__nav a,
.footer.is-lit .footer__nav a { color: #7A7470; }

.footer.is-dark .footer__nav a:hover,
.footer.is-lit .footer__nav a:hover { color: #EDE9E3; }

.footer.is-dark .footer__copy,
.footer.is-dark .footer__location,
.footer.is-lit .footer__copy,
.footer.is-lit .footer__location { color: #4A4644; }

.footer.is-dark .footer__bottom,
.footer.is-lit .footer__bottom { border-top-color: rgba(255, 255, 255, 0.06); }

.footer.is-dark .footer__ghost,
.footer.is-lit .footer__ghost { color: rgba(255, 245, 230, 0.04); }

/* is-dark: content hidden (room before the light) */
.footer.is-dark .footer__inner {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* is-lit: content fades in after the glow bloom starts */
.footer.is-lit .footer__inner {
  opacity: 1;
  transition: opacity 0.9s ease 0.55s;
}

/* is-lit: bg transitions to match dark context */
.footer.is-lit {
  background: #0F0D0C;
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .brands__header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .brands__intro {
    max-width: 60ch;
    padding-bottom: 0;
  }
}

@media (max-width: 900px) {
  .sections-flow__rail {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image-wrap {
    aspect-ratio: 4/3;
  }

  .about__img {
    object-position: center top;
  }

  .about__ghost-num {
    font-size: 9rem;
    top: -1rem;
    right: -0.5rem;
  }

  .work__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .brands__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem var(--space-md);
  }
}

@media (max-width: 600px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5.5rem;
  }

  .nav__links {
    display: none;
  }

  .hero__content {
    padding: var(--space-md);
  }

  .footer__ghost {
    font-size: 50vw;
    right: -1rem;
  }
}
