@charset "UTF-8";

:root {
  --orange: #f28c28;
  --orange-glow: rgba(242, 140, 40, 0.4);
  --charcoal: #111111;
  --charcoal-mid: #1a1a1a;
  --charcoal-light: #252525;
  --text: #ede9e0;
  --text-muted: #b8aca2;
  --display: "Bebas Neue", sans-serif;
  --body: "DM Sans", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-img {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-cta {
  color: var(--orange) !important;
  border: 1px solid var(--orange);
  padding: 0.4rem 1rem;
  transition:
    background 0.2s,
    color 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--charcoal) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--orange);
}
.nav-mobile .nav-cta-mobile {
  color: var(--orange) !important;
  border: 1px solid var(--orange);
  padding: 0.6rem 2rem;
  font-size: 1.4rem !important;
}

/* Main & shared sections */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
}
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.section-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}
.btn-primary {
  position: relative;
  display: inline-block;
  background: transparent;
  color: var(--orange);
  text-decoration: none;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--orange);
  transition: color 0.4s ease;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-primary:hover {
  color: var(--charcoal);
  border-color: var(--orange);
}
.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: center;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-decoration: none;
}
.footer-email {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--orange);
}
.footer-ig {
  font-size: 0.84rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-ig:hover {
  color: var(--orange);
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes glowText {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(242, 140, 40, 0.1);
  }
  50% {
    text-shadow: 0 0 40px rgba(242, 140, 40, 0.8);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Homepage Hero ─────────────────────────────────────────────────────── */

main {
  align-items: center;
  text-align: center;
  background: var(--charcoal);
}

@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}
.hero-ambient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      circle at center,
      rgba(242, 140, 40, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(242, 140, 40, 0.04) 0%,
      transparent 60%
    );
  animation: pulseScale 8s ease-in-out infinite;
  pointer-events: none;
  transform-origin: center;
  transition:
    filter 0.6s,
    opacity 0.6s;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.6rem;
  transition: opacity 0.3s;
}
.hero-content::before {
  content: "";
  position: absolute;
  inset: -5rem -8rem;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.65) 0%,
    transparent 68%
  );
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s 1.4s ease;
}
main.video-playing .hero-content::before {
  opacity: 1;
}
.hero-eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeIn 1s 0.3s ease forwards;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 2.6rem;
  opacity: 0;
  animation: fadeIn 1.2s 0.7s ease forwards;
}
.hero-title .orange {
  color: var(--orange);
}
.hero-tagline {
  font-family: var(--body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--text);
  text-align: center;
  margin-bottom: 4.6rem;
  opacity: 0;
  animation: fadeIn 1s 1.1s ease forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-cta-sub {
  font-size: clamp(1.2rem, 2.25vw, 1.65rem);
  color: var(--text-muted);
  margin: 3rem 0 0;
}
.hero-ticker {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}
.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
}
.ticker-text {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 22ch;
  text-align: center;
  transition: opacity 0.5s ease;
}
.ticker-text.fade {
  opacity: 0;
}

.glow-text {
  display: block;
  animation: glowText 8s ease-in-out infinite;
  cursor: default;
  position: relative;
}

/* Smooth transitions on invertible elements */
.hero-title,
.hero-tagline,
.hero-eyebrow,
.ticker-text,
.ticker-dot,
.btn-primary {
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s,
    opacity 0.4s ease;
}
.hero-title .orange {
  transition: color 0.3s;
}
.hero-ticker,
.hero-cta {
  transition: opacity 0.4s ease;
}

/* ─── Skip Intro Button ──────────────────────────────────────────────────── */

#intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: opacity 1s;
}
body[data-page="home"] main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
body.is-negative main::before {
  opacity: 0;
}

/* ─── Easter Egg: Photo Story Slides ────────────────────────────────────── */

.story-slides {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.story-slide {
  position: absolute;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.story-slide.active {
  opacity: 1;
}

/* ─── Easter Egg: Reveal Line ────────────────────────────────────────────── */

.reveal-line {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  width: 0;
  height: 10px;
  background: var(--orange);
  z-index: 6;
  pointer-events: none;
  will-change: transform, width;
  transition:
    top 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    opacity 0.2s ease;
}
.reveal-line.reveal {
  animation: revealSpin 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes revealSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    width: 0;
    height: 10px;
    background: var(--orange);
  }
  18% {
    width: 110vw;
    height: 10px;
    background: var(--orange);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  48% {
    transform: translate(-50%, -50%) rotate(270deg);
    width: 110vw;
    height: 10px;
    background: var(--orange);
  }
  100% {
    transform: translate(-50%, -50%) rotate(270deg);
    width: 200vmax;
    height: 200vmax;
    background: #d0d0d0;
  }
}

/* ─── Easter Egg: Projector Flicker ─────────────────────────────────────── */

#flicker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: #000;
  opacity: 0;
}
body.is-negative #flicker-overlay {
  display: block;
  animation: projectorFlicker 0.7s infinite;
}

