:root {
  /* surfaces */
  --background: #EEEEE7;
  --header-background: #dddddd77;

  /* ink */
  --black: #000000;
  --primary:    rgba(0,0,0,0.85);
  --secondary:  rgba(0,0,0,0.60);
  --tertiary:   rgba(0,0,0,0.45);
  --quaternary: rgba(0,0,0,0.20);

  /* brand */
  --blue:    #0358F7;
  --red:     #FA3D1D;
  --pink:    #FD02F5;
  --yellow:  #FFB005;
  --brown:   #340B05;
  --grey:    #D9D9D9;

  /* fonts */
  --font-serif: "EB Garamond", serif;
  --font-mono:  "Space Mono", monospace;

  /* easings */
  --ease-out-quint: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-quart:     cubic-bezier(0.77, 0, 0.175, 1);
  --ease-link:      cubic-bezier(0.5, 1, 0.9, 1);

  /* effects */
  --trail-color-hsl: 220, 100%;
}

[data-theme="dark"] {
  --background: #111111;
  --primary: rgba(255, 255, 255, 0.85);
  --secondary: rgba(255, 255, 255, 0.60);
  --tertiary: rgba(255, 255, 255, 0.45);
  --quaternary: rgba(255, 255, 255, 0.20);
  --trail-color-hsl: 220, 100%;
}

[data-theme="euphoria"] {
  --background: #0d0016;
  --primary: #ffffff;
  --secondary: rgba(255, 255, 255, 0.70);
  --tertiary: rgba(255, 255, 255, 0.40);
  --quaternary: rgba(255, 255, 255, 0.20);
  --blue: #00f3ff;
  --trail-color-hsl: 300, 100%;
}

[data-theme="euphoria"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 0, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 243, 255, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 25%, transparent 75%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  z-index: 0;
  animation: hazePulse 8s ease-in-out infinite alternate;
}

@keyframes hazePulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

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

html, body {
  transition: background-color 0.5s var(--ease-out-cubic), color 0.5s var(--ease-out-cubic);
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  background-color: var(--background);
  color: var(--primary);
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Canvas Layer */
.canvas-wrapper {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 1000;
}

.cursor-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--blue);
  color: var(--background);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

[data-theme="euphoria"] .nav-overlay {
  background-color: rgba(13, 0, 22, 0.8);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Status Pill */
.status-pill {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
  opacity: 0;
  animation: siteFadeIn 1s var(--ease-out-cubic) forwards;
  animation-delay: 1.8s;
}

.status-pill-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.4s ease;
}


[data-theme="euphoria"] .theme-box {
  background-color: #ff00ff;
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

.theme-box {
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border: none;
  transition: background-color 0.2s ease;
}

.theme-text {
  position: relative;
  display: inline-block;
}

.theme-text::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dotted transparent;
  pointer-events: none;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn:hover .theme-text::before {
  border-color: currentColor;
}

[data-theme="dark"] {
  --background: #111111;
  --primary: rgba(255, 255, 255, 0.85);
  --secondary: rgba(255, 255, 255, 0.60);
  --tertiary: rgba(255, 255, 255, 0.45);
  --quaternary: rgba(255, 255, 255, 0.20);
}

/* Typography Classes */
.mono-text, .mono-link, .mono-button {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.1px;
  line-height: normal;
  color: inherit;
  text-decoration: none;
}

.show-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  margin-left: 8px;
}

.mono-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
}

.mono-link::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dotted transparent;
  pointer-events: none;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mono-link:hover::before {
  border-color: currentColor;
}

.mono-button {
  height: 40px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted var(--background);
  color: var(--background);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="euphoria"] .mono-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.mono-button:hover {
  background-color: var(--background);
  color: var(--blue);
}

[data-theme="euphoria"] .mono-button:hover {
  background-color: #ffffff;
  border-color: #00f3ff;
  color: #0d0016;
}

/* Main Content */
.main-content {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.animated-logo {
  position: relative;
  width: 400px;
  height: 70px;
  margin: 0 auto;
  cursor: pointer;
}

.bracket {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -14px;
  width: 28px;
  height: 70px;
  color: var(--primary);
  transform-style: preserve-3d;
  transition: color 0.4s ease;
}

[data-theme="euphoria"] .bracket {
  color: #00f3ff;
  filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6));
}

