/* ============================================================
   Modern Warrior Training Camp — BADASS Edition + Samurai
   ============================================================ */

/* --- @property for animated gradient border --- */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* --- Design Tokens --- */
:root {
  --color-bg: #0A0A0A;
  --color-bg-alt: #0e0e0e;
  --color-bg-elevated: #111111;
  --color-bg-card: #131313;
  --color-text: #E8E8E8;
  --color-text-muted: #777777;
  --color-accent: #C9A96E;
  --color-accent-dim: rgba(201, 169, 110, 0.15);
  --color-red: #c8102e;
  --color-red-glow: rgba(200, 16, 46, 0.4);
  --color-red-dim: rgba(200, 16, 46, 0.08);
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(200, 16, 46, 0.3);

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--color-bg);
  /* Subtle grid pattern */
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--color-red);
  color: #fff;
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  filter: url(#grain);
  mix-blend-mode: overlay;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-red); border-radius: 3px; }

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--color-text); }

blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-accent);
  border-left: 3px solid var(--color-red);
  padding-left: 1.5rem;
  margin: var(--space-lg) 0 var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav__logo:hover { color: var(--color-red); }

.nav__links {
  display: none;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: #fff; }

.nav__cta {
  color: var(--color-red) !important;
  border: 1px solid var(--color-red);
  padding: 0.4em 1.2em;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.nav__cta:hover {
  background: var(--color-red) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.nav-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
}
.nav--open .nav__links a { font-size: 1.4rem; color: var(--color-text); }
.nav--open .nav-hamburger__line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav--open .nav-hamburger__line:nth-child(2) { opacity: 0; }
.nav--open .nav-hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- CTA Buttons --- */
.btn {
  display: inline-block;
  padding: 1em 2.5em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--color-red);
  color: #fff;
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 0 20px var(--color-red-glow),
    0 0 60px rgba(200, 16, 46, 0.15);
}

/* Sweep shine effect */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}
.btn--primary:hover::after { left: 125%; }

.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/combat-dojo-montreal-team-modern-warrior.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.3) contrast(1.1);
  opacity: 0.5;
}

/* Hero background video */
/* Hide native video controls & play button on iOS */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(100%) brightness(0.25) contrast(1.2);
  opacity: 0.6;
}

/* Dark gradient overlay on video for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, transparent 30%, transparent 60%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

/* Ghost text behind hero */
.hero__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.05em;
}

.hero__content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5em 1.5em;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  background: rgba(200, 16, 46, 0.08);
}

/* Pulsing dot — injected by JS */
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--color-red-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(200, 16, 46, 0); }
}

.hero__headline {
  margin-bottom: var(--space-md);
}

.hero__line {
  display: block;
}

.hero__line--solid {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero__line--stroke {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero__subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-accent);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-xs);
}

.hero__location {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.hero__copy p {
  color: var(--color-text-muted);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.hero__spot-counter { margin: var(--space-md) auto; }
.hero__cta { margin-top: var(--space-sm); }

/* --- Spot Counter --- */
#spot-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.2);
  padding: 0.5em 1.4em;
  border-radius: 4px;
}

.counter__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}

.counter__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.counter__badge {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3em 0.7em;
  border-radius: 2px;
  margin-left: 0.5em;
  animation: pulse-dot 2s ease-in-out infinite;
}

.counter--closed { opacity: 0.5; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section--alt {
  background:
    radial-gradient(ellipse at 80% 20%, var(--color-red-dim) 0%, transparent 50%),
    var(--color-bg-alt);
}

.section--angled {
  clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
  padding-top: calc(var(--space-xl) + 3vw);
  padding-bottom: calc(var(--space-xl) + 3vw);
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 40%),
    var(--color-bg-elevated);
}

.section--pricing {
  background:
    radial-gradient(ellipse at 50% 0%, var(--color-red-dim) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 169, 110, 0.03) 0%, transparent 40%),
    var(--color-bg);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__heading {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

/* Glowing underline on section headings */
.section__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-red);
  margin: 0.5em auto 0;
  box-shadow: 0 0 10px var(--color-red-glow), 0 0 30px rgba(200, 16, 46, 0.15);
}

