/* ─── SELF-HOSTED INTER ─── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 200; font-display: swap; src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/Inter-Light.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/Inter-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/Inter-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/Inter-SemiBold.woff2') format('woff2'); }

/* ─── SELF-HOSTED CORMORANT GARAMOND (serif display — the Monocle side) ─── */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/CormorantGaramond-Light.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/CormorantGaramond-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/CormorantGaramond-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/CormorantGaramond-LightItalic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2'); }


:root {
  --primary: #1d1d1f;
  --secondary: #86868b;
  --charcoal: #2c2c2e;
  --white: #ffffff;
  --wax: #c0392b;
  --rule: #e8e8ed;
  --bg: #ffffff;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.loading { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ─── LOADER ─── */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader img {
  width: 40px;
  height: auto;
  opacity: 0.3;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.03); }
}



/* ─── HERO ─── */

.hero {
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 32px 32px;
  position: relative;
  overflow: hidden;
}

/* Hero: clean typographic confidence. No hover effects. */

.hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero-cross {
  width: 32px;
  height: auto;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.3s forwards;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1s forwards;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  font-style: italic;
  color: var(--secondary);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.6s forwards;
}

.hero-wax-rule {
  width: 32px;
  height: 0.5px;
  background: var(--wax);
  margin: 20px auto 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 2s forwards;
}



/* ─── APPROACH (charcoal triptych) ─── */

/* THOUGHT PIECES BAR */
.pieces-bar {
  background: var(--primary);
  padding: 28px 48px;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.pieces-label {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--rule);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.pieces-links {
  display: flex;
  flex: 1;
  gap: 0;
}
.piece-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-left: 24px;
}
.piece-link:first-child { padding-left: 0; }
.piece-link:last-child { border-right: none; padding-right: 0; }
.piece-link:hover {
  opacity: 0.7;
}
.piece-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.piece-hook {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.piece-link-cg .piece-title {
  color: rgba(192,57,43,0.7);
}

.piece-link-cg:hover .piece-title {
  color: rgba(192,57,43,0.9);
}
@media (max-width: 768px) {
  .pieces-bar {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
  }
  .pieces-label {
    min-width: auto;
  }
  .pieces-links {
    flex-direction: column;
    gap: 20px;
  }
  .piece-hook {
    white-space: normal;
  }
}

.approach-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 0;
}

.approach-triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}

.approach-col {
  padding: 48px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.approach-col-mid {
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.approach-col-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.approach-col-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  letter-spacing: 0.005em;
}

.approach-col-cg {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

.approach-col-cg a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.approach-col-cg a:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}

/* ─── THE BUREAU (triptych) ─── */

.bureau-section {
  background: var(--bg);
  color: var(--primary);
  padding: 0;
  border-top: 1px solid var(--rule);
}

.bureau-triptych {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  max-width: 1400px;
  margin: 0 auto;
}

.bureau-left {
  padding: 40px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--rule);
}

.bureau-positioning {
  font-size: 14px;
  font-weight: 300;
  color: #58585c;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.bureau-rule {
  width: 24px;
  height: 1px;
  background: var(--rule);
  margin: 24px 0;
}

.bureau-coda {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: #737377;
  line-height: 1.8;
}

.bureau-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--rule);
  padding: 40px 0;
}

.chat-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-messages {
  overflow-y: auto;
  padding: 0 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.08) transparent;
}

.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 2px; }

.chat-message {
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease-out;
}

.chat-message:last-child { margin-bottom: 0; }
.chat-message.user { text-align: right; }

.chat-message.user .chat-bubble {
  background: rgba(0,0,0,0.04);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px 12px 2px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  max-width: 80%;
  text-align: left;
}

.chat-message.assistant .chat-bubble {
  font-size: 14px;
  font-weight: 300;
  color: #48484c;
  line-height: 1.8;
  max-width: 90%;
}

.chat-message .chat-sender {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.chat-input-area {
  display: flex;
  align-items: center;
  margin: 0 24px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(0,0,0,0.015);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.chat-input-area:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.03);
}

.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
}

.chat-input::placeholder {
  color: var(--secondary);
  animation: placeholderPulse 3s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.chat-send {
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--secondary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.chat-send:hover { color: var(--primary); }
.chat-send:disabled { opacity: 0.2; cursor: default; }

.typing-indicator {
  display: inline-flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-indicator span {
  width: 3px;
  height: 3px;
  background: var(--secondary);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* ─── BUREAU RIGHT (slim form) ─── */

.bureau-right {
  padding: 40px 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bureau-right-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
}

.chat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0 28px;
  margin-bottom: 12px;
}

.bureau-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bureau-form input,
.bureau-form textarea {
  width: 100%;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  outline: none;
  transition: border-color 0.3s;
}

.bureau-form input:focus,
.bureau-form textarea:focus {
  border-bottom-color: var(--secondary);
}

.bureau-form input::placeholder,
.bureau-form textarea::placeholder {
  color: var(--secondary);
}

.bureau-form textarea {
  resize: none;
  min-height: 60px;
}

.bureau-submit {
  align-self: flex-start;
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--rule);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.bureau-submit:hover {
  color: var(--primary);
  border-color: var(--secondary);
}

.bureau-form-success {
  display: none;
  text-align: center;
}

.bureau-form-success .success-seal {
  width: 80px;
  margin-bottom: 16px;
  opacity: 0;
  transform: scale(1.4) rotate(-10deg);
  animation: sealStamp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.bureau-form-success p {
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  font-style: italic;
}

/* ─── THE ARC (cards) ─── */

.arc-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}

.arc-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.arc-scroll::-webkit-scrollbar { display: none; }
.arc-scroll:active { cursor: grabbing; }

.arc-card {
  flex: 0 0 420px;
  height: 560px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.arc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
  transition: filter 0.7s ease, transform 0.7s ease;
}

.arc-card:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(0.85);
  transform: scale(1.03);
}

.arc-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.15) 100%);
  transition: background 0.6s ease;
}

