/* =========================================================
   OMAR FRENCH BRAZILIAN JIU JITSU
   MAIN SITE STYLESHEET
   Used by:
   - index.html
   - free-class.html
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --black: #0d1012;
  --charcoal: #161a1d;
  --dark: #101214;
  --dark-2: #0f1214;
  --dark-3: #242629;

  --white: #ffffff;
  --off-white: #f7f7f7;

  --text: #111111;
  --muted: #666666;
  --light-text: #d0d0d0;

  --line: #d9d9d9;

  --red: #d91f26;
  --red-light: #e31b23;
  --red-dark: #bd151c;

  --container: 1180px;
}


/* =========================================================
   RESET / GLOBAL
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;

  color: var(--text);
  background: var(--white);
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */

.eyebrow {
  margin: 0 0 8px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 6px;

  color: var(--red-light);
}

.eyebrow.dark {
  color: #444;
}


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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 24px;

  border: 1px solid transparent;
  border-radius: 2px;

  font-weight: 700;
  text-decoration: none;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-outline {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: #111;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  padding: 22px 0;

  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  display: inline-flex;
  flex-direction: column;

  color: var(--white);
  text-decoration: none;

  line-height: 1;
}

.brand-main {
  display: block;

  padding-bottom: 5px;

  border-bottom: 4px solid var(--red);

  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;

  color: var(--white);
}

.brand-sub {
  display: block;

  margin-top: 7px;

  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;

  color: var(--white);

  white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {
  display: flex;
  align-items: center;

  gap: 34px;
}

.site-nav a {
  color: var(--white);

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
}

.site-nav a:not(.btn) {
  padding: 10px 0;

  border-bottom: 2px solid transparent;
}

.site-nav a.active,
.site-nav a:not(.btn):hover {
  border-color: var(--red-light);
}

.site-nav .nav-cta {
  color: var(--white);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  padding: 8px;

  border: 0;
  background: none;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 28px;
  height: 2px;

  margin: 6px 0;

  background: var(--white);
}


/* =========================================================
   HOME HERO
========================================================= */

.hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 590px;

  color: var(--white);

  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.66) 34%,
    rgba(0, 0, 0, 0.12) 70%
  );
}

.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 90px;
}

.hero h1 {
  max-width: 650px;

  margin: 30px 0 22px;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #df1820;
}

.hero p {
  max-width: 460px;

  font-size: 19px;
}

.hero-actions {
  display: flex;

  gap: 14px;

  margin: 28px 0;
}

.hero-tags {
  margin-top: 28px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px !important;
  letter-spacing: 3px;
}


/* =========================================================
   ABOUT / BENEFITS
========================================================= */

.benefits {
  padding: 72px 0;

  background: var(--white);
  color: #111;
}

.benefits-grid-three {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  align-items: stretch;
}

.benefit-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 390px;

  padding: 20px 55px 15px;

  text-align: center;
}

.benefit-card:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 10%;
  right: 0;

  width: 1px;
  height: 80%;

  background: var(--line);
}

.benefit-card h2 {
  margin: 24px 0 12px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;

  color: #111;
}

.benefit-card h3 {
  margin: 0 0 22px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;

  color: #111;
}

.benefit-card p {
  max-width: 360px;

  margin: 0 auto;

  font-size: 17px;
  line-height: 1.7;

  color: #222;
}

.benefit-logo {
  display: block;

  width: 150px;
  height: auto;

  margin: 0 auto;

  object-fit: contain;
}

.brand-card h2 {
  margin-top: 24px;
}

.professor-belt {
  display: block;

  width: 170px;
  height: 90px;

  margin: 0 auto 6px;

  object-fit: contain;
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs {
  padding: 48px 0 58px;

  background: var(--dark);
  color: var(--white);

  text-align: center;
}

.programs h2 {
  margin: 0 0 6px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
}

.section-lead {
  margin: 0 0 30px;
}

.program-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.program-card {
  position: relative;

  min-height: 230px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);

  text-align: left;
}

.program-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.program-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85),
    transparent 65%
  );
}

.card-copy {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 16px;

  z-index: 2;
}

