/* =======================================
   FRNTHAUS -- Main Stylesheet
   frnthaus.com
======================================= */

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

:root {
  --blue: #2150F5;
  --blue-dark: #0f2fc4;
  --blue-light: #4d72ff;
  --cream: #F2EFE8;
  --cream-dark: #e5e1d8;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #888888;
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: #F2EFE8; background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* -- CURSOR -- */
.cursor {
  width: 12px; height: 12px;
  background: #2150F5; background: var(--blue);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor.h { width: 36px; height: 36px; opacity: 0.3; }

/* -- PAGE SYSTEM -- */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* -- NAV -- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(242, 239, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
nav.dark { background: transparent; }
nav.dark.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { height: 42px; cursor: none; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-d);
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; color: var(--black);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.2s; cursor: none;
}
.nav-links a:hover { color: var(--blue); }
nav.dark .nav-links a { color: rgba(255,255,255,0.8); }
nav.dark .nav-links a:hover { color: var(--white); }
.nav-reg {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-reg:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #0a0a0a; background: var(--black); transition: 0.3s; border-radius: 2px;
}
nav.dark .hamburger span { background: white; }

/* -- MOBILE NAV -- */
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: #0a0a0a; background: var(--black); z-index: 600;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--font-d); font-size: 1.8rem; font-weight: 800;
  color: var(--white); text-decoration: none;
  text-transform: uppercase; cursor: none; transition: color 0.2s;
}
.mob-nav a:hover { color: var(--blue); }
.mob-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: none;
  transition: color 0.2s;
}
.mob-close:hover { color: white; }

/* -- SHARED -- */
.container { max-width: 1100px; margin: 0 auto; }
.sec-label {
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.9rem;
}
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 1.5rem;
}

/* -- BUTTONS -- */
.btn-p {
  background: #2150F5; background: var(--blue); color: var(--white);
  font-family: var(--font-d); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  border: none; cursor: none; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(33, 80, 245, 0.4);
  display: inline-block;
}
.btn-p:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(33,80,245,0.5); }
.btn-g {
  background: transparent; color: var(--white);
  font-family: var(--font-d); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: none; text-decoration: none;
  transition: border-color 0.2s, transform 0.2s; display: inline-block;
}
.btn-g:hover { border-color: var(--white); transform: translateY(-2px); }

/* -- REVEAL -- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ======================================
   HOME PAGE
====================================== */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 5rem; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat; z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,15,0.75) 0%, rgba(5,5,15,0.6) 45%, rgba(5,5,15,0.82) 100%);
}
.hero-rings { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-rings span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(33,80,245,0.14);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ringPulse 6s ease-in-out infinite;
}
.hero-rings span:nth-child(1) { width: 500px; height: 500px; animation-delay: 0s; }
.hero-rings span:nth-child(2) { width: 800px; height: 800px; animation-delay: 1.2s; }
.hero-rings span:nth-child(3) { width: 1100px; height: 1100px; animation-delay: 2.4s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.5; } }

