:root {
  --red: #f20707;
  --red-dark: #c90000;
  --black: #050505;
  --ink: #171717;
  --muted: #5f5f5f;
  --line: #dedede;
  --soft: #f7f7f7;
  --paper: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 34px 12px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  width: max-content;
  padding-bottom: 7px;
  color: var(--black);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-main {
  display: block;
  font-size: inherit;
  font-style: normal;
  line-height: inherit;
  transform: none;
}

.logo-sub {
  font-size: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

.logo-mark {
  align-self: flex-end;
  margin-top: 5px;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 1px;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(var(--max) - 68px);
  max-width: calc(100vw - 68px);
  height: 4px;
  background: var(--red);
  transform: none;
}

.mobile-menu-toggle {
  display: none;
  justify-self: end;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  background: currentColor;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(18px, 4vw, 54px);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-toggle {
  display: block;
  padding: 8px 0;
}

.nav-dropdown-toggle {
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-toggle::after {
  content: " \2193";
  font-size: 12px;
}

.main-nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  color: var(--red);
}

.main-nav > a.is-current,
.nav-dropdown-toggle.is-current-section {
  color: var(--red);
  box-shadow: inset 0 -3px 0 var(--red);
}

.nav-dropdown-menu a.is-current {
  color: var(--red);
  box-shadow: inset 4px 0 0 var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  min-width: 168px;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown-check:checked ~ .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.header-cta,
.signup-form button {
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(242, 7, 7, .22);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  padding: 15px 20px;
  white-space: nowrap;
}

.members-only-header {
  align-items: start;
}

.protected-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 4px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(242, 7, 7, .22);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.protected-back-link:hover,
.protected-back-link:focus {
  background: var(--red-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(420px, 1fr);
  align-items: center;
  gap: 18px;
  max-width: var(--max);
  min-height: 570px;
  margin: 0 auto;
  padding: 20px 0 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.brush-word {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(64px, 10vw, 126px);
  font-weight: 900;
  font-style: italic;
  line-height: .86;
  text-transform: uppercase;
  transform: skew(-8deg) rotate(-3deg);
  text-shadow: 3px 0 0 var(--red-dark);
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-text {
  max-width: 420px;
  margin: 28px 0 30px;
  font-size: 19px;
}

.hero-text strong,
.section-kicker,
.features h2 span,
.gallery h2 span,
.join-copy strong {
  color: var(--red);
}

.team-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.team-note::before,
.gallery p::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 7px;
  background: var(--red);
  transform: skew(-24deg);
}

.info-team-note {
  margin-top: 26px;
  font-size: 15px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
}

.hero-art::before {
  content: none;
}

.hero-art img {
  position: relative;
  width: min(760px, 110%);
  margin-left: auto;
  filter: none;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  max-width: var(--max);
  margin: -28px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0 36%, #f1f1f1 36% 100%);
}

.intro-copy {
  justify-self: end;
  width: min(100%, 350px);
  padding: 34px 34px 34px 0;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 950;
  text-transform: uppercase;
}

.simple-page {
  max-width: var(--max);
  min-height: 360px;
  margin: 0 auto;
  padding: 16px 34px 110px;
  border-top: 1px solid var(--line);
}

.simple-page .section-kicker {
  margin: 0;
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.text-page {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 34px 80px;
  border-top: 1px solid var(--line);
}

.text-page .section-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1;
}

.keep-lowercase {
  text-transform: lowercase;
}

.text-block {
  width: 100%;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.text-page > .text-block:last-child {
  border-bottom: 0;
}

.text-block h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.text-block p {
  margin: 0 0 10px;
  font-size: 18px;
}

.text-block a {
  color: var(--red);
  font-weight: 800;
}

.text-logo-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: 34px;
  align-items: start;
}

.text-logo-block img {
  width: 100%;
  object-fit: contain;
}

.contact-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 10px;
  font-size: 18px;
}

.contact-line span:first-child {
  font-weight: 400;
}

.profile-photo {
  width: min(240px, 100%);
  margin: 0 0 18px;
  background: #fff;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.profile-block .profile-photo {
  margin: 0;
}

.sensei-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 34px 80px;
  border-top: 1px solid var(--line);
}

.sensei-page > .section-kicker {
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
}

.sensei-intro {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 22px 0 36px;
}

.sensei-main-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
  cursor: pointer;
}

.sensei-main-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .2s ease;
}

.sensei-main-photo:hover img {
  transform: scale(1.04);
}

.sensei-role {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.sensei-intro h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  text-transform: uppercase;
}

.sensei-rank {
  margin: 10px 0 22px;
  font-size: 25px;
  font-weight: 900;
}

.sensei-disciplines {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

.sensei-disciplines article {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) minmax(180px, auto);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.sensei-organization img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
}

.sensei-disciplines h2 {
  margin: 0 0 4px;
  font-size: 24px;
  text-transform: uppercase;
}

.sensei-disciplines strong {
  color: var(--red);
  font-size: 21px;
}

.sensei-disciplines p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.sensei-documents {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.sensei-documents img {
  width: auto;
  height: 100px;
  max-width: 150px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform .18s ease;
}

.sensei-documents img:hover {
  transform: scale(1.06);
}

.sensei-text {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.sensei-text > h2 {
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(25px, 3vw, 34px);
  text-transform: uppercase;
}

.sensei-text > p {
  max-width: 1050px;
  line-height: 1.7;
}

.sensei-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sensei-timeline li {
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--red);
  line-height: 1.5;
}

.sensei-timeline strong {
  display: block;
  color: var(--red);
}

.sensei-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sensei-records article {
  padding: 22px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.sensei-records h3 {
  margin: 0 0 12px;
  font-size: 23px;
  text-transform: uppercase;
}

.sensei-records ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sensei-records li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.sensei-records span {
  color: var(--red);
  font-weight: 900;
}

.sensei-records small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.martial-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 34px 80px;
  border-top: 1px solid var(--line);
}

.martial-page > .section-kicker {
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
}

.martial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 260px);
  gap: 56px;
  align-items: center;
  min-height: 430px;
  padding: 32px 6%;
  overflow: hidden;
  background: #f5f5f5;
}

.martial-intro h1 {
  margin: 4px 0 20px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .9;
  text-transform: uppercase;
}

.martial-intro p:last-child {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.55;
}

.martial-meaning {
  margin: 0;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.martial-intro img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.martial-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.martial-content article {
  padding: 38px 34px 34px 0;
}

.martial-content article + article {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.martial-content h2,
.martial-highlight h2 {
  margin: 4px 0 18px;
  font-size: clamp(27px, 3vw, 38px);
  text-transform: uppercase;
}

.martial-content p,
.martial-highlight p {
  line-height: 1.7;
}

.martial-highlight {
  max-width: 980px;
  padding: 42px 0 10px;
}

.martial-highlight > p:last-child {
  padding: 16px 20px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
  font-weight: 700;
}

.karate-intro img {
  max-height: 390px;
}

.karate-history {
  padding: 42px 0;
}

.karate-history > h2,
.funakoshi-section h2 {
  margin: 4px 0 26px;
  font-size: clamp(29px, 4vw, 46px);
  text-transform: uppercase;
}

.karate-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.karate-history-grid article {
  position: relative;
  padding: 28px 28px 24px;
  overflow: hidden;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.karate-history-grid article > span {
  position: absolute;
  top: -18px;
  right: 10px;
  color: #ddd;
  font-size: 92px;
  font-weight: 950;
  line-height: 1;
}

.karate-history-grid h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 22px;
  text-transform: uppercase;
}

.karate-history-grid p {
  position: relative;
  line-height: 1.65;
}

.funakoshi-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 48px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.funakoshi-section p {
  line-height: 1.7;
}

.funakoshi-section figure {
  margin: 0;
  padding: 18px;
  background: #f5f5f5;
}

.funakoshi-section img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.funakoshi-section figcaption {
  margin-top: 10px;
  text-align: center;
  font-weight: 800;
}

.karate-styles {
  max-width: none;
}

.karate-styles > p:last-of-type {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 400;
}

.karate-styles ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.karate-styles li {
  padding: 18px;
  border-left: 6px solid var(--red);
  background: #f5f5f5;
}

.karate-styles strong,
.karate-styles span {
  display: block;
}

.karate-styles strong {
  font-size: 18px;
}

.karate-styles span {
  margin-top: 4px;
  color: var(--muted);
}

.saishokido-intro img {
  max-height: 330px;
  mix-blend-mode: normal;
}

.saishokido-system {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 40px;
  align-items: center;
  padding: 42px 0;
}

.saishokido-system h2,
.saishokido-founder h2,
.saishokido-czech h2,
.saishokido-jukl h2 {
  margin: 4px 0 18px;
  font-size: clamp(29px, 4vw, 46px);
  text-transform: uppercase;
}

.saishokido-system p,
.saishokido-founder p,
.saishokido-czech p,
.saishokido-jukl p {
  line-height: 1.7;
}

.saishokido-system ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.saishokido-system li {
  padding: 15px 16px;
  border-left: 5px solid var(--red);
  background: #f5f5f5;
  font-weight: 900;
}

.saishokido-philosophy {
  max-width: 1050px;
}

.saishokido-philosophy > p:last-child {
  padding: 16px 20px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
  font-weight: 700;
}

.saishokido-founder,
.saishokido-czech,
.saishokido-jukl {
  display: grid;
  grid-template-columns: minmax(210px, 330px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.saishokido-founder-photo {
  padding: 20px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.saishokido-founder-photo img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  cursor: pointer;
}

.saishokido-ranks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.saishokido-ranks span {
  padding: 10px 12px;
  border-left: 4px solid var(--red);
  background: #f5f5f5;
}

.saishokido-ranks strong {
  color: var(--red);
}

.saishokido-czech {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
}

.saishokido-czech img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  cursor: pointer;
}

.saishokido-jukl {
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
}

.saishokido-gallery {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 14px;
  align-items: stretch;
}

.saishokido-gallery img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f5f5f5;
  cursor: pointer;
  transition: transform .18s ease;
}

.saishokido-gallery img:hover,
.saishokido-czech img:hover,
.saishokido-founder-photo img:hover {
  transform: scale(1.03);
}

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

.text-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.members-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 34px 80px;
  border-top: 1px solid var(--line);
}

.members-page > .section-kicker {
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
}

.member-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}

.member-filters button {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.member-filters button:hover,
.member-filters button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.member-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  min-width: 0;
  padding: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f5f5f5;
  color: var(--black);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease;
}

.member-card:hover,
.member-card:focus {
  border-color: var(--red);
  transform: translateY(-3px);
}

.member-card[hidden] {
  display: none;
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.member-card[data-category~="historie"] img,
.member-modal.is-history [data-member-image] {
  filter: grayscale(1);
}

.member-card strong,
.member-card small {
  padding: 0 16px;
}

.member-card strong {
  margin-top: 14px;
  font-size: 23px;
  font-weight: 950;
}

.member-card small {
  color: var(--muted);
  font-size: 14px;
}

.member-number {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .78);
}

.member-modal[hidden] {
  display: none;
}

.member-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  width: min(1100px, 100%);
  max-height: 88vh;
  padding: 30px;
  overflow: auto;
  background: #fff;
}