@keyframes projectorFlicker {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0.02;
  }
  12% {
    opacity: 0;
  }
  33% {
    opacity: 0.012;
  }
  38% {
    opacity: 0;
  }
  57% {
    opacity: 0.018;
  }
  63% {
    opacity: 0.003;
  }
  70% {
    opacity: 0;
  }
  85% {
    opacity: 0.01;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ─── Negative State (Easter Egg) ───────────────────────────────────────── */

body.is-negative::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at center,
    transparent 30%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 10000;
  pointer-events: none;
  animation: fadeIn 1.2s ease forwards;
}

.is-negative .hero-title,
.is-negative .hero-tagline,
.is-negative .hero-eyebrow,
.is-negative .ticker-text {
  color: #111111;
}
.is-negative .hero-title .orange {
  color: var(--orange);
}
.is-negative .ticker-dot {
  background: #333;
}
.is-negative .hero-ambient {
  filter: grayscale(1);
  opacity: 0.05;
}
.is-negative .btn-primary {
  color: #111;
  border-color: #111;
}
.is-negative .btn-primary::before {
  background: #111;
}
.is-negative .btn-primary:hover {
  color: #d0d0d0;
}
.is-negative .hero-ticker {
  opacity: 1;
}

/* ─── Intake Form ───────────────────────────────────────────────────────── */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-required {
  color: var(--orange);
}
.form-optional {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: none;
}
.form-input {
  background: var(--charcoal-light);
  border: 1px solid #333;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder {
  color: #555;
}
.form-input:focus {
  border-color: var(--orange);
}
.form-input.invalid {
  border-color: #c0392b;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7268' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 0.5rem;
  cursor: pointer;
  font-size: 0.78rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-spinner.active {
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-feedback {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
}
.form-feedback--error {
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
  background: rgba(231, 76, 60, 0.06);
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 2rem 0;
}
.form-success.active {
  display: flex;
}
.form-success-icon {
  font-size: 2rem;
  color: var(--orange);
}
.form-success-title {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.form-success-body {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─── Chat Widget ───────────────────────────────────────────────────────── */

#mjs-chat-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 600;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(242, 140, 40, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
#mjs-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(242, 140, 40, 0.55);
}
#mjs-chat-btn.open {
  background: var(--charcoal-light);
  color: var(--text);
  box-shadow: none;
}

#mjs-chat-panel {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 599;
  width: 340px;
  height: 460px;
  background: var(--charcoal-mid);
  border: 1px solid #2e2e2e;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
#mjs-chat-panel.open {
  display: flex;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--charcoal);
  border-bottom: 1px solid #2e2e2e;
  flex-shrink: 0;
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.chat-avatar {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: block;
}
.chat-name {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.chat-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.chat-close:hover {
  color: var(--text);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

.chat-msg {
  max-width: 82%;
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0.6rem 0.85rem;
  word-break: break-word;
}
.chat-msg-bot {
  background: var(--charcoal-light);
  color: var(--text);
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
}
.chat-msg-user {
  background: var(--orange);
  color: var(--charcoal);
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
  font-weight: 500;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.7rem 0.85rem;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingPulse 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingPulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #2e2e2e;
  flex-shrink: 0;
  background: var(--charcoal);
}
.chat-input {
  flex: 1;
  background: var(--charcoal-light);
  border: 1px solid #333;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.55rem 0.75rem;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.chat-input::placeholder {
  color: #555;
}
.chat-input:focus {
  border-color: var(--orange);
}
.chat-send {
  background: var(--orange);
  border: none;
  color: var(--charcoal);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-send:hover {
  background: #d97a20;
}
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  main {
    padding: 6rem 1.5rem 3rem;
  }
  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }
  .about-grid,
  .network-grid,
  .contact-grid,
  .services-header,
  .work-header {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .network-cells {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .section-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
  }
  .about-manifesto {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  .network-quote {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  .contact-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
  }
  .work-card {
    aspect-ratio: 4/3 !important;
  }
  .hero-content {
    padding-bottom: 5rem;
  }
  #mjs-chat-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
  }
  .hero-title {
    font-size: clamp(3rem, 18vw, 5.5rem) !important;
  }
  .hero-tagline {
    font-size: clamp(0.8rem, 3.5vw, 1.2rem) !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 2.5rem !important;
  }
  .hero-eyebrow {
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1.2rem !important;
  }
  .hero-ticker {
    bottom: 1rem;
  }
}
