/* ============================================================
   SEVEROOS PORTFOLIO — CORE STYLES
   Design tokens
   bg        #0A0A0B  near-black
   surface   #131316  raised panels
   line      #232326  hairlines
   text      #EFEDE6  warm bone
   text-2    #8B8A90  muted grey
   brass     #D8A857  primary accent (warm, editorial, not neon)
   slate     #57708C  secondary accent (cool, used sparingly)
   Type: Fraunces (display, serif) / Inter (body) / JetBrains Mono (labels, data)
   ============================================================ */

:root{
  --bg: #0A0A0B;
  --surface: #131316;
  --surface-2: #1B1B1F;
  --line: #232327;
  --text: #EFEDE6;
  --text-2: #8B8A90;
  --text-3: #58585E;
  --brass: #D8A857;
  --brass-dim: #8C7440;
  --slate: #6C8CAA;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-out-soft: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1); /* dynamic-island morph */
}

/* ---------- Space / Solar-System light theme ---------- */
[data-theme="light"]{
  --bg: #F3EEE1;
  --surface: #FFFFFF;
  --surface-2: #FBF7EC;
  --line: #E3DBC7;
  --text: #191510;
  --text-2: #5B5648;
  --text-3: #948D78;
  --brass: #C9862B;
  --brass-dim: #E3B067;
  --slate: #5C7690;
}

html{ transition: background-color .5s ease; }
body,
.navbar,
.service-card,
.footer,
.contact-form input,
.contact-form select,
.contact-form textarea{
  transition: background-color .5s ease, color .5s ease, border-color .5s ease;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; background: var(--bg); }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; }
h1,h2,h3,h4,p{ margin: 0; }
ul{ margin:0; padding:0; list-style:none; }

::selection{ background: var(--brass); color: var(--bg); }

/* subtle grain overlay for depth */
.noise-overlay{
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* progress bar */
.progress-bar{
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--brass); z-index: 999; transition: width .1s linear;
}

/* ============ LOADER ============ */
.loader{
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.loader.hidden{ opacity: 0; visibility: hidden; }
.loader-mark{
  font-family: var(--font-mono);
  letter-spacing: .4em;
  font-size: 13px;
  color: var(--text-2);
  animation: pulseFade 2.2s ease-in-out infinite;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring{
  position: fixed; top: 0; left: 0; z-index: 998;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.cursor-dot{ width: 6px; height: 6px; background: var(--brass); }
.cursor-ring{
  width: 34px; height: 34px; border: 1px solid var(--text-3);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, opacity .2s ease;
}
.cursor-ring.hovering{ width: 56px; height: 56px; border-color: var(--brass); }
@media (hover: none){ .cursor-dot, .cursor-ring{ display: none; } }

/* ============ SECTION SHELL ============ */
main > section, .footer{
  padding: 140px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-head{ margin-bottom: 64px; max-width: 720px; }
.section-head .tag{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--brass);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-head h2{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  color: var(--text);
}

/* ============ NAVBAR ============ */
.navbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(10,10,11,.5);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, padding .4s ease, background .4s ease;
}
.navbar.scrolled{
  border-bottom: 1px solid var(--line);
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(10,10,11,.78);
}
.nav-logo{
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .01em;
}
.nav-logo .dot{ color: var(--brass); }

.nav-links{ display: flex; align-items: center; }

.nav-links a{
  position: relative;
  font-size: 13.5px; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
  transition: color .25s ease;
}
.nav-links a .idx{ font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active .idx{ color: var(--brass); }
.nav-links a::after{
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--brass);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }

.island-face{ display: none; }

/* ---------- Dynamic Island nav (desktop only) ----------
   Below 981px .nav-links becomes the full-screen burger overlay
   (responsive.css) — untouched, so the island is scoped to desktop
   only. Collapsed: a small dark capsule with two sensor dots and a
   "Menu" label (.island-face), matching the approved iOS-style demo.
   On hover/focus it grows — width AND height animate with a spring
   easing — then the .island-face fades out and the six links fade
   in with a staggered delay so the shell finishes morphing before
   the content appears. */
@media (min-width: 981px){
  .nav-links{
    position: relative;
    justify-content: center;
    gap: 0;
    width: 126px;
    height: 37px;
    padding: 0;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    transition:
      width .62s var(--ease-spring),
      height .62s var(--ease-spring),
      padding .55s var(--ease-spring),
      gap .55s var(--ease-spring),
      background .35s ease,
      border-color .35s ease,
      box-shadow .35s ease;
  }
  .nav-links:hover,
  .nav-links:focus-within{
    width: 560px;
    height: 56px;
    padding: 0 30px;
    gap: 30px;
    background: var(--surface-2);
    border-color: var(--brass-dim);
    box-shadow: 0 12px 34px rgba(117, 101, 101, 0.45);
  }

  /* collapsed face: two sensor dots + "Menu" label, centered in the pill */
  .island-face{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity .25s ease;
  }
  .nav-links:hover .island-face,
  .nav-links:focus-within .island-face{
    opacity: 0;
    pointer-events: none;
  }
  .island-face .sensor{
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--bg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  }
  .island-face .sensor.accent{
    background: radial-gradient(circle at 35% 35%, var(--brass-dim), var(--bg));
    animation: islandPulse 2.6s ease-in-out infinite;
  }
  .island-face .island-label{
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--text-3);
    text-transform: uppercase;
  }

  /* links stay invisible + non-interactive until the pill is expanded */
  .nav-links a{
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    white-space: nowrap;
    transition:
      color .25s ease,
      opacity .35s ease,
      transform .5s var(--ease-spring);
  }
  .nav-links:hover a,
  .nav-links:focus-within a{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: .18s;
  }
  /* +1 on nth-child vs the demo: .island-face is the real first child now */
  .nav-links:hover a:nth-child(3),  .nav-links:focus-within a:nth-child(3){ transition-delay: .21s; }
  .nav-links:hover a:nth-child(4),  .nav-links:focus-within a:nth-child(4){ transition-delay: .24s; }
  .nav-links:hover a:nth-child(5),  .nav-links:focus-within a:nth-child(5){ transition-delay: .27s; }
  .nav-links:hover a:nth-child(6),  .nav-links:focus-within a:nth-child(6){ transition-delay: .30s; }
  .nav-links:hover a:nth-child(7),  .nav-links:focus-within a:nth-child(7){ transition-delay: .33s; }
}

@keyframes islandPulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: .5; }
}

