@font-face {
  font-family: 'Yellowtail';
  src: url('/assets/Yellowtail-Regular.ttf') format('truetype');
  font-display: block;
}

:root {
  --bg-deep: #05060d;
  --bg-mid: #0a0b1a;
  --ink: #f5f3ea;
  --ink-dim: rgba(245, 243, 234, 0.85);
  --accent: #ffd27a;
  --accent-warm: #ff8c5a;
  --line: rgba(245, 243, 234, 0.12);
  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
  --font-script: "Yellowtail", cursive;
}

* { -webkit-font-smoothing: antialiased; }

html, body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* --- NAV --- */
.navbar-cosmic {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
.navbar-cosmic.scrolled {
  background: rgba(5, 6, 13, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.1rem;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
  padding-bottom: 0.2rem;
}
.brand-mark .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent) 60%, var(--accent-warm));
  box-shadow: 0 0 12px rgba(255, 210, 122, 0.7);
}
.navbar-cosmic .nav-link {
  color: var(--ink-dim);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-cosmic .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-cosmic .nav-link:hover { color: var(--ink); }
.navbar-cosmic .nav-link:hover::after { transform: scaleX(1); }

.btn-orbit {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-orbit:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

/* Hamburger: animated lines that morph into an X when open */
.navbar-toggler {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  z-index: 60; /* sit above the fullscreen panel */
  transition: border-color 0.3s ease, background 0.3s ease;
}
.navbar-toggler:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 210, 122, 0.2);
}
.navbar-toggler:hover { border-color: rgba(245, 243, 234, 0.3); }
.navbar-toggler .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.25s ease,
    top 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.navbar-toggler .bar:nth-child(1) { transform: translate(-50%, -50%) translateY(-6px); }
.navbar-toggler .bar:nth-child(2) { transform: translate(-50%, -50%); }
.navbar-toggler .bar:nth-child(3) { transform: translate(-50%, -50%) translateY(6px); }
.navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* Hide the default Bootstrap icon span (kept in markup as fallback if anyone disables JS) */
.navbar-toggler-icon { display: none; }

/* Fullscreen mobile menu overlay.
   Custom (not Bootstrap collapse) so we get a clean fade+slide rather
   than a height transition that fights a fixed-position container. */
@media (max-width: 991.98px) {
  .navbar-cosmic .nav-link::after { display: none; }

  #navMenu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 6, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.45s;
    overflow: hidden;
  }
  #navMenu.is-open {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }

  /* Decorative ambient glow behind the menu items */
  #navMenu::before {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 700px;
    max-height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 140, 90, 0.12), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.1s;
  }
  #navMenu.is-open::before { opacity: 1; }

  #navMenu .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 420px;
    padding: 0 2rem;
  }

  /* Each item fades + slides up, staggered, when menu opens */
  #navMenu .nav-item {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #navMenu.is-open .nav-item { opacity: 1; transform: translateY(0); }
  #navMenu.is-open .nav-item:nth-child(1) { transition-delay: 0.12s; }
  #navMenu.is-open .nav-item:nth-child(2) { transition-delay: 0.18s; }
  #navMenu.is-open .nav-item:nth-child(3) { transition-delay: 0.24s; }
  #navMenu.is-open .nav-item:nth-child(4) { transition-delay: 0.32s; }

  #navMenu .nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    color: var(--ink) !important;
    padding: 0.6rem 0 !important;
    line-height: 1.1;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  #navMenu .nav-link:hover,
  #navMenu .nav-link:focus-visible {
    color: var(--accent) !important;
    transform: translateX(4px);
  }

  /* Divider above the CTA */
  #navMenu .nav-item.ms-lg-3 {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }

  #navMenu .btn-orbit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 180px;
    margin-top: 0 !important;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  /* Prevent background scroll when menu is open */
  html.menu-open,
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #05060d 0%, #0a0b1a 50%, #050811 100%);
}
/* Slow-breathing aurora layers behind the stars.
   Two oversized radial gradients that pan + scale on long cycles and
   gives the sky a sense of weather without ever looking like it's "doing" anything. */
.hero-aurora {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-aurora::before,
.hero-aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  
  /* TO DO: What is this for? It was causing slowness on mobile menu open on phone */
  /*filter: blur(0px);*/
  
  will-change: transform, opacity;
}
.hero-aurora::before {
  width: 70%;
  aspect-ratio: 1;
  left: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(120, 80, 200, 0.35), transparent 65%);
  animation: auroraDrift1 28s ease-in-out infinite;
}
.hero-aurora::after {
  width: 80%;
  aspect-ratio: 1;
  right: -15%;
  bottom: -5%;
  background: radial-gradient(circle, rgba(255, 140, 90, 0.28), transparent 65%);
  animation: auroraDrift2 34s ease-in-out infinite;
}
@keyframes auroraDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  33%      { transform: translate(15%, 8%) scale(1.15); opacity: 1; }
  66%      { transform: translate(-8%, 14%) scale(0.95); opacity: 0.7; }
}
@keyframes auroraDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  40%      { transform: translate(-12%, -10%) scale(1.2); opacity: 1; }
  75%      { transform: translate(10%, -5%) scale(0.9); opacity: 0.8; }
}
#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(5, 6, 13, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 1rem;
  opacity: 0.6;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 7.2vw, 5.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
