/* ============================================================
   MOSSFIELD AUDIO - design system
   ============================================================ */

:root {
  /* Brand palette */
  --bg: #F4F2EB;
  --bg-elev: #ECE9DF;
  --fg: #2D4A3E;
  --fg-soft: #4A6256;
  --accent: #A8B89E;
  --muted: #8B8A82;
  --border: #DCD8CB;
  --white: #FFFFFF;
  --black: #1A1F1B;

  /* Brand invariants - NIE flipuja sie w dark mode, zawsze ta sama wartosc.
     Uzywane w newsletter/footer ktore zawsze maja byc ciemnozielone z kremowym tekstem. */
  --brand-dark: #2D4A3E;
  --brand-cream: #F4F2EB;
  --brand-cream-70: rgba(244, 242, 235, 0.70);
  --brand-cream-60: rgba(244, 242, 235, 0.60);
  --brand-cream-50: rgba(244, 242, 235, 0.50);
  --brand-cream-10: rgba(244, 242, 235, 0.10);

  /* Tokens */
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(45,74,62,0.06), 0 8px 24px rgba(45,74,62,0.04);
  --shadow-hover: 0 4px 12px rgba(45,74,62,0.08), 0 24px 48px rgba(45,74,62,0.06);
  --transition: 320ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;
}

[data-theme="dark"] {
  --bg: #1A1F1B;
  --bg-elev: #232A24;
  --fg: #E8E4D8;
  --fg-soft: #C5C0B0;
  --accent: #A8B89E;
  --muted: #8A8A82;
  --border: #2F362F;
  --white: #232A24;
  --black: #F4F2EB;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "calt";
}

/* Subtle grain texture for 2027 feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.3 0 0 0 0 0.25 0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.65; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
.h-display { font-size: clamp(40px, 9vw, 128px); font-weight: 300; letter-spacing: -0.04em; line-height: 1.05; }
.h-1 { font-size: clamp(32px, 6vw, 80px); }
.h-2 { font-size: clamp(26px, 4vw, 48px); }
.h-3 { font-size: clamp(20px, 2.5vw, 32px); }
@media (max-width: 768px) {
  .h-display { font-size: clamp(40px, 10vw, 72px); }
  /* Usun wymuszone <br> w h-display na mobile */
  .h-display br { display: none; }
}
@media (max-width: 480px) {
  .h-display { font-size: clamp(36px, 11vw, 56px); line-height: 1.08; }
  .h-1 { font-size: clamp(28px, 8vw, 44px); }
  .h-2 { font-size: clamp(22px, 6vw, 36px); }
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--fg-soft); max-width: 60ch; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  isolation: isolate;
  padding-top: env(safe-area-inset-top, 0px);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 16px rgba(45, 74, 62, 0.04);
}
[data-theme="dark"] .nav.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Mask any content scrolling under the nav (iOS Safari sticky bleed-through fix).
   Solid pseudo-element extending into the safe-area zone. */
.nav::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: -1;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-inner { display: flex; justify-content: space-between; padding: 20px 24px; }
}
@media (max-width: 640px) { .nav-inner { padding: 18px 20px; } }

/* Desktop layout: logo in center, links on left, actions on right */
.nav-logo { display: flex; align-items: center; gap: 10px; grid-column: 2; justify-self: center; }
.nav-links { grid-column: 1; justify-self: start; }
.nav-actions { grid-column: 3; justify-self: end; }