.hero > *:not(.hero-bg):not(.hero-rings) { position: relative; z-index: 2; }
.hero-logo { width: 155px; margin-bottom: 2.5rem; animation: fadeUp 0.9s ease forwards; opacity: 0; transform: translateY(20px); }
.hero-eyebrow {
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 1.2rem; animation: fadeUp 0.9s 0.15s ease forwards; opacity: 0; transform: translateY(20px);
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6.2vw, 5.2rem);
  font-weight: 800; color: var(--white); line-height: 1.03; max-width: 780px;
  animation: fadeUp 0.9s 0.3s ease forwards; opacity: 0; transform: translateY(20px);
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.55);
  max-width: 500px; line-height: 1.7; margin-top: 1.4rem;
  animation: fadeUp 0.9s 0.45s ease forwards; opacity: 0; transform: translateY(20px);
}
.hero-btns {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  animation: fadeUp 0.9s 0.6s ease forwards; opacity: 0; transform: translateY(20px);
  flex-wrap: wrap; justify-content: center;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: fadeUp 0.9s 0.9s ease forwards; opacity: 0; z-index: 2;
}
.scroll-hint span {
  font-family: var(--font-d); font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* EDITION STRIP */
.edition-strip { background: #F2EFE8; background: var(--cream); padding: 5rem 2rem; }
.edition-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.edition-metas { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 0.18rem; }
.meta-item label { font-family: var(--font-d); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.meta-item span { font-family: var(--font-d); font-size: 0.95rem; font-weight: 700; }
.artists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.artist-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.artist-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.artist-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.artist-card:hover img { transform: scale(1.04); }
.artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.artist-name { font-family: var(--font-d); font-size: 1.55rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.25rem; }
.artist-genre { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-d); }
.artist-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #2150F5; background: var(--blue); color: var(--white);
  font-family: var(--font-d); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 100px;
}

/* PARTNERS */
.partners-bar { background: #e5e1d8; background: var(--cream-dark); padding: 3.5rem 2rem; border-top: 1px solid rgba(0,0,0,0.07); border-bottom: 1px solid rgba(0,0,0,0.07); }
.partners-bar .sec-label { text-align: center; margin-bottom: 2.2rem; }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.partner-item { opacity: 0.65; transition: opacity 0.2s; cursor: none; display: flex; align-items: center; }
.partner-item:hover { opacity: 1; }
.partner-item img { height: 36px; object-fit: contain; }
.partner-placeholder { font-family: var(--font-d); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em; color: #aaa; opacity: 0.4; }

/* ======================================
   REGISTER MODAL
====================================== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.78); z-index: 800;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #2150F5; background: var(--blue); border-radius: 20px;
  width: 100%; max-width: 620px; max-height: 92vh;
  overflow-y: auto; padding: 2.8rem;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: 50%; cursor: none;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.28); }
.modal-title { font-family: var(--font-d); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.modal-sub { color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 300; margin-bottom: 2rem; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-grid .full { grid-column: 1 / -1; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-family: var(--font-d); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.fg input, .fg select {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--white);
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none; cursor: none; width: 100%;
}
.fg input::placeholder { color: rgba(255,255,255,0.3); }
.fg input:focus, .fg select:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.fg select option { background: #1a3ad4; color: var(--white); }
.sel-wrap { position: relative; }
.sel-wrap::after { content: "\2193"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.45); pointer-events: none; font-size: 0.8rem; }
.location-other {
  display: none; margin-top: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--white);
  outline: none; width: 100%; cursor: none;
  transition: border-color 0.2s, background 0.2s;
}
.location-other::placeholder { color: rgba(255,255,255,0.3); }
.location-other:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.btn-submit {
  width: 100%; margin-top: 1rem;
  background: #ffffff; background: var(--white); color: var(--blue);
  font-family: var(--font-d); font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.95rem 2rem; border-radius: 100px; border: none; cursor: none;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-submit:hover { background: #F2EFE8; background: var(--cream); transform: translateY(-1px); }
.reg-success { display: none; text-align: center; padding: 2rem 0; }
.reg-success.show { display: block; }
.suc-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem; }
.reg-success h3 { font-family: var(--font-d); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.reg-success p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.65; }

/* ======================================
   ABOUT PAGE
====================================== */
.about-hero {
  min-height: 52vh; background: #0a0a0a; background: var(--black);
  display: flex; align-items: flex-end;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(33,80,245,0.12) 0%, transparent 70%); }
.about-hero-inner { position: relative; z-index: 1; }
.about-hero .sec-label { color: var(--blue-light); }
.about-hero h1 { font-family: var(--font-d); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; color: var(--white); line-height: 1.02; max-width: 700px; }
.about-body { padding: 5rem 2rem; background: #F2EFE8; background: var(--cream); }
.about-content p { font-size: 1.08rem; line-height: 1.85; color: rgba(0,0,0,0.65); font-weight: 300; margin-bottom: 1.4rem; }
.about-contact { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.about-contact h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.about-contact a { color: var(--blue); font-family: var(--font-d); font-size: 0.95rem; font-weight: 500; text-decoration: none; cursor: none; }
.soc-pills { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 1rem; }
.soc-pill {
  padding: 0.38rem 0.9rem; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 100px;
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--black);
  text-decoration: none; cursor: none; transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.soc-pill:hover { border-color: var(--blue); background: #2150F5; background: var(--blue); color: var(--white); }

/* ======================================
   SHOP PAGE
====================================== */
.shop-hero {
  min-height: 100vh; background: #0a0a0a; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 6rem 2rem; position: relative; overflow: hidden;
}
.shop-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(33,80,245,0.1) 0%, transparent 65%); }
.shop-label { font-family: var(--font-d); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.shop-title { font-family: var(--font-d); font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; color: var(--white); line-height: 0.95; position: relative; z-index: 1; margin-bottom: 1.5rem; }
.shop-sub { font-size: 1rem; color: rgba(255,255,255,0.4); font-weight: 300; max-width: 380px; line-height: 1.7; position: relative; z-index: 1; }
.shop-notify { margin-top: 2.5rem; display: flex; gap: 0.8rem; position: relative; z-index: 1; flex-wrap: wrap; justify-content: center; }
.shop-notify input {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 0.8rem 1.4rem; color: var(--white);
  font-family: var(--font-b); font-size: 0.9rem; outline: none; min-width: 240px; cursor: none;
}
.shop-notify input::placeholder { color: rgba(255,255,255,0.3); }
.shop-notify input:focus { border-color: rgba(255,255,255,0.5); }
.shop-notify button {
  background: #2150F5; background: var(--blue); color: var(--white);
  font-family: var(--font-d); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.8rem 1.8rem; border-radius: 100px; border: none; cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.shop-notify button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.shop-confirm { display: none; margin-top: 1rem; font-family: var(--font-d); font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; position: relative; z-index: 1; }

/* ======================================
   UPDATES PAGE
====================================== */
.updates-hero { padding: 8rem 2rem 3.5rem; background: #F2EFE8; background: var(--cream); }
.updates-hero h1 { font-family: var(--font-d); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-top: 0.8rem; max-width: 600px; line-height: 1.05; }
.updates-body { padding: 1.5rem 2rem 5rem; background: #F2EFE8; background: var(--cream); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; margin-top: 1.5rem; }
.post-card {
  background: #ffffff; background: var(--white); border-radius: 16px; overflow: hidden;
  cursor: none; transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.post-thumb { height: 200px; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 1.5rem; }
.post-tag { font-family: var(--font-d); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; }
.post-title { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.7rem; color: var(--black); }
.post-excerpt { font-size: 0.85rem; line-height: 1.65; color: var(--gray); font-weight: 300; }
.post-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 0.9rem; border-top: 1px solid rgba(0,0,0,0.06); }
.post-date { font-size: 0.75rem; color: var(--gray); font-family: var(--font-d); font-weight: 500; }
.post-read { font-family: var(--font-d); font-size: 0.72rem; font-weight: 700; color: var(--blue); letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; cursor: none; }

/* ======================================
   SUBMIT PAGE
====================================== */
.submit-hero {
  min-height: 42vh; background: #0a0a0a; background: var(--black);
  display: flex; align-items: flex-end;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.submit-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(33,80,245,0.15) 0%, transparent 65%); }
.submit-hero-inner { position: relative; z-index: 1; }
.submit-hero .sec-label { color: var(--blue-light); }
.submit-hero h1 { font-family: var(--font-d); font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; color: var(--white); line-height: 1.02; max-width: 660px; }
.submit-body { padding: 5rem 2rem; background: #F2EFE8; background: var(--cream); }
.submit-intro { max-width: 600px; font-size: 1.05rem; line-height: 1.8; color: rgba(0,0,0,0.6); font-weight: 300; margin-bottom: 3rem; margin-left: auto; margin-right: auto; }
.submit-form { max-width: 680px; margin-left: auto; margin-right: auto; }
.sfg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.sfg label { font-family: var(--font-d); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.55); }
.sfg input, .sfg select, .sfg textarea {
  background: #ffffff; background: var(--white); border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px; padding: 0.88rem 1rem;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--black);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none; cursor: none; width: 100%;
}
.sfg input:focus, .sfg select:focus, .sfg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,80,245,0.1); }
.sfg textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.sfg input::placeholder, .sfg textarea::placeholder { color: rgba(0,0,0,0.3); }
.sfg .sel-dark { position: relative; }
.sfg .sel-dark::after { content: "\2193"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: rgba(0,0,0,0.4); pointer-events: none; font-size: 0.8rem; }
.sform-note { font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; font-weight: 300; }
.sform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.sform-row .sfg { margin-bottom: 0; }
.btn-submit-dark {
  background: #0a0a0a; background: var(--black); color: var(--white);
  font-family: var(--font-d); font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.5rem; border-radius: 100px; border: none; cursor: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-submit-dark:hover { background: #2150F5; background: var(--blue); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(33,80,245,0.35); }
.submit-success { display: none; background: #0a0a0a; background: var(--black); border-radius: 16px; padding: 3rem; text-align: center; max-width: 460px; margin-top: 2rem; margin-left: auto; margin-right: auto; }
.submit-success.show { display: block; }
.submit-success .suc-icon { background: rgba(33,80,245,0.2); }
.submit-success h3 { font-family: var(--font-d); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.7rem; margin-top: 1rem; }
.submit-success p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.65; }

/* ======================================
   FOOTER
====================================== */
footer { background: #0a0a0a; background: var(--black); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { height: 38px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.38); max-width: 240px; }
.foot-col h5 { font-family: var(--font-d); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.38); text-decoration: none; cursor: none; transition: color 0.2s; }
.foot-col ul li a:hover { color: var(--white); }
.foot-socials { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.foot-soc {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; font-family: var(--font-d); font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-decoration: none; cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.foot-soc:hover { border-color: var(--blue); color: var(--white); background: #2150F5; background: var(--blue); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.76rem; color: rgba(255,255,255,0.22); }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
  nav { padding: 1rem 1.4rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .sform-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .edition-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .modal-box { padding: 2rem 1.4rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
