:root {
  --bg: #f6f1eb;
  --bg-alt: #efe7de;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf9;
  --surface-dark: #191513;
  --text: #201815;
  --text-soft: #5f544e;
  --line: rgba(32, 24, 21, 0.1);
  --line-strong: rgba(32, 24, 21, 0.18);
  --red: #b32821;
  --red-deep: #7d1712;
  --gold: #d3a34d;
  --sand: #e7d5bf;
  --navy: #1a3a52;
  --shadow: 0 18px 50px rgba(41, 28, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-body: "Sora", system-ui, sans-serif;
  --font-display: "Barlow Semi Condensed", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(211, 163, 77, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbf8f4 0%, var(--bg) 34%, #f4ede6 100%);
  color: var(--text);
  font: 16px/1.65 var(--font-body);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading-left {
  text-align: left;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.topbar {
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  color: #fff;
  position: relative;
  z-index: 40;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.92rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner a {
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 235, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(28, 20, 17, 0.1);
  background: rgba(246, 241, 235, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 88px;
}

.brand-logo,
.footer-logo {
  height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(179, 40, 33, 0.08);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-phone {
  font-weight: 700;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 1.5rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #d4432f 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(179, 40, 33, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(179, 40, 33, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line-strong);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.5rem 0 3rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(179, 40, 33, 0.22), transparent 18rem),
    radial-gradient(circle at 20% 10%, rgba(39, 68, 59, 0.15), transparent 18rem);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.cta-panel h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.split-copy p,
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.hero-badges,
.hero-actions,
.hero-points,
.hero-stats,
.secondary-panels,
.value-grid,
.course-grid,
.pricing-grid,
.locations-grid,
.team-grid,
.reviews-grid,
.proof-grid,
.footer-grid {
  display: grid;
}

.hero-badges {
  grid-auto-flow: column;
  justify-content: start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(179, 40, 33, 0.09);
  color: var(--red-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-outline {
  background: rgba(26, 58, 82, 0.08);
  color: var(--navy);
}

.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  gap: 1rem;
  margin: 1.8rem 0 1.3rem;
}

.hero-points {
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.6rem;
  list-style: none;
}

.hero-points li,
.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div,
.proof-item,
.value-card,
.course-card,
.secondary-panel,
.pricing-card,
.location-card,
.team-card,
.review-card,
.panel-block,
.simple-card,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--red-deep);
}

.hero-stats span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 70px rgba(39, 25, 20, 0.22);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 1.2rem 4rem 0;
}

.hero-card-float {
  width: 230px;
  height: 230px;
  right: 0;
  bottom: 0;
}

.hero-signal {
  position: absolute;
  left: -1rem;
  bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(32, 24, 21, 0.09);
  box-shadow: var(--shadow);
}

.hero-signal img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero-signal p,
.hero-signal strong,
.section-heading p,
.pricing-card p,
.location-card p,
.team-card p,
.footer-brand p,
.footer-bottom p,
.review-card footer {
  margin: 0;
}

.hero-signal p {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.proof-strip,
.section {
  padding: 2rem 0 5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(233, 223, 209, 0.4), rgba(239, 231, 222, 0.72));
  border-top: 1px solid rgba(32, 24, 21, 0.05);
  border-bottom: 1px solid rgba(32, 24, 21, 0.05);
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  padding: 1.3rem;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.proof-item span,
.value-card p,
.course-card-body p,
.secondary-panel p,
.panel-block p,
.faq-item p,
.footer-links,
.footer-contact-list,
.footer-links li,
.footer-locations li,
.footer-cta p {
  color: var(--text-soft);
}

.visual-feature,
.course-showcase {
  padding: 2.5rem 0 5rem;
}

.visual-feature-grid,
.course-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.visual-feature-copy h2,
.course-showcase-copy h2 {
  margin: 0.7rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.visual-feature-copy p,
.course-showcase-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.visual-points span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.visual-collage {
  position: relative;
  min-height: 560px;
}

.visual-collage figure,
.course-showcase figure,
.showcase-mini-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(39, 25, 20, 0.18);
}

.visual-collage img,
.course-showcase img,
.showcase-mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-collage-main {
  position: absolute;
  inset: 0 7rem 3.5rem 0;
}

.visual-collage-small {
  position: absolute;
  border: 8px solid rgba(255, 253, 249, 0.9);
}

.visual-collage-small-a {
  width: 42%;
  height: 260px;
  right: 0;
  top: 2rem;
}

.visual-collage-small-b {
  width: 46%;
  height: 230px;
  right: 2rem;
  bottom: 0;
}

.course-showcase {
  background: #171311;
  color: #fff;
}

.course-showcase-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.course-showcase .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand);
}

.course-showcase-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.course-showcase-image {
  min-height: 500px;
}

.showcase-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}

.showcase-mini-grid figure {
  height: 210px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin-top: 0.5rem;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card,
.secondary-panel,
.panel-block,
.pricing-card,
.location-card,
.review-card,
.simple-card {
  padding: 1.5rem;
}

.value-card h3,
.secondary-panel h3,
.panel-block h3,
.course-card-body h3,
.pricing-card h3,
.location-card h3,
.team-card h3,
.simple-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.course-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.course-card {
  overflow: hidden;
}

.course-card > a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.course-card > a img {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-body {
  padding: 1.2rem;
}

.course-age,
.pricing-label,
.location-city {
  margin: 0 0 0.4rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.secondary-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.secondary-panel a {
  color: var(--red-deep);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.split-panel {
  display: grid;
  gap: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card h3 {
  font-size: 1.65rem;
  color: var(--red-deep);
}

.locations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.snippet-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.team-card-body {
  padding: 1.2rem;
}

.reviews-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--red);
  box-shadow: 0 4px 20px rgba(32, 24, 21, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  font-size: 1.3rem;
  color: #f5a623;
  letter-spacing: 0.1em;
}

.review-quote {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red-deep);
  margin-top: 0.5rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(25, 21, 19, 0.96), rgba(52, 32, 26, 0.94));
  color: #fff;
}

.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-panel-actions {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.page-hero {
  padding: 4rem 0 1.2rem;
}

.page-hero-compact h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.simple-card {
  max-width: 760px;
}

.simple-card-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1rem;
}

.stack-grid {
  display: grid;
  gap: 1rem;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.25rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-card-copy h3,
.detail-card-copy h4 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.detail-card-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.detail-card-media img,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 22px;
}

.media-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.65rem;
  color: var(--text-soft);
}

.schedule-table {
  display: grid;
  gap: 0.65rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.schedule-head {
  background: rgba(200,57,45,0.08);
  border-color: rgba(200,57,45,0.12);
  font-weight: 800;
  color: var(--red-deep);
}

.pricing-stack {
  display: grid;
  gap: 0.8rem;
}

.pricing-line {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.pricing-line span,
.pricing-line em {
  color: var(--text-soft);
  font-style: normal;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-card,
.legal-sidebar {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.legal-callout {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(39, 68, 59, 0.08);
  border: 1px solid rgba(39, 68, 59, 0.14);
}

.legal-callout p,
.legal-block p {
  margin: 0;
}

.legal-block {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.legal-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.embed-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.embed-frame {
  width: 100%;
  min-height: 1200px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.site-footer {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #1a1614, #0f0d0b);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contact-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.footer-links a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--sand);
}

.footer-locations li {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #fff;
}

.footer-cta {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(179, 40, 33, 0.1);
  border: 1px solid rgba(179, 40, 33, 0.15);
}

.footer-cta h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #fff;
}

.footer-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: var(--sand);
}

.mobile-bar {
  display: none;
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
}

.consent-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 19, 17, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.consent-copy p {
  margin: 0;
}

.consent-title {
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sand);
}

.consent-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: end;
}

.consent-link {
  color: var(--gold);
  font-weight: 700;
}

.consent-btn {
  min-width: 118px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 380ms ease, transform 380ms ease;
}

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

/* Enhanced animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Card hover effects */
.course-card,
.team-card,
.review-card,
.value-card,
.secondary-panel,
.simple-card,
.photo-card {
  transition: all 240ms cubic-bezier(0.23, 1, 0.320, 1);
}

.course-card:hover,
.team-card:hover,
.review-card:hover,
.value-card:hover,
.secondary-panel:hover,
.simple-card:hover,
.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(41, 28, 23, 0.18);
  border-color: rgba(179, 40, 33, 0.2);
}

.course-card > a img:hover,
.team-card img:hover,
.photo-card img:hover {
  transform: scale(1.05);
}

.course-card > a img,
.team-card img,
.photo-card img {
  transition: transform 340ms cubic-bezier(0.23, 1, 0.320, 1);
}

/* Button enhancements */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
}

.btn:hover::before {
  opacity: 1;
}

/* Enhanced hero section */
.hero {
  animation: fadeInUp 800ms ease-out;
}

.hero-copy {
  animation: fadeInUp 700ms ease-out 100ms both;
}

.hero-visual {
  animation: fadeInScale 700ms ease-out 200ms both;
}

/* Badge animations */
.badge {
  animation: fadeInUp 600ms ease-out 50ms both;
}

.badge:nth-child(2) {
  animation-delay: 80ms;
}

/* Hero actions animations */
.hero-actions .btn {
  animation: fadeInUp 600ms ease-out both;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 300ms;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 350ms;
}

/* Section stagger animations */
.section {
  animation: fadeInUp 700ms ease-out;
}

/* Link hover effects */
a:not(.btn):not(.header-phone):not(.brand):not(.logo) {
  position: relative;
  transition: color 200ms ease;
}

.secondary-panel a,
.review-card footer {
  position: relative;
}

.secondary-panel a::after,
.review-card footer::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-deep);
  transition: width 280ms cubic-bezier(0.23, 1, 0.320, 1);
}

.secondary-panel a:hover::after,
.review-card footer:hover::after {
  width: 100%;
}

/* Form improvements */
input,
textarea,
select {
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179, 40, 33, 0.1);
}

/* Improve scrolling */
html {
  scroll-padding-top: 100px;
}

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

/* Enhanced focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}

/* Improved link focus */
a:focus {
  outline: none;
}

/* Better cursor on interactive elements */
button,
.btn,
a,
[role="button"],
summary,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  cursor: pointer;
}

/* Improved label styling */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

/* Better input field styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--surface-strong);
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Improved disabled state */
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Breadcrumb styling */
nav[aria-label="Breadcrumb"] ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

nav[aria-label="Breadcrumb"] li {
  list-style: none;
}

nav[aria-label="Breadcrumb"] a {
  color: var(--text-soft);
  transition: color 200ms ease;
  font-weight: 500;
}

nav[aria-label="Breadcrumb"] a:hover {
  color: var(--red);
}

.dojo-card {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  align-items: start;
}

.dojo-card-image {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  height: 200px;
}

.dojo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dojo-card > div:first-child h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.dojo-card > div:first-child p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.dojo-card .dojo-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dojo-card .pricing-stack {
  margin-top: 0;
}

.dojo-card .pricing-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.dojo-card .pricing-line strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.dojo-card .pricing-line span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.dojo-card .pricing-line em {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  margin-left: 1rem;
}

.dojo-card .btn {
  margin-top: 1.5rem;
}

/* ── Blog ── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-title {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--red);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
}

.blog-card-link:hover {
  text-decoration: underline;
}

.blog-post-hero-image {
  margin-bottom: 2rem;
}

.blog-post-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-post-content p {
  margin: 0 0 1.25em;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin: 1.75em 0 0.5em;
  line-height: 1.3;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25em;
}

.blog-post-content li {
  margin-bottom: 0.4em;
}

.blog-post-content a {
  color: var(--red);
}

.blog-post-content strong {
  font-weight: 700;
}

.blog-post-sidebar {
  position: sticky;
  top: 100px;
}

.blog-post-date {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Better print styles */
@media print {
  .topbar,
  .site-header,
  .site-footer,
  .consent-banner,
  .mobile-bar {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: fixed;
    inset: 88px 1rem auto 1rem;
    display: none;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 0.95rem 1rem;
  }

  .header-phone,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-layout,
  .split-layout,
  .cta-panel,
  .footer-grid,
  .detail-card,
  .dojo-card,
  .legal-layout,
  .consent-inner,
  .visual-feature-grid,
  .course-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-collage {
    min-height: 460px;
  }

  .visual-collage-main {
    inset: 0 4rem 3rem 0;
  }

  .visual-collage-small-a {
    height: 210px;
  }

  .visual-collage-small-b {
    height: 190px;
  }

  .course-showcase-image {
    min-height: 360px;
  }

  .hero-card-main {
    inset: 0 3rem 3rem 0;
  }

  .hero-card-float {
    width: 180px;
    height: 180px;
  }

  .value-grid,
  .course-grid,
  .pricing-grid,
  .locations-grid,
  .team-grid,
  .reviews-grid,
  .proof-grid,
  .secondary-panels,
  .photo-grid,
  .detail-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Improved spacing and typography */
.section h2 {
  margin-bottom: 0.8rem;
}

.section-heading p {
  margin: 0;
}

.value-card h3,
.team-card h3,
.course-card-body h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.value-card p,
.team-card-body p,
.course-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Improved section spacing */
.proof-strip {
  padding: 2.5rem 0 4.5rem;
}

.visual-feature {
  padding: 3rem 0 5rem;
}

.course-showcase {
  padding: 3rem 0 5rem;
}

.section {
  padding: 3rem 0 5rem;
}

/* Better button hover states */
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(179, 40, 33, 0.3);
}

/* Form styling improvements */
.faq-item summary:hover {
  color: var(--red);
  cursor: pointer;
}

/* Better list spacing */
.hero-points li {
  margin-bottom: 0.5rem;
}

.benefit-list li {
  margin-bottom: 0.6rem;
}

/* Card body improvements */
.course-card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-card-body {
  padding: 1.3rem;
}

/* Improved aspect ratios for responsive images */
.hero-card img,
.course-card > a img,
.team-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .hero-badges,
  .hero-actions,
  .snippet-actions {
    grid-auto-flow: row;
  }

  .topbar-inner {
    display: grid;
    justify-items: start;
  }

  .hero-stats,
  .value-grid,
  .course-grid,
  .pricing-grid,
  .locations-grid,
  .team-grid,
  .reviews-grid,
  .proof-grid,
  .secondary-panels,
  .photo-grid,
  .detail-columns,
  .showcase-mini-grid,
  .blog-grid,
  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .split-copy h2,
  .cta-panel h2 {
    line-height: 1;
  }

  .hero-visual {
    min-height: 340px;
  }

  .visual-feature,
  .course-showcase {
    padding: 2.5rem 0 4rem;
  }

  .visual-collage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .visual-collage-main,
  .visual-collage-small,
  .visual-collage-small-a,
  .visual-collage-small-b {
    position: static;
    width: auto;
    height: auto;
    border: 0;
  }

  .visual-collage figure,
  .course-showcase-image,
  .showcase-mini-grid figure {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .hero-card-main {
    inset: 0 1rem 2rem 0;
  }

  .hero-card-float {
    width: 132px;
    height: 132px;
  }

  .hero-signal {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.5rem;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-actions > * {
    width: 100%;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    background: rgba(23, 19, 17, 0.95);
    backdrop-filter: blur(16px);
  }

  .mobile-bar a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 800;
  }

  .mobile-bar-call {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-bar-cta {
    background: linear-gradient(135deg, var(--red), #d4432f);
    color: #fff;
  }
}

/* ── Inscription form ─────────────────────────────────────── */
.inscription-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-grid .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"] {
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font: 15px var(--font-body);
  color: var(--text);
  transition: border-color 0.15s;
  width: 100%;
}

.form-field input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179, 40, 33, 0.12);
}

.required {
  color: var(--red);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.2rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.radio-label:has(input:checked) {
  border-color: var(--red);
  background: rgba(179, 40, 33, 0.06);
  font-weight: 600;
}

.radio-label input[type="radio"] {
  accent-color: var(--red);
}

.terms-block {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.terms-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.terms-body {
  max-height: 140px;
  overflow-y: auto;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
  padding-right: 0.25rem;
}

.terms-body p {
  margin: 0 0 0.6rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-alert-error {
  background: rgba(179, 40, 33, 0.08);
  border: 1px solid rgba(179, 40, 33, 0.3);
  color: var(--red-deep);
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0;
}

.form-hint-warn {
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .inscription-form-wrap {
    padding: 1.5rem 1.1rem;
  }
}
