/* ============================================
   TBM LLC — The Branding Maven
   Site Stylesheet — New Visual System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ── Variables ── */
:root {
  --bg-dark:          #0a1518;
  --bg-darker:        #061012;
  --forest:           #004231;
  --forest-mid:       #0A5945;
  --forest-light:     #005c45;
  --terracotta:       #C77755;
  --terracotta-light: #E8A07A;
  --terracotta-dark:  #a55f40;
  --emerald:          #00B88A;
  --cream:            #FDFDFB;
  --cream-70:         rgba(253, 253, 251, 0.7);
  --cream-50:         rgba(253, 253, 251, 0.5);
  --cream-30:         rgba(253, 253, 251, 0.3);
  --sage:             #E8F0ED;
  --text-dark:        #1a1a1a;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  display: block;
  width: 100%;
}

section {
  position: relative;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(253, 253, 251, 0.3);
  color: var(--cream);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--cream-70);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.btn-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--cream);
  color: var(--bg-dark);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.btn-white-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid var(--cream-30);
  color: var(--cream);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.btn-white-outline:hover {
  border-color: var(--cream);
  transform: translateY(-3px);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================
   NAVIGATION
   ============================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(6, 16, 18, 0.7);
  border-bottom: 1px solid rgba(253, 253, 251, 0.06);
  transition: background 0.3s ease;
}

#main-nav.scrolled {
  background: rgba(6, 16, 18, 0.92);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-70);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--terracotta);
  color: var(--cream);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #main-nav.nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 16, 18, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(253, 253, 251, 0.08);
  }

  #main-nav.nav-mobile-open .nav-links a {
    font-size: 1.1rem;
  }

  #main-nav.nav-mobile-open .nav-cta {
    display: block;
    margin: 0 2rem 1rem;
    text-align: center;
  }
}

/* ============================================
   HERO — Interactive Emotion Selector
   ============================================ */

.hero-interactive {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-question-1,
.hero-question-2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--cream-70);
  line-height: 1.4;
}

.hero-question-2 {
  color: var(--cream);
  font-weight: 600;
}

/* Body layout */
.hero-body-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 3rem;
  align-items: center;
}

/* Character lineup */
.hero-lineup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  height: 300px;
  position: relative;
}

.lineup-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.lineup-char.active {
  z-index: 2;
}

.char-placeholder {
  border-radius: 50% 50% 40% 40%;
  background: linear-gradient(180deg, var(--forest-mid), var(--forest));
  border: 1px solid rgba(253,253,251,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream-50);
  transition: all 0.4s ease;
}

.lineup-char.active .char-placeholder {
  width: 120px;
  height: 160px;
  background: linear-gradient(180deg, var(--forest-mid), var(--forest));
  border-color: rgba(253,253,251,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  color: var(--cream-70);
  font-size: 0.75rem;
  animation: char-float 4s ease-in-out infinite;
}

.lineup-char.silhouette .char-placeholder {
  background: var(--forest);
  border-color: transparent;
  color: transparent;
}

@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.lineup-char[data-distance="1"] .char-placeholder,
.lineup-char[data-distance="2"] .char-placeholder {
  width: 72px; height: 96px; opacity: 0.42;
}
.lineup-char[data-distance="3"] .char-placeholder,
.lineup-char[data-distance="4"] .char-placeholder {
  width: 60px; height: 80px; opacity: 0.28;
}
.lineup-char[data-distance="5"] .char-placeholder,
.lineup-char[data-distance="6"] .char-placeholder {
  width: 48px; height: 64px; opacity: 0.18;
}
.lineup-char[data-distance="7"] .char-placeholder,
.lineup-char[data-distance="8"] .char-placeholder,
.lineup-char[data-distance="9"] .char-placeholder,
.lineup-char[data-distance="10"] .char-placeholder,
.lineup-char[data-distance="11"] .char-placeholder,
.lineup-char[data-distance="12"] .char-placeholder {
  width: 36px; height: 48px; opacity: 0.1;
}

.char-name-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lineup-char.active .char-name-label { opacity: 1; }

/* Text panel */
.hero-text-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-emotion-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--terracotta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease;
}

.hero-experience-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream-70);
  transition: opacity 0.3s ease;
}

.hero-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(270deg, var(--terracotta) 0%, transparent 100%);
  transition: background 0.5s ease;
}

.hero-framework-copy {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream-50);
  font-style: italic;
  transition: opacity 0.3s ease;
}

.hero-panel-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Slider */
.hero-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
  margin-top: 1rem;
}

.hero-label-shadow,
.hero-label-grounded {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-30);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.hero-label-shadow.active { color: var(--terracotta); }
.hero-label-grounded.active { color: var(--emerald); }

.hero-spectrum-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    rgba(139, 69, 19, 0.6) 0%,
    rgba(0, 184, 138, 0.6) 100%
  );
  outline: none;
  cursor: grab;
  --thumb-color: #8B4513;
  --thumb-glow: rgba(139, 69, 19, 0.4);
}

.hero-spectrum-slider:active { cursor: grabbing; }

.hero-spectrum-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--thumb-color, #8B4513);
  cursor: grab;
  box-shadow: 0 0 0 4px var(--thumb-glow, rgba(139,69,19,0.3));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-spectrum-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.hero-spectrum-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
}