.bracket-hover-layer {
  transition: transform 3s var(--ease-out-cubic);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.left-bracket {
  animation: flipLeft 3s forwards;
}

.right-bracket {
  animation: flipRight 3s forwards;
}

.logo-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(0);
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--primary);
  animation: expandText 3s cubic-bezier(0.87, 0, 0.13, 1) forwards;
}

.text-hover-layer {
  transition: letter-spacing 3s var(--ease-out-cubic), transform 3s var(--ease-out-cubic);
  display: inline-block;
}

.animated-logo:hover .text-hover-layer {
  letter-spacing: 16px;
  transform: translateX(-55px); /* Move back to 0 (55 - 55 = 0) */
}

.animated-logo:hover .left-bracket .bracket-hover-layer {
  transform: translateX(-122px); /* Total: -118 - 122 = -240px */
}

.animated-logo:hover .right-bracket .bracket-hover-layer {
  transform: translateX(308px); /* Total: -68 + 308 = 240px */
}

.char1 { animation: typeChar1 3s forwards; opacity: 0; }
.char2 { animation: typeChar2 3s forwards; opacity: 0; }
.char3 { animation: typeChar3 3s forwards; opacity: 0; }
.char4 { animation: typeChar4 3s forwards; opacity: 0; }
.char5 { animation: typeChar5 3s forwards; opacity: 0; }
.char6 { animation: typeChar6 3s forwards; opacity: 0; }
.char7 { animation: typeChar7 3s forwards; opacity: 0; }
.char8 { animation: typeChar8 3s forwards; opacity: 0; }
.char9 { animation: typeChar9 3s forwards; opacity: 0; }

@keyframes typeChar1 { 0%, 11% { opacity: 0; } 11.01%, 100% { opacity: 1; } }
@keyframes typeChar2 { 0%, 12% { opacity: 0; } 12.01%, 100% { opacity: 1; } }
@keyframes typeChar3 { 0%, 13% { opacity: 0; } 13.01%, 100% { opacity: 1; } }
@keyframes typeChar4 { 0%, 14% { opacity: 0; } 14.01%, 100% { opacity: 1; } }
@keyframes typeChar5 { 0%, 15% { opacity: 0; } 15.01%, 100% { opacity: 1; } }
@keyframes typeChar6 { 0%, 16% { opacity: 0; } 16.01%, 100% { opacity: 1; } }
@keyframes typeChar7 { 0%, 17% { opacity: 0; } 17.01%, 100% { opacity: 1; } }
@keyframes typeChar8 { 0%, 18% { opacity: 0; } 18.01%, 100% { opacity: 1; } }
@keyframes typeChar9 { 0%, 19% { opacity: 0; } 19.01%, 100% { opacity: 1; } }

@keyframes flipLeft {
  0%, 5% { transform: translateX(-16px) rotateY(180deg); }
  8% { transform: translateX(-16px) rotateY(0deg); }
  11% { transform: translateX(-16px) rotateY(0deg); animation-timing-function: linear; }
  20%, 35% { transform: translateX(-110px) rotateY(0deg); animation-timing-function: cubic-bezier(0.87, 0, 0.13, 1); }
  45%, 100% { transform: translateX(-118px) rotateY(0deg); }
}

@keyframes flipRight {
  0%, 5% { transform: translateX(16px) rotateY(180deg); }
  8% { transform: translateX(16px) rotateY(0deg); }
  11% { transform: translateX(16px) rotateY(0deg); animation-timing-function: linear; }
  20%, 35% { transform: translateX(110px) rotateY(0deg); animation-timing-function: cubic-bezier(0.87, 0, 0.13, 1); }
  45%, 100% { transform: translateX(-68px) rotateY(0deg); }
}

@keyframes expandText {
  0%, 9% { opacity: 0; transform: translate(-50%, -50%) translateX(0px); padding-left: 0; }
  10%, 35% { opacity: 1; transform: translate(-50%, -50%) translateX(0px); padding-left: 0; }
  45%, 100% { opacity: 1; transform: translate(-50%, -50%) translateX(55px); padding-left: 10px; }
}
.heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--primary);
  text-align: center;
  max-width: 28ch;
  padding: 0 20px;
  opacity: 0;
  animation: siteFadeIn 1s var(--ease-out-cubic) forwards;
  animation-delay: 1.8s;
}

.heading-link {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.heading-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary);
  opacity: 0.3;
  transition: opacity 0.2s var(--ease-link);
}