.text-accent { color: var(--color-accent); }

.section__subtext {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: calc(-1 * var(--space-md)) auto var(--space-lg);
}

/* --- Section Photos --- */
.section-photo {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  max-height: 450px;
}

.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: grayscale(100%) contrast(1.15) brightness(0.8);
}

/* Section background image overlay */
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.2) contrast(1.1);
  opacity: 0.4;
}

.section__bg + .section__inner {
  position: relative;
  z-index: 1;
}

/* ============================================================
   GOLD LIST (Section 2)
   ============================================================ */
.gold-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.gold-list li {
  border-left: 3px solid var(--color-red);
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease, padding-left 0.3s ease;
  font-size: 1.05rem;
}
.gold-list li:hover {
  border-left-color: var(--color-accent);
  padding-left: 2rem;
}

/* ============================================================
   FILTER GRID (Section 3)
   ============================================================ */
.filter-grid {
  display: grid;
  gap: var(--space-md);
}

.filter-grid__col {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.filter-grid__title {
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.filter-grid__list {
  list-style: none;
}

.filter-grid__list li {
  padding: 0.6rem 0 0.6rem 1.2rem;
  border-left: 2px solid var(--color-border);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.filter-grid__col--not .filter-grid__title { color: var(--color-text-muted); }
.filter-grid__col--not .filter-grid__list li {
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(200, 16, 46, 0.4);
}

.filter-grid__col--for {
  border-color: rgba(200, 16, 46, 0.2);
}
.filter-grid__col--for .filter-grid__title { color: var(--color-accent); }
.filter-grid__col--for .filter-grid__list li {
  color: var(--color-text);
  border-left-color: var(--color-red);
}

/* ============================================================
   ALLOWS GRID (Section 4)
   ============================================================ */
.allows-grid {
  display: grid;
  gap: var(--space-sm);
}

.allows-grid__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-red);
  padding: var(--space-md);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.allows-grid__item:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(200, 16, 46, 0.08);
}

.allows-grid__icon {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(200, 16, 46, 0.2);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.allows-grid__item p {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================
   TIMELINE (Section 5)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-red), var(--color-accent), transparent);
}

.timeline__card {
  position: relative;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0 var(--space-sm) 1.5rem;
  transition: transform 0.2s ease;
}
.timeline__card:hover { transform: translateX(6px); }

.timeline__marker {
  position: absolute;
  left: -2.55rem;
  top: 0.8em;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px var(--color-red-glow);
}

.timeline__title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 0.2em;
  font-weight: 600;
}

.timeline__label {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4em;
  text-transform: uppercase;
}

.timeline__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.timeline__photo {
  margin-top: var(--space-sm);
  border-radius: 6px;
  overflow: hidden;
  max-height: 220px;
}

.timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.8);
  transition: filter 0.4s ease;
}

.timeline__card:hover .timeline__photo img {
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
}

/* ============================================================
   COACHES GRID (Section 6)
   ============================================================ */
.coaches-grid {
  display: grid;
  gap: var(--space-md);
}

.coaches-grid__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coaches-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(200, 16, 46, 0.08);
}

/* Red accent bar at top */
.coaches-grid__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-accent));
}

/* Coach Photo */
.coaches-grid__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 380px;
  overflow: hidden;
  background: var(--color-bg);
}

.coaches-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(100%) contrast(1.15) brightness(0.8);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.coaches-grid__card:hover .coaches-grid__img {
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transform: scale(1.03);
}

/* Red-to-transparent gradient overlay on photo */
.coaches-grid__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 10, 10, 0.6) 70%,
    var(--color-bg-card) 100%
  );
  pointer-events: none;
}

/* Subtle red glow at bottom of photo */
.coaches-grid__photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-red-dim), transparent);
  pointer-events: none;
  z-index: 1;
}

.coaches-grid__info {
  padding: var(--space-md);
}