.member-modal-dialog > img {
  position: sticky;
  top: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f5f5f5;
}

.member-modal-dialog h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: 1;
}

.member-modal-dialog h3 {
  margin: 28px 0 8px;
  text-transform: uppercase;
}

.member-birth {
  margin: 14px 0 18px;
}

.member-grades {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--red);
  background: #f5f5f5;
}

.member-grades p {
  margin: 3px 0;
}

.member-grades strong {
  color: var(--red);
}

.member-biography,
.member-preline {
  line-height: 1.65;
}

.member-detail-section {
  margin-top: 28px;
  padding-top: 2px;
  border-top: 1px solid var(--line);
}

.member-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.member-modal-open {
  overflow: hidden;
}

.news-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 34px 80px;
  border-top: 1px solid var(--line);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.news-heading .section-kicker {
  margin: 0;
  color: var(--red);
  font-size: clamp(18px, 2.2vw, 26px);
}

.news-year-control {
  display: grid;
  gap: 5px;
  width: min(190px, 100%);
}

.news-year-control label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-year-control select {
  width: 100%;
  min-height: 42px;
  padding: 8px 36px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-weight: 800;
}

.news-toolbar {
  display: flex;
  gap: 8px;
  margin: 24px 0 30px;
  border-bottom: 1px solid var(--line);
}

