:root {
  --ink: #1f252b;
  --muted: #5f6872;
  --paper: #ffffff;
  --surface: #f6f3ee;
  --line: #ded8cf;
  --red: #b91c1c;
  --red-dark: #7f1515;
  --gold: #d6a62d;
  --green: #1f6f54;
  --charcoal: #17191d;
  --shadow: 0 18px 55px rgba(24, 25, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: var(--surface);
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 16px;
}

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

.topbar {
  background: var(--charcoal);
  color: #f5f0e7;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}

.topbar__links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar i {
  color: var(--gold);
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 216, 207, 0.8);
  backdrop-filter: blur(14px);
}

.site-header .container {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

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

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav a {
  color: #2f343a;
  font-weight: 700;
}

.nav .nav-cta {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #20a857;
  color: #fff;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus {
  background: #168243;
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.22);
}

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

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--red);
  color: var(--red);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #20a857;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(32, 168, 87, 0.34);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #168243;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 18, 21, 0.86), rgba(16, 18, 21, 0.54) 58%, rgba(16, 18, 21, 0.18)),
    url("../images/bg14.jpg") center / cover no-repeat;
}

.hero .container {
  position: relative;
  padding: 92px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: #ffe08a;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 100%;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  font-size: 52px;
}

.hero__copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: #f6f3ee;
  font-size: 18px;
}

.hero__actions,
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero__highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f6f3ee;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero__proof {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 18px;
}

.proof-card strong {
  display: block;
  color: var(--red);
  font-size: 25px;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: 78px 0;
}

.section--white {
  background: var(--paper);
}

.section--dark {
  background: var(--charcoal);
  color: #fff;
}

.section--accent {
  background: #efe7da;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: 40px;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.section--dark .section-heading p,
.section--dark .muted {
  color: #d9d3c8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(31, 37, 43, 0.07);
}

.card h3 {
  color: var(--ink);
  font-size: 24px;
}

.card p {
  color: var(--muted);
  margin-top: 12px;
}

.card__tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card {
  min-height: 252px;
}

.program-card ul,
.article-body ul,
.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.program-card li,
.article-body li,
.check-list li {
  margin: 7px 0;
  color: var(--muted);
}

.media-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.media-block__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.media-block__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: #3f464d;
  font-weight: 700;
  font-size: 14px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

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

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.feature i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  border: 1px solid var(--line);
  font-size: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.feature p {
  color: var(--muted);
}

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

.image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.resource-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.breadcrumb {
  margin-bottom: 18px;
  color: #d9d3c8;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: #ffe08a;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-panel {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: 34px;
}

.contact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-list i {
  color: var(--red);
  width: 18px;
  margin-top: 4px;
}

.footer {
  background: #121316;
  color: #f4eee5;
  padding: 44px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  margin-bottom: 34px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer p,
.footer a,
.footer li {
  color: #cfc8bd;
}

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

.footer li {
  margin-bottom: 9px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: #aaa197;
  font-size: 14px;
}

.article-hero {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 19, 22, 0.9), rgba(18, 19, 22, 0.55)),
    var(--article-hero-image, url("../images/bg15.jpg")) var(--article-hero-position, center) / cover no-repeat;
}

.article-hero--academy {
  --article-hero-image: url("../images/bg14.jpg");
  --article-hero-position: center;
}

.article-hero--programs {
  --article-hero-image: url("../images/bg15.jpg");
  --article-hero-position: center;
}

.article-hero--karate {
  --article-hero-image: url("../images/bg16.jpg");
  --article-hero-position: center;
}

.article-hero--children {
  --article-hero-image: url("../images/bg16.jpg");
  --article-hero-position: center;
}

.article-hero--striking {
  --article-hero-image: url("../images/bg13.jpg");
  --article-hero-position: center;
}

.article-hero--kickboxing {
  --article-hero-image: url("../images/bg-13.jpg");
  --article-hero-position: center;
}

.article-hero--self-defence {
  --article-hero-image: url("../images/bg13.jpg");
  --article-hero-position: center;
}