.coaches-grid__name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.coaches-grid__role {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  background: var(--color-red-dim);
  padding: 0.3em 0.8em;
  border-radius: 3px;
}

.coaches-grid__bio {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* --- SVG Icons --- */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.icon--lg {
  width: 22px;
  height: 22px;
}

/* Coach Social Links */
.coaches-grid__links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.coaches-grid__links a {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.coaches-grid__links a:hover {
  color: var(--color-red);
}

.coaches__reinforcement {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   PRICING GRID (Section 7)
   ============================================================ */
.pricing-grid {
  display: grid;
  gap: var(--space-md);
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Active / featured tier — animated glow border */
.pricing-card--active {
  border-color: var(--color-red);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.12), 0 25px 50px rgba(0,0,0,0.3);
}

.pricing-card--active::before {
  content: 'CURRENT TIER';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3em 1.2em;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__header { margin-bottom: var(--space-sm); }

.pricing-card__tier {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 0.3em;
  font-weight: 500;
}

.pricing-card__spots {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.pricing-card__price { margin-bottom: 0.5em; }

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-card--active .pricing-card__amount {
  background: linear-gradient(135deg, #fff, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__currency {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-left: 0.2em;
}

.pricing-card__options {
  list-style: none;
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pricing-card__options li {
  padding: 0.5em 0;
  border-bottom: 1px solid var(--color-border);
}
.pricing-card__options li:last-child { border-bottom: none; }

.pricing-card__cta { width: 100%; text-align: center; }

.pricing__notes {
  text-align: center;
  margin-top: var(--space-md);
}
.pricing__deposit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.pricing__warning {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* --- Tier Progress --- */
#tier-progress {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.tier-progress__track { display: flex; gap: 4px; }
.tier-progress__segment { flex: 1; text-align: center; }

.tier-progress__segment .tier-progress__bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 0.5em;
}

.tier-progress__segment--filled .tier-progress__bar {
  background: var(--color-red);
  box-shadow: 0 0 8px var(--color-red-glow);
}
.tier-progress__segment--active .tier-progress__bar {
  background: linear-gradient(90deg, var(--color-red), var(--color-accent));
  box-shadow: 0 0 12px var(--color-red-glow);
}
.tier-progress__segment--upcoming .tier-progress__bar {
  background: rgba(255,255,255,0.06);
}

.tier-progress__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.tier-progress__segment--active .tier-progress__name { color: var(--color-red); }

.tier-progress__price {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}
.tier-progress__segment--active .tier-progress__price { color: var(--color-accent); }

/* ============================================================
   PSYCHOLOGY (Section 8)
   ============================================================ */
.psychology {
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at center, var(--color-red-dim) 0%, transparent 50%),
    var(--color-bg);
}

.psychology__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(200, 16, 46, 0.06);
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.psychology .section__inner {
  position: relative;
  z-index: 1;
}

.psychology__text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.psychology__accent {
  color: var(--color-red);
  text-shadow: 0 0 30px var(--color-red-glow);
}

/* ============================================================
   OUTCOMES (Section 9)
   ============================================================ */
.outcomes-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.outcomes-list li {
  padding: 0.8em 0;
  display: flex;
  align-items: baseline;
  gap: 0.8em;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.05rem;
}
.outcomes-list li:last-child { border-bottom: none; }

.outcomes-list__check {
  color: var(--color-red);
  font-weight: 700;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--color-red-glow);
}

/* ============================================================
   CLOSING (Section 10)
   ============================================================ */
#closing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, var(--color-red-dim) 0%, transparent 45%),
    var(--color-bg);
}

.closing__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.closing__content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.closing__lead {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.closing__lead--accent {
  background: linear-gradient(135deg, var(--color-red), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing__emphasis {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-text-muted);
  margin: var(--space-md) 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.closing__lines { margin-bottom: var(--space-md); }

.closing__lines p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 2.4;
}

.closing__signoff {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--color-red-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__copyright { font-size: 0.85rem; color: var(--color-text-muted); }
.footer__venue { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.footer__links { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; }
.footer__links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--color-red); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.footer__social a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer__social .icon {
  width: 20px;
  height: 20px;
}

.footer__social a:hover { color: var(--color-red); }

/* ============================================================
   SAMURAI ELEMENTS
   ============================================================ */

/* --- Mon (Family Crest) — geometric circle behind hero --- */
.hero__mon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 700px);
  height: clamp(400px, 60vw, 700px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  /* Mon-style crest: concentric circles + subtle petal/flower motif */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='%23C9A96E' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='160' fill='none' stroke='%23C9A96E' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='130' fill='none' stroke='%23C9A96E' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='15' fill='none' stroke='%23C9A96E' stroke-width='1'/%3E%3Ccircle cx='200' cy='110' r='30' fill='none' stroke='%23C9A96E' stroke-width='0.4'/%3E%3Ccircle cx='200' cy='290' r='30' fill='none' stroke='%23C9A96E' stroke-width='0.4'/%3E%3Ccircle cx='110' cy='200' r='30' fill='none' stroke='%23C9A96E' stroke-width='0.4'/%3E%3Ccircle cx='290' cy='200' r='30' fill='none' stroke='%23C9A96E' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Enso Circle — behind psychology section --- */
.psychology__enso {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 550px);
  height: clamp(300px, 50vw, 550px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  /* Enso: imperfect brush circle with gap */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M200 30 C310 30 370 110 370 200 C370 290 310 370 200 370 C90 370 30 290 30 200 C30 110 80 45 160 32' fill='none' stroke='%23C9A96E' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Mon Crest — closing section (smaller) --- */
.closing__mon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 45vw, 500px);
  height: clamp(300px, 45vw, 500px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='%23C9A96E' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='155' fill='none' stroke='%23C9A96E' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='45' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='15' fill='none' stroke='%23C9A96E' stroke-width='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Japanese Corner Brackets (coaches + active pricing) --- */
.coaches-grid__card::before,
.coaches-grid__card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.coaches-grid__card::before {
  top: 12px;
  left: 12px;
  border-top: 1.5px solid var(--color-accent);
  border-left: 1.5px solid var(--color-accent);
}

.coaches-grid__card::after {
  bottom: 12px;
  right: 12px;
  border-bottom: 1.5px solid var(--color-accent);
  border-right: 1.5px solid var(--color-accent);
}

.coaches-grid__card:hover::before,
.coaches-grid__card:hover::after {
  opacity: 0.5;
}

/* Corner brackets on active pricing card */
.pricing-card--active {
  overflow: visible;
}

/* Using box-shadow trick since ::before is taken by "CURRENT TIER" badge */
.pricing-card--active::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-bottom: 1.5px solid var(--color-accent);
  border-right: 1.5px solid var(--color-accent);
  pointer-events: none;
  opacity: 0.25;
}

/* --- Seigaiha Wave Pattern — outcomes section background --- */
#outcomes {
  position: relative;
}

#outcomes::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 50 C0 22 22 0 50 0 C78 0 100 22 100 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Cpath d='M-50 50 C-50 22 -28 0 0 0 C28 0 50 22 50 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Cpath d='M50 50 C50 22 72 0 100 0 C128 0 150 22 150 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 120px 60px;
}

#outcomes > * {
  position: relative;
  z-index: 1;
}

/* --- Katana blade line on blockquotes --- */
blockquote {
  position: relative;
}

blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-red) 15%,
    var(--color-accent) 50%,
    var(--color-red) 85%,
    transparent 100%
  );
  border-left: none;
}

/* Override the flat border-left since we have the gradient pseudo */
blockquote {
  border-left: none;
  padding-left: 1.8rem;
}

/* --- Seigaiha on hero (very subtle, bottom portion) --- */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 50 C0 22 22 0 50 0 C78 0 100 22 100 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Cpath d='M-50 50 C-50 22 -28 0 0 0 C28 0 50 22 50 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3Cpath d='M50 50 C50 22 72 0 100 0 C128 0 150 22 150 50' fill='none' stroke='%23C9A96E' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 120px 60px;
  background-position: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-stagger].stagger--visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
