:root {
  --bg: #090a0d;
  --bg-soft: #101318;
  --panel: #151920;
  --panel-strong: #1d232b;
  --text: #f4f1eb;
  --muted: #aaa59b;
  --line: rgba(244, 241, 235, 0.14);
  --red: #e10c15;
  --red-dark: #9f0710;
  --amber: #d9a441;
  --steel: #65717f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 12, 21, 0.16), transparent 34rem),
    linear-gradient(180deg, #090a0d 0%, #11151b 48%, #090a0d 100%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.announcement {
  align-items: center;
  background: var(--red);
  color: white;
  display: grid;
  font-family: "Gothic A1", Impact, sans-serif;
  grid-template-columns: 1fr auto;
  min-height: 32px;
  padding: 6px 18px;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  font-size: 0.82rem;
}

.announcement button {
  align-items: center;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: 1.1rem;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.announcement button span {
  display: block;
  height: 18px;
  position: relative;
  width: 18px;
}

.announcement button span::before,
.announcement button span::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 1px;
  position: absolute;
  top: 8px;
  width: 16px;
}

.announcement button span::before {
  transform: rotate(45deg);
}

.announcement button span::after {
  transform: rotate(-45deg);
}

.site-header.announcement-hidden .announcement {
  display: none;
}

.site-header.is-open {
  background: rgba(9, 10, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .nav {
  background: #ffffff;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  padding-inline: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 78px;
  height: auto;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-wordmark strong {
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: 1.05rem;
}

.brand-wordmark strong span {
  display: block;
}

.brand-wordmark span {
  display: block;
}

.nav-spacer {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.nav-links a + a::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 18px;
  margin: 0 14px -3px;
  background: var(--red);
}

.nav-links a {
  border: 1px solid transparent;
  color: rgba(244, 241, 235, 0.84);
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: 0.84rem;
  padding: 10px 0;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .nav-instagram {
  color: #111318;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-instagram {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-left: auto;
  width: 42px;
}

.nav-instagram svg {
  height: 20px;
  width: 20px;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(17, 19, 24, 0.18);
  background: rgba(17, 19, 24, 0.04);
  color: #111318;
}

.site-header.is-open .menu-toggle {
  color: var(--red);
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Gothic A1", Impact, sans-serif;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary:hover {
  background: #ff1722;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(244, 241, 235, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(244, 241, 235, 0.14);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 241, 235, 0.08);
  color: var(--text);
}

.menu-toggle span {
  position: relative;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: background 160ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(7px);
}

.menu-toggle.is-active span {
  background: transparent;
}

.menu-toggle.is-active span::before {
  transform: rotate(45deg);
}

.menu-toggle.is-active span::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: center;
  padding: 110px 28px 40px;
  background:
    linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)),
    url("/fotos/slide/slide2.jpg") center / cover;
  animation: mobileMenuSwap 5s infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

@keyframes mobileMenuSwap {
  0%, 18% { background-image: linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)), url("/fotos/slide/slide1.jpg"); }
  22%, 38% { background-image: linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)), url("/fotos/slide/slide2.jpg"); }
  42%, 58% { background-image: linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)), url("/fotos/slide/slide3.jpg"); }
  62%, 78% { background-image: linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)), url("/fotos/slide/slide4.jpg"); }
  82%, 100% { background-image: linear-gradient(rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.92)), url("/fotos/slide/slide5.jpg"); }
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel nav {
  display: grid;
  gap: 14px;
}

.mobile-panel a {
  border-bottom: 1px solid var(--line);
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: clamp(2rem, 9vw, 4.8rem);
  line-height: 1;
  padding-block: 14px;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 124px 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/fotos/slide/slide1.jpg") center / cover;
  animation: heroSwap 10s infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.94) 0%, rgba(9, 10, 13, 0.64) 45%, rgba(9, 10, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 10, 13, 0.2) 0%, rgba(9, 10, 13, 0.95) 100%);
}

