/* =====================================================
   Icon BJJ Mafra | style.css
   Used by /academies/mafra/ and /academies/mafra/en/
   Managed by Dettogni
===================================================== */

/* =====================================================
   FONTS | self-hosted, /fonts/ at repo root
===================================================== */
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('/fonts/syne-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-300-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Syne Fallback';
  src: local('Arial');
  size-adjust: 108%; ascent-override: 95%; descent-override: 25%; line-gap-override: 0%;
}
@font-face {
  font-family: 'DM Sans Fallback';
  src: local('Arial');
  size-adjust: 104%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%;
}

/* =====================================================
   DESIGN TOKENS | shared with Icon BJJ network
===================================================== */
:root {
  --canvas:       #F5F2EE;
  --canvas-deep:  #EDE9E3;
  --canvas-warm:  #E8E3DB;
  --ink:          #1A2B3C;
  --ink-mid:      #3D4F60;
  --ink-light:    #7A8A96;
  --accent:       #C4571A;
  --accent-hover: #A84514;
  --accent-pale:  #F5E9E2;
  --white:        #FEFCFA;

  --ff-display: 'Syne', 'Syne Fallback', sans-serif;
  --ff-body:    'DM Sans', 'DM Sans Fallback', sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 20px rgba(26, 43, 60, 0.08);
  --shadow-lift: 0 8px 36px rgba(26, 43, 60, 0.13);

  --max-w:    1280px;
  --side-pad: clamp(1.25rem, 5vw, 3rem);
}

