@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --bg: #090909;
  --panel: #121212;
  --panel-2: #191919;
  --text: #f5f1e9;
  --muted: #b9b4aa;
  --red: #d51f26;
  --red-dark: #8f1015;
  --gold: #d7c18b;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(8,8,8,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  color: #ddd;
  font-size: .94rem;
  font-weight: 600;
}
.nav a:hover { color: white; }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #151515;
  color: white;
  border-radius: 8px;
  padding: 9px 13px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px max(22px, calc((100vw - var(--max)) / 2)) 70px;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/dojo-exterior.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(.8) contrast(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 42%, transparent 0 15%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.78) 78%),
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.28) 76%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-logo { width: 104px; margin-bottom: 22px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, h2, h3 {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.3rem, 9vw, 8.4rem);
  line-height: .82;
  letter-spacing: -.045em;
  max-width: 900px;
}
.hero h1 span { color: var(--red); }
.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: #dedad2;
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary {
  background: linear-gradient(135deg, #e32931, #b61016);
  color: white;
  box-shadow: 0 12px 32px rgba(213,31,38,.22);
}
.button.primary:hover { transform: translateY(-1px); }
.button.secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
}
.button.large { min-height: 58px; font-size: 1.04rem; }
.hero-badge {
  position: absolute;
  z-index: 2;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 46px;
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 18px;
  text-transform: uppercase;
}
.hero-badge span, .hero-badge strong { display: block; }
.hero-badge span { color: #c6c0b5; font-size: .74rem; letter-spacing: .15em; }
.hero-badge strong { font-family: "Oswald"; font-size: 1.3rem; letter-spacing: .06em; }

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 110px 0;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading.centered { text-align: center; max-width: 820px; margin: 0 auto 46px; }
.subhead { color: var(--muted); max-width: 660px; margin: 20px auto 0; }

.intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: end;
}
.intro-copy > p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-row span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #121212;
  font-size: .86rem;
  font-weight: 700;
}

.classes-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.class-card {
  min-height: 340px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.class-card.red {
  background: linear-gradient(145deg, rgba(213,31,38,.97), rgba(105,9,12,.98));
}
.class-card.gold {
  color: #0a0a0a;
  background: linear-gradient(145deg, #efe0b3, #bfa66d);
}
.class-card.dark { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); }
.card-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  opacity: .8;
}
.class-card h3, .instructor-card h3 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .95;
}
.class-card p { max-width: 480px; }
.schedule { display: grid; gap: 5px; margin-top: 26px; }
.schedule span { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.schedule strong { font-family: "Oswald"; font-size: 2rem; text-transform: uppercase; }
.text-link { font-weight: 800; text-decoration: none; color: var(--gold); }

.instructor-layout {
  margin-top: 50px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}
.instructor-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 100%;
  background: #141414;
}
.instructor-photo img { height: 100%; object-fit: cover; object-position: center; }
.instructor-cards { display: grid; gap: 18px; }
.instructor-card {
  padding: 30px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.instructor-card h3 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.instructor-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.instructor-card li + li { margin-top: 8px; }

.gallery-section { background: #101010; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-title { padding-bottom: 46px; }
.gallery-grid {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  grid-auto-rows: 360px;
  gap: 12px;
  padding-bottom: 12px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #181818;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.exterior { grid-column: span 2; }
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 5px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-section { padding-top: 120px; padding-bottom: 120px; }
.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(213,31,38,.13), transparent 38%),
    #121212;
}
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .96;
}
.contact-panel p { color: var(--muted); }
.contact-actions { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.contact-line {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-line span { display: block; color: var(--gold); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-line strong { display: block; margin-top: 5px; font-size: 1.05rem; }
.social-lines { display: grid; gap: 5px; color: var(--muted); font-size: .92rem; }

.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #a9a49a;
  font-size: .85rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: white; }

@media (max-width: 900px) {
  .menu-button { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #101010;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .brand span { font-size: .9rem; }
  .hero { min-height: 92svh; }
  .hero-logo { width: 82px; }
  .hero-badge { display: none; }
  .intro, .instructor-layout, .contact-panel { grid-template-columns: 1fr; gap: 36px; }
  .class-grid { grid-template-columns: 1fr; }
  .instructor-photo { max-height: 640px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .gallery-item.wide, .gallery-item.exterior { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  .site-header { min-height: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { max-width: 190px; line-height: 1.05; }
  .nav { top: 69px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 5.8rem); }
  .hero-copy { font-size: .98rem; }
  .section { width: min(var(--max), calc(100% - 28px)); padding: 82px 0; }
  .section-heading h2 { font-size: 3rem; }
  .class-card { min-height: 310px; padding: 24px; }
  .contact-panel { padding: 28px 22px; }
  .gallery-grid {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
  .gallery-item.wide, .gallery-item.exterior { grid-column: span 1; }
  .footer { width: calc(100% - 28px); flex-direction: column; align-items: flex-start; }
}


/* --- 2026 update: free trial, assistant manager, videos, expanded gallery --- */
.trial-note {
  margin-top: 18px;
  max-width: 650px;
  color: #d7d2c8;
  font-size: .86rem;
}
.trial-note strong { color: #fff; }

.free-trial-banner {
  margin-top: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(215,193,139,.35);
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(215,193,139,.14), rgba(255,255,255,.025));
}
.free-trial-banner > span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 800;
}
.free-trial-banner > strong {
  display: block;
  margin-top: 4px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}
.free-trial-banner p { margin: 10px 0 8px; color: var(--muted); }
.free-trial-banner a { color: white; font-weight: 800; text-decoration: none; }

.assistant-card {
  background:
    linear-gradient(145deg, rgba(215,193,139,.09), transparent 55%),
    var(--panel);
}
.assistant-card p:last-child { color: var(--muted); margin-bottom: 0; }

.video-section {
  background: #0e0e0e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: 72px;
}
.video-title { padding-bottom: 40px; }
.video-grid {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #090909;
}
.video-card video {
  display: block;
  width: 100%;
  max-height: 540px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #000;
}
.video-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
}
.video-label span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 800;
}
.video-label strong { font-size: .9rem; }

.legal-note {
  margin: 4px 0 0;
  padding-top: 6px;
  font-size: .78rem !important;
  line-height: 1.5;
  color: #888 !important;
}

.gallery-grid.expanded { grid-auto-rows: 340px; }

@media (max-width: 800px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card video { max-height: 70vh; }
}

@media (max-width: 600px) {
  .free-trial-banner { padding: 22px; }
  .video-grid { width: calc(100% - 16px); }
}