.news-toolbar button {
  padding: 10px 16px;
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.news-toolbar button:hover,
.news-toolbar button.is-active {
  border-bottom-color: var(--red);
  color: var(--red);
}

.news-list {
  max-width: 900px;
}

.news-list > h1 {
  margin: 0 0 24px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.news-empty {
  padding: 26px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.news-empty > span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.news-empty h2 {
  margin: 8px 0 12px;
  font-size: 25px;
  text-transform: uppercase;
}

.news-empty p {
  margin: 0;
  font-size: 17px;
}

.news-article {
  margin-bottom: 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.news-list [data-news-content] .news-article:last-child {
  border-bottom: 0;
}

.news-article time,
.news-year {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.news-article h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 950;
  text-transform: uppercase;
}

.news-article p {
  margin: 0 0 14px;
  font-size: 17px;
}

.news-image {
  max-width: 100%;
  margin-top: 14px;
  cursor: zoom-in;
}

.news-image-wide {
  width: min(100%, 800px);
}

.news-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 800px;
}

.news-photo-grid .news-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.news-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.news-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-document-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-document-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--red);
  font-weight: 900;
}

.news-document-grid img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: left top;
}

.news-link-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.news-link-list a {
  color: var(--red);
  font-weight: 800;
}

.news-video {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
}