.heading-link:hover::before {
  opacity: 1;
}

/* Footer Row */
.footer-row {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  animation: footerFadeIn 1.5s var(--ease-out-cubic) forwards;
  animation-delay: 0.8s;
}

.footer-row > .footer-typographic-grid { justify-self: start; }
.footer-row > .footer-copyright       { justify-self: end; }

/* Footer brackets — 8-state build loop */
.footer-brackets {
  position: relative;
  width: 110px;
  height: 35px;
  color: var(--primary);
  opacity: 1;
  perspective: 240px;
  pointer-events: auto;
  transform: scale(0.7);
  transform-origin: center;
}

.fb-fill {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 35px;
  background: currentColor;
  transform-origin: center center;
  will-change: transform, opacity;
  animation: fbFillLoop 14s var(--ease-out-cubic) infinite;
}

.fb-bracket {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7px;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.fb-left  { animation: fbLeftLoop  14s var(--ease-out-cubic) infinite; }
.fb-right { animation: fbRightLoop 14s var(--ease-out-cubic) infinite; }

/* Build sequence (14s loop):
   1 dot   2 line   3 small box   4 full solid box
   5 [ ]   6 ] ]    7 ] [          8 expand far → pull back → rest */

@keyframes fbFillLoop {
  /* 1 dot */
  0%, 3%   { transform: scale(0.06, 0.06); opacity: 1; animation-timing-function: linear; }
  /* 2 vertical line */
  9%       { transform: scale(0.06, 0.55); opacity: 1; animation-timing-function: linear; }
  /* 3 small box */
  17%      { transform: scale(0.5, 0.7);   opacity: 1; animation-timing-function: linear; }
  /* 4 full solid box → fade out into brackets */
  25%      { transform: scale(1, 1);       opacity: 1; }
  35%      { transform: scale(1, 1);       opacity: 0; }
  /* stay invisible through bracket choreography */
  95%      { transform: scale(1, 1);       opacity: 0; }
  /* collapse back toward dot for loop restart */
  99%      { transform: scale(0.06, 0.06); opacity: 0; }
  100%     { transform: scale(0.06, 0.06); opacity: 1; }
}

@keyframes fbLeftLoop {
  /* hidden during box phase */
  0%, 28%  { transform: translateX(0)     rotateY(180deg); opacity: 0; }
  /* 5 emerge as [ at small distance */
  35%      { transform: translateX(-15px) rotateY(180deg); opacity: 1; }
  /* hold */
  42%      { transform: translateX(-15px) rotateY(180deg); opacity: 1; }
  /* 6 left turns to ] */
  50%      { transform: translateX(-15px) rotateY(0deg);   opacity: 1; }
  /* 7 hold while right turns */
  58%      { transform: translateX(-15px) rotateY(0deg);   opacity: 1; }
  /* 8a expand outward far */
  68%      { transform: translateX(-35px) rotateY(0deg);   opacity: 1; }
  /* 8b slowly pull back to rest, hold a couple seconds */
  82%, 92% { transform: translateX(-15px) rotateY(0deg);   opacity: 1; }
  /* return: fade out and re-flip */
  97%      { transform: translateX(0)     rotateY(0deg);   opacity: 0; }
  100%     { transform: translateX(0)     rotateY(180deg); opacity: 0; }
}

@keyframes fbRightLoop {
  /* hidden during box phase */
  0%, 28%  { transform: translateX(0)    rotateY(180deg); opacity: 0; }
  /* 5 emerge as ] at small distance */
  35%      { transform: translateX(15px) rotateY(180deg); opacity: 1; }
  /* 6 stay flipped while left turns */
  42%, 50% { transform: translateX(15px) rotateY(180deg); opacity: 1; }
  /* 7 right turns to [, completing ] [ */
  58%      { transform: translateX(15px) rotateY(0deg);   opacity: 1; }
  /* 8a expand outward far */
  68%      { transform: translateX(35px) rotateY(0deg);   opacity: 1; }
  /* 8b pull back to rest */
  82%, 92% { transform: translateX(15px) rotateY(0deg);   opacity: 1; }
  /* return */
  97%      { transform: translateX(0)    rotateY(0deg);   opacity: 0; }
  100%     { transform: translateX(0)    rotateY(180deg); opacity: 0; }
}

@keyframes gridRowReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes footerBreathe {
  0%, 100% { letter-spacing: 0.15em; }
  50% { letter-spacing: 0.25em; }
}

@keyframes siteFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes footerFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.8; transform: translateY(0); }
}

