/* Golden Fist Karate — red & gold theme */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&display=swap');

body.theme-gfk {
  --display: "Oswald", "Arial Narrow", sans-serif;
  --bg: #0a0505;
  --bg-panel: #130808;
  --header: #0f0707;
  --accent: #c8102e;
  --accent-bright: #e8162e;
  --accent-dim: rgba(200, 16, 46, 0.14);
  --gold: #d4a017;
  --gold-bright: #f0c040;
  --gold-dim: rgba(212, 160, 23, 0.15);
  --text: #f5f0f0;
  --muted: #9e8888;
  --card: #1a0d0d;
  --card-elevated: #221010;
  --border: rgba(200, 16, 46, 0.2);
  --border-gold: rgba(212, 160, 23, 0.25);
  --wa: #16a34a;
  background: radial-gradient(ellipse 120% 60% at 60% 0%, #1a0808 0%, #0a0505 60%);
  color: var(--text);
}

/* ── Header ── */
body.theme-gfk .site-header {
  background: var(--header);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

body.theme-gfk .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-bounce, cubic-bezier(0.34,1.56,0.64,1));
}

body.theme-gfk .brand:hover .brand-logo {
  transform: rotate(20deg) scale(1.1);
}

body.theme-gfk .brand strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.1;
}

body.theme-gfk .brand span {
  color: rgba(245, 240, 240, 0.55);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-gfk .site-nav a {
  color: rgba(245, 240, 240, 0.7);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.theme-gfk .site-nav a:hover,
body.theme-gfk .site-nav a.is-active {
  color: var(--gold-bright);
  background: rgba(212, 160, 23, 0.1);
}

/* ── Buttons ── */
body.theme-gfk .btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200, 16, 46, 0.35);
}

body.theme-gfk .btn-primary:hover {
  background: var(--accent-bright);
}

body.theme-gfk .btn-gold {
  background: var(--gold);
  color: #0a0505;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 160, 23, 0.3);
}

body.theme-gfk .btn-gold:hover {
  background: var(--gold-bright);
}

body.theme-gfk .btn-ghost {
  color: var(--text);
  border-color: rgba(245, 240, 240, 0.3);
}

body.theme-gfk .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

body.theme-gfk .wa-fab {
  background: var(--wa);
  color: #fff;
}

/* ── Hero ── */
.gfk-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gfk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gfk-hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .gfk-hero-inner { grid-template-columns: 1fr auto; }
}

.gfk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: var(--gold-dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.gfk-hero h1 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.gfk-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.gfk-hero-tagline {
  margin: 0.75rem 0 1.75rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(245, 240, 240, 0.75);
  max-width: 44ch;
}

.gfk-hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gfk-discipline-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 240, 0.85);
}

.gfk-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gfk-hero-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(10rem, 20vw, 14rem);
  height: clamp(10rem, 20vw, 14rem);
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, rgba(10, 5, 5, 0.6) 100%);
  box-shadow: 0 0 60px rgba(200, 16, 46, 0.2), inset 0 0 40px rgba(212, 160, 23, 0.06);
  font-family: var(--display);
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
  user-select: none;
}

.gfk-hero-emblem span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── Disciplines section ── */
.gfk-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.gfk-section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.gfk-section-title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.gfk-section-sub {
  margin: 0 0 2.5rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.97rem;
}

.gfk-section-sep {
  border-top: 1px solid var(--border);
}

/* Discipline cards */
.gfk-disc-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gfk-disc-grid { grid-template-columns: repeat(3, 1fr); }
}

.gfk-disc-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.gfk-disc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.gfk-disc-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}

.gfk-disc-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.gfk-disc-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.gfk-disc-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Why train here */
.gfk-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .gfk-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .gfk-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.gfk-trust-card {
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  background: var(--gold-dim);
}

.gfk-trust-icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.gfk-trust-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 0.35rem;
}

.gfk-trust-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Social row */
.gfk-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.gfk-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.gfk-social-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.gfk-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Pricing ── */
.gfk-pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gfk-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.gfk-price-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.gfk-price-card.is-featured {
  border-color: var(--accent);
  background: var(--card-elevated);
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.2);
}

.gfk-price-card.is-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.gfk-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.gfk-price-tier {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.gfk-price-amount {
  margin: 0;
}

.gfk-price-amount strong {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.gfk-price-amount span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.gfk-price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gfk-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 240, 0.8);
}

.gfk-price-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.gfk-drop-in-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  background: var(--gold-dim);
  font-size: 0.92rem;
  color: rgba(245, 240, 240, 0.8);
}

.gfk-drop-in-note strong {
  color: var(--gold-bright);
}

