/* IOGKF Paraguay — main.css */

:root {
  --ink: #0d0d0d;
  --paper: #f5f0e8;
  --red: #9b1d20;
  --red-dark: #6e1215;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --muted: #5a5248;
  --border: rgba(201,168,76,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

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: 1000;
  opacity: 0.35;
}

/* ─── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
}
nav.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom-color: var(--border);
  padding: 0.9rem 4rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 0.05em; flex-shrink: 0;
}
.nav-logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; color: var(--paper);
  letter-spacing: 0.12em; text-transform: uppercase; display: block;
}
.nav-logo-sub {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.6rem; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase; display: block;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.7); text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--paper); transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-visual {
  position: relative; background: #0a0808; overflow: hidden;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(155,29,32,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-kanji {
  position: absolute;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(12rem, 22vw, 28rem); font-weight: 700;
  color: rgba(201,168,76,0.06);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  user-select: none; line-height: 1; white-space: nowrap;
}
.hero-emblem {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 220px; height: 220px;
}
.emblem-outer {
  width: 100%; height: 100%;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotate-slow 30s linear infinite;
}
.emblem-outer::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,76,0.15); border-radius: 50%;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.emblem-inner {
  width: 140px; height: 140px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(13,13,13,0.8); gap: 4px;
  animation: rotate-slow 30s linear infinite reverse;
}
.emblem-kanji-small { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.emblem-text { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.55rem; color: rgba(201,168,76,0.7); letter-spacing: 0.15em; text-transform: uppercase; }
.hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, transparent, var(--red) 20%, var(--red) 80%, transparent); }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 8rem 5rem 6rem; position: relative; }
.hero-content::before { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent); }
.hero-tag { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
h1 { font-family: 'Cormorant Garamond',serif; font-size: clamp(3rem,5vw,5.5rem); font-weight: 300; line-height: 1.05; color: var(--paper); margin-bottom: 1rem; }
h1 em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 300; font-style: italic; color: rgba(245,240,232,0.5); margin-bottom: 3rem; line-height: 1.5; max-width: 38ch; }
.hero-cta { display: inline-flex; align-items: center; gap: 1rem; color: var(--paper); text-decoration: none; font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 1rem 2rem; border: 1px solid rgba(245,240,232,0.2); transition: all 0.3s; align-self: flex-start; }
.hero-cta:hover { background: var(--red); border-color: var(--red); gap: 1.5rem; }
.hero-scroll { position: absolute; bottom: 3rem; left: 5rem; display: flex; align-items: center; gap: 0.8rem; font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(245,240,232,0.3); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(245,240,232,0.3)); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100%{opacity:0.3} 50%{opacity:0.8} }

/* ─── SECTIONS ───────────────────────────────── */
section { position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
.section-label { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-label::after { content: ''; display: block; flex: 1; height: 1px; background: var(--border); max-width: 80px; }
h2 { font-family: 'Cormorant Garamond',serif; font-size: clamp(2.5rem,4vw,4rem); font-weight: 300; line-height: 1.1; color: var(--paper); }
h2 em { font-style: italic; color: var(--gold-light); }

/* ─── SOBRE ──────────────────────────────────── */
#sobre { padding: 10rem 0; background: var(--ink); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 8rem; align-items: start; }
.sobre-left { position: sticky; top: 8rem; }
.sobre-left h2 { margin-bottom: 2rem; }
.sobre-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 4rem; border: 1px solid var(--border); }
.sobre-stat { padding: 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sobre-stat:nth-child(2){border-right:none}
.sobre-stat:nth-child(3){border-bottom:none;border-right:1px solid var(--border)}
.sobre-stat:nth-child(4){border-bottom:none;border-right:none}
.stat-num { font-family: 'Cormorant Garamond',serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.sobre-right p { font-size: 1.15rem; line-height: 1.9; color: rgba(245,240,232,0.75); margin-bottom: 1.8rem; }
.sobre-right p:first-child { font-size: 1.4rem; font-style: italic; color: rgba(245,240,232,0.9); font-weight: 300; line-height: 1.7; }
.sobre-quote { margin-top: 3rem; padding: 2rem 2rem 2rem 3rem; border-left: 2px solid var(--red); background: rgba(155,29,32,0.05); }
.sobre-quote p { font-size: 1.2rem !important; font-style: italic; color: rgba(245,240,232,0.8) !important; margin-bottom: 0.8rem !important; }
.sobre-quote cite { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ─── GOJU-RYU ───────────────────────────────── */
#gojuryu { padding: 10rem 0; background: #0a0808; position: relative; overflow: hidden; }
#gojuryu::before { content: '剛柔流'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); font-family: 'Zen Kaku Gothic New',sans-serif; font-size: clamp(18rem,28vw,40rem); font-weight: 700; color: rgba(201,168,76,0.03); line-height: 1; user-select: none; pointer-events: none; }
.gojuryu-header { text-align: center; margin-bottom: 7rem; }
.gojuryu-header h2 { font-size: clamp(3rem,5vw,5rem); margin-bottom: 1.5rem; }
.gojuryu-header p { font-size: 1.2rem; font-style: italic; color: rgba(245,240,232,0.5); max-width: 50ch; margin: 0 auto; line-height: 1.7; }
.gojuryu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.gojuryu-card { background: #0a0808; padding: 3rem; position: relative; overflow: hidden; transition: background 0.4s; }
.gojuryu-card:hover { background: rgba(155,29,32,0.08); }
.card-num { font-family: 'Cormorant Garamond',serif; font-size: 4rem; font-weight: 300; color: rgba(201,168,76,0.12); position: absolute; top: 1rem; right: 2rem; line-height: 1; user-select: none; }
.card-icon { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 2rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.card-title { font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; font-weight: 600; color: var(--paper); margin-bottom: 1rem; letter-spacing: 0.05em; }
.card-body { font-size: 1rem; line-height: 1.8; color: rgba(245,240,232,0.55); }

/* ─── SENSEI ─────────────────────────────────── */
#sensei { padding: 10rem 0; background: var(--ink); }
.sensei-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8rem; align-items: center; }
.sensei-name-jp { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 1.8rem; color: rgba(201,168,76,0.4); margin-bottom: 2.5rem; }
.sensei-bio { font-size: 1.1rem; line-height: 1.9; color: rgba(245,240,232,0.65); margin-bottom: 2rem; }
.sensei-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.badge { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.4rem 1rem; border: 1px solid var(--border); color: rgba(245,240,232,0.5); }
.badge-red { border-color: rgba(155,29,32,0.5); color: rgba(155,29,32,0.8); background: rgba(155,29,32,0.05); }
.portrait-frame { position: relative; padding: 1.5rem; border: 1px solid var(--border); }
.portrait-frame::before { content: ''; position: absolute; top: -8px; left: -8px; right: 8px; bottom: 8px; border: 1px solid rgba(201,168,76,0.12); pointer-events: none; }
.portrait-frame img { width: 100%; display: block; }
.portrait-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg,#1a1212 0%,#0d0d0d 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border: 1px solid rgba(255,255,255,0.03); }
.portrait-placeholder-kanji { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 5rem; color: rgba(201,168,76,0.15); }
.portrait-placeholder-text { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,240,232,0.15); }
.portrait-caption { margin-top: 1.2rem; text-align: center; }
.portrait-caption strong { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; font-weight: 600; color: var(--paper); display: block; letter-spacing: 0.05em; }
.portrait-caption span { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ─── DOJOS ──────────────────────────────────── */
#dojos { padding: 10rem 0; background: #080606; }
.dojos-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.dojos-header h2 { max-width: 14ch; }
.dojos-header p { font-size: 1rem; color: rgba(245,240,232,0.4); max-width: 30ch; line-height: 1.7; text-align: right; font-style: italic; }
.dojos-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.dojo-item { background: #080606; padding: 2.5rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr auto; align-items: center; gap: 2rem; transition: background 0.3s; }
.dojo-item:hover { background: rgba(155,29,32,0.06); }
.dojo-name { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 600; color: var(--paper); letter-spacing: 0.03em; }
.dojo-location { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.dojo-sensei { font-size: 0.95rem; color: rgba(245,240,232,0.5); font-style: italic; }
.dojo-label { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.2rem; }
.dojo-grade { font-family: 'Cormorant Garamond',serif; font-size: 1rem; color: var(--gold); }
.dojo-arrow { color: var(--border); font-size: 1.2rem; transition: all 0.3s; }
.dojo-item:hover .dojo-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── IOGKF INT ──────────────────────────────── */
#iogkf-int { padding: 8rem 0; background: var(--red-dark); position: relative; overflow: hidden; }
#iogkf-int::before { content: 'IOGKF'; position: absolute; left: -2rem; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond',serif; font-size: clamp(10rem,20vw,24rem); font-weight: 600; color: rgba(0,0,0,0.15); line-height: 1; user-select: none; pointer-events: none; }
.iogkf-int-inner { display: flex; justify-content: space-between; align-items: center; gap: 4rem; }
.iogkf-int-text h2 { color: #fff; margin-bottom: 1rem; font-size: 2.5rem; }
.iogkf-int-text p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 50ch; line-height: 1.8; font-style: italic; }
.iogkf-int-link { flex-shrink: 0; display: inline-flex; align-items: center; gap: 1rem; color: #fff; text-decoration: none; font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 1.2rem 2.5rem; border: 1px solid rgba(255,255,255,0.4); transition: all 0.3s; white-space: nowrap; }
.iogkf-int-link:hover { background: rgba(255,255,255,0.1); border-color: #fff; gap: 1.5rem; }

/* ─── CONTACTO ───────────────────────────────── */
#contacto { padding: 10rem 0; background: var(--ink); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; }
.contacto-left h2 { margin-bottom: 1.5rem; }
.contacto-left p { font-size: 1.1rem; line-height: 1.9; color: rgba(245,240,232,0.55); margin-bottom: 3rem; font-style: italic; }
.contact-items { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.contact-info-value { font-size: 1rem; color: rgba(245,240,232,0.75); }
.contact-info-value a { color: inherit; text-decoration: none; }
.contact-info-value a:hover { color: var(--gold); }
.contacto-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea { background: rgba(245,240,232,0.03); border: 1px solid var(--border); color: var(--paper); padding: 0.9rem 1.2rem; font-family: 'Cormorant Garamond',serif; font-size: 1rem; outline: none; transition: border-color 0.3s; width: 100%; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.2); font-style: italic; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { background: var(--red); border: none; color: #fff; padding: 1rem 2.5rem; font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; align-self: flex-start; display: flex; align-items: center; gap: 1rem; }
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.cf-feedback { padding: 0.8rem 1.2rem; font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; }
.cf-feedback.success { border: 1px solid rgba(201,168,76,0.4); color: var(--gold); background: rgba(201,168,76,0.05); }
.cf-feedback.error { border: 1px solid rgba(155,29,32,0.4); color: #e57373; background: rgba(155,29,32,0.05); }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: #060404; border-top: 1px solid var(--border); padding: 4rem 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(245,240,232,0.3); font-style: italic; margin-top: 1rem; }
.footer-col h4 { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a { color: rgba(245,240,232,0.35); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: rgba(245,240,232,0.7); }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding: 2rem 4rem 0; border-top: 1px solid rgba(201,168,76,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(245,240,232,0.2); }
.footer-iogkf-badge { font-family: 'Zen Kaku Gothic New',sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(201,168,76,0.4); display: flex; align-items: center; gap: 0.5rem; }
.footer-iogkf-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

/* ─── ANIMATIONS ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding-left: 2rem; padding-right: 2rem; }
  .section-inner { padding: 0 2rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 10rem 2rem 6rem; min-height: 100vh; background: radial-gradient(ellipse at 80% 20%, rgba(155,29,32,0.15), transparent 60%); }
  .hero-scroll { left: 2rem; }
  .sobre-grid, .sensei-layout, .contacto-grid { grid-template-columns: 1fr; gap: 4rem; }
  .sobre-left { position: static; }
  .gojuryu-grid { grid-template-columns: 1fr; }
  .dojos-header { flex-direction: column; align-items: flex-start; }
  .dojos-header p { text-align: left; }
  .dojo-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .iogkf-int-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Mobile nav open state */
.nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,13,0.98); padding: 6rem 2rem 2rem; gap: 2rem; z-index: 99; }
.nav-links.open li a { font-size: 1.5rem; letter-spacing: 0.1em; }