@keyframes heroSwap {
  0%, 18% { background-image: url("/fotos/slide/slide1.jpg"); }
  22%, 38% { background-image: url("/fotos/slide/slide2.jpg"); }
  42%, 58% { background-image: url("/fotos/slide/slide3.jpg"); }
  62%, 78% { background-image: url("/fotos/slide/slide4.jpg"); }
  82%, 100% { background-image: url("/fotos/slide/slide5.jpg"); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  align-items: center;
  color: var(--amber);
  display: inline-flex;
  font-family: "Gothic A1", Impact, sans-serif;
  gap: 10px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3 {
  font-family: "Gothic A1", Impact, sans-serif;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.2rem, 8.8vw, 8.4rem);
  max-width: 980px;
}

.hero-copy {
  color: rgba(244, 241, 235, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  max-width: 650px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 18, 23, 0.74);
  box-shadow: var(--shadow);
  padding: 22px;
  transform: translateY(34px);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-panel p {
  margin: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.03);
}

.stat {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-compact-bottom {
  padding-bottom: clamp(36px, 5vw, 64px);
}

.section-compact-top {
  padding-top: clamp(42px, 5vw, 70px);
}

.section-muted {
  background: #f4f1eb;
  color: #111318;
}

.section-header {
  align-items: start;
  display: grid;
  gap: 18px;
  margin-bottom: 46px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  max-width: 780px;
}

.section-header p {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

.section-muted .section-header p {
  color: #55504a;
}

.feature-grid,
.discipline-grid,
.price-grid,
.rule-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.discipline-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.feature,
.discipline-card,
.price-card,
.rule-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.section-muted .card,
.section-muted .feature,
.section-muted .discipline-card {
  background: white;
  border-color: rgba(17, 19, 24, 0.1);
}

.feature {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
}

.feature > div {
  display: grid;
  grid-template-rows: minmax(3rem, auto) auto;
}

.feature span,
.discipline-card span,
.rule-card span {
  color: var(--red);
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.feature h3,
.discipline-card h3,
.price-card h3,
.rule-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  margin-top: 14px;
}

.feature p,
.discipline-card p,
.price-card p,
.rule-card p,
.faq-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.section-muted .feature p,
.section-muted .discipline-card p {
  color: #55504a;
}

.discipline-card {
  grid-column: span 2;
  min-height: 238px;
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.discipline-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.discipline-card:last-child {
  grid-column: 4 / span 2;
}

.discipline-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 0;
}

.gallery-note {
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.instagram-mark {
  align-items: center;
  border: 2px solid rgba(225, 12, 21, 0.55);
  border-radius: 999px;
  color: var(--red);
  display: inline-flex;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.instagram-mark svg {
  height: 34px;
  width: 34px;
}

.instagram-title {
  align-items: center;
  display: flex;
  gap: 22px;
}

.instagram-copy strong {
  color: var(--red);
  font-family: "Gothic A1", Impact, sans-serif;
  text-transform: uppercase;
}

.media-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.media-large,
.media-stack img,
.gallery a {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.media-large {
  height: min(62vw, 620px);
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-stack img {
  height: calc((min(62vw, 620px) - 18px) / 2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery a {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--panel);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery a:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}

.location-grid h2 {
  font-size: clamp(3rem, 7.5vw, 6.6rem);
}

.location-grid .eyebrow {
  color: var(--red);
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.info-list div {
  border-top: 1px solid rgba(17, 19, 24, 0.18);
  padding: 18px 0 0;
}

.info-list strong {
  display: block;
  color: var(--red);
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.map {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 22px;
  filter: grayscale(0.75) contrast(1.08);
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.16);
}

.page-hero {
  padding: 154px 0 70px;
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.94), rgba(9, 10, 13, 0.62)),
    var(--page-image, url("/fotos/slide/slide3.jpg")) center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 8rem);
}

.page-hero p {
  color: rgba(244, 241, 235, 0.82);
  max-width: 680px;
  margin: 20px 0 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
}

.price-card.featured {
  background:
    linear-gradient(160deg, rgba(225, 12, 21, 0.2), rgba(21, 25, 32, 1) 45%),
    var(--panel);
  border-color: rgba(225, 12, 21, 0.45);
}

.price-card .price {
  font-family: "Gothic A1", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin: 24px 0 8px;
}

.price-card .price small {
  color: var(--muted);
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
}

.price-card ul,
.rule-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.price-card li,
.rule-card li {
  border-top: 1px solid var(--line);
  color: rgba(244, 241, 235, 0.84);
  padding-top: 12px;
}

.price-card .btn {
  margin-top: auto;
}

.schedule-table {
  display: grid;
  grid-template-columns: 140px repeat(5, minmax(128px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.schedule-cell {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 235, 0.06);
  padding: 12px;
}

.schedule-cell.head,
.schedule-cell.time {
  background: var(--red);
  border-color: transparent;
  color: white;
  font-family: "Gothic A1", Impact, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.schedule-cell.time {
  align-items: center;
  display: flex;
  justify-content: center;
}

.schedule-cell.empty {
  color: rgba(244, 241, 235, 0.28);
}

.schedule-cell strong {
  display: block;
  font-family: "Gothic A1", Impact, sans-serif;
  line-height: 1.08;
  text-transform: uppercase;
}

.schedule-cell span {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 8px;
}

.schedule-cancelled {
  font-weight: 900;
  text-decoration-line: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 6px;
}

.schedule-cancelled strong,
.schedule-cancelled time,
.schedule-cancelled span {
  font-weight: 900;
  text-decoration-line: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 6px;
}

.mobile-schedule {
  display: none;
  gap: 14px;
}

.day-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.day-card h3 {
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.day-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.day-row time {
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 900;
}

.rule-card {
  background: rgba(244, 241, 235, 0.055);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-card h2,
.faq-card h3 {
  font-size: 1.55rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050608;
  padding: 52px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.social-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.footer-social-bottom {
  display: none;
}

.social-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: grid;
  height: 42px;
  place-items: center;
  width: 42px;
}

.social-row svg {
  width: 20px;
  height: 20px;
}

.legal-main {
  max-width: 900px;
  padding: 150px 0 80px;
}

.legal-main h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  margin-bottom: 28px;
}

.legal-main h2 {
  font-size: 1.8rem;
  margin-top: 36px;
}

.legal-main p,
.legal-main li {
  color: rgba(244, 241, 235, 0.78);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-spacer,
  .nav-instagram {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: space-between;
  }

  .site-header.is-scrolled {
    background: rgba(244, 241, 235, 0.96);
    border-color: rgba(17, 19, 24, 0.12);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled .nav {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-inline: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .media-band,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .social-row {
    display: none;
  }

  .footer-social-bottom {
    display: flex;
  }

  .hero-panel {
    max-width: 520px;
  }

  .stat-strip,
  .feature-grid,
  .discipline-grid,
  .price-grid,
  .rule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discipline-card,
  .discipline-card:nth-last-child(2),
  .discipline-card:last-child {
    grid-column: auto;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .schedule-table {
    display: none;
  }

  .mobile-schedule {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 72px;
    width: min(100% - 22px, 1240px);
  }

  .brand img {
    width: 62px;
  }

  .brand-wordmark {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 0 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stat-strip,
  .feature-grid,
  .discipline-grid,
  .price-grid,
  .rule-grid {
    grid-template-columns: 1fr;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .media-large,
  .media-stack img,
  .map {
    height: 320px;
    min-height: 320px;
  }

  .page-hero {
    padding-top: 120px;
  }
}
