@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --fire: #FF4500;
  --ember: #FF8C00;
  --coal: #1a1008;
  --smoke: #2d2820;
  --ash: #4a4035;
  --cream: #fff8ee;
  --gold: #FFD700;
  --white: #ffffff;
  --accent: #FF4500;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--coal);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: rgba(26,16,8,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,69,0,0.2);
  gap: 12px;
}

.nav-logo {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 0.78rem;
  color: var(--fire);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.3;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--fire); }

.nav-links .nav-cta {
  background: var(--fire);
  color: #fff;
  padding: 7px 16px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.nav-links .nav-cta:hover {
  background: var(--ember);
  color: #fff;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--coal);
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,69,0,0.2);
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a.mobile-cta {
  background: var(--fire);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border: none;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--fire);
  color: #fff;
  border: 2px solid var(--fire);
}
.btn-primary:hover {
  background: transparent;
  color: var(--fire);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--coal);
  transform: translateY(-2px);
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,248,238,0.75);
  max-width: 600px;
}

/* ── FOOTER ── */
footer {
  background: #0f0905;
  padding: 60px 40px 32px;
  border-top: 1px solid rgba(255,69,0,0.2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.1rem;
  color: var(--fire);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,248,238,0.6);
}

.footer-nav h4, .footer-info h4 {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,248,238,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--fire); }

.footer-info p {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255,248,238,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,248,238,0.35);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--fire);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 20s linear infinite;
}

.ticker-track span {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 0 32px;
  color: #fff;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── UTIL ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.text-fire { color: var(--fire); }
.text-gold { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}