.nav-cta{
  font-size: 13px; padding: 9px 18px; border: 1px solid var(--line);
  border-radius: 100px; color: var(--text);
  transition: border-color .3s ease, background .3s ease;
}
.nav-cta:hover{ border-color: var(--brass); background: rgba(216,168,87,.08); }

.nav-burger{ display: none; background: none; border: none; width: 26px; height: 18px; position: relative; }
.nav-burger span{
  position: absolute; left: 0; width: 100%; height: 1px; background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger span:first-child{ top: 0; }
.nav-burger span:last-child{ bottom: 0; }

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  max-width: none;
  overflow: hidden;
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.grid-lines{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .35;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.glow{
  position: absolute; top: 18%; left: 50%; width: 900px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(216,168,87,.16), transparent 70%);
  filter: blur(10px);
}

.hero-inner{ position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; padding-top: 90px; }

.bulb-wrap{
  position: relative;
  width: 52px; height: 72px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0;
  cursor: pointer;
}
.bulb-float{
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.bulb-glow{
  position: absolute; top: 34%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216,168,87,.55), transparent 72%);
  opacity: 0;
  filter: blur(6px);
}
.bulb-icon{ color: var(--text-3); position: relative; z-index: 1; }
.bulb-icon .bulb-glass{ transition: color .3s ease; }
.bulb-icon .bulb-filament{ transition: color .3s ease, filter .3s ease; }

/* orbiting planet decoration — only visible in space/light theme */
.orbit-ring{
  position: absolute; top: 34%; left: 50%;
  width: 150px; height: 150px;
  margin-top: -75px; margin-left: -75px;
  border-radius: 50%;
  border: 1px dashed rgba(120, 90, 40, .25);
  opacity: 0;
  transition: opacity .6s ease;
  animation: orbitSpin 14s linear infinite;
  pointer-events: none;
}
.orbit-dot{
  position: absolute; top: 50%; left: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass);
  transform: translate(-50%, -50%) translateX(75px);
}
.orbit-dot-2{
  width: 4px; height: 4px;
  animation: orbitSpin 9s linear infinite reverse;
  transform: translate(-50%, -50%) translateX(-52px) translateY(18px);
  opacity: .75;
}
@keyframes orbitSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
[data-theme="light"] .orbit-ring{ opacity: 1; }

