/* =========================================================
   RAMTUNES — Shared Stylesheet
   Human-crafted. Trailer-ready. Philippines-powered.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Open+Sans:wght@300;400;600&display=swap');

/* ── TOKENS ── */
:root {
  --cyan:        #00d4ff;
  --purple:      #a855f7;
  --bg:          #080808;
  --bg2:         #0f0f0f;
  --bg3:         #141414;
  --border:      #1e1e1e;
  --text:        #d0d0d0;
  --text-muted:  #666666;
  --white:       #ffffff;
  --grad:        linear-gradient(135deg, var(--cyan), var(--purple));
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.6;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,212,255,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; transition: opacity 0.2s; }
.nav-logo img:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--cyan);
  padding: 10px 22px; border-radius: 2px;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--purple); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 48px 60px 36px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; position: relative; z-index: 2;
}
.footer-brand {
  margin-bottom: 28px;
}
.footer-brand img {
  height: 52px; width: auto; opacity: 1;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}
.footer-brand img:hover { opacity: 0.8; }
.footer-socials {
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 24px;
}
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #333;
  color: #666; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0,255,255,0.06);
}
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-copy {
  font-size: 10px; color: #444; letter-spacing: 0.5px;
  text-align: center; line-height: 1.9;
}
.footer-copy a { color: var(--cyan); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: #333; text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 0 60px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #080808 0%, #0d0d1a 60%, #080808 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 100%, black 40%, transparent);
}
.page-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--cyan);
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; color: var(--white);
}
.page-hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 16px; color: #666; line-height: 1.8;
  max-width: 540px; margin-top: 20px;
}

/* ── SECTION BASE ── */
section { padding: 100px 60px; position: relative; z-index: 2; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -1px;
}
.section-sub {
  font-size: 15px; color: #666; line-height: 1.8;
  max-width: 560px; margin-top: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--grad); color: #000;
  padding: 16px 36px; text-decoration: none;
  border-radius: 2px; display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--text);
  padding: 15px 36px; text-decoration: none;
  border-radius: 2px; border: 1px solid #2a2a2a;
  display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--cyan); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── DIVIDER ── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none; margin: 0;
}

/* ── TAGS ── */
.tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan); background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 4px 10px; border-radius: 2px;
  display: inline-block;
}
.tag-purple {
  color: var(--purple); background: rgba(168,85,247,0.08);
  border-color: rgba(168,85,247,0.15);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── TICKER ── */
.ticker {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FORMS ── */
.form-group { margin-bottom: 24px; }
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 2px;
  color: var(--white); font-family: 'Open Sans', sans-serif;
  font-size: 14px; padding: 14px 18px;
  transition: border-color 0.2s, background 0.2s;
  outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan); background: #0d0d1a;
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg2); }
::placeholder { color: #333; }

/* ── MODAL (shared across all pages) ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 1000;
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2); border: 1px solid var(--border);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; position: relative;
}
.modal-header {
  padding: 28px 32px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-title { font-family:'Montserrat',sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }
.modal-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 20px; cursor: pointer; line-height: 1; padding: 0;
  transition: color 0.2s; flex-shrink: 0; margin-left: 16px;
}
.modal-close:hover { color: var(--white); }
.modal-body { padding: 28px 32px; }
.modal-beat-summary {
  background: var(--bg); border: 1px solid var(--border);
  padding: 16px 20px; margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal-beat-name { font-family:'Montserrat',sans-serif; font-size: 13px; font-weight: 700; color: var(--white); }
.modal-beat-license { font-size: 11px; color: var(--cyan); margin-top: 3px; }
.modal-beat-price { font-family:'Montserrat',sans-serif; font-size: 20px; font-weight: 900; color: var(--white); }
.modal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.modal .form-row.full { grid-template-columns: 1fr; }
.modal .form-field { display: flex; flex-direction: column; gap: 6px; }
.modal .form-field label {
  font-family:'Montserrat',sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted);
}
.modal .form-field input,
.modal .form-field select,
.modal .form-field textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--white); font-size: 13px; padding: 12px 14px;
  outline: none; transition: border-color 0.2s;
  font-family: 'Open Sans', sans-serif; border-radius: 0;
}
.modal .form-field input:focus,
.modal .form-field select:focus,
.modal .form-field textarea:focus { border-color: var(--cyan); }
.modal .form-field select { appearance: none; cursor: pointer; }
.modal .form-field textarea { resize: vertical; min-height: 80px; }
.modal-submit {
  width: 100%; margin-top: 20px;
  font-family:'Montserrat',sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--grad); color: #000; border: none;
  padding: 15px; cursor: pointer; transition: opacity 0.2s;
}
.modal-submit:hover { opacity: 0.85; }
.modal-note { font-size: 11px; color: #333; text-align: center; margin-top: 12px; line-height: 1.6; }
.modal-success { display: none; padding: 48px 32px; text-align: center; }
.modal-success.show { display: block; }
.modal-success .s-icon { font-size: 48px; margin-bottom: 16px; }
.modal-success h3 { font-family:'Montserrat',sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.modal-success p { font-size: 13px; color: #555; line-height: 1.8; }
@media (max-width: 768px) {
  .modal .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 20px 20px 16px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(24px);
  z-index: 150;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul {
  list-style: none; text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 40px;
}
.mobile-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 900;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: block; padding: 10px 20px;
  transition: color 0.2s;
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--cyan); }
.mobile-nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--bg); background: var(--cyan);
  padding: 14px 36px; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--purple); color: var(--white); }

/* ── YOUTUBE EMBEDS ── */
.yt-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; cursor: pointer; overflow: hidden;
  border-radius: 2px;
}
.yt-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s;
}
.yt-embed:hover .yt-thumb img { filter: brightness(0.6); }
.yt-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1117, #1a1a2e);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.yt-play {
  position: absolute; z-index: 2;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.yt-embed:hover .yt-play { background: var(--cyan); border-color: var(--cyan); transform: scale(1.08); }
