/* ==========================================================================
   Gracie Barra Sarandë — stylesheet
   Hand-written vanilla CSS. No frameworks. Works fully offline
   (Google Fonts are progressively enhanced with a full system fallback).
   ========================================================================== */

:root {
  --gb-red: #E2211C;
  --gb-red-dark: #A3120D;
  --gb-navy: #11286D;
  --gb-navy-dark: #0B1B4D;
  --gb-black: #111111;
  --gb-white: #FFFFFF;
  --gb-gray-light: #F5F5F3;
  --gb-gray-mid: #6b6b6b;

  --font-heading: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  --shadow-lift: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* --------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gb-black);
  background: var(--gb-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--gb-black);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: 0; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1em; }

a { color: var(--gb-red); text-decoration: none; }
a:hover { color: var(--gb-red-dark); text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}
.section-white { background: var(--gb-white); }
.section-gray { background: var(--gb-gray-light); }
.section-black { background: var(--gb-black); color: var(--gb-white); }
.section-black h2, .section-black h3 { color: var(--gb-white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gb-red);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.section-head .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gb-red);
  display: inline-block;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 0.85em 1.8em;
  border-radius: var(--radius);
  border: 2px solid var(--gb-red);
  background: var(--gb-red);
  color: var(--gb-white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover {
  background: var(--gb-black);
  border-color: var(--gb-black);
  color: var(--gb-white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gb-white);
  border-color: var(--gb-white);
}
.btn-outline:hover {
  background: var(--gb-white);
  color: var(--gb-black);
  border-color: var(--gb-white);
}
.btn-block { display: block; width: 100%; text-align: center; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: #25D366;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
}
.btn-whatsapp .icon-whatsapp { width: 20px; height: 20px; flex-shrink: 0; }

/* --------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------- */
.site-header { position: relative; }

/* Slim top utility bar — contact + social, sits above the sticky nav */
.utility-bar {
  background: var(--gb-navy);
  color: #dce3f5;
}
.utility-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.utility-bar-inner a {
  color: #dce3f5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.utility-bar-inner a:hover { color: var(--gb-white); text-decoration: underline; }
.utility-bar-inner .icon-inline { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 640px) { .utility-bar { display: none; } }

/* Language switcher (EN | SHQIP), sits in the utility bar */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-switch a { color: #dce3f5; }
.lang-switch a:hover { color: var(--gb-white); text-decoration: underline; }
.lang-switch .lang-current {
  color: var(--gb-white);
  font-weight: 700;
}
.lang-switch .lang-sep { color: #7c8bbd; }

/* Mobile-only copy of the language switch, inside the hamburger menu —
   the utility bar (and its lang-switch) is hidden below 640px, so this
   is the only way to reach it on phones. Hidden above that width since
   the utility bar's own switch already covers desktop/tablet. */
.nav-lang-item {
  display: none;
}
@media (max-width: 640px) {
  .nav-lang-item {
    display: block;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
  }
  .nav-lang-item a,
  .nav-lang-item .lang-current {
    color: var(--gb-white);
  }
  .nav-lang-item .lang-current { font-weight: 700; }
  .nav-lang-item .lang-sep { color: rgba(255,255,255,0.5); margin: 0 0.5rem; }
}

.main-header {
  background: var(--gb-red);
  border-bottom: 4px solid var(--gb-black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gb-white);
}
.logo-link:hover { color: var(--gb-white); text-decoration: none; }
.logo-img { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.logo-text strong { display: block; font-size: 1.2rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gb-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav ul {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--gb-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  text-decoration: none;
  border-bottom-color: var(--gb-white);
}
.btn-nav-cta {
  background: var(--gb-black);
  border-color: var(--gb-black);
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.btn-nav-cta:hover {
  background: var(--gb-white);
  color: var(--gb-black);
  border-color: var(--gb-white);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--gb-red-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 2rem;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
  }
  .site-nav a { display: block; font-size: 1.05rem; }
  .btn-nav-cta { width: 100%; text-align: center; }
}

/* --------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--gb-white);
  background: var(--gb-black);
  overflow: hidden;
}
/* Hero crossfade slideshow — a Ken-Burns-style stand-in for a muted
   background video (no real gym footage was available to use, see README). */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--gb-black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 55%, rgba(163,18,13,0.88) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffd6d4;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.hero h1 { color: var(--gb-white); margin-bottom: 0.4em; }
.hero-tagline {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  letter-spacing: 0.03em;
  color: var(--gb-white);
  margin-bottom: 1rem;
}
.hero-intro { font-size: 1.08rem; max-width: 560px; margin-bottom: 2rem; color: rgba(255,255,255,0.92); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --------------------------------------------------------------------
   Stat strip — bold factual brag bar right under the hero
   -------------------------------------------------------------------- */
.stat-strip {
  background: var(--gb-black);
  border-bottom: 1px solid #262626;
}
.stat-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  border-left: 1px solid #2a2a2a;
}
.stat-item:first-child { border-left: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gb-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-number span { color: var(--gb-red); }
.stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a9a9a;
}
@media (max-width: 700px) {
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .stat-item:nth-child(3) { border-left: none; }
}

/* Page header (non-home hero, smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--gb-red) 0%, var(--gb-red-dark) 100%);
  color: var(--gb-white);
  padding: 3.2rem 0 2.4rem;
  text-align: center;
}
.page-hero h1 { color: var(--gb-white); margin-bottom: 0.4em; }
.page-hero .lede { max-width: 680px; margin: 0 auto; font-size: 1.05rem; color: rgba(255,255,255,0.92); }
.page-hero .breadcrumb {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: #ffd6d4;
  margin-bottom: 0.6rem;
}

/* --------------------------------------------------------------------
   Cards / Grids
   -------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------
   "Why Train With Us" — swipeable slider, phone screens only
   -------------------------------------------------------------------- */
@media (max-width: 640px) {
  .why-slider {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    margin: 0 -1.25rem;
    padding: 0.2rem 1.25rem 0.6rem;
  }
  .why-slider::-webkit-scrollbar { display: none; }
  .why-slider .why-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .slider-dots span.is-active {
    background: var(--gb-red);
    transform: scale(1.25);
  }
}
@media (min-width: 641px) {
  .slider-dots { display: none; }
}

.card {
  background: var(--gb-white);
  border: 1px solid #e2dcdc;
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 0.5rem; }
.card .card-icon {
  width: 52px; height: 52px;
  margin-bottom: 1rem;
  color: var(--gb-red);
}

.why-card {
  text-align: center;
  padding: 2.2rem 1.5rem 1.9rem;
  position: relative;
  border-top: none;
}

/* Solid icon tile — replaces bare floating line-icons with a deliberate
   colored block, echoing the belt-stripe motif used in the rank badge.
   Red for core "why us" facts, navy for the values pillars. */
.icon-tile {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: var(--gb-red);
  color: var(--gb-white);
}
.icon-tile svg { width: 28px; height: 28px; }
.icon-tile.navy { background: var(--gb-navy); }
.icon-tile.black { background: var(--gb-black); }
.why-card .card-icon { margin: 0 auto 1rem; }

/* Core values (Integrity / Development / Brotherhood) — navy is the
   secondary brand accent, used sparingly to set this section apart
   from the red "why train with us" cards. */
.values-section .eyebrow { color: var(--gb-navy); }
.values-section .eyebrow::before { background: var(--gb-navy); }
.value-card .card-icon { color: var(--gb-navy); }

/* Discipline strip cards on home */
.discipline-strip a.card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discipline-strip a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gb-red);
  text-decoration: none;
}

/* Photo frames */
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2dcdc;
  background: var(--gb-gray-light);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.photo-caption {
  font-size: 0.85rem;
  color: var(--gb-gray-mid);
  margin-top: 0.5rem;
  text-align: center;
}

/* Small framed credential image (About page, next to Dorian's bio) */
.credential-cert {
  max-width: 260px;
  margin-top: 1.5rem;
}
.credential-cert-frame {
  height: 200px;
  border: 1px solid #e2dcdc;
}
.credential-cert-frame img {
  object-fit: contain;
  background: var(--gb-white);
  padding: 0.5rem;
}
.credential-cert .photo-caption { text-align: left; }

/* --------------------------------------------------------------------
   Two-column content blocks
   -------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* --------------------------------------------------------------------
   Footer CTA banner
   -------------------------------------------------------------------- */
.cta-banner {
  background: var(--gb-black);
  color: var(--gb-white);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--gb-white); }
.cta-banner p { color: #ddd; max-width: 560px; margin: 0 auto 1.5rem; }
.cta-banner .cta-info {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.cta-banner .cta-info a { color: var(--gb-white); text-decoration: underline; }

/* --------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------- */
.site-footer {
  background: var(--gb-black);
  color: #cfcfcf;
  padding: 3rem 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h3 {
  color: var(--gb-white);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.footer-col p, .footer-col a { color: #cfcfcf; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gb-white); }
.footer-logo { width: 44px; height: 44px; margin-bottom: 0.8rem; }
.footer-brand p:first-of-type { font-family: var(--font-heading); text-transform: uppercase; color: var(--gb-white); font-size: 1.05rem; margin-bottom: 0.3rem; }
.footer-links li { margin-bottom: 0.5rem; }
.social-links { display: flex; flex-direction: column; gap: 0.55rem; }
.social-links a { display: inline-flex; align-items: center; gap: 0.5rem; }
.social-links svg, .icon-inline { width: 18px; height: 18px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2.5rem;
  padding: 1.2rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------
   Tables (schedule / pricing)
   -------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid #e2dcdc;
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--gb-white);
}
thead th {
  background: var(--gb-black);
  color: var(--gb-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  padding: 0.85rem 0.9rem;
  text-align: left;
}
tbody td, tbody th {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  text-align: left;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #fafafa; }

.row-kids td:first-child, .row-kids th { border-left: 4px solid #2b7a4b; }
.row-adults td:first-child, .row-adults th { border-left: 4px solid var(--gb-red); }
.row-women td:first-child, .row-women th { border-left: 4px solid #b5769a; }
.row-kickbox td:first-child, .row-kickbox th { border-left: 4px solid #1f5fa8; }
.row-mma td:first-child, .row-mma th { border-left: 4px solid var(--gb-black); }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.2rem 0 2rem;
  font-size: 0.88rem;
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; }
.legend-swatch { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }
.swatch-kids { background: #2b7a4b; }
.swatch-adults { background: var(--gb-red); }
.swatch-women { background: #b5769a; }
.swatch-kickbox { background: #1f5fa8; }
.swatch-mma { background: var(--gb-black); }

/* --------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------- */
.price-card {
  background: var(--gb-white);
  border: 1px solid #e2dcdc;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.price-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.price-card-head {
  background: var(--gb-red);
  color: var(--gb-white);
  padding: 1.2rem 1.4rem;
}
.price-card-head h3 { color: var(--gb-white); margin: 0; }
.price-card-body { padding: 1.2rem 1.4rem 1.6rem; flex: 1; }
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ddd;
  font-size: 0.95rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .amount { font-weight: 700; color: var(--gb-red); white-space: nowrap; }

/* --------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------- */
.form-wrap {
  background: var(--gb-white);
  border: 1px solid #e2dcdc;
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7em 0.8em;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gb-white);
  color: var(--gb-black);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gb-red);
  outline-offset: 1px;
}
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .form-two-col { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--gb-gray-mid); margin-top: 0.6rem; }

/* --------------------------------------------------------------------
   Contact info blocks / map
   -------------------------------------------------------------------- */
.contact-info-card {
  background: var(--gb-white);
  border: 1px solid #e2dcdc;
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.contact-info-card h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.contact-info-card .icon-inline { color: var(--gb-red); width: 22px; height: 22px; }

.quick-contact-card {
  border: 1px solid #cdefda;
  background: #f4fbf7;
}
.quick-contact-card .icon-inline { color: #1DA851; }
.quick-contact-card .btn-whatsapp { margin: 0.8rem 0; }
.quick-contact-alt { font-size: 0.9rem; color: var(--gb-gray-mid); margin-top: 0.4rem; }
.quick-contact-alt a { font-weight: 600; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2dcdc;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------
   Misc utility
   -------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.tag {
  display: inline-block;
  background: var(--gb-gray-light);
  border: 1px solid #e2dcdc;
  color: var(--gb-black);
  font-size: 0.78rem;
  padding: 0.3em 0.75em;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------
   Google reviews trust badge
   -------------------------------------------------------------------- */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gb-gray-light);
  border: 1px solid #e2dcdc;
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
  margin-top: 1.1rem;
}
.reviews-badge-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(#4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg);
}
.reviews-badge .stars {
  display: inline-flex;
  gap: 1px;
}
.reviews-badge .stars svg {
  width: 14px;
  height: 14px;
  fill: #F5A623;
}
.reviews-badge-text { color: var(--gb-black); }
.reviews-badge-text strong { color: var(--gb-black); }
.section-head .reviews-badge { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------
   Black belt rank badge (About page)
   -------------------------------------------------------------------- */
.rank-badge {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--gb-black);
  border: 2px solid var(--gb-red);
  border-radius: var(--radius);
  padding: 1.6rem;
  color: var(--gb-white);
  max-width: 440px;
  margin-top: 1.75rem;
}
.rank-badge-belt {
  flex-shrink: 0;
  width: 60px;
  height: 26px;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-right: 6px;
  margin-top: 0.35rem;
}
.rank-badge-belt .stripe {
  width: 5px;
  height: 18px;
  background: var(--gb-red);
  border-radius: 1px;
}
.rank-badge-eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #ffd6d4;
  margin: 0 0 0.3rem;
}
.rank-badge-title {
  color: var(--gb-white);
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
}
.rank-badge-facts {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.rank-badge-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 0.4rem;
}
.rank-badge-facts div:last-child { border-bottom: none; padding-bottom: 0; }
.rank-badge-facts dt { color: #bdbdbd; font-weight: 500; }
.rank-badge-facts dd { margin: 0; color: var(--gb-white); font-weight: 600; text-align: right; }
@media (max-width: 480px) {
  .rank-badge { flex-direction: column; }
  .rank-badge-belt { margin-top: 0; }
}

/* Compact credentials list (About page) */
.credentials-list {
  max-width: 440px;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.credentials-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--gb-black);
}
.credentials-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gb-red);
  font-weight: 700;
}

.discipline-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}
.discipline-block:last-child { border-bottom: none; }
.discipline-block .benefits { margin-top: 0.8rem; }
.discipline-block .benefits li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}
.discipline-block .benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--gb-red);
  border-radius: 50%;
}