.article-hero--aikido {
  --article-hero-image: url("../images/bg15.jpg");
  --article-hero-position: center;
}

.article-hero--kobudo {
  --article-hero-image: url("../images/bg-13.jpg");
  --article-hero-position: center;
}

.article-hero--guides {
  --article-hero-image: url("../images/bg-13.jpg");
  --article-hero-position: center;
}

.article-hero--contact {
  --article-hero-image: url("../images/bg14.jpg");
  --article-hero-position: center;
}

.article-hero h1 {
  font-size: 48px;
}

.article-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #f4eee5;
  font-size: 18px;
}

.article-body {
  background: #fff;
}

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

.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin-top: 34px;
  font-size: 30px;
}

.article-content h3 {
  margin-top: 24px;
  font-size: 22px;
}

.article-content p {
  color: #3f464d;
}

.sidebar-box {
  position: sticky;
  top: 104px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.sidebar-box li {
  margin: 10px 0;
}

.sidebar-box a {
  color: var(--red);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff8e5;
  padding: 18px 20px;
  border-radius: 8px;
}

.style-strip {
  background: #17191d;
  color: #f7f1e8;
  padding: 44px 0;
}

.style-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: center;
}

.style-strip__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.style-strip h2 {
  font-size: 30px;
}

.style-strip p {
  color: #d8d1c7;
}

.style-strip__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.style-strip__links a {
  display: block;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.style-strip__links strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.style-strip__links span {
  display: block;
  margin-top: 8px;
  color: #d8d1c7;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 940px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .site-header .container {
    position: static;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 72px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .menu-toggle {
    position: static;
    order: -1;
    z-index: 3;
    display: inline-flex !important;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 44px;
    min-height: 42px;
    padding: 0;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22);
    margin-right: 2px;
  }

  .menu-toggle::before {
    content: "\2630";
    color: #fff;
    font-size: 20px;
    line-height: 1;
  }

  .menu-toggle i {
    display: none;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .site-header.menu-open .menu-toggle,
  .menu-toggle:focus {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
  }

  .nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
    padding: 8px 0 2px;
    border-top: 1px solid var(--line);
    font-size: 15px;
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 42px;
    padding: 10px 2px;
    border-bottom: 1px solid rgba(222, 216, 207, 0.72);
  }

  .nav .nav-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    border-bottom: 0;
  }

  h1,
  .article-hero h1 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding: 74px 0 34px;
  }

  .hero__proof {
    position: static;
    transform: none;
    width: min(1160px, calc(100% - 40px));
    margin: -18px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .grid-4,
  .media-block,
  .split-band,
  .style-strip__grid,
  .footer__grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .style-strip__links {
    grid-template-columns: 1fr;
  }

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

  .sidebar-box {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .topbar__links,
  .hero__actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header .container {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand span {
    font-size: 12px;
  }

  .menu-toggle {
    position: static;
    order: -1;
    display: inline-flex !important;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 44px;
    min-height: 42px;
    padding: 0;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22);
    margin-right: 2px;
  }

  .menu-toggle::before {
    content: "\2630";
    color: #fff;
    font-size: 20px;
    line-height: 1;
  }

  .menu-toggle i {
    display: none;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .site-header.menu-open .menu-toggle,
  .menu-toggle:focus {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
  }

  .nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 2px;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 42px;
    padding: 10px 2px;
    border-bottom: 1px solid rgba(222, 216, 207, 0.72);
  }

  .nav .nav-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  h1,
  .article-hero h1 {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .hero__copy,
  .section-heading p,
  .article-hero p {
    font-size: 16px;
  }

  .hero__copy,
  .hero h1,
  .article-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero .eyebrow {
    display: flex;
    line-height: 1.25;
    max-width: 28ch;
  }

  .hero__copy {
    width: 100%;
    max-width: 34ch;
  }

  .hero__highlights {
    display: none;
  }

  .article-hero p {
    max-width: 31ch;
    overflow-wrap: break-word;
  }

  .hero__proof,
  .grid-2,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    padding: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  body {
    padding-bottom: 66px;
  }
}