/* ── Instructors ── */
.gfk-instructor-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gfk-instructor-grid { grid-template-columns: repeat(3, 1fr); }
}

.gfk-instructor-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.gfk-instructor-photo {
  height: 200px;
  background: linear-gradient(135deg, #1a0d0d 0%, #200f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(212, 160, 23, 0.25);
  border-bottom: 2px solid var(--border);
}

.gfk-instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gfk-instructor-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gfk-instructor-role {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.gfk-instructor-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.gfk-instructor-rank {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.gfk-instructor-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

/* ── Gallery ── */
.gfk-gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .gfk-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .gfk-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gfk-gallery-cell {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

.gfk-gallery-cell svg {
  width: 2rem;
  height: 2rem;
  opacity: 0.3;
  fill: var(--muted);
}

.gfk-gallery-photo {
  padding: 0;
  text-decoration: none;
  position: relative;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gfk-gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gfk-gallery-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
  border-color: rgba(200, 16, 46, 0.45);
}

.gfk-gallery-photo:hover img {
  transform: scale(1.06);
}

/* ── Contact ── */
.gfk-contact-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .gfk-contact-split { grid-template-columns: 1fr 1fr; }
}

.gfk-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.gfk-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.gfk-contact-line .ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: center;
}

.gfk-contact-line strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.15rem;
}

.gfk-contact-line p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.gfk-map-box {
  height: 240px;
  border-radius: 14px;
  border: 2px dashed var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  gap: 0.5rem;
}

.gfk-map-link {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.gfk-map-link:hover { color: var(--gold-bright); }

.gfk-social-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  background: var(--gold-dim);
}

.gfk-social-panel h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 1rem;
}

/* ── Footer ── */
body.theme-gfk .site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 2rem var(--pad);
  font-size: 0.78rem;
}

body.theme-gfk .site-footer a {
  color: var(--gold);
}

/* ── Mobile nav: bottom row under header (not absolute overlay) ── */
body.theme-gfk .site-nav {
  background: var(--header);
  border-color: var(--border);
}

@media (max-width: 768px) {
  html, body.theme-gfk {
    overflow-x: clip;
  }

  body.theme-gfk .site-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.theme-gfk .header-inner {
    position: relative;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 3.5rem;
    max-width: 100%;
  }

  body.theme-gfk .brand {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
  }

  body.theme-gfk .brand strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.theme-gfk .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1.5px solid rgba(212, 160, 23, 0.4);
    border-radius: 999px;
    background: var(--gold-dim);
    color: var(--gold-bright);
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
  }

  /* Bottom row: full-width links under brand/toggle */
  body.theme-gfk .site-nav {
    position: static;
    inset: auto;
    top: auto;
    width: 100%;
    order: 3;
    flex: none;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.55rem 0 0.85rem;
    border-bottom: 1px solid var(--border);
    background: rgba(15, 7, 7, 0.98);
  }

  body.theme-gfk .site-nav.is-open {
    display: flex;
  }

  body.theme-gfk .site-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
  }

  body.theme-gfk .site-nav a.is-active,
  body.theme-gfk .site-nav a:hover {
    color: var(--gold-bright);
    border-color: rgba(212, 160, 23, 0.45);
    background: var(--gold-dim);
  }
}

/* ── Keyframe animations ── */
@keyframes gfk-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gfk-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gfk-scale-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes gfk-slide-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes gfk-spin-in {
  from { opacity: 0; transform: rotate(-30deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes gfk-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(200, 16, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

@keyframes gfk-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Hero entrance animations ── */
.gfk-hero-badge  { animation: gfk-fade-up 0.6s var(--ease, ease) 0.05s both; }
.gfk-hero h1     { animation: gfk-slide-left 0.7s var(--ease, ease) 0.15s both; }
.gfk-hero-tagline { animation: gfk-fade-up 0.6s var(--ease, ease) 0.3s both; }
.gfk-hero-disciplines { animation: gfk-fade-up 0.6s var(--ease, ease) 0.42s both; }
.gfk-hero-ctas   { animation: gfk-fade-up 0.6s var(--ease, ease) 0.54s both; }
.gfk-hero-emblem { animation: gfk-spin-in 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both; }

/* Pulse ring on primary CTA */
body.theme-gfk .btn-primary {
  animation: gfk-pulse-ring 2.6s ease-out 1.2s 3;
}

/* ── Scroll reveal ── */
.gfk-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gfk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gfk-reveal-delay-1 { transition-delay: 0.1s; }
.gfk-reveal-delay-2 { transition-delay: 0.2s; }
.gfk-reveal-delay-3 { transition-delay: 0.3s; }
.gfk-reveal-delay-4 { transition-delay: 0.4s; }

/* Section title underline shimmer */
.gfk-section-title {
  background: linear-gradient(90deg, var(--text) 0%, var(--text) 40%, var(--gold-bright) 50%, var(--text) 60%, var(--text) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gfk-shimmer 5s linear infinite;
  animation-play-state: paused;
}

.gfk-section-title.is-visible {
  animation-play-state: running;
}

/* Disc card hover lift already defined — add glow on hover */
.gfk-disc-card:hover {
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.22);
}

/* Trust card entrance stagger */
.gfk-trust-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gfk-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.18);
}

/* Price card hover */
.gfk-price-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gfk-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.gfk-price-card.is-featured:hover {
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.3);
}

/* Instructor card hover */
.gfk-instructor-card {
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.gfk-instructor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, 0.5);
}

