/* Budokwai Jiu-Jitsu — static marketing site */

:root {
  --red: #b3111d;
  --red-dark: #7d0c14;
  --ink: #1a1613;
  --ink-soft: #4a423d;
  --paper: #faf7f2;
  --paper-alt: #f1ebe1;
  --line: #e4dcce;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px -12px rgba(26, 22, 19, 0.25);
  --container: 1120px;
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 700; line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; margin-bottom: .4em; }
p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-logo { border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; font-size: .95rem; }
.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: var(--ink-soft); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--ink); }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a:not(.btn) {
  color: var(--ink);
  font-size: .95rem;
  font-weight: 500;
}
.primary-nav a:not(.btn):hover { color: var(--red); text-decoration: none; }
.btn-nav { padding: 9px 18px; }

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 90px;
}
.hero-inner { max-width: 720px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 .8em;
}
.hero .eyebrow { color: #f3b7bb; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: .4em; }
.hero-lead { color: #f1e9e4; font-size: 1.08rem; max-width: 60ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 40px; }
.hero .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.12); }

.hero-facts { list-style: none; display: flex; gap: 36px; margin: 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.25); flex-wrap: wrap; }
.hero-facts strong { display: block; font-size: 1.3rem; }
.hero-facts span { font-size: .82rem; color: #ddc9c9; text-transform: uppercase; letter-spacing: .05em; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-sub { color: var(--ink-soft); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card p:last-child { margin-bottom: 0; }

.card-quote {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  border-left: 4px solid var(--red);
}
.card-quote p { color: var(--ink); margin: 0; }

.schedule-time {
  display: inline-block;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .5em;
}

.pricing .price-card { text-align: center; }
.price { font-size: 2.1rem; font-weight: 800; color: var(--red); margin: 0 0 .2em; }
.price span { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.price-note { max-width: 70ch; color: var(--ink-soft); font-size: .92rem; margin-top: 18px; }

/* Steps */
.steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.requirements { margin-top: 8px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}

/* Contact */
.contact-grid address { font-style: normal; color: var(--ink-soft); }
.social-row { display: flex; gap: 14px; margin-top: 32px; }
.social-row .btn-ghost { border-color: var(--line); color: var(--ink); }
.social-row .btn-ghost:hover { background: var(--paper-alt); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfc7c0;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-footer { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; }
.brand-footer img { border-radius: 50%; }
.site-footer p { color: #a89f97; margin: 0; font-size: .88rem; }

/* Responsive */
@media (max-width: 880px) {
  .grid-3, .steps { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .primary-nav.open { max-height: 480px; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
  }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav li:last-child { border-bottom: none; margin-top: 12px; }
  .primary-nav a:not(.btn) { display: block; padding: 14px 0; }
  .btn-nav { display: inline-block; text-align: center; }
  .hero { padding: 96px 0 64px; }
  .hero-facts { gap: 24px; }
}