.nav-logo svg { height: 48px; width: auto; transition: height var(--transition); }
.nav.scrolled .nav-logo svg { height: 38px; }
@media (max-width: 768px) {
  .nav-logo svg { height: 36px; }
  .nav.scrolled .nav-logo svg { height: 32px; }
}
@media (max-width: 640px) {
  .nav-logo svg { height: 30px; }
  .nav.scrolled .nav-logo svg { height: 28px; }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-links a { font-weight: 500; }
.nav-links a.current { color: var(--muted); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.theme-toggle:hover { border-color: var(--fg); opacity: 1; }
.theme-toggle svg { width: 16px; height: 16px; }

.nav-toggle { display: none; }

@media (max-width: 768px) {
  /* MOBILE MENU - bulletproof: visibility + opacity zamiast transform.
     Domyslnie calkowicie ukryte (nie da sie kliknac, nie zajmuje miejsca wizualnie).
     Po dodaniu .open - pelnoekranowy overlay z solidnym tlem. */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 32px;
    gap: 32px;
    font-size: 30px;
    font-family: var(--font-display);
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 0s linear 280ms;
    border: none;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 280ms ease, visibility 0s linear 0s;
  }
  .nav-links a {
    color: var(--fg);
    padding: 8px 24px;
  }
  .nav-toggle {
    display: flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    position: relative;
    z-index: 110;
    background: var(--bg);
  }
  .nav { z-index: 100; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-actions { gap: 10px; }
  .theme-toggle { width: 38px; height: 38px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 64px 0 96px;
}
@media (max-width: 768px) { .hero { min-height: auto; padding: 56px 0 72px; } }
.hero-content { max-width: 900px; }
.hero-eyebrow { margin-bottom: 32px; opacity: 0; animation: fadeUp 800ms 200ms forwards; }
.hero-title { margin-bottom: 32px; opacity: 0; animation: fadeUp 800ms 400ms forwards; }
.hero-tagline { font-style: italic; color: var(--fg-soft); opacity: 0; animation: fadeUp 800ms 600ms forwards; }
.hero-cta { margin-top: 56px; display: flex; gap: 16px; opacity: 0; animation: fadeUp 800ms 800ms forwards; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-cta { flex-direction: column; gap: 12px; margin-top: 40px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-tagline { font-size: 17px; }
}
@media (max-width: 768px) {
  .scroll-indicator { display: none; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 800ms 1200ms forwards;
}
.scroll-indicator .line {
  width: 1px; height: 40px;
  background: var(--muted);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { background: var(--black); opacity: 1; }
[data-theme="dark"] .btn-primary:hover { background: var(--fg-soft); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--fg); opacity: 1; }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em;
}
.btn-arrow .arrow {
  transition: transform var(--transition);
}
.btn-arrow:hover .arrow { transform: translateX(4px); }

/* ============================================================
   GRIDS - artists, releases, blog
   ============================================================ */

.grid {
  display: grid;
  gap: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Section header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
}
.section-head-left { max-width: 600px; }
@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; gap: 20px; }
  .grid { gap: 24px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 420px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTIST CARDS
   ============================================================ */

.artist-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  transition: transform var(--transition);
  display: block;
}
.artist-card:hover { transform: translateY(-4px); opacity: 1; }

.artist-card-visual {
  aspect-ratio: 1 / 1;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.artist-card-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}

/* Persona-specific palettes - applied via class */
.persona-velour-tape .artist-card-visual {
  background: linear-gradient(135deg, #6B2D2D 0%, #E8DCC4 100%);
}
.persona-holm-hush .artist-card-visual {
  background: linear-gradient(135deg, #14213D 0%, #DEDED5 100%);
}
.persona-little-lantern .artist-card-visual {
  background: linear-gradient(135deg, #F4D793 0%, #B4C8A2 100%);
}
.persona-neon-cassia .artist-card-visual {
  background: linear-gradient(135deg, #C72A6B 0%, #5C2EAA 50%, #1FB6C4 100%);
}

.artist-card-meta {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.artist-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.artist-card-niche {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .artist-card-meta { padding: 16px; }
  .artist-card-name { font-size: 18px; }
  .artist-card-niche { font-size: 10px; }
}

.artist-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  color: var(--black);
  backdrop-filter: blur(8px);
}

/* ============================================================
   RELEASE CARDS
   ============================================================ */

.release-card {
  display: block;
  position: relative;
}
.release-cover {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--bg-elev);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.release-card:hover .release-cover { transform: scale(1.02); }
.release-card:hover { opacity: 1; }

.release-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.release-card:hover .release-cover::after { background: rgba(0,0,0,0.1); }

.release-cover.velour { background: linear-gradient(135deg, #6B2D2D 0%, #2A1810 100%); }
.release-cover.holm { background: linear-gradient(180deg, #14213D 0%, #DEDED5 100%); }
.release-cover.lantern { background: linear-gradient(135deg, #F4D793 0%, #FAF5E9 100%); }
.release-cover.cassia { background: linear-gradient(135deg, #C72A6B 0%, #5C2EAA 100%); }

.release-title { font-family: var(--font-display); font-size: 20px; }
.release-meta { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition);
}
.blog-card:first-child { border-top: 1px solid var(--border); }
.blog-card:hover { padding-left: 12px; opacity: 1; }

.blog-card-grid {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .blog-card-grid { grid-template-columns: 1fr; gap: 12px; }
}

.blog-card-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.blog-card-cat {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Blog post page */
.post-hero {
  padding: 80px 0 60px;
  max-width: 760px;
  margin: 0 auto;
}
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 120px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-soft);
}
.post-content h2 { font-size: 36px; margin: 64px 0 24px; color: var(--fg); }
.post-content h3 { font-size: 24px; margin: 48px 0 16px; color: var(--fg); }
.post-content p { margin-bottom: 24px; }
.post-content blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--fg);
}
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--fg); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  background: var(--brand-dark);
  color: var(--brand-cream);
  padding: 100px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 80px 0;
}
.newsletter h2 { color: var(--brand-cream); margin-bottom: 16px; }
.newsletter p { color: var(--brand-cream-70); max-width: 480px; margin: 0 auto 40px; }
.newsletter .eyebrow { color: var(--accent) !important; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(244,242,235,0.08);
  border: 1px solid rgba(244,242,235,0.25);
  border-radius: 999px;
  color: var(--brand-cream);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(244,242,235,0.55); }
.newsletter-form input:focus { border-color: rgba(244,242,235,0.6); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--brand-cream);
  color: var(--brand-dark);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  transition: opacity var(--transition);
}
.newsletter-form button:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form button { width: 100%; }
  .newsletter { padding: 64px 24px; margin: 56px 0; border-radius: 12px; }
  .newsletter p { font-size: 15px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .newsletter { padding: 56px 20px; margin: 40px 0; }
}

/* ============================================================
   PHILOSOPHY / VALUES
   ============================================================ */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .philosophy { grid-template-columns: 1fr; gap: 48px; }
}

.values { display: flex; flex-direction: column; gap: 48px; }
.value h3 { font-size: 28px; margin-bottom: 12px; }
.value p { color: var(--fg-soft); }
.value-number {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

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

footer {
  background: var(--brand-dark);
  color: var(--brand-cream);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 64px 0 32px; }
}

.footer-brand .nav-logo { margin-bottom: 28px; display: block; justify-self: start !important; }
.footer-brand .nav-logo svg { height: 56px !important; }
@media (max-width: 768px) {
  .footer-brand .nav-logo svg { height: 44px !important; }
}
.footer-brand .nav-logo svg path,
.footer-brand .nav-logo svg text { fill: var(--brand-cream); stroke: var(--brand-cream); }
.footer-brand p { color: var(--brand-cream-70); max-width: 320px; font-size: 14px; line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-cream-50);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { color: var(--brand-cream); }
.footer-col a:hover { opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid var(--brand-cream-10);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--brand-cream-50);
  font-family: var(--font-mono);
}

.footer-company {
  background: rgba(244,242,235,0.06);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  font-size: 13px;
  color: var(--brand-cream-70);
  line-height: 1.75;
  border-left: 2px solid var(--accent);
}
.footer-company strong { color: var(--brand-cream); font-weight: 500; }

/* ============================================================
   UTILS
   ============================================================ */

.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hide on mobile */
.hide-mobile { display: initial; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* Hero giant logo - decorative brand statement */
.hero-mark {
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1000ms 100ms forwards;
}
.hero-mark svg {
  height: clamp(72px, 12vw, 144px);
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-mark { margin-bottom: 36px; }
  .hero-mark svg { height: 56px; }
}
@media (max-width: 480px) {
  .hero-mark { margin-bottom: 28px; }
  .hero-mark svg { height: 48px; }
}

/* Legacy hero-logo class (kept for backward compat) */
.hero-logo {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.hero-logo svg { height: clamp(40px, 6vw, 80px); width: auto; }
@media (max-width: 640px) { .hero-logo svg { height: 32px; } }