/* Social link hover already set — add scale */
.gfk-social-link {
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.gfk-social-link:hover {
  transform: translateY(-2px);
}

/* WA FAB entrance */
.wa-fab {
  animation: gfk-scale-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

@media (prefers-reduced-motion: reduce) {
  .gfk-hero-badge, .gfk-hero h1, .gfk-hero-tagline,
  .gfk-hero-disciplines, .gfk-hero-ctas, .gfk-hero-emblem,
  .gfk-reveal, .gfk-section-title, .wa-fab {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Mobile-first overrides (≤599px) ── */
@media (max-width: 599px) {

  /* Header: tighter, brand text smaller */
  .header-inner { gap: 0.75rem; min-height: 3.5rem; }
  body.theme-gfk .brand strong { font-size: 1.05rem; }
  body.theme-gfk .brand span { display: none; }
  .brand-logo { width: 34px; height: 34px; }

  /* Hero: shorter, no decorative emblem, h1 fits screen */
  .gfk-hero { min-height: 0; padding: 2.5rem 0 2rem; }
  .gfk-hero h1 { font-size: clamp(2.6rem, 13vw, 3.5rem); }
  .gfk-hero-tagline { font-size: 1rem; margin-bottom: 1.25rem; }
  .gfk-hero-emblem { display: none; }
  .gfk-hero-inner { gap: 0; }
  .gfk-hero-badge { font-size: 0.65rem; margin-bottom: 0.85rem; }
  .gfk-hero-disciplines { gap: 0.4rem; margin-bottom: 1.25rem; }
  .gfk-discipline-pill { font-size: 0.72rem; padding: 0.28rem 0.7rem; }

  /* CTAs: stack full-width */
  .gfk-hero-ctas { flex-direction: column; }
  .gfk-hero-ctas .btn { width: 100%; justify-content: center; }

  /* Sections: tighter vertical rhythm */
  .gfk-section { padding: 2rem 0; }
  .gfk-section-sub { margin-bottom: 1.5rem; font-size: 0.9rem; }

  /* Disc cards: slightly more compact padding */
  .gfk-disc-card { padding: 1.15rem 1.1rem; }
  .gfk-disc-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

  /* Trust grid: 2-col on phones (4 cards → 2×2) */
  .gfk-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gfk-trust-card { padding: 1rem 0.9rem; }
  .gfk-trust-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .gfk-trust-title { font-size: 0.85rem; }
  .gfk-trust-desc { font-size: 0.78rem; }

  /* Social links: full width */
  .gfk-social-row { flex-direction: column; align-items: stretch; }
  .gfk-social-link { justify-content: center; }

  /* Pricing: single column already — adjust padding and price size */
  .gfk-price-card { padding: 1.35rem 1.2rem; }
  .gfk-price-amount strong { font-size: 2.2rem; }

  /* Instructor photo: taller on mobile for portrait photos */
  .gfk-instructor-photo { height: 260px; }

  /* Gallery: 2-col already set, ensure tap area is comfortable */
  .gfk-gallery-grid { gap: 0.5rem; }

  /* Contact split: already single-col — tighten spacing */
  .gfk-map-box { height: 180px; }
  .gfk-social-panel { margin-top: 1.25rem; }
  .gfk-social-panel .gfk-social-link { margin-bottom: 0; }

  /* Drop-in note: tighter */
  .gfk-drop-in-note { padding: 1rem 1.1rem; font-size: 0.86rem; }

  /* Footer */
  body.theme-gfk .site-footer { text-align: center; flex-direction: column; }

  /* Page-head titles on sub-pages */
  .page-head h1 { font-size: clamp(1.75rem, 9vw, 2.5rem) !important; }

  /* WA FAB: nudge away from screen edge */
  .wa-fab { bottom: 1rem; inset-inline-end: 0.85rem; }
}