.news-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.news-table-wrap {
  max-width: 620px;
  margin: 16px 0;
  overflow-x: auto;
}

.news-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.news-table th,
.news-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.news-table th {
  background: #f1f1f1;
  font-weight: 900;
}

.news-table th:first-child,
.news-table td:first-child,
.news-table th:last-child,
.news-table td:last-child {
  text-align: center;
}

.news-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.news-result-grid > div {
  padding: 18px;
  border-left: 5px solid var(--red);
  background: #f4f4f4;
}

.news-result-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.news-result-grid p {
  margin: 0;
}

.news-image-poster {
  width: min(100%, 520px);
  max-height: 740px;
  object-fit: contain;
  object-position: left top;
}

.news-poster a {
  display: grid;
  justify-items: start;
  gap: 10px;
  width: fit-content;
  color: var(--red);
}

.news-download,
.news-with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 190px);
  gap: 28px;
  align-items: start;
}

.news-download img,
.news-with-image img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.news-download-link {
  color: var(--red);
  font-weight: 900;
}

.intro-copy h2,
.info-columns h3 {
  margin: 0 0 28px;
  font-size: 22px;
}

.intro-copy p {
  font-size: 16px;
}

.club-photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.club-photo-frame {
  height: 100%;
  min-height: 300px;
  background: #ddd;
}

.club-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(.08);
}

.anniversary,
.black-tag {
  position: absolute;
  right: 44px;
  bottom: 30px;
  display: grid;
  place-items: center;
  min-width: 210px;
  padding: 22px 26px;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(7% 0, 100% 9%, 94% 100%, 0 86%);
}

.anniversary span {
  font-size: 16px;
  font-weight: 800;
}

.anniversary strong {
  font-size: 45px;
  font-style: italic;
  line-height: 1;
}

.anniversary small {
  font-size: 18px;
  font-weight: 900;
}

.features,
.gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 34px 42px;
  text-align: center;
}

.features h2,
.gallery h2 {
  margin: 0 0 34px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  text-transform: uppercase;
}

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

.feature-grid article {
  min-width: 0;
  padding: 8px 24px 0;
  border-left: 1px solid var(--line);
  overflow: visible;
}

.feature-grid article:first-child {
  border-left: 0;
}

.feature-grid article:hover .feature-icon {
  transform: scale(1.14);
}

.feature-grid h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
  font-size: 14px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform .18s ease;
}

.line-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  color: var(--red);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 4px solid currentColor;
}

.gi::before {
  inset: 8px 10px 4px;
  border-top: 0;
  transform: skew(-8deg);
}

.gi::after {
  top: 0;
  left: 14px;
  width: 26px;
  height: 24px;
  border-bottom: 0;
  transform: rotate(45deg);
}

.shoe::before {
  left: 4px;
  bottom: 8px;
  width: 46px;
  height: 24px;
  border-radius: 8px 26px 10px 10px;
  transform: rotate(-24deg);
}

.shoe::after {
  right: 7px;
  top: 7px;
  width: 14px;
  height: 20px;
  border-left: 0;
  border-bottom: 0;
}

.people::before {
  left: 2px;
  bottom: 3px;
  width: 48px;
  height: 26px;
  border-radius: 28px 28px 0 0;
  border-bottom: 0;
}

.people::after {
  left: 15px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.camp::before {
  left: 7px;
  bottom: 4px;
  width: 38px;
  height: 38px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.camp::after {
  left: 25px;
  top: 0;
  width: 0;
  height: 50px;
  border-width: 0 0 0 4px;
}

.trophy::before {
  left: 10px;
  top: 4px;
  width: 34px;
  height: 28px;
  border-radius: 0 0 18px 18px;
}

.trophy::after {
  left: 24px;
  top: 31px;
  width: 6px;
  height: 18px;
  border-top: 0;
  border-bottom: 0;
}

.smile::before {
  inset: 3px;
  border-radius: 50%;
}

.smile::after {
  left: 15px;
  top: 18px;
  width: 24px;
  height: 13px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0 0 50px 50px;
}

.free-month {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .95fr) minmax(280px, 1.2fr);
  align-items: stretch;
  max-width: var(--max);
  min-height: 230px;
  margin: 0 auto;
  overflow: hidden;
  background: #eee;
}

.free-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 22px;
  align-content: center;
  padding: 34px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 34px 34px;
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}