.arc-card:hover .arc-card-overlay {
  background: linear-gradient(rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.82) 40%);
}

.arc-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  transition: color 0.4s;
}

.arc-card:hover .arc-card-label {
  color: rgba(255,255,255,0.5);
}

.arc-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: margin-bottom 0.5s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.arc-card:hover .arc-card-title {
  margin-bottom: 16px;
}

.arc-card-story {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.arc-card:hover .arc-card-story {
  max-height: 300px;
}

.arc-card-story .story-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: rgba(255,255,255,0.8);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}



/* ─── INTAKE MODAL ─── */

.intake-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.intake-modal-overlay.visible {
  display: flex;
  opacity: 1;
}

.intake-modal {
  background: var(--bg);
  width: 90%;
  max-width: 420px;
  border-radius: 4px;
  padding: 48px 36px;
  position: relative;
  transform: translateY(16px);
  animation: modalIn 0.4s ease-out forwards;
}

@keyframes modalIn {
  to { transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--secondary);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.modal-close:hover { color: var(--primary); }

.intake-modal h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 4px;
}

.intake-modal .modal-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  border-bottom-color: var(--secondary);
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: var(--secondary);
}

.intake-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2386868b' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}

.intake-form select:invalid { color: var(--secondary); }

.intake-form textarea {
  resize: none;
  min-height: 60px;
}

.intake-submit {
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.intake-submit:hover { opacity: 0.8; }

.intake-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.success-seal-wrap {
  width: 100px;
  margin: 0 auto 24px;
  position: relative;
}

.success-seal {
  width: 100%;
  opacity: 0;
  transform: scale(1.4) rotate(-10deg);
  animation: sealStamp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  filter: drop-shadow(0 4px 16px rgba(120,30,20,0.25));
}

@keyframes sealStamp {
  0% { opacity: 0; transform: scale(1.4) rotate(-10deg); }
  50% { opacity: 1; transform: scale(0.94) rotate(1deg); }
  70% { transform: scale(1.03) rotate(-0.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.success-text {
  font-size: 20px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.success-subtext {
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1s forwards;
}

/* ─── FOOTER ─── */

footer {
  padding: 28px 32px 24px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.footer-icon {
  color: var(--secondary);
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.footer-icon:hover {
  opacity: 0.7;
}
.footer-text {
  font-size: 10px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

/* ─── ANIMATIONS ─── */

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

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .bureau-triptych {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .bureau-left {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 32px 32px;
  }
  .bureau-center { border-right: 1px solid var(--rule); }
  .bureau-right { padding: 32px 32px; }
  .approach-triptych { grid-template-columns: 1fr; }
  .approach-col-mid { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
  .hero { min-height: 44vh; padding: 56px 24px 36px; }
  .hero-cross { width: 28px; }
  .hero-name { font-size: clamp(22px, 7vw, 32px); }

  .bureau-triptych { grid-template-columns: 1fr; }
  .bureau-center { border-right: none; border-bottom: 1px solid var(--rule); }
  .bureau-left { padding: 28px 24px; }
  .bureau-right { padding: 28px 24px; }
  .chat-messages { padding: 20px; }
  .chat-input-area {
    margin: 0 20px;
    border: 1.5px solid rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
  }
  .chat-input { font-size: 16px; padding: 14px 16px; }
  .chat-input::placeholder { font-size: 13px; opacity: 0.6; }

  .arc-card { flex: 0 0 320px; height: 480px; }
  .arc-card-title { font-size: 19px; }
  .arc-card-story { font-size: 14px; }
  .arc-card-overlay { padding: 32px 24px; }

  .intake-modal { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .hero { min-height: 48vh; padding: 56px 20px 36px; }
  .hero-name { font-size: 22px; letter-spacing: 0.05em; }
  .arc-card { flex: 0 0 85vw; height: 440px; }
  .arc-card-title { font-size: 18px; }
  .arc-card-label { font-size: 9px; }
  .chat-send { font-size: 9px; padding: 0 14px; }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
}
.lang-current {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--secondary);
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
  user-select: none;
}
.lang-current:hover { opacity: 1; }
.lang-dropdown {
  position: absolute;
  top: 28px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(29,29,31,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-dropdown a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s;
  line-height: 1;
}
.lang-dropdown a:hover { opacity: 1; }

/* JOURNAL LINK IN PIECES BAR */
/* Journal link removed from Pieces bar — lives in site controls only */

/* Site Controls (Journal + Language) */
.site-controls {
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
}
.site-controls-link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.site-controls-link:hover { opacity: 1; }
.site-controls-dot {
  color: var(--secondary);
  opacity: 0.3;
  font-size: 10px;
  margin: 0 8px;
  line-height: 1;
}
@media (max-width: 768px) {
  .site-controls { top: 14px; right: 16px; }
}