/* faint drifting stars — only in space/light theme */
.stars-overlay{
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(60,45,15,.35), transparent),
    radial-gradient(1.5px 1.5px at 78% 14%, rgba(60,45,15,.3), transparent),
    radial-gradient(1px 1px at 34% 62%, rgba(60,45,15,.3), transparent),
    radial-gradient(1.5px 1.5px at 58% 48%, rgba(60,45,15,.25), transparent),
    radial-gradient(1px 1px at 88% 70%, rgba(60,45,15,.3), transparent),
    radial-gradient(1.5px 1.5px at 20% 85%, rgba(60,45,15,.25), transparent),
    radial-gradient(1px 1px at 68% 90%, rgba(60,45,15,.3), transparent);
  background-repeat: repeat;
  background-size: 100% 100%;
}
[data-theme="light"] .stars-overlay{ opacity: 1; }

.eyebrow{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em;
  color: var(--text-2); text-transform: uppercase; margin-bottom: 26px;
}

.hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 8.6vw, 108px);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--text);
}
.hero-title .line{ display: block; overflow: hidden; }
.hero-title em{ font-style: italic; color: var(--brass); font-weight: 400; }

.hero-sub{
  max-width: 560px; margin: 30px auto 0;
  font-size: 17px; color: var(--text-2); font-weight: 300;
}

.hero-actions{ margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; padding: 14px 26px; border-radius: 100px;
  transition: transform .35s var(--ease-out-soft), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn svg{ transition: transform .3s ease; }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--brass); color: #171208; font-weight: 500; }
.btn-primary:hover{ transform: translateY(-2px); background: #E7BA6D; }
.btn-ghost{ border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover{ border-color: var(--text-2); transform: translateY(-2px); }

.hero-marquee{
  position: relative; z-index: 1;
  margin-top: 80px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; overflow: hidden;
}
.marquee-track{
  display: flex; gap: 28px; width: max-content;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-3);
  animation: marquee 26s linear infinite;
}
.marquee-track span{ white-space: nowrap; }

.scroll-cue{
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  color: var(--text-3); text-transform: uppercase;
}
.scroll-cue-line{ width: 1px; height: 28px; background: var(--text-3); position: relative; overflow: hidden; }
.scroll-cue-line::after{
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--brass); animation: scrollLine 1.8s ease-in-out infinite;
}

/* ============ ABOUT ============ */
.about-grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: start; }
.about-heading{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.28;
  color: var(--text);
}
.about-heading em{ font-style: italic; color: var(--brass); }
.about-body p{ color: var(--text-2); font-weight: 300; font-size: 16px; margin-bottom: 18px; max-width: 520px; }

.about-stats{ display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.stat{ display: flex; flex-direction: column; gap: 4px; }
.stat-num{ font-family: var(--font-display); font-size: 40px; color: var(--brass); }
.stat-label{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

/* ============ PROJECTS ============ */
.project-list{ display: flex; flex-direction: column; }
.project-card{ border-top: 1px solid var(--line); }
.project-card:last-child{ border-bottom: 1px solid var(--line); }
.project-link{
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center;
  gap: 32px; padding: 30px 6px; position: relative; overflow: hidden;
}
.project-index{ font-family: var(--font-mono); font-size: 13px; color: var(--text-3); }
.project-title{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px); color: var(--text);
  transition: color .3s ease, transform .3s var(--ease-out-soft);
}
.project-meta{ display: grid; grid-template-columns: 90px 1fr auto auto; align-items: center; gap: 24px; width: 100%; }
.project-cat{ font-size: 13px; color: var(--text-2); justify-self: start; }
.project-year{ font-family: var(--font-mono); font-size: 13px; color: var(--text-3); }

.project-media{
  position: fixed; top: 0; left: 0; width: 320px; height: 200px;
  pointer-events: none; opacity: 0; z-index: 50; border-radius: 10px; overflow: hidden;
  transform: scale(.9);
  transition: opacity .3s ease, transform .4s var(--ease-out-soft);
}
.project-media img{ width: 100%; height: 100%; object-fit: cover; }
.project-card:hover .project-media{ opacity: 1; transform: scale(1); }
.project-card:hover .project-title{ color: var(--brass); transform: translateX(6px); }

@media (hover: none){
  .project-media{ position: static; width: 100%; height: 220px; opacity: 1; pointer-events: auto; margin-bottom: 16px; transform: none; border-radius: 12px; }
  .project-link{ grid-template-columns: 1fr; }
  .project-meta{ grid-template-columns: auto 1fr auto; }
}

/* ============ GALLERY ============ */
.gallery-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item{ border-radius: 14px; overflow: hidden; position: relative; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out-soft); }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item.tall{ grid-row: span 2; }
.gallery-item.wide{ grid-column: span 2; }