.footer-typographic-grid, .footer-copyright, .footer-email-container {
  pointer-events: auto;
}

.center-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
  pointer-events: auto;
  opacity: 0;
  animation: siteFadeIn 1s var(--ease-out-cubic) forwards;
  animation-delay: 1.8s;
}

.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 14.5px;
  letter-spacing: 2px;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px dotted transparent;
  padding: 8px 12px;
  transition: border-color 0.3s var(--ease-link), opacity 0.3s var(--ease-link);
}

.nav-link:hover {
  border-color: var(--primary);
}

.nav-desc {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  margin-top: 8px;
  width: max-content;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.2;
  color: var(--secondary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-link), transform 0.3s var(--ease-link);
  letter-spacing: normal;
  text-transform: none;
}

.nav-link:hover .nav-desc {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Top-right contact (hoisted out of footer) */
.top-right-contact.footer-email-container {
  position: fixed;
  top: 20px;
  right: 20px;
  left: auto;
  transform: none;
  animation: none;
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.top-right-contact:hover .mail-icon {
  opacity: 0.95;
}

.footer-monogram {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0.01em;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-monogram .monogram-line {
  display: block;
}

.footer-typographic-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  animation: none;
}

.footer-typographic-grid .grid-row {
  white-space: pre;
  opacity: 0;
  animation: gridRowReveal 1s var(--ease-out-cubic) forwards;
}

.footer-typographic-grid .grid-row:nth-child(1) { animation-delay: 1s; }
.footer-typographic-grid .grid-row:nth-child(2) { animation-delay: 1.2s; }
.footer-typographic-grid .grid-row:nth-child(3) { animation-delay: 1.4s; }

.footer-typographic-grid .glyph {
  display: inline-block;
  min-width: 1ch;
  text-align: center;
  transition: opacity 60ms linear;
}

.footer-typographic-grid .glyph[data-space="true"] {
  min-width: 0.5ch;
}

@media (prefers-reduced-motion: reduce) {
  .footer-typographic-grid .glyph { transition: none; }
}

.footer-typographic-grid:hover {
  opacity: 1 !important;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.1px;
}

.footer-email-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  animation: floatPulseEmail 4s ease-in-out forwards;
}

[data-theme="euphoria"] .footer-email-container {
  color: #00f3ff;
}

.mail-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  overflow: visible;
  transition: transform 0.4s var(--ease-out-cubic), opacity 0.4s ease;
  opacity: 0.7;
}

.mail-flap {
  transform-origin: 50% 0%;
  transform-box: fill-box;
  transition: transform 0.5s var(--ease-out-cubic);
}

.footer-email-container:hover .mail-flap {
  transform: scaleY(-1);
}

.footer-email-container:hover .mail-icon {
  opacity: 0.85;
}

.email-text-wrapper {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.6s var(--ease-out-cubic) 0.1s, opacity 0.3s ease 0.1s, margin-left 0.6s var(--ease-out-cubic) 0.1s;
}

.footer-email-container:hover .email-text-wrapper {
  max-width: 250px;
  opacity: 1;
  margin-left: 12px;
}

.email-text {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.6s var(--ease-out-cubic) 0.15s, opacity 0.4s ease 0.15s;
}

.footer-email-container:hover .email-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes floatPulseEmail {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) translateY(-2px); opacity: 1; }
}


/* Monogram Reel Animation */
.footer-monogram {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 14.4px;
  line-height: 1.1;
  color: var(--primary);
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.monogram-line {
  display: flex;
  align-items: center;
  gap: 0.05em;
  height: 1.1em;
}

.reel {
  display: inline-block;
  height: 1.1em;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.1;
}

.reel-track {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.reel-track > span {
  height: 1.1em;
  line-height: 1.1;
  display: block;
}

.reel.rolling .reel-track {
  animation: reelRoll 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes reelRoll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3.3em);
  }
}

@media (max-width: 800px) {
  .footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .center-nav {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
  .nav-desc { display: none; }
  .footer-typographic-grid { display: none; }
  .footer-monogram { display: none; }
  .footer-brackets { display: none; }

  .top-right-contact .email-text-wrapper {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }
  .top-right-contact .email-text {
    opacity: 0;
    transform: translateX(-20px);
  }
}