.hero-title em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.75s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s ease 1s forwards;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 0 0 rgba(255, 210, 122, 0.4);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255, 210, 122, 0.5), 0 0 0 6px rgba(255, 210, 122, 0.08);
  color: var(--bg-deep);
}
.btn-cta svg { transition: transform 0.35s ease; }
.btn-cta:hover svg { transform: translateX(4px); }

/* Secondary "Learn more" CTA: ghost button that complements the primary.
   Subtle border, transparent fill, downward chevron telegraphs scrolling.
   On hover the border lifts toward the accent color and the chevron drops. */
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(245, 243, 234, 0.25);
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-cta-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 122, 0.6);
  background: rgba(255, 210, 122, 0.06);
  color: var(--ink);
}
.btn-cta-ghost svg {
  transition: transform 0.35s ease;
}
.btn-cta-ghost:hover svg {
  transform: translateY(3px);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ink-dim);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-cue .line {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0.75rem auto 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: cueDrop 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- OFFERINGS --- */
.offerings {
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, #050811 0%, #07091a 100%);
  position: relative;
}
.offerings::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.section-lede {
  color: var(--ink-dim);
  max-width: 520px;
  margin: 0 auto 4.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.tile {
  position: relative;
  padding: 2.5rem 2rem;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 243, 234, 0.03), rgba(245, 243, 234, 0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 122, 0.3);
  background: linear-gradient(180deg, rgba(255, 210, 122, 0.04), rgba(245, 243, 234, 0.01));
}
.tile:hover::before { opacity: 1; }

.tile-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 210, 122, 0.08);
  border: 1px solid rgba(255, 210, 122, 0.18);
  margin-bottom: 1.75rem;
  color: var(--accent);
  transition: transform 0.4s ease;
}
.tile:hover .tile-icon {
  transform: rotate(-6deg) scale(1.05);
}
.tile-num {
  position: absolute;
  top: 1.75rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.tile-icon i {
  font-size: 20px;
  line-height: 1;
}
.tile-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
.tile-desc {
  color: var(--ink-dim);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- ABOUT / BEHIND THE NAME --- */
.about {
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, #07091a 0%, #050811 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 767.98px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-quote {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.005em;
}
.about-quote-sub {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 1.25rem;
}
.about-body p strong {
  color: var(--ink);
  font-weight: 500;
}
.about-formula {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 210, 122, 0.04);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.about-formula em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* --- ARTISTS / FOR ARTISTS --- */
.artists {
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, #050811 0%, #07091a 100%);
  position: relative;
}
.artists::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.artist-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
@media (max-width: 575.98px) {
  .artist-types { grid-template-columns: 1fr; }
}
.artist-type {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(245, 243, 234, 0.02);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.35s ease;
}
.artist-type:hover {
  border-color: rgba(255, 210, 122, 0.3);
  background: rgba(255, 210, 122, 0.04);
}
.artist-type-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 210, 122, 0.08);
  border: 1px solid rgba(255, 210, 122, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.artist-type-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
}
.artist-type-sub {
  font-size: 0.88rem;
  color: var(--ink-dim);
  margin: 0.15rem 0 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .pillars { grid-template-columns: 1fr; gap: 1.25rem; }
}
.pillar {
  text-align: left;
  padding: 0 0.5rem;
}
.pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 210, 122, 0.6);
  margin-bottom: 1.25rem;
}
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.pillar p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- APPLY / CONTACT FORM --- */
.apply {
  padding: 7rem 0 8rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 140, 90, 0.10), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(120, 80, 200, 0.15), transparent 55%),
    linear-gradient(180deg, #07091a 0%, #05060d 100%);
  position: relative;
}
.apply::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.apply-wrap {
  max-width: 620px;
  margin: 0 auto;
}
.form-card {
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(245, 243, 234, 0.04), rgba(245, 243, 234, 0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
@media (max-width: 575.98px) {
  .form-card { padding: 2rem 1.5rem; }
}
.form-field {
  margin-bottom: 1.5rem;
}
.form-field:last-of-type {
  margin-bottom: 2rem;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form-field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  color: rgba(245, 243, 234, 0.4);
  font-weight: 400;
  margin-left: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(5, 6, 13, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 243, 234, 0.35);
  font-weight: 300;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 210, 122, 0.5);
  background: rgba(5, 6, 13, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 210, 122, 0.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255, 210, 122, 0.5), 0 0 0 6px rgba(255, 210, 122, 0.08);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.form-success {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
}
.form-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 210, 122, 0.12);
  border: 1px solid rgba(255, 210, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
.form-success p {
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.form-hidden { display: none; }

/* --- FOOTER --- */
.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--ink);
  line-height: 1;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.footer-socials {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
  outline: none;
}

/* Smooth scroll for anchor jumps (Learn more, etc) */
html { scroll-behavior: smooth; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}