.card-copy h3 {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 22px;
}

.card-copy p {
  margin: 3px 0 0;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
  width: 100%;
  padding: 80px 0;
  background: #242629;
  color: #fff;
}

.location-section .container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

#location .location-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 55px;
  align-items: center;
}

/* LOCATION INFO */

#location .location-info {
  width: 100%;
  max-width: 340px;
}

.location-eyebrow {
  display: block;
  margin: 0 0 10px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;

  color: var(--red);
}

.location-info h2 {
  margin: 0 0 20px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;

  color: #fff;
}

.location-copy {
  margin: 0 0 28px;

  font-size: 15px;
  line-height: 1.65;

  color: #d0d0d0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 22px;

  margin-bottom: 30px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-icon {
  flex: 0 0 22px;
  width: 22px;

  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.location-detail strong {
  display: block;
  margin: 0 0 4px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;

  color: #fff;
}

.location-detail p {
  margin: 0;

  font-size: 14px;
  line-height: 1.55;

  color: #d0d0d0;
}

.location-detail a {
  color: #d0d0d0;
  text-decoration: none;
}

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

.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 185px;
}

/* MAP */

#location .location-map {
  width: 100%;
  height: 450px;

  overflow: hidden;

  background: #1b1d1f;
}

#location .location-map iframe {
  display: block;

  width: 100% !important;
  height: 100% !important;

  margin: 0;
  padding: 0;
  border: 0;
}


/* =========================================================
   LOCATION - TABLET
========================================================= */

@media (max-width: 900px) {

  .location-section {
    padding: 60px 0 0;
  }

  #location .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #location .location-info {
    max-width: 620px;
  }

  #location .location-map {
    height: 380px;
  }
}


/* =========================================================
   LOCATION - MOBILE
========================================================= */

@media (max-width: 600px) {

  .location-section {
    padding: 42px 0 0;
  }

  #location .location-grid {
    gap: 32px;
  }

  #location .location-info {
    max-width: none;
  }

  .location-eyebrow {
    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .location-info h2 {
    margin-bottom: 16px;

    font-size: 44px;
  }

  .location-copy {
    margin-bottom: 24px;

    font-size: 14px;
    line-height: 1.6;
  }

  .location-details {
    gap: 20px;
    margin-bottom: 26px;
  }

  .location-detail {
    gap: 12px;
  }

  .location-icon {
    flex-basis: 20px;
    width: 20px;

    font-size: 18px;
  }

  .location-detail strong {
    font-size: 11px;
  }

  .location-detail p {
    font-size: 13px;
  }

  .location-button {
    width: 100%;
    min-height: 48px;
  }

  /* Full-width map on mobile while text stays inside the site container */
  #location .location-map {
    position: relative;
    left: 50%;

    width: 100vw;
    height: 300px;

    margin-left: -50vw;
  }

  #location .location-map iframe {
    width: 100% !important;
    height: 100% !important;
  }
}


/* =========================================================
   HOME CTA
========================================================= */

.cta-split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  background: var(--off-white);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 390px;

  padding: 50px 45px;

  color: #111;

  text-align: center;
}

.cta-panel:first-child {
  border-right: 1px solid var(--line);
}

.cta-panel .eyebrow {
  margin: 0 0 14px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;

  color: #444;
}

.cta-panel h2 {
  margin: 0 0 18px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;

  color: #111;
}

.cta-panel > p:not(.eyebrow) {
  margin: 0 0 26px;

  font-size: 16px;
  line-height: 1.6;

  color: #222;
}

.cta-panel .btn {
  min-width: 190px;
}


/* =========================================================
   HOME LIVE SCHEDULE
========================================================= */

.cta-schedule {
  width: 100%;

  padding: 42px 35px 48px;
}

.today-schedule {
  width: 100%;
  max-width: 980px;

  margin: 18px auto 0;
}

.today-days {
  display: grid;

  grid-template-columns: repeat(7, 1fr);

  gap: 8px;

  margin-bottom: 12px;
  padding: 10px;

  background: #0b0b0b;

  border-radius: 18px;
}