.yt-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.yt-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.yt-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px 24px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.yt-label-title {
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 4px; line-height: 1.3;
}
.yt-label-sub { font-size: 11px; color: rgba(255,255,255,0.5); }

/* VIDEO GRID */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px; background: var(--border); margin-top: 48px;
}
.video-card {
  background: var(--bg2); overflow: hidden;
  transition: background 0.2s;
}
.video-card:hover { background: var(--bg3); }
.video-card .yt-embed { border-radius: 0; }
.video-card-body { padding: 20px 22px; }
.video-card-title {
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; line-height: 1.3;
}
.video-card-meta { font-size: 11px; color: var(--text-muted); }

/* SHOWREEL SECTION (homepage) */
#showreel {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.showreel-feature {
  max-width: 960px; margin: 48px auto 0;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(0,212,255,0.04);
}
.showreel-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .yt-play { width: 56px; height: 56px; }
  .yt-play svg { width: 20px; height: 20px; }
}

/* ── NEWSLETTER (shared across pages) ── */
.nl-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 60px;
  text-align: center;
}
.nl-inner { max-width: 560px; margin: 0 auto; }
.nl-inner .section-label { justify-content: center; }
.nl-inner .section-title { font-size: clamp(26px, 4vw, 44px); margin-bottom: 12px; }
.nl-inner > p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 32px; }
.nl-form {
  display: flex; gap: 0; max-width: 460px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
  transition: border-color 0.2s;
}
.nl-form:focus-within { border-color: var(--cyan); }
.nl-input {
  flex: 1; background: var(--bg); border: none; outline: none;
  padding: 14px 18px; font-size: 13px; color: var(--white);
  font-family: 'Open Sans', sans-serif;
}
.nl-input::placeholder { color: #444; }
.nl-btn {
  background: var(--cyan); border: none; cursor: pointer;
  padding: 14px 22px; color: var(--bg);
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
}
.nl-btn:hover { background: #00b8e0; }
.nl-note { font-size: 10px; color: #333; margin-top: 12px; letter-spacing: 0.5px; }
.nl-success {
  display: none; padding: 14px; background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.2); border-radius: 2px;
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  letter-spacing: 1.5px; color: var(--cyan); text-transform: uppercase;
}

/* ── NEWSLETTER FLOATING BAR ── */
.nl-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(6,6,6,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nl-bar.visible { transform: translateY(0); }
.nl-bar-text {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.nl-bar-text span { color: var(--cyan); }
.nl-bar-form {
  display: flex; gap: 0; flex: 1; min-width: 260px; max-width: 380px;
  border: 1px solid #222; border-radius: 2px; overflow: hidden;
  transition: border-color 0.2s;
}
.nl-bar-form:focus-within { border-color: var(--cyan); }
.nl-bar-input {
  flex: 1; background: #0d0d0d; border: none; outline: none;
  padding: 10px 14px; font-size: 12px; color: var(--white);
  font-family: 'Open Sans', sans-serif;
}
.nl-bar-input::placeholder { color: #444; }
.nl-bar-btn {
  background: var(--cyan); border: none; cursor: pointer;
  padding: 10px 18px; color: var(--bg);
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s;
}
.nl-bar-btn:hover { background: #00b8e0; }
.nl-bar-close {
  background: none; border: none; cursor: pointer;
  color: #444; font-size: 18px; line-height: 1;
  padding: 4px 8px; transition: color 0.2s; margin-left: auto;
}
.nl-bar-close:hover { color: var(--white); }
.nl-bar-done {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--cyan); text-transform: uppercase;
}
@media (max-width: 900px) {
  .nl-bar { padding: 14px 20px; gap: 12px; }
  .nl-bar-text { font-size: 10px; }
  .nl-bar-form { min-width: 0; width: 100%; max-width: 100%; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 0 24px 60px; min-height: 44vh; }
  section { padding: 72px 24px; }
  footer { padding: 36px 24px 28px; }
  .footer-socials { gap: 14px; }
  .footer-socials a { width: 34px; height: 34px; }
  .footer-links { justify-content: center; }
}