/* ============ SERVICES ============ */
.services-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card{
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 26px; transition: transform .35s var(--ease-out-soft), border-color .35s ease, background .35s ease;
}
.service-card:hover{ transform: translateY(-6px); border-color: var(--brass-dim); background: var(--surface-2); }
.service-icon{ color: var(--brass); margin-bottom: 22px; }
.service-card h3{ font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.service-card p{ font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.6; }

/* ============ NOTES ============ */
.notes-list{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.note-card{ display: block; }
.note-media{ border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.note-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out-soft); }
.note-card:hover .note-media img{ transform: scale(1.07); }
.note-date{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.note-body h3{ font-family: var(--font-display); font-size: 21px; font-weight: 500; margin: 10px 0 10px; color: var(--text); transition: color .3s ease; }
.note-card:hover .note-body h3{ color: var(--brass); }
.note-body p{ font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
.note-more{ display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.note-more svg{ transition: transform .3s ease; }
.note-card:hover .note-more svg{ transform: translateX(4px); }

/* ============ CONTACT ============ */
.contact-grid{ display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-intro h2{
  font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 38px);
  margin: 18px 0 16px; line-height: 1.25;
}
.contact-intro p{ color: var(--text-2); font-size: 15px; font-weight: 300; max-width: 380px; margin-bottom: 30px; }
.contact-direct{ display: flex; flex-direction: column; gap: 10px; }
.contact-direct a{ font-family: var(--font-mono); font-size: 15px; color: var(--brass); }
.contact-direct span{ font-size: 13px; color: var(--text-3); }

.contact-form{ display: flex; flex-direction: column; gap: 22px; }
.form-row{ display: flex; flex-direction: column; gap: 8px; position: relative; }
.form-row label{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); }
.form-row input, .form-row select, .form-row textarea{
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; color: var(--text); font-size: 14.5px;
  transition: border-color .25s ease, background .25s ease;
  resize: none;
}
.form-row select{ appearance: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: none; border-color: var(--brass); background: var(--surface-2);
}
.form-error{
  display: none; font-size: 12px; color: #E08A6B; font-family: var(--font-mono);
}
.form-row.error input, .form-row.error textarea{ border-color: #E08A6B; }
.form-row.error .form-error{ display: block; }

.btn-submit{ align-self: flex-start; position: relative; margin-top: 6px; }
.btn-success{ display: none; }
.btn-submit.sent .btn-label{ display: none; }
.btn-submit.sent .btn-success{ display: inline; }
.btn-submit.sent{ background: #7FAF8E; }

/* ============ FOOTER ============ */
.footer{ padding-top: 70px; padding-bottom: 40px; border-top: 1px solid var(--line); }
.footer-top{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.footer-logo{ font-family: var(--font-display); font-size: 20px; }
.footer-logo .dot{ color: var(--brass); }
.footer-nav{ display: flex; gap: 26px; }
.footer-nav a, .footer-social a{ font-size: 13.5px; color: var(--text-2); transition: color .25s ease; }
.footer-nav a:hover, .footer-social a:hover{ color: var(--brass); }
.footer-social{ display: flex; gap: 22px; }
.footer-bottom{
  display: flex; justify-content: space-between; padding-top: 26px;
  border-top: 1px solid var(--line); font-size: 12.5px; color: var(--text-3);
  font-family: var(--font-mono); flex-wrap: wrap; gap: 10px;
}