.today-day {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  border: 1px solid transparent;
  border-radius: 12px;

  background: #1a1a1a;

  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;

  color: #8c8c8c;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.today-day:hover {
  background: #252525;
  color: var(--white);

  transform: translateY(-1px);
}

.today-day.active {
  border-color: #ef3c42;

  background: var(--red);

  color: var(--white);
}

.today-day:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.today-class-list {
  width: 100%;

  padding: 18px;

  background: #0b0b0b;

  border-radius: 18px;

  color: var(--white);

  text-align: left;
}

.today-class {
  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  align-items: center;

  gap: 22px;

  margin-bottom: 10px;
  padding: 20px 22px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;

  background: #151515;
}

.today-class:last-child {
  margin-bottom: 0;
}

.today-class-name {
  margin: 0 0 4px !important;

  font-family: "Montserrat", sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.3 !important;

  color: var(--white) !important;
}

.today-class-time {
  margin: 0 !important;

  font-family: "Montserrat", sans-serif;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.4 !important;

  color: #9b9b9b !important;
}

.today-class-professor {
  display: block;

  margin-top: 5px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;

  color: #666;
}

.today-loading,
.today-empty {
  margin: 0 !important;
  padding: 26px 22px;

  font-family: "Montserrat", sans-serif;
  font-size: 15px !important;

  color: #888 !important;
}


/* =========================================================
   FREE CLASS PAGE HERO
========================================================= */

.page-hero {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  background: #111;
}

.page-hero-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 42%;

  filter: saturate(0.55) brightness(0.72);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.93) 0%,
    rgba(0, 0, 0, 0.74) 41%,
    rgba(0, 0, 0, 0.22) 72%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.page-hero-content {
  position: relative;

  z-index: 2;

  padding-top: 145px;

  color: var(--white);
}

.breadcrumbs {
  margin: 0 0 22px;

  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 10px;

  color: #999;
}

.page-hero h1 {
  margin: 0;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
}

.hero-rule {
  width: 170px;
  height: 4px;

  margin: 18px 0 20px;

  background: var(--red);
}

.hero-copy {
  max-width: 470px;

  margin: 0;

  font-size: 17px;
  line-height: 1.65;

  color: #ededed;
}


/* =========================================================
   FREE CLASS VISIT SECTION
========================================================= */

.visit-section {
  padding: 55px 0 60px;

  background: var(--off-white);
}