/* =====================================================
   BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; touch-action: manipulation; }
::selection { background: var(--accent); color: var(--white); }

/* =====================================================
   TYPOGRAPHY
===================================================== */
.t-display {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.t-display em { font-style: italic; color: var(--accent); }
.t-heading {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.t-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  position: relative;
  z-index: 1;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 87, 26, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-arrow::after {
  content: '→';
  font-family: var(--ff-body);
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =====================================================
   SKIP LINK
===================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* Screen-reader only (visually hidden) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   NAVIGATION
===================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  padding: 0.5rem 0;
}
#nav.scrolled {
  background: rgba(245, 242, 238, 0.88);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom-color: var(--canvas-warm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo .icon-logo { width: 18px; height: 18px; flex-shrink: 0; display: block; border-radius: 3px; }
.nav-logo .global-tag {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-left: 0.75rem;
  margin-left: 0.25rem;
  border-left: 1px solid var(--canvas-warm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-mid);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta {
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* =====================================================
   LANGUAGE TOGGLE (small flags, top-right of nav)
===================================================== */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem;
  border-radius: var(--radius-pill);
  background: rgba(26, 43, 60, 0.04);
}
.nav-lang a,
.nav-lang > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 22px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.nav-lang > span[aria-current="true"] {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(26, 43, 60, 0.12);
  cursor: default;
}
.nav-lang a { opacity: 0.55; }
.nav-lang a:hover, .nav-lang a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-lang .lang-flag {
  width: 20px;
  height: 14px;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(26, 43, 60, 0.08);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
}
.nav-hamburger span { width: 22px; height: 1.8px; background: var(--ink); transition: transform 0.3s ease, opacity 0.3s ease; display: block; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--canvas);
  z-index: 99;
  padding: 5.5rem var(--side-pad) 2rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mobile-menu.open { display: flex; opacity: 1; }
#mobile-menu nav { display: flex; flex-direction: column; gap: 0.3rem; }
#mobile-menu nav a {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--canvas-warm);
  letter-spacing: -0.01em;
  min-height: 56px;
  display: flex;
  align-items: center;
}
#mobile-menu nav a:last-child { color: var(--accent); border-bottom: none; }
#mobile-menu nav a[aria-current="page"] { color: var(--accent); }
.mob-foot {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding-top: 2rem;
}
.mob-lang {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--canvas-warm);
}
.mob-lang a, .mob-lang > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mob-lang > span[aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}
.mob-lang a {
  background: var(--canvas-warm);
  color: var(--ink);
}
.mob-lang .lang-flag { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(26, 43, 60, 0.08); }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand .nav-logo .global-tag { color: rgba(255, 255, 255, 0.55); border-left-color: rgba(255, 255, 255, 0.15); }
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); line-height: 1.65; max-width: 300px; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .social { display: flex; gap: 1.25rem; }
.footer-bottom .social a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom .social a:hover { color: var(--accent); }
.footer-keep {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem var(--side-pad);
  text-align: center;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
}
.footer-keep a { color: rgba(255, 255, 255, 0.46); transition: color 0.2s ease; }
.footer-keep a:hover { color: var(--white); }

/* =====================================================
   BREADCRUMB
===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--ink-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }

/* =====================================================
   HERO
===================================================== */
#hero {
  padding: 7rem 0 4rem;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-text .t-display {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  margin: 0.5rem 0 1.5rem;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  gap: 0.85rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta a { color: var(--ink-mid); }
.hero-meta a:hover { color: var(--accent); }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--canvas-deep);
  box-shadow: var(--shadow-lift);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image.placeholder::before {
  content: 'Foto em breve';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-family: var(--ff-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* =====================================================
   SECTIONS
===================================================== */
section.page-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
section.page-section.alt { background: var(--canvas-deep); }
.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0.5rem 0 0.75rem;
}
.section-head p {
  color: var(--ink-mid);
  font-size: 1rem;
}

.prose p {
  color: var(--ink-mid);
  font-size: 1rem;
  max-width: 68ch;
  margin-bottom: 1rem;
}
.prose a { color: var(--accent); border-bottom: 1px solid rgba(196, 87, 26, 0.3); }
.prose a:hover { border-bottom-color: var(--accent); }

/* =====================================================
   INSTRUCTOR CARD
===================================================== */
.instructor-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}
.instructor-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--canvas-deep);
  position: relative;
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-photo.placeholder::before {
  content: 'Foto em breve';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-family: var(--ff-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.instructor-bio h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.instructor-rank {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.instructor-bio p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.instructor-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.instructor-titles li {
  background: var(--canvas-deep);
  color: var(--ink-mid);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

/* =====================================================
   CLASSES GRID
===================================================== */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.class-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.class-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.class-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}
.class-age {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.class-card p:not(.class-age) {
  color: var(--ink-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}
.class-card em { color: var(--ink-light); font-style: italic; }

/* =====================================================
   SCHEDULE TABLE
===================================================== */
.schedule-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-family: var(--ff-body);
}
.schedule-table caption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.schedule-table th, .schedule-table td {
  padding: 0.75rem 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--canvas-warm);
}
.schedule-table thead th {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 2px solid var(--canvas-warm);
}
.schedule-table tbody th {
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.schedule-table tbody td { color: var(--ink-mid); }
.schedule-table tbody td:empty::after { content: '·'; color: var(--ink-light); }
.schedule-legend {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-light);
}
.schedule-legend strong { color: var(--ink-mid); }
.schedule-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  color: var(--ink-mid);
}
.schedule-placeholder em { color: var(--ink-light); }

/* =====================================================
   FAQ
===================================================== */
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--canvas-warm);
}
.faq-item a { color: var(--accent); }
.faq-item a:hover { text-decoration: underline; }

/* =====================================================
   LOCATION + MAP
===================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: start;
}
.location-details {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.location-address {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.location-address strong {
  display: block;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.location-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.82rem;
}
.location-actions a:hover { text-decoration: underline; }
.location-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--canvas-warm);
  color: var(--ink-light);
  font-size: 0.85rem;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  background: var(--canvas-deep);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* =====================================================
   CONTACT
===================================================== */
.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 900px;
}
.contact-list li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.contact-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
}
.contact-list a {
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.95rem;
  word-break: break-word;
}
.contact-list a:hover { color: var(--accent); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .instructor-card { grid-template-columns: 1fr; }
  .instructor-photo { max-width: 260px; }
  .location-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang { margin-left: auto; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 24px; }
  #hero { padding: 6rem 0 3rem; }
  section.page-section { padding: 3rem 0; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .social { justify-content: center; }
  #mobile-menu nav a { font-size: 1.5rem; }
  .instructor-card { padding: 1.25rem; }
}