[data-stagger].stagger--visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
[data-stagger].stagger--visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
[data-stagger].stagger--visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
[data-stagger].stagger--visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
[data-stagger].stagger--visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  [data-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Mobile First)
   ============================================================ */

/* Tablet (640px) */
@media (min-width: 640px) {
  .allows-grid { grid-template-columns: 1fr 1fr; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .coaches-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 3rem; }
  .timeline__card { padding-left: 2rem; }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  .nav-hamburger { display: none; }
  .allows-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
  .section { padding: var(--space-2xl) var(--space-md); }
  .section--angled {
    padding-top: calc(var(--space-2xl) + 3vw);
    padding-bottom: calc(var(--space-2xl) + 3vw);
  }
}

/* Wide (1280px) */
@media (min-width: 1280px) {
  .hero__content { max-width: 1000px; }
  .closing__content { max-width: 800px; }
  .timeline { max-width: 800px; margin-left: auto; margin-right: auto; }
}

/* Mobile optimizations */
@media (max-width: 639px) {
  body { font-size: 16px; }

  .section--angled {
    clip-path: none;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  /* More breathing room on mobile */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .section__heading {
    margin-bottom: var(--space-md);
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Hero spacing */
  .hero__content {
    padding: 0 var(--space-sm);
  }

  .hero__line--solid,
  .hero__line--stroke {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero__badge {
    margin-bottom: var(--space-sm);
    font-size: 0.65rem;
  }

  .hero__copy p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* Gold list breathing room */
  .gold-list li {
    padding: 1rem 0 1rem 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Filter grid — stack with more space */
  .filter-grid {
    gap: var(--space-md);
  }

  .filter-grid__col {
    padding: var(--space-md);
  }

  .filter-grid__list li {
    padding: 0.8rem 0 0.8rem 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Allows grid items */
  .allows-grid {
    gap: var(--space-md);
  }

  .allows-grid__item {
    padding: var(--space-md);
  }

  .allows-grid__item p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Timeline */
  .timeline__card {
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0 var(--space-sm) 1.2rem;
  }

  .timeline__desc {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  /* Coaches */
  .coaches-grid {
    gap: var(--space-md);
  }

  .coaches-grid__bio {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .coaches__reinforcement {
    font-size: 1rem;
    margin-top: var(--space-md);
  }

  /* Pricing cards */
  .pricing-grid {
    gap: var(--space-md);
  }

  .pricing-card {
    padding: var(--space-md);
  }

  /* Psychology section */
  .psychology__text {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    line-height: 1.8;
  }

  /* Outcomes list */
  .outcomes-list li {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Closing */
  .closing__lead {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .closing__lines p {
    font-size: 1rem;
    line-height: 2.2;
  }

  /* Blockquotes */
  blockquote {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin: var(--space-md) 0;
    line-height: 1.6;
  }
}

/* ========================================
   PAYMENT SUCCESS BANNER
   ======================================== */

.payment-success-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #065f46;
  color: #fff;
  padding: 1rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.payment-success-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-success-banner__icon { font-size: 1.5rem; }

.payment-success-banner__inner p { margin: 0; flex: 1; }

.payment-success-banner__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.7;
}

.payment-success-banner__close:hover { opacity: 1; }

/* ========================================
   TIER LOCKING
   ======================================== */

.pricing-card--locked,
.pricing-card--sold-out {
  opacity: 0.45;
  filter: grayscale(40%);
  position: relative;
}

.pricing-card--locked::after {
  content: '🔒';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.pricing-card--sold-out::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.btn--disabled {
  background: #444 !important;
  border-color: #444 !important;
  color: #888 !important;
  cursor: not-allowed;
}

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

.pricing-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.pricing-card__buttons .btn {
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.75em 1.2em;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  transition: all 0.2s ease;
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #000;
}

/* (Payment modal styles removed — using Square hosted checkout) */