.visit-card {
  display: grid;

  grid-template-columns: 300px minmax(0, 1fr);

  gap: 36px;

  padding: 30px;

  border: 1px solid #e6e6e6;
  border-radius: 8px;

  background: var(--white);

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.visit-intro .eyebrow {
  margin-bottom: 12px;
}

.eyebrow.small {
  font-size: 10px;
  letter-spacing: 3px;
}

.visit-intro h2 {
  margin: 0 0 10px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.visit-lead {
  margin: 0 0 28px;

  font-size: 15px;
  line-height: 1.6;

  color: #333;
}


/* =========================================================
   FREE CLASS STEPS
========================================================= */

.steps {
  display: grid;

  gap: 22px;
}

.step {
  display: grid;

  grid-template-columns: 34px 1fr;

  gap: 14px;

  align-items: start;
}

.step-icon {
  display: grid;

  place-items: center;

  width: 30px;
  height: 30px;

  font-size: 20px;
  font-weight: 700;

  color: #111;
}

.step-check {
  border-radius: 50%;

  background: #111;

  color: var(--white);

  font-size: 17px;
}

.step strong {
  display: block;

  margin-bottom: 4px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.step p {
  margin: 0;

  font-size: 13px;
  line-height: 1.5;

  color: #444;
}

.questions {
  margin-top: 30px;
  padding-top: 22px;

  border-top: 1px solid #ddd;
}

.questions p {
  margin: 0 0 5px;

  font-size: 13px;
}

.questions a {
  font-weight: 700;

  text-decoration: none;
}

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


/* =========================================================
   FREE CLASS SCHEDULE
========================================================= */

.schedule-shell {
  min-height: 450px;

  padding: 20px;

  border-radius: 8px;

  background: linear-gradient(
    180deg,
    #111 0%,
    #0a0b0c 100%
  );

  color: var(--white);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.schedule-head {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;
}

.schedule-label {
  margin: 0 0 5px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.schedule-head h3 {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.live-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;

  color: #aaa;
}

.date-row-wrap {
  display: grid;

  grid-template-columns: 30px minmax(0, 1fr) 30px;

  gap: 10px;

  align-items: center;

  margin-top: 18px;
}

.date-row {
  display: grid;

  grid-template-columns: repeat(7, minmax(0, 1fr));

  gap: 8px;
}

.date-nav {
  width: 30px;
  height: 46px;

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--white);

  font-size: 26px;

  cursor: pointer;
}

.date-pill {
  min-width: 0;

  padding: 10px 6px;

  border: 0;
  border-radius: 6px;

  background: #242526;

  color: var(--white);

  font-family: "Montserrat", sans-serif;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.date-pill:hover {
  background: #303133;

  transform: translateY(-1px);
}

.date-pill .dow {
  display: block;

  font-size: 10px;
  font-weight: 700;
}

.date-pill .date {
  display: block;

  margin-top: 4px;

  font-size: 11px;

  color: #d2d2d2;
}

.date-pill.active {
  background: var(--red);
}

.date-pill.active .date {
  color: var(--white);
}

.schedule-divider {
  height: 1px;

  margin: 14px 0 16px;

  background: #2a2b2d;
}

.schedule-status {
  margin-bottom: 8px;

  font-size: 13px;

  color: #aaa;
}

.selected-date {
  margin: 0 0 12px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.class-list {
  display: grid;

  gap: 8px;
}

.class-card {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 20px;

  align-items: center;

  padding: 14px;

  border-radius: 6px;

  background: linear-gradient(
    90deg,
    #242526,
    #1a1b1d
  );
}

.class-title {
  margin: 0 0 5px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.class-meta {
  margin: 0;

  font-size: 13px;

  color: #c8c8c8;
}

.class-prof {
  margin-top: 4px;

  font-size: 11px;

  color: #898989;
}

.select-class {
  min-width: 96px;

  padding: 12px 18px;

  border: 0;
  border-radius: 4px;

  background: var(--red);

  color: var(--white);

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition: background 0.2s ease;
}

.select-class:hover {
  background: var(--red-dark);
}

.schedule-foot {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-top: 16px;

  font-size: 10px;

  color: #9b9b9b;
}

.schedule-foot a {
  color: #bbb;

  text-decoration: none;
}

.schedule-foot a:hover {
  color: var(--white);
}

.empty {
  padding: 22px;

  border: 1px dashed #333;
  border-radius: 6px;

  color: #aaa;

  text-align: center;
}


/* =========================================================
   FREE CLASS BENEFIT STRIP
========================================================= */

.benefit-strip {
  padding: 34px 0 40px;

  background: var(--white);
}

.benefit-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  text-align: center;
}

.mini-benefit span {
  display: block;

  margin-bottom: 10px;

  font-size: 26px;
}

.mini-benefit strong {
  display: block;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.mini-benefit p {
  margin: 5px 0 0;

  font-size: 13px;

  color: #444;
}


/* =========================================================
   FREE CLASS REGISTRATION MODAL
========================================================= */

.visit-modal {
  position: fixed;
  inset: 0;

  z-index: 1000;

  display: none;

  place-items: center;

  padding: 22px;
}

.visit-modal.open {
  display: grid;
}

.visit-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.78);

  backdrop-filter: blur(4px);
}

.visit-modal-dialog {
  position: relative;

  z-index: 1;

  width: min(760px, 96vw);
  max-height: 92vh;

  padding: 34px;

  overflow-y: auto;

  border-radius: 10px;

  background: var(--white);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.visit-modal-close {
  position: absolute;

  top: 14px;
  right: 16px;

  width: 38px;
  height: 38px;

  border: 0;

  background: transparent;

  color: #111;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;
}

.visit-modal-heading {
  margin-bottom: 26px;
  padding-right: 40px;
}

.visit-modal-heading h2 {
  margin: 0 0 8px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.visit-modal-heading p:last-child {
  margin: 0;

  color: #555;

  line-height: 1.55;
}

.visit-form {
  display: grid;

  gap: 18px;
}

.form-grid {
  display: grid;

  gap: 16px;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit-form label {
  display: grid;

  gap: 7px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;

  color: #222;
}

.visit-form input {
  width: 100%;
  height: 48px;

  padding: 0 13px;

  border: 1px solid #d7dbe0;
  border-radius: 5px;

  outline: none;

  background: var(--white);

  color: #111;
}

.visit-form input[readonly] {
  background: #f5f6f7;

  color: #333;
}

.visit-form input:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.1);
}

.form-message {
  min-height: 20px;

  color: #b31118;

  font-size: 13px;

  text-align: center;
}

.form-message.error {
  padding: 11px 14px;

  border-radius: 5px;

  background: #fff1f1;
}

.submit-visit {
  justify-self: center;

  min-width: 190px;

  border: 0;

  cursor: pointer;
}

.submit-visit:disabled {
  opacity: 0.65;

  cursor: wait;
}

.visit-success {
  padding: 24px 10px 10px;

  text-align: center;
}

.success-mark {
  display: grid;

  place-items: center;

  width: 64px;
  height: 64px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #111;

  color: var(--white);

  font-size: 34px;
  font-weight: 700;
}

.visit-success h3 {
  margin: 0 0 8px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 400;
}

.visit-success p {
  max-width: 460px;

  margin: 0 auto 24px;

  color: #444;

  line-height: 1.55;
}

/* =========================================================
 REVIEWS
========================================================= */

.reviews-section {
padding: 55px 0 60px;
background: #fff;
}

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

.review-card {
position: relative;
padding: 10px 50px;
text-align: center;
}

.review-card:not(:last-child)::after {
content: "";
position: absolute;
top: 10%;
right: 0;

width: 1px;
height: 80%;

background: #e1e1e1;
}

.review-stars {
margin-bottom: 18px;

font-size: 20px;
letter-spacing: 4px;

color: #d91f26;
}

.review-text {
max-width: 390px;
margin: 0 auto 18px;

font-size: 16px;
line-height: 1.7;

color: #333;
}

.review-author {
margin: 0;

font-family: "Montserrat", sans-serif;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;

color: #111;
}


/* MOBILE */

@media (max-width: 800px) {

.reviews-grid {
  grid-template-columns: 1fr;
}

.review-card {
  padding: 32px 20px;
}

.review-card:not(:last-child)::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: 10%;

  width: 80%;
  height: 1px;
}
}
/* =========================================================
 FOOTER
========================================================= */

.footer-band {
padding: 30px 0 0;
background: var(--dark-2);
color: var(--white);
}

.footer-top {
display: grid;
grid-template-columns: 330px 190px 1px 260px 1fr;
align-items: center;
gap: 30px;
padding-bottom: 28px;
}

.footer-brand {
width: 100%;
text-decoration: none;
}

.footer-brand .brand-main {
font-size: 30px;
letter-spacing: 4px;
}

.footer-brand .brand-sub {
font-size: 9px;
letter-spacing: 5px;
}

.footer-item {
display: flex;
align-items: center;
gap: 15px;
}

.footer-icon {
flex: 0 0 auto;
font-size: 32px;
line-height: 1;
color: var(--white);
}

.footer-item strong {
display: block;
margin-bottom: 4px;
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 600;
color: var(--white);
}

.footer-item p {
margin: 0;
font-size: 12px;
line-height: 1.45;
color: #c8c8c8;
}

.footer-item a {
color: inherit;
text-decoration: none;
}

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

.footer-divider {
width: 1px;
height: 44px;
background: #5b5d5f;
}


/* SOCIAL ICONS */

.footer-socials {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 20px;
}

.footer-socials a {
display: inline-flex;
align-items: center;
justify-content: center;

width: 38px;
height: 38px;

color: var(--white);
text-decoration: none;

transition:
  color 0.2s ease,
  transform 0.2s ease;
}

.footer-socials a svg {
display: block;
width: 28px;
height: 28px;

fill: currentColor;
stroke: currentColor;
stroke-width: 1.8;
}

/* Instagram is outline only */
.footer-socials a:first-child svg {
fill: none;
}

/* YouTube center play triangle */
.footer-socials .youtube-play {
fill: var(--dark-2);
stroke: none;
}

.footer-socials a:hover {
color: var(--red);
transform: translateY(-2px);
}


/* FOOTER BOTTOM */

.footer-line {
height: 1px;
background: #292d30;
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
padding-top: 28px;
padding-bottom: 34px;
}

.footer-bottom p {
margin: 0;
font-size: 12px;
color: #bfc3c6;
}

.footer-tagline {
font-family: "Montserrat", sans-serif;
font-size: 11px !important;
font-weight: 500;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--white) !important;
white-space: nowrap;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 900px) {

.footer-top {
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.footer-divider {
  display: none;
}

.footer-socials {
  justify-content: flex-start;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 600px) {

.footer-band {
  padding-top: 34px;
}

.footer-top {
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-brand {
  max-width: 320px;
}

.footer-socials {
  justify-content: flex-start;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
}

.footer-socials a svg {
  width: 27px;
  height: 27px;
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 26px;
}

.footer-tagline {
  white-space: normal;
  letter-spacing: 3px;
}
}

/* =========================================================
 RESPONSIVE / MOBILE
========================================================= */

@media (max-width: 900px) {
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  padding: 18px 0;
}

.nav-wrap {
  position: relative;
}

.menu-toggle {
  position: relative;
  z-index: 1001;
  display: block;
  flex: 0 0 auto;
}

.site-nav {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: auto;
  z-index: 1000;

  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;

  width: 100%;
  max-width: 100%;
  padding: 14px;

  box-sizing: border-box;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 13px 10px !important;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 15px;
}

.site-nav a:last-child {
  border-bottom: 0 !important;
}

.site-nav a.active {
  color: var(--red);
}

.site-nav .nav-cta {
  width: 100%;
  margin-top: 10px;
  padding: 14px 18px !important;
  border: 0 !important;
  text-align: center;
}

.benefits-grid-three,
.program-grid,
.cta-split {
  grid-template-columns: 1fr;
}

.benefit-card:not(:last-child)::after {
  top: auto;
  right: 10%;
  bottom: 0;
  width: 80%;
  height: 1px;
}

.cta-panel:first-child {
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.visit-card {
  grid-template-columns: 1fr;
}

.benefit-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.container {
  width: 92%;
  max-width: 92%;
}

.brand-main {
  font-size: 25px;
  letter-spacing: 2.5px;
}

.brand-sub {
  font-size: 7px;
  letter-spacing: 3px;
}

.hero {
  min-height: 590px;
}

.hero-content {
  padding-top: 105px;
}

.hero-actions {
  flex-wrap: wrap;
}

.benefit-card {
  min-height: 0;
  padding: 55px 24px;
}

.program-grid {
  gap: 12px;
}

.cta-panel {
  min-height: 350px;
  padding: 45px 24px;
}

.cta-panel h2 {
  font-size: 46px;
}

.today-days {
  gap: 5px;
  padding: 7px;
}

.today-day {
  min-height: 44px;
  font-size: 12px;
}

.today-class {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px;
}

.page-hero {
  min-height: 410px;
}

.page-hero-content {
  padding-top: 125px;
  padding-bottom: 45px;
}

.page-hero-content h1 {
  font-size: 48px;
  line-height: 0.95;
}

.visit-section {
  overflow: hidden;
}

.visit-card {
  width: 100%;
  max-width: 100%;
  padding: 20px;
}

.schedule-shell {
  width: 100%;
  min-width: 0;
  padding: 14px;
}

.date-row-wrap {
  grid-template-columns: 26px minmax(0, 1fr) 26px;
  gap: 6px;
}

.date-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.class-card {
  grid-template-columns: 1fr;
  gap: 12px;
}

.select-class {
  width: 100%;
}

.form-grid.two-col,
.benefit-grid {
  grid-template-columns: 1fr;
}

.visit-modal-dialog {
  width: 96vw;
  padding: 28px 20px;
}
}