.calendar-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0;
  border: 4px solid #fff;
  border-radius: 8px;
  font-size: 35px;
  font-weight: 950;
}

.free-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 45px);
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.free-copy p:not(.calendar-icon) {
  grid-column: 2;
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.kids-strip {
  min-height: 230px;
}

.kids-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(.15);
}

.black-tag {
  right: 44px;
  bottom: 34px;
  gap: 5px;
  transform: rotate(-4deg);
}

.black-tag strong {
  font-size: 20px;
  font-style: italic;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.info-columns article {
  position: relative;
  min-height: 305px;
  padding: 36px 36px 32px;
  border-left: 1px solid var(--line);
}

.info-columns article:first-child {
  border-left: 0;
}

.info-columns h2 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.gear-card {
  background:
    radial-gradient(circle at 77% 62%, rgba(242, 7, 7, .08), transparent 22%),
    linear-gradient(#fff, #fff);
}

.gear-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.schedule {
  margin: 0;
}

.schedule div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.schedule dt {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.schedule dd {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.trainer-section {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trainer-section h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: .95;
  font-weight: 950;
  text-transform: uppercase;
}

.trainer-section p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
}

.trainer-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trainer-list li {
  min-height: 116px;
  padding: 18px 18px 16px;
  border-left: 8px solid var(--red);
  background: #f5f5f5;
}

.trainer-list img {
  display: block;
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  margin: 0 0 14px;
  object-fit: contain;
  background: #fff;
  cursor: zoom-in;
  transition: transform .18s ease;
}

.trainer-list li:hover img {
  transform: scale(1.08);
}

.trainer-list strong {
  display: block;
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

.trainer-list span {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.join-team-note {
  margin-top: 18px;
  margin-bottom: 14px;
}

.gallery {
  padding-top: 26px;
}

.gallery-slider {
  position: relative;
  padding: 0 48px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-row {
  display: flex;
  gap: 18px;
  transition: transform .32s ease;
  will-change: transform;
}

.gallery figure {
  flex: 0 0 calc((100% - 72px) / 5);
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .25s ease;
}

[data-lightbox-image] {
  cursor: zoom-in;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 9px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .16);
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus {
  color: var(--red);
}

.gallery-arrow-prev {
  left: 0;
}

.gallery-arrow-next {
  right: 0;
}

.gallery p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.join {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(220px, .75fr) minmax(320px, .95fr);
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
}

.join-copy,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.join-copy {
  padding: 34px 36px;
}

.join-copy h2,
.signup-form h2 {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.signature {
  margin: 24px 0 0;
  font-size: 30px;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

.join-photo {
  align-self: stretch;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.join-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.signup-form {
  padding: 28px 32px 32px;
  text-align: center;
}

.signup-form h2 {
  margin-bottom: 5px;
  color: var(--black);
  font-size: 24px;
}

.signup-form p {
  margin: 0 0 18px;
  font-size: 14px;
}

.signup-form .form-privacy-note {
  margin: 2px 0 12px;
  color: #555;
  font-size: 12px;
  line-height: 1.4;
}

.form-privacy-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy-note a:hover,
.form-privacy-note a:focus-visible {
  color: var(--red);
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  font: inherit;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.signup-form textarea {
  min-height: 72px;
  resize: vertical;
}

.signup-form button {
  width: 100%;
  padding: 15px;
  font-size: 17px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 34px 26px;
  border-top: 1px solid var(--line);
}

.values article {
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.values article:first-child {
  border-left: 0;
}

.values strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 950;
  text-transform: uppercase;
}

.values span {
  display: block;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 34px 34px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(170px, 100%);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

address {
  display: grid;
  gap: 5px;
  font-style: normal;
}

.social {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.site-footer .social {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.social-row,
.footer-contact-icons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.social span {
  margin-right: 10px;
  white-space: nowrap;
}

.social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact-icons {
  margin-top: 8px;
}

.footer-contact-icons a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.footer-contact-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #555;
  font-size: 14px;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--red);
}

.footer-legal button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--red);
}

.footer-legal-separator {
  margin: 0 8px;
  color: #aaa;
}

.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 17px 20px;
  border: 1px solid #d8d8d8;
  border-left: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 12px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-consent-copy strong {
  color: var(--black);
  font-size: 16px;
}

.cookie-consent-copy a {
  color: var(--red);
  font-weight: 800;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent-actions button,
.cookie-media-placeholder button {
  min-height: 42px;
  padding: 10px 18px;
  border: 2px solid var(--black);
  border-radius: 3px;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cookie-consent-actions .cookie-accept,
.cookie-media-placeholder button {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus-visible,
.cookie-media-placeholder button:hover,
.cookie-media-placeholder button:focus-visible {
  outline: 3px solid rgba(242, 7, 7, .22);
  outline-offset: 2px;
}

.cookie-media-placeholder {
  display: grid;
  width: 100%;
  min-height: 240px;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  background: #f1f1f1;
  color: #222;
  text-align: center;
}

.cookie-media-placeholder[hidden] {
  display: none;
}

.cookie-media-placeholder strong {
  font-size: 20px;
  text-transform: uppercase;
}

.cookie-media-placeholder span {
  max-width: 520px;
}

.cookie-image-blocked {
  padding: 18px;
  object-fit: contain !important;
  background: #f1f1f1;
}

.empty-gallery {
  min-height: 240px;
  display: grid;
  place-items: center;
}

.empty-gallery p {
  margin: 0;
  color: #555;
  font-size: 18px;
  font-weight: 800;
}

.privacy-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-list li + li {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .cookie-consent-copy {
    display: grid;
    gap: 5px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions button {
    width: 100%;
  }
}

.form-response {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(110deg, rgba(242, 7, 7, .08), transparent 42%),
    #fff;
}

.form-response section {
  width: min(100%, 560px);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.response-logo {
  display: inline-block;
  width: min(280px, 72%);
}

.response-logo img {
  width: 100%;
  height: auto;
}

.form-response h1 {
  margin: 38px 0 16px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.form-response p {
  margin: 0 0 28px;
  font-size: 18px;
}

.photo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 34px 38px;
  border-bottom: 1px solid var(--line);
}

.gallery-index-hero {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.photo-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.photo-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 34px 52px;
}

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

.photo-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  background: #ececec;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.photo-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: grid;
  min-width: 38px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.photo-card:hover img,
.photo-card:focus img {
  filter: contrast(1.05);
  transform: scale(1.05);
}

.gallery-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 34px 56px;
}

.gallery-album-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}

.gallery-album-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.gallery-album-card span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-album-card h2 {
  margin: 0;
  padding: 18px 20px 20px;
  background: #fff;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-album-card:hover img,
.gallery-album-card:focus img {
  filter: contrast(1.05);
  transform: scale(1.04);
}

.video-album-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(242, 7, 7, .92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
}

.video-album-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #fff;
  transform: translate(-38%, -50%);
}

.video-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 34px 56px;
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.back-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(380px, 1fr);
  align-items: center;
  gap: 18px;
  max-width: var(--max);
  min-height: 510px;
  margin: 0 auto;
  padding: 22px 34px 34px;
  overflow: hidden;
}

.home-hero-copy h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.home-hero-copy p {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 18px;
}

.home-red {
  color: var(--red);
  font-weight: 950;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-primary,
.home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(242, 7, 7, .22);
}

.home-secondary {
  border: 2px solid var(--red);
  color: var(--red);
}

.home-hero-art {
  position: relative;
}

.home-hero-art::before {
  content: "";
  position: absolute;
  inset: 18px 14px 24px 16%;
  border-radius: 50%;
  background: var(--red);
}

.home-hero-art img {
  position: relative;
  width: min(600px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .18));
}

.home-hero-logo::before {
  display: none;
}

.home-hero-logo img {
  display: block;
  width: min(500px, 86%);
  margin-right: auto;
  object-fit: contain;
  filter: none;
}

.home-club {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(380px, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  background: #050505;
  color: #fff;
}

.home-club-text {
  display: grid;
  align-items: center;
  min-height: 220px;
  padding: 34px;
  background:
    linear-gradient(105deg, #050505 0 72%, transparent 72%),
    #171717;
}

.home-club-text h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  font-style: italic;
  line-height: 1.02;
  text-transform: uppercase;
}

.home-club-photo {
  min-height: 220px;
  overflow: hidden;
  background: #1b1b1b;
}

.home-club-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  opacity: .48;
  filter: grayscale(1);
}

.home-club-icons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 20px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.home-club-icons article,
.home-find-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  text-transform: uppercase;
}

.home-club-icons .line-icon {
  color: var(--red);
  transform: scale(.72);
}

.home-club-icons span {
  font-size: 12px;
  font-weight: 950;
}

.home-finds {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 34px 58px;
  text-align: center;
}

.home-finds h2 {
  margin: 0 0 34px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 950;
  text-transform: uppercase;
}

.home-finds h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 7px;
  margin: 12px auto 0;
  background: var(--red);
  transform: skew(-24deg);
}

.home-find-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.home-find-grid article {
  min-width: 0;
}

.home-find-grid .line-icon {
  color: var(--red);
}

.home-find-grid strong {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 34px 26px;
}

.training-photo {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #f0f0f0;
}

.training-photo::after,
.camp-hero::after,
.training-motto::before,
.camp-quote::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  background:
    linear-gradient(92deg, transparent 0 4%, #fff 4% 11%, transparent 11% 18%, #fff 18% 25%, transparent 25% 100%);
}

.training-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.training-copy h1,
.camp-hero h1,
.contact-promo h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 950;
  font-style: italic;
  line-height: .96;
  text-transform: uppercase;
}

.training-copy h1 span,
.camp-hero h1 span,
.contact-promo h1 span {
  color: var(--red);
}

.training-copy p,
.camp-hero p,
.contact-promo p {
  margin: 24px 0 0;
  font-size: 19px;
  font-weight: 900;
}

.training-groups,
.training-benefits {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.training-groups h2,
.training-benefits h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  text-transform: uppercase;
}

.training-groups h2::after,
.training-benefits h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin: 10px auto 0;
  background: var(--red);
  transform: skew(-24deg);
}

.training-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.training-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.training-card-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.training-card-grid h3 {
  margin: 16px 14px 2px;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.training-card-grid p {
  margin: 0 14px 18px;
  font-weight: 800;
}

.training-motto,
.camp-quote {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  max-width: 820px;
  margin: 10px auto 46px;
  padding: 22px 34px 28px;
  overflow: hidden;
  background: #050505;
  color: #fff;
  text-align: center;
}

.training-motto::before,
.camp-quote::before {
  top: 0;
  bottom: auto;
  background:
    linear-gradient(92deg, transparent 0 6%, #fff 6% 13%, transparent 13% 21%, #fff 21% 27%, transparent 27% 100%);
}

.training-motto strong,
.camp-quote p {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.training-motto span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.camp-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.camp-hero img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.camp-hero > div {
  grid-area: 1 / 1;
  align-self: center;
  width: min(100%, 680px);
  padding: 48px 58px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .42) 62%, transparent);
}

.camp-hero h1 {
  color: #fff;
}

.camp-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 34px;
  text-align: center;
}

.camp-icons article {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
}

.camp-icons strong {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.camp-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4px 34px 24px;
}

.camp-gallery img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.camp-gallery img:nth-child(1),
.camp-gallery img:nth-child(6) {
  grid-column: span 2;
}

.camp-quote {
  max-width: var(--max);
  margin-bottom: 44px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, .7fr) minmax(290px, .85fr);
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 34px 54px;
}

.contact-promo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.contact-promo h1,
.contact-promo p {
  position: relative;
  z-index: 2;
}

.contact-promo img {
  position: absolute;
  right: -36px;
  bottom: 0;
  width: min(430px, 96%);
}

.contact-promo::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 88px;
  z-index: 1;
  width: 70%;
  height: 54px;
  background: var(--red);
  transform: skew(-20deg) rotate(-7deg);
}

.contact-info {
  padding: 12px 0 0;
}

.contact-info h2,
.contact-form h2 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-info dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-info div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
}

.contact-info dt {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 0;
  font-weight: 800;
}

.contact-form {
  align-self: start;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
  background: rgba(0, 0, 0, .82);
  cursor: zoom-out;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-end;
    justify-self: end;
    overflow: visible;
  }

  .hero,
  .home-hero,
  .home-club,
  .training-hero,
  .intro-band,
  .free-month,
  .info-columns,
  .trainer-section,
  .join,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .trainer-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-art {
    min-height: 0;
  }

  .intro-band {
    margin-top: 0;
    background: #fff;
  }

  .intro-copy {
    justify-self: start;
    width: auto;
    padding: 32px 34px;
  }

  .feature-grid,
  .home-club-icons,
  .home-find-grid,
  .camp-icons,
  .values,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure {
    flex-basis: calc((100% - 18px) / 2);
  }

  .feature-grid article:nth-child(odd),
  .info-columns article,
  .values article:nth-child(odd) {
    border-left: 0;
  }

  .free-copy {
    clip-path: none;
  }

  .black-tag {
    right: 28px;
  }

  .photo-hero,
  .photo-grid,
  .gallery-index,
  .training-card-grid,
  .camp-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .camp-gallery img:nth-child(1),
  .camp-gallery img:nth-child(6) {
    grid-column: span 1;
  }

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

}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .home-hero,
  .home-finds,
  .features,
  .gallery,
  .photo-hero,
  .photo-gallery,
  .video-detail,
  .gallery-index,
  .training-hero,
  .training-groups,
  .training-benefits,
  .trainer-section,
  .camp-icons,
  .camp-gallery,
  .contact-page,
  .simple-page,
  .text-page,
  .members-page,
  .news-page,
  .join,
  .values,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .logo {
    gap: 7px;
    font-size: clamp(16px, 6vw, 28px);
    max-width: 100%;
  }

  .logo::after {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    min-height: 38px;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    text-align: left;
  }

  .profile-block {
    grid-template-columns: 1fr;
  }

  .text-logo-block {
    grid-template-columns: 1fr;
  }

  .text-photo-grid {
    grid-template-columns: 1fr;
  }

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

  .member-modal {
    padding: 12px;
  }

  .member-modal-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .member-modal-dialog > img {
    position: static;
    max-height: 300px;
  }

  .sensei-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sensei-intro,
  .sensei-disciplines article,
  .sensei-timeline,
  .sensei-records {
    grid-template-columns: 1fr;
  }

  .sensei-main-photo {
    width: min(260px, 100%);
  }

  .sensei-intro h1 {
    font-size: 44px;
  }

  .sensei-disciplines article {
    gap: 16px;
  }

  .sensei-documents {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sensei-timeline {
    gap: 0;
  }

  .martial-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .martial-intro,
  .martial-content {
    grid-template-columns: 1fr;
  }

  .martial-intro {
    gap: 24px;
    min-height: 0;
    padding: 30px 24px;
  }

  .martial-intro img {
    max-height: 280px;
  }

  .martial-content article,
  .martial-content article + article {
    padding: 30px 0;
    border-left: 0;
  }

  .martial-content article + article {
    border-top: 1px solid var(--line);
  }

  .karate-history-grid,
  .funakoshi-section,
  .karate-styles ul {
    grid-template-columns: 1fr;
  }

  .funakoshi-section {
    gap: 24px;
  }

  .funakoshi-section figure {
    width: min(340px, 100%);
  }

  .saishokido-system,
  .saishokido-founder,
  .saishokido-czech,
  .saishokido-jukl,
  .saishokido-gallery {
    grid-template-columns: 1fr;
  }

  .saishokido-system,
  .saishokido-founder,
  .saishokido-czech,
  .saishokido-jukl {
    gap: 24px;
  }

  .saishokido-ranks {
    grid-template-columns: 1fr;
  }

  .saishokido-gallery img {
    height: auto;
    max-height: 420px;
  }

  .news-heading {
    align-items: start;
    flex-direction: column;
  }

  .news-download,
  .news-with-image {
    grid-template-columns: 1fr;
  }

  .news-download img,
  .news-with-image img {
    max-width: 240px;
  }

  .news-photo-grid {
    grid-template-columns: 1fr;
  }

  .news-photo-grid .news-image {
    height: auto;
  }

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

  .news-document-grid,
  .news-document-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-result-grid {
    grid-template-columns: 1fr;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus {
    background: #f2f2f2;
  }

  .main-nav > a.is-current,
  .nav-dropdown-toggle.is-current-section,
  .nav-dropdown-menu a.is-current {
    background: #f2f2f2;
    box-shadow: inset 4px 0 0 var(--red);
  }

  .nav-dropdown {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 4px 18px;
    border: 0;
    border-left: 3px solid var(--red);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown-check:checked ~ .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 14px;
  }

  .hero {
    gap: 0;
    padding-top: 10px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding-top: 10px;
  }

  .home-hero-art::before {
    inset: 18px 0;
  }

  .feature-grid,
  .photo-hero,
  .photo-grid,
  .gallery-index,
  .training-card-grid,
  .camp-icons,
  .camp-gallery,
  .home-club,
  .home-club-icons,
  .home-find-grid,
  .values,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    padding: 0 40px;
  }

  .gallery figure {
    flex-basis: 100%;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 34px;
  }

  .feature-grid article,
  .values article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }

  .free-copy {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .free-copy p:not(.calendar-icon) {
    grid-column: auto;
  }

  .black-tag,
  .anniversary {
    position: static;
    margin: 18px 20px;
  }

  .join-copy,
  .signup-form {
    padding: 26px 22px;
  }

  .training-hero {
    gap: 22px;
    padding-top: 20px;
  }

  .training-photo,
  .training-photo img,
  .camp-hero,
  .camp-hero img {
    min-height: 280px;
  }

  .training-copy h1,
  .camp-hero h1,
  .contact-promo h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .camp-hero > div {
    padding: 34px 22px;
  }

  .contact-promo {
    min-height: 430px;
  }

  .contact-promo img {
    right: -18px;
  }

  .contact-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