.hero-spectrum-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--thumb-color, #8B4513);
  cursor: grab;
  box-shadow: 0 0 0 4px var(--thumb-glow, rgba(139,69,19,0.3));
  transition: transform 0.15s ease;
}

/* Scroll hint */
.hero-scroll-hint {
  margin-top: 2rem;
  color: var(--cream-30);
}

.hero-scroll-hint .arrow-1 { animation: scroll-arrow 2s ease-in-out infinite -1s; }
.hero-scroll-hint .arrow-2 { animation: scroll-arrow 2s ease-in-out infinite -0.5s; }
.hero-scroll-hint .arrow-3 { animation: scroll-arrow 2s ease-in-out infinite 0s; }

@keyframes scroll-arrow {
  0%, 100% { opacity: 0; }
  40% { opacity: 0.6; }
  80% { opacity: 0; }
}

@media (max-width: 768px) {
  .hero-body-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-lineup { height: 180px; }
  .lineup-char.active .char-placeholder { width: 80px; height: 108px; }
}

/* ============================================
   REACTIVE SECTION
   ============================================ */

.section-reactive {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.reactive-acknowledgment {
  text-align: center;
  margin-bottom: 2rem;
}

.reactive-so {
  font-size: 1rem;
  color: var(--cream-50);
  letter-spacing: 1px;
}

.reactive-emotion {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin: 0.25rem 0;
  transition: opacity 0.3s ease;
}

.reactive-bridge {
  font-size: 1rem;
  color: var(--cream-50);
}

.reactive-nudge {
  max-width: 500px;
  margin: 0 auto 3.5rem;
  padding: 1.5rem;
  background: rgba(253,253,251,0.04);
  border: 1px solid rgba(253,253,251,0.08);
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--cream-70);
  font-style: italic;
  transition: opacity 0.3s ease;
}

.three-gs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.g-item {
  position: relative;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(253,253,251,0.06);
  background: rgba(253,253,251,0.02);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.g-item.active {
  border-color: rgba(0, 184, 138, 0.3);
  background: rgba(0, 184, 138, 0.04);
}

.g-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253,253,251,0.2);
  margin-bottom: 1rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.g-item.active .g-marker {
  background: var(--emerald);
  box-shadow: 0 0 12px rgba(0, 184, 138, 0.5);
}

.g-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-30);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}

.g-item.active .g-label {
  color: var(--emerald);
}

.g-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.g-content p {
  font-size: 0.9rem;
  color: var(--cream-50);
  line-height: 1.6;
}

.g-you-are-here {
  display: block;
  font-size: 0.75rem;
  color: var(--emerald);
  margin-top: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.g-item.active .g-you-are-here {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .three-gs { grid-template-columns: 1fr; }
}

/* ============================================
   PHILOSOPHY / STUDIO
   ============================================ */

.section-philosophy {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-philosophy .inner {
  max-width: 800px;
}

.section-philosophy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-philosophy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-70);
  max-width: 580px;
}

.section-philosophy p + p {
  margin-top: 1.25rem;
}

/* ============================================
   THE MOTIONS™
   ============================================ */

.section-motions {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-motions h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-motions .intro {
  font-size: 1.05rem;
  color: var(--cream-70);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.motions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}

.motion-pair {
  padding: 1.25rem;
  background: rgba(253,253,251,0.03);
  border: 1px solid rgba(253,253,251,0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.motion-pair:hover {
  background: rgba(253,253,251,0.06);
  border-color: rgba(253,253,251,0.12);
}

.motion-shadow {
  font-weight: 600;
  color: var(--terracotta);
  font-size: 1rem;
}

.motion-divider {
  color: var(--cream-30);
  font-size: 0.9rem;
}

.motion-grounded {
  font-weight: 600;
  color: var(--emerald);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .motions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .motions-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES
   ============================================ */

.section-services {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-services h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-services .intro {
  font-size: 1.05rem;
  color: var(--cream-70);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  padding: 2rem;
  background: rgba(253,253,251,0.03);
  border: 1px solid rgba(253,253,251,0.07);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: rgba(253,253,251,0.06);
  border-color: rgba(253,253,251,0.12);
  transform: translateY(-4px);
}

.service-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--cream-70);
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-footer p {
  font-size: 0.9rem;
  color: var(--cream-50);
}

/* ============================================
   ABOUT / LIV
   ============================================ */

.section-about {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(253,253,251,0.03);
  border: 1px solid rgba(253,253,251,0.07);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--cream-70);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

@media (max-width: 900px) {
  .section-about .inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    aspect-ratio: 4 / 3;
    max-width: 480px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0,66,49,0.15) 0%, transparent 70%);
}

.section-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-cta p {
  font-size: 1.1rem;
  color: var(--cream-70);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 3rem 2rem;
  background: rgba(6, 16, 18, 0.8);
  border-top: 1px solid rgba(253, 253, 251, 0.06);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--cream-50);
  max-width: 240px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-nav-group h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-group a {
  font-size: 0.9rem;
  color: var(--cream-50);
  transition: color 0.2s ease;
}

.footer-nav-group a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(253,253,251,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--cream-30);
}

.footer-legal a {
  color: var(--cream-30);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--cream-50); }

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--cream-30);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-social a:hover { color: var(--cream); }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 2rem; }
}
