@charset "UTF-8";

/* ═══════════════════════════════════════════════════════════
   Nhà Văn Hóa — Main Stylesheet
   Matching HTML preview exactly with extended template styles
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --bg:       #f7f3ea;
  --paper:    #fffaf1;
  --ink:      #1c1b18;
  --muted:    #716b5f;
  --brand:    #d5452f;
  --brand2:   #f2a33a;
  --green:    #16624f;
  --blue:     #253e7d;
  --line:     rgba(28, 27, 24, .12);
  --shadow:   0 24px 80px rgba(44, 35, 20, .14);
  --shadow-sm:0 8px 24px rgba(28, 27, 24, .08);
  --radius:   28px;
  --radius2:  18px;
  --radius3:  12px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 32px));
  --transition: .2s ease;
  /* Aliases for compatibility */
  --border:     rgba(28, 27, 24, .12);
  --ink-light:  #9b8f7e;
  --ink-mid:    #716b5f;
  --cream-dark: #ede8dc;
  --yellow:     #f59e0b;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────── */
.wrap { width: var(--wrap); margin: 0 auto; }

/* ── Topbar ─────────────────────────────────────────── */
.topbar {
  background: #1c1b18;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
.topbar span { opacity: .82; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(213, 69, 47, .28);
  flex-shrink: 0;
}
.site-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Nav menu */
.primary-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu a {
  color: #3c382f;
  font-weight: 700;
  font-size: 14px;
  transition: color var(--transition);
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--brand); }

/* Buttons */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(28,27,24,.12); }
.btn.btn-primary { background: var(--ink); color: #fff; }
.btn.btn-brand   { background: var(--brand); color: #fff; box-shadow: 0 14px 30px rgba(213, 69, 47, .24); }
.btn.btn-outline { background: transparent; border: 2px solid var(--line); box-shadow: none; }
.btn.btn-white   { background: #fff; color: var(--ink); }
.btn.btn-lg      { padding: 16px 28px; font-size: 16px; }
.btn.btn-sm      { padding: 9px 14px; font-size: 13px; }

.btn-full { width: 100%; justify-content: center; }
.btn-outline-sm { background: transparent; border: 1.5px solid var(--line); box-shadow: none; padding: 10px 16px; font-size: 13px; }
.form-disclaimer { font-size: 12px; color: var(--muted); margin: 10px 0 0; text-align: center; line-height: 1.5; }
.form-section-label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 14px; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.checkbox-label input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-hamburger { display: none; }

/* ── Mobile Menu ────────────────────────────────────── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,27,24,.6);
  z-index: 200;
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--paper);
  z-index: 201;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu-panel.open { transform: translateX(0); }
.mobile-menu-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.mobile-menu-panel .primary-menu {
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.mobile-menu-panel .primary-menu a {
  font-size: 18px;
  padding: 10px 0;
  display: block;
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
  padding: 64px 0 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -140px -120px auto auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,163,58,.36), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,241,.75);
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.075em;
  margin: 0 0 18px;
  font-weight: 900;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 26px;
}

/* Search box */
.searchbox {
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  gap: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.search-field {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition);
}
.search-field:hover { background: #ede8dc; }
.search-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  color: #9b6b28;
  letter-spacing: .08em;
  margin-bottom: 6px;
  pointer-events: none;
}
.search-field input,
.search-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  padding: 0;
}
.search-field select { cursor: pointer; }

/* Quick tags */
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.quick-tag {
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #544e43;
  font-weight: 700;
  font-size: 13px;
  transition: all var(--transition);
  cursor: pointer;
}
.quick-tag:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-phone {
  position: absolute;
  right: 0;
  top: 26px;
  width: 310px;
  background: #171611;
  border-radius: 38px;
  padding: 13px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  transform: rotate(3deg);
}
.hero-screen {
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
}
.hero-screen-head {
  padding: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
}
.hero-screen-head b { display: block; font-size: 24px; letter-spacing: -.05em; }
.hero-screen-body { padding: 16px; display: grid; gap: 12px; }
.mini-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
}
.mini-thumb {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #253e7d, #81b29a);
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
}
.mini-card:nth-child(2) .mini-thumb { background: linear-gradient(135deg, var(--brand), var(--brand2)); }
.mini-card:nth-child(3) .mini-thumb { background: linear-gradient(135deg, var(--green), var(--brand2)); }
.mini-card b { display: block; font-size: 14px; margin-bottom: 4px; }
.mini-card span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.hero-poster {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 330px;
  background: var(--green);
  border-radius: 34px;
  padding: 22px;
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}
.hero-poster-art {
  height: 170px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.06)), url('https://images.unsplash.com/photo-1528605105345-5344ea20e269?auto=format&fit=crop&w=900&q=80') center/cover;
  margin-bottom: 18px;
}
.hero-poster h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -.04em;
}
.hero-poster p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.5; }

.hero-floating {
  position: absolute;
  right: 230px;
  bottom: 5px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: var(--blue);
  font-size: 15px;
}

/* ── Sections ───────────────────────────────────────── */
.section { padding: 54px 0; }
.section-alt { background: var(--paper); }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 0;
  font-weight: 900;
}
.section-head p {
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* ── Grids ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Event Card ─────────────────────────────────────── */
.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(44,35,20,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(44,35,20,.12);
}

/* ── event-card template-part BEM ─────────────────────────── */
.event-card__image-link {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.event-card:hover .event-card__image { transform: scale(1.05); }
.event-card__image--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c1c0c 0%, var(--brand) 60%, #f2a33a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.event-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.badge--green  { background: #253e7d; }
.badge--red    { background: var(--brand); }
.badge--gray   { background: var(--muted); }
.badge--white  { background: rgba(255,255,255,.92); color: var(--ink); backdrop-filter: blur(4px); }
.event-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card__date,
.event-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin: 6px 0 8px;
  flex: 1;
}
.event-card__title a { color: var(--ink); text-decoration: none; }
.event-card__title a:hover { color: var(--brand); }
.event-card__excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 14px; }
.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.event-card__price { font-weight: 800; font-size: 14px; color: var(--brand); }
.free-badge { color: var(--green); font-weight: 800; font-size: 14px; }
.event-card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand);
}
.event-status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}
.event-card-body { padding: 18px; }
.event-meta {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -.04em;
  line-height: 1.18;
  margin: 0 0 10px;
  font-weight: 800;
}
.event-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

/* ── Category Cards ─────────────────────────────────── */
.cat-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  text-decoration: none;
}
.cat-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-icon { font-size: 30px; margin-bottom: 10px; }
.cat-card b {
  display: block;
  font-size: 17px;
  letter-spacing: -.03em;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-display);
}
.cat-card span { color: var(--muted); font-size: 13px; line-height: 1.45; }

/* ── Venue Card ─────────────────────────────────────── */
.venue-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: all var(--transition);
}
.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(28,27,24,.2);
}
.venue-thumb {
  height: 130px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.venue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.venue-info { display: flex; flex-direction: column; justify-content: center; }
.venue-info h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.04em;
  font-weight: 800;
  color: var(--ink);
}
.venue-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px;
}
.venue-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: #6a5c49;
}

/* ── Class Card ─────────────────────────────────────── */
.class-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(44,35,20,.06);
  transition: all var(--transition);
}
.class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.class-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.class-card-body { padding: 18px; }
.class-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}
.class-meta { font-size: 13px; color: var(--muted); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.class-meta strong { color: var(--brand); }

/* ── CLB Card ───────────────────────────────────────── */
.clb-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--transition);
}
.clb-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.clb-icon { font-size: 36px; margin-bottom: 14px; }
.clb-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}
.clb-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 14px; }
.clb-meta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.clb-meta-item { font-size: 12px; font-weight: 700; color: var(--green); }

/* ── Split / Partner CTA ────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.dark-panel {
  background: #1c1b18;
  color: #fff;
  border-radius: 34px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.dark-panel::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(242,163,58,.5), transparent 68%);
  pointer-events: none;
}
.dark-panel h2 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.06em;
  margin: 0 0 14px;
  font-weight: 900;
}
.dark-panel p { color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 24px; }

.steps-list { display: grid; gap: 14px; }
.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
}
.step-item h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.step-item p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

/* ── CTA Bottom ─────────────────────────────────────── */
.cta-section { padding: 70px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-radius: 42px;
  color: #fff;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 25px 80px rgba(213,69,47,.24);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.06em;
  margin: 0 0 12px;
  font-weight: 900;
}
.cta-box p { margin: 0; color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.6; }

/* ── Single Post Layout ─────────────────────────────── */
.single-hero {
  padding: 40px 0 0;
}
.single-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 40px 0 60px;
  align-items: start;
}
.single-main {}
.single-sidebar {}

.single-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.single-featured-img-bg {
  height: 440px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
}

.single-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.06em;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 900;
}
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2c27;
}
.entry-content h2, .entry-content h3 {
  font-family: var(--font-display);
  letter-spacing: -.04em;
  margin-top: 32px;
}
.entry-content p { margin: 0 0 16px; }
.entry-content ul, .entry-content ol { padding-left: 20px; }
.entry-content li { margin-bottom: 8px; }

/* Sidebar box */
.sidebar-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 22px;
  margin-bottom: 20px;
}
.sidebar-box h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: var(--ink);
}
.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.info-row .icon-label {
  flex-shrink: 0;
  width: 20px;
  font-size: 16px;
}
.info-row strong { color: var(--ink); display: block; font-size: 13px; }
.info-row span { color: var(--muted); }

/* Tag list */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #544e43;
}
.tag-item.active, .tag-item:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ── Archive ─────────────────────────────────────────── */
.archive-hero {
  padding: 48px 0 32px;
  background: var(--bg);
}
.archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 0 0 12px;
  font-weight: 900;
}
.archive-hero p { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0; }

.archive-filter {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 76px;
  z-index: 50;
}
.filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23716b5f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.filter-search {
  flex: 1;
  max-width: 280px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.filter-search:focus { border-color: var(--brand); }

.archive-content { padding: 40px 0 60px; }

/* ── Forms ──────────────────────────────────────────── */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-section {
  padding: 60px 0;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.05em;
  margin: 0 0 8px;
}
.form-subtitle { font-size: 15px; color: var(--muted); margin: 0 0 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group .required { color: var(--brand); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius3);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: #fff;
}
.form-group textarea { min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius3);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; }
.form-message.error   { background: #fee2e2; color: #991b1b; }
.form-message.show    { display: block; }
.form-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  justify-content: center;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  gap: 16px;
}
.faq-question:hover { color: var(--brand); }
.faq-question .faq-icon { flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ── Gallery ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: var(--radius2);
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid .gallery-item-1 { grid-column: span 2; }
.gallery-grid .gallery-item-1 img { height: 280px; }

/* ── Map embed ───────────────────────────────────────── */
.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.breadcrumb .wrap {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb span:last-child { color: var(--ink); font-weight: 700; }

/* ── Badge ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .02em;
}

/* ── Related section ─────────────────────────────────── */
.related-section { padding: 48px 0; background: var(--bg); }

/* ── Pagination ──────────────────────────────────────── */
.nvh-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.nvh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: all var(--transition);
}
.nvh-pagination .page-numbers.current,
.nvh-pagination .page-numbers:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nvh-pagination .prev, .nvh-pagination .next {
  width: auto;
  padding: 0 18px;
  border-radius: 999px;
}
.nvh-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.nvh-load-more[disabled] {
  cursor: wait;
  opacity: .7;
}

/* ── Footer ──────────────────────────────────────────── */
/* ── Footer CTA strip ────────────────────────────────────── */
.footer-cta {
  background: var(--brand);
  padding: 32px 0;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
}
.footer-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin: 0;
}

/* ── Footer main ─────────────────────────────────────────── */
.site-footer {
  background: #13120f;
  color: #fff;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}
.footer-brand__logo .logo-mark {
  width: 38px; height: 38px;
  background: var(--brand);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
}
.footer-brand__logo img { height: 36px; width: auto; }
.footer-brand__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
  max-width: 300px;
}
.footer-contact-list { list-style: none; margin: 0 0 20px; padding: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-contact-list li:last-child { margin-bottom: 0; }
.footer-contact-list a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list__icon { flex-shrink: 0; margin-top: 1px; opacity: .7; }

.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1;
  padding: 5px 0;
  text-decoration: none;
  transition: color .18s;
}
.footer-col a:hover { color: #fff; }
.footer-col__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom__copy {
  color: rgba(255,255,255,.35);
  font-size: 13px;
  margin: 0;
}
.footer-bottom__links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-bottom__links a {
  color: rgba(255,255,255,.35);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,.7); }

/* Sitemap */
.sitemap-page {
  background: #f7f4ed;
  color: var(--ink);
}
.sitemap-hero {
  padding: 74px 0 42px;
  background: linear-gradient(135deg, #fffaf1 0%, #edf6f2 100%);
  border-bottom: 1px solid rgba(28,27,24,.08);
}
.sitemap-hero h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 18px;
}
.sitemap-hero p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.sitemap-content {
  padding: 48px 0 72px;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sitemap-card {
  background: #fff;
  border: 1px solid rgba(28,27,24,.08);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 38px rgba(28,27,24,.06);
}
.sitemap-card h2 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.25;
}
.sitemap-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sitemap-card a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}
.sitemap-card a:hover {
  color: var(--brand);
}

/* ── Admin CSS ───────────────────────────────────────── */
.nvh-admin-notice {
  background: #fffaf1;
  border-left: 4px solid #d5452f;
  padding: 12px 16px;
  margin: 14px 0;
}

/* ── Utility ─────────────────────────────────────────── */
.text-brand  { color: var(--brand); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.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;
}

/* ── Loading / Spinner ───────────────────────────────── */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Animation ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp .6s ease both; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .single-content-grid { grid-template-columns: 1fr 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; gap: 40px; flex-wrap: wrap; }
  .footer-brand__desc { max-width: 360px; }
}

@media (max-width: 980px) {
  .primary-menu, .nav-actions .btn:not(.btn-primary) { display: none; }
  .btn-hamburger {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    background: var(--ink);
    color: #fff;
  }
  .hero-grid, .split-section, .cta-box { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: auto; flex-direction: column; }
  .searchbox { grid-template-columns: 1fr; }
  .searchbox .btn { justify-content: center; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-phone { right: 20px; }
  .hero-poster { left: 20px; }
  .single-content-grid { grid-template-columns: 1fr; }
  .single-sidebar { order: -1; }
}

@media (max-width: 640px) {
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar span:last-child { display: none; }
  .site-nav { height: 66px; }
  .site-logo { font-size: 18px; }
  .logo-mark { width: 36px; height: 36px; font-size: 17px; }
  .nav-actions { margin-left: auto; flex-shrink: 0; }
  .nav-actions > a.btn-primary { display: none; }
  .btn-hamburger {
    display: inline-flex !important;
    position: fixed;
    right: 16px;
    top: 51px;
    z-index: 150;
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    background: var(--ink);
    color: #fff;
  }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-visual { min-height: 430px; }
  .hero-phone { width: 230px; right: -8px; top: 28px; }
  .hero-screen { min-height: 390px; }
  .hero-poster { width: 230px; left: -4px; bottom: 34px; padding: 15px; border-radius: 24px; }
  .hero-poster-art { height: 110px; border-radius: 18px; }
  .hero-poster h3 { font-size: 20px; }
  .hero-floating { right: 88px; bottom: 0; font-size: 12px; padding: 10px 14px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .venue-card { grid-template-columns: 1fr; }
  .venue-thumb { height: 190px; }
  .dark-panel, .cta-box { border-radius: 28px; padding: 26px; }
  .dark-panel h2, .cta-box h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta__inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn { padding: 12px 15px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item-1 { grid-column: span 2; }
  .archive-filter { top: 66px; }
}

/* ================================================
   ADDITIONAL PAGES & COMPONENTS
   ================================================ */

/* --- Error 404 --- */
.section--tall { padding: 100px 0; }
.error-404 { text-align: center; max-width: 560px; margin: 0 auto; }
.error-404__number { font-size: 120px; font-weight: 800; color: var(--brand); line-height: 1; display: block; font-family: var(--font-display); }
.error-404__title { font-size: 32px; margin: 12px 0 16px; }
.error-404__desc { color: var(--ink-light); font-size: 17px; margin-bottom: 32px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-404__suggestions-title { font-weight: 600; margin-bottom: 12px; color: var(--ink-mid); }
.error-404__links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.error-404__links a { background: #fff; border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 14px; color: var(--ink); text-decoration: none; transition: border-color .2s, color .2s; }
.error-404__links a:hover { border-color: var(--brand); color: var(--brand); }

/* --- Search page --- */
.search-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.search-bar__input { flex: 1; min-width: 220px; height: 48px; border: 1.5px solid var(--border); border-radius: 12px; padding: 0 16px; font-size: 15px; background: #fff; }
.search-bar__select { height: 48px; border: 1.5px solid var(--border); border-radius: 12px; padding: 0 16px; font-size: 15px; background: #fff; }
.search-count { font-size: 15px; color: var(--ink-mid); margin-bottom: 28px; }
.search-results { display: flex; flex-direction: column; gap: 20px; }
.search-result-item { display: flex; gap: 20px; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1.5px solid var(--border); }
.search-result-item__image { width: 200px; flex-shrink: 0; overflow: hidden; }
.search-result-item__image img { width: 100%; height: 100%; object-fit: cover; }
.search-result-item__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.search-result-item__meta { display: flex; gap: 10px; align-items: center; }
.search-result-item__location { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ink-mid); }
.search-result-item__title { font-size: 20px; font-weight: 700; margin: 0; }
.search-result-item__title a { color: var(--ink); text-decoration: none; }
.search-result-item__title a:hover { color: var(--brand); }
.search-result-item__excerpt { color: var(--ink-light); font-size: 14px; line-height: 1.6; flex: 1; }
.archive-hero__search { margin-top: 24px; }

/* --- Single templates shared --- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.info-box { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 20px; text-align: center; }
.info-box--highlight { background: var(--brand); border-color: var(--brand); color: #fff; }
.info-box--warn { border-color: var(--yellow); background: #fff8ec; }
.info-box__icon { font-size: 24px; margin-bottom: 6px; }
.info-box__label { font-size: 12px; color: var(--ink-mid); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
.info-box--highlight .info-box__label { color: rgba(255,255,255,.75); }
.info-box__value { font-weight: 700; font-size: 16px; }
.info-box--highlight .info-box__value { font-size: 18px; }
.instructor-box { background: var(--cream-dark); border-radius: 16px; padding: 22px; margin: 28px 0; }
.instructor-box h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mid); margin: 0 0 8px; }
.instructor-box__name { font-weight: 700; font-size: 18px; }
.related-venue-box { margin: 28px 0; }
.related-venue-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.related-venue-link { display: flex; gap: 16px; align-items: center; background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 16px; text-decoration: none; color: var(--ink); transition: border-color .2s; }
.related-venue-link:hover { border-color: var(--brand); }
.related-venue-link img { width: 80px; height: 60px; object-fit: cover; border-radius: 10px; }
.related-venue-link strong { display: block; font-size: 15px; margin-bottom: 4px; }
.related-venue-link span { font-size: 13px; color: var(--ink-mid); }
.registration-section { margin-top: 48px; }
.registration-section h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.sidebar-cta__price { font-size: 26px; font-weight: 800; color: var(--brand); }
.sidebar-cta__note { font-size: 13px; color: var(--ink-mid); margin: 4px 0 16px; }
.sidebar-box--cta { background: var(--green); color: #fff; }
.sidebar-box--cta h4 { color: #fff; }
.sidebar-box--cta p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; }
.related-faq-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.related-faq-list li a { color: var(--ink); text-decoration: none; font-size: 14px; line-height: 1.5; display: block; padding: 8px 0; border-bottom: 1px solid var(--border); }
.related-faq-list li a:hover { color: var(--brand); }

/* FAQ single */
.faq-single__question { font-size: 28px; font-weight: 800; line-height: 1.3; margin: 12px 0 20px; }
.faq-single__asker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 14px; color: var(--ink-mid); }
.faq-single__asker-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.faq-single__answer { background: #fff; border-radius: 20px; padding: 28px; border: 1.5px solid var(--border); }
.faq-single__tags { margin-bottom: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.faq-ask-more { margin-top: 40px; background: var(--cream-dark); border-radius: 20px; padding: 28px; }
.faq-ask-more h3 { font-size: 20px; margin-bottom: 8px; }
.faq-ask-more p { font-size: 14px; color: var(--ink-mid); margin-bottom: 20px; }
.section-top-link { margin-top: 40px; padding-top: 20px; border-top: 1.5px solid var(--border); }
.section-top-link a { color: var(--brand); text-decoration: none; font-weight: 600; font-size: 15px; }

/* --- Page layouts --- */
.page-hero { padding: 60px 0 48px; }
.page-hero--simple { background: #fff; border-bottom: 1.5px solid var(--border); }
.page-hero--about { background: linear-gradient(135deg, #f7f3ea 60%, #f2e8d6); }
.page-hero--green { background: var(--green); color: #fff; }
.page-hero__eyebrow { display: inline-block; background: rgba(255,255,255,.2); color: #fff; border-radius: 100px; padding: 4px 14px; font-size: 13px; margin-bottom: 10px; }
.page-hero__title { font-size: 44px; font-weight: 900; margin: 8px 0 12px; }
.page-hero--green .page-hero__title { color: #fff; }
.page-hero__desc { font-size: 18px; color: var(--ink-mid); max-width: 600px; }
.page-hero--green .page-hero__desc { color: rgba(255,255,255,.85); }
.page-hero__title,
.page-hero__desc,
.benefit-item p,
.register-venue-form-col,
.register-venue-info-col {
  overflow-wrap: break-word;
}
.page-content-layout { max-width: 800px; margin: 0 auto; }
.page-featured-image { margin-bottom: 32px; border-radius: 20px; overflow: hidden; }
.prose { line-height: 1.8; font-size: 16px; color: var(--ink); }
.prose h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--brand); text-decoration: underline; }

/* About page */
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-mission__text { display: flex; flex-direction: column; gap: 16px; }
.about-mission__text h2 { font-size: 36px; font-weight: 900; margin: 0; }
.about-mission__text p { font-size: 16px; line-height: 1.8; color: var(--ink-light); margin: 0; }
.about-mission__image img { width: 100%; border-radius: 24px; height: 380px; object-fit: cover; }
.section--brand { background: var(--brand); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item__number { font-size: 52px; font-weight: 900; color: #fff; font-family: var(--font-display); line-height: 1; }
.stat-item__label { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; }
.value-card { background: #fff; border-radius: 20px; padding: 28px; border: 1.5px solid var(--border); }
.value-card__icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.value-card p { font-size: 14px; line-height: 1.7; color: var(--ink-light); margin: 0; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-col h2, .contact-info-col h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.contact-form-col > p, .contact-info-col > p { font-size: 15px; color: var(--ink-mid); margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item__icon { font-size: 24px; width: 44px; height: 44px; background: var(--cream-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item__label { font-size: 12px; color: var(--ink-mid); text-transform: uppercase; letter-spacing: .04em; }
.contact-info-item__value { font-weight: 700; font-size: 16px; color: var(--ink); text-decoration: none; display: block; }
.contact-info-item__value:hover { color: var(--brand); }
.contact-info-item__note { font-size: 12px; color: var(--ink-light); margin-top: 2px; }
.contact-quick-links h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.contact-quick-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-quick-links li a { color: var(--brand); text-decoration: none; font-size: 15px; }
.contact-quick-links li a:hover { text-decoration: underline; }

/* Register venue page */
.register-venue-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.register-venue-form-col h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.register-venue-form-col > p { font-size: 15px; color: var(--ink-mid); margin-bottom: 28px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-item { text-align: center; padding: 24px 16px; }
.benefit-item__icon { font-size: 40px; margin-bottom: 14px; }
.benefit-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.benefit-item p { font-size: 14px; color: var(--ink-light); line-height: 1.6; margin: 0; }
.process-box { background: #fff; border-radius: 20px; padding: 28px; border: 1.5px solid var(--border); margin-bottom: 20px; }
.process-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.process-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.process-list li { display: flex; gap: 16px; }
.process-list__step { width: 36px; height: 36px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.process-list li strong { font-size: 15px; display: block; margin-bottom: 4px; }
.process-list li p { font-size: 13px; color: var(--ink-mid); margin: 0; }
.contact-support-box { background: var(--cream-dark); border-radius: 16px; padding: 22px; }
.contact-support-box > p { font-size: 14px; color: var(--ink-mid); margin-bottom: 12px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: 15px; display: flex; align-items: center; gap: 10px; }

/* Legal pages */
.legal-layout { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; color: var(--ink); }
.legal-content p, .legal-content ul, .legal-content li { font-size: 15px; line-height: 1.8; color: var(--ink-light); }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--brand); }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }

/* Post cards (blog) */
.post-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.05); }
.post-card__image { display: block; overflow: hidden; height: 200px; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card__image img { transform: scale(1.05); }
.post-card__body { padding: 22px; }
.post-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.post-card__date { font-size: 12px; color: var(--ink-mid); }
.post-card__title { font-size: 18px; font-weight: 700; margin: 0 0 10px; line-height: 1.4; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { font-size: 14px; color: var(--ink-light); line-height: 1.6; margin-bottom: 16px; }

/* Forms */
.form-section-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mid); margin: 28px 0 16px; padding-bottom: 8px; border-bottom: 1.5px solid var(--border); }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 15px; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; }
.form-disclaimer { font-size: 12px; color: var(--ink-mid); text-align: center; margin-top: 12px; }

/* Cards – class-card */
.class-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.05); display: flex; flex-direction: column; }
.class-card__image-link { position: relative; display: block; height: 200px; overflow: hidden; }
.class-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.class-card:hover .class-card__image { transform: scale(1.04); }
.class-card__image--placeholder { background: linear-gradient(135deg, #f0ebe0, #e8e0d5); display: flex; align-items: center; justify-content: center; font-size: 48px; width: 100%; height: 100%; }
.class-card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.class-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.class-card__title { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.4; }
.class-card__title a { color: var(--ink); text-decoration: none; }
.class-card__title a:hover { color: var(--brand); }
.class-card__schedule, .class-card__age { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--ink-mid); }
.class-card__excerpt { font-size: 13px; color: var(--ink-light); line-height: 1.6; flex: 1; }
.class-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.class-card__price { font-size: 15px; font-weight: 700; color: var(--brand); }
.free-badge { background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 100px; }

/* Venue card extra */
.venue-card__amenities { display: flex; gap: 6px; flex-wrap: wrap; margin: 4px 0; }
.venue-card__price { font-size: 14px; font-weight: 700; color: var(--brand); }
.amenity-icon { font-size: 18px; }
.amenity-more { font-size: 12px; color: var(--ink-mid); }

/* Amenity chips */
.amenities-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-chip { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 14px; font-weight: 600; }

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { background: var(--cream-dark); color: var(--ink); border-radius: 100px; padding: 5px 14px; font-size: 13px; text-decoration: none; border: 1.5px solid transparent; transition: border-color .2s, background .2s; }
.tag-cloud a:hover { border-color: var(--brand); color: var(--brand); background: #fff; }

/* Instructor */
.section-content { margin: 28px 0; }

/* Info list */
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.info-list li { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-list li span { color: var(--ink-mid); }
.info-list li strong { text-align: right; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state__icon { font-size: 56px; margin-bottom: 16px; }
.empty-state__title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.empty-state__desc { font-size: 16px; color: var(--ink-mid); margin-bottom: 28px; }
.empty-state__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* btn-full */
.btn-full { width: 100%; justify-content: center; }

/* Remote image fallback – used in JS */
.nvh-remote-thumb { width: 100%; height: 100%; object-fit: cover; }

/* Responsive additions */
@media (max-width: 1024px) {
  .about-mission { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout, .register-venue-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .search-result-item { flex-direction: column; }
  .search-result-item__image { width: 100%; height: 180px; }
  .page-hero { padding: 42px 0 36px; }
  .page-hero .wrap,
  .section .wrap:has(.benefits-grid),
  .section .wrap:has(.register-venue-layout) {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }
  .page-hero__title {
    font-size: 30px;
    line-height: 1.18;
  }
  .page-hero__desc { font-size: 16px; }
  .stat-item__number { font-size: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; }
  .benefit-item { padding-left: 0; padding-right: 0; }
  .process-box,
  .contact-support-box { padding: 20px; }
  .error-404__number { font-size: 80px; }
}

/* =============================================================
   CPT PRO UI — Design System v2
   ============================================================= */

/* ── CPT Hero ─────────────────────────────────────────────── */
.cpt-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0 52px;
  isolation: isolate;
}
/* Photo hero: tall, content anchored to bottom */
.cpt-hero--has-img {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cpt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(10,9,7,.20) 0%, rgba(10,9,7,.70) 65%, rgba(10,9,7,.92) 100%);
}
.cpt-hero--has-img::before {
  background: linear-gradient(to top, rgba(10,9,7,.92) 0%, rgba(10,9,7,.50) 50%, rgba(10,9,7,.12) 100%);
}
.cpt-hero__content {
  position: relative;
  z-index: 1;
}
.cpt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cpt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  max-width: 820px;
}
.cpt-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cpt-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.cpt-hero__meta-item svg { opacity: .75; flex-shrink: 0; }

/* Per-CPT gradient backgrounds */
.cpt-hero--su-kien    { background-color: #7c1c0c; background-image: linear-gradient(135deg, #7c1c0c 0%, var(--brand) 60%, #f2a33a 100%); }
.cpt-hero--nha-van-hoa{ background-color: #0a2e25; background-image: linear-gradient(135deg, #0a2e25 0%, var(--green) 60%, #34d399 100%); }
.cpt-hero--lop-hoc    { background-color: #0f2150; background-image: linear-gradient(135deg, #0f2150 0%, var(--blue) 60%, #60a5fa 100%); }
.cpt-hero--cau-lac-bo { background-color: #3b0764; background-image: linear-gradient(135deg, #3b0764 0%, #7c3aed 60%, #a78bfa 100%); }
.cpt-hero--khong-gian { background-color: #111010; background-image: linear-gradient(135deg, #0a0906 0%, #2a2822 60%, #4a4640 100%); }
.cpt-hero--hoi-dap    { background-color: #042f3a; background-image: linear-gradient(135deg, #042f3a 0%, #0891b2 60%, #67e8f9 100%); }

/* When a real photo is present (inline style sets background-image), dial down the overlay */
.cpt-hero--has-img::before {
  background: linear-gradient(to top, rgba(10,9,7,.88) 0%, rgba(10,9,7,.42) 55%, rgba(10,9,7,.10) 100%);
}

/* ── CPT Stats Strip ──────────────────────────────────────── */
.cpt-stats {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky;
  top: 72px;
  z-index: 10;
}
.cpt-stats-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.cpt-stats-inner::-webkit-scrollbar { display: none; }
.cpt-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
  min-width: 160px;
}
.cpt-stat:last-child { border-right: none; }
.cpt-stat__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cpt-stat__text { display: flex; flex-direction: column; gap: 2px; }
.cpt-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cpt-stat__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.cpt-stat__value--price { color: var(--brand); }
.cpt-stat__value--free  { color: var(--green); }

/* ── CPT Body & Grid ──────────────────────────────────────── */
.cpt-body { padding: 48px 0 72px; }
.cpt-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.cpt-main { min-width: 0; }
.cpt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
  align-self: start;
}

/* ── Entry Content ────────────────────────────────────────── */
.cpt-entry-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 32px;
  margin-bottom: 24px;
}
.cpt-entry-content h2 { font-size: 20px; font-weight: 800; margin: 24px 0 10px; }
.cpt-entry-content h2:first-child { margin-top: 0; }
.cpt-entry-content p { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }
.cpt-entry-content ul { padding-left: 20px; margin-bottom: 16px; }
.cpt-entry-content li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }

/* ── Info Card ────────────────────────────────────────────── */
.info-card-pro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow: hidden;
  margin-bottom: 24px;
}
.info-card-pro__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.info-card-pro__header .card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.info-card-pro__body { padding: 4px 0; }
.detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: none; }
.detail-row__icon {
  width: 34px;
  height: 34px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.detail-row__body { flex: 1; min-width: 0; }
.detail-row__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.detail-row__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}
.detail-row__value a { color: var(--brand); text-decoration: none; }
.detail-row__value a:hover { text-decoration: underline; }

/* ── Instructor Block ─────────────────────────────────────── */
.instructor-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.instructor-block__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.instructor-block__text {}
.instructor-block__role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.instructor-block__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
}

/* ── Venue Link Block ─────────────────────────────────────── */
.venue-link-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px 20px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: var(--transition);
}
.venue-link-block:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(22,98,79,.12);
}
.venue-link-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.venue-link-block__body { flex: 1; min-width: 0; }
.venue-link-block__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.venue-link-block__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-link-block__arrow { color: var(--muted); flex-shrink: 0; }

/* ── Gallery Grid ─────────────────────────────────────────── */
.cpt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: var(--radius2);
  overflow: hidden;
  margin-bottom: 24px;
}
.cpt-gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cpt-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cpt-gallery__item:hover img { transform: scale(1.06); }
.cpt-gallery__item:first-child {
  grid-column: span 3;
  aspect-ratio: 16/7;
}

/* ── Amenity Chips ────────────────────────────────────────── */
.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.amenity-chip--active {
  background: #e6f5f0;
  border-color: var(--green);
  color: var(--green);
}

/* ── Sidebar CTA ──────────────────────────────────────────── */
.cpt-sidebar-cta {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cpt-sidebar-cta__top {
  background: var(--ink);
  color: #fff;
  padding: 24px;
}
.cpt-sidebar-cta__price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.cpt-sidebar-cta__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}
.cpt-sidebar-cta__price--free  { color: #4ade80; }
.cpt-sidebar-cta__price--brand { color: var(--brand2); }
.cpt-sidebar-cta__price-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.cpt-sidebar-cta__body { background: #fff; padding: 20px; }
.cpt-sidebar-cta__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cpt-sidebar-cta__contact {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cpt-sidebar-cta__contact a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

/* ── Sidebar Details ──────────────────────────────────────── */
.cpt-sidebar-details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow: hidden;
}
.cpt-sidebar-details__header {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.cpt-sidebar-details .detail-row { padding: 10px 18px; }

/* ── Register Box (inline form) ───────────────────────────── */
.register-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 28px 32px;
  margin-top: 8px;
}
.register-box__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.register-box__desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Map Embed ────────────────────────────────────────────── */
.cpt-map {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.cpt-map iframe { display: block; width: 100%; height: 300px; border: none; }

/* ── CPT Related Section ──────────────────────────────────── */
.cpt-related {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 56px 0;
}
.cpt-related__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cpt-related__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
}
.cpt-related__link { font-size: 14px; font-weight: 700; color: var(--brand); text-decoration: none; }
.cpt-related__link:hover { text-decoration: underline; }
.cpt-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Pro Cards ────────────────────────────────────────────── */
/* Event Card Pro */
.event-card-pro {
  background: #fff;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.event-card-pro:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.event-card-pro__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.event-card-pro__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.event-card-pro:hover .event-card-pro__thumb img { transform: scale(1.06); }
.event-card-pro__date-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,9,7,.75);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.event-card-pro__type {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.event-card-pro__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.event-card-pro__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.event-card-pro__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--muted);
  letter-spacing: .04em;
}
.event-card-pro__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}
.event-card-pro__title a { color: var(--ink); text-decoration: none; }
.event-card-pro__title a:hover { color: var(--brand); }
.event-card-pro__meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.event-card-pro__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.event-card-pro__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.event-card-pro__price { font-size: 16px; font-weight: 900; color: var(--brand); font-family: var(--font-display); }
.event-card-pro__price--free { color: var(--green); }

/* Venue Card Pro */
.venue-card-pro {
  background: #fff;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.venue-card-pro:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.venue-card-pro__thumb {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.venue-card-pro__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.venue-card-pro:hover .venue-card-pro__thumb img { transform: scale(1.06); }
.venue-card-pro__district {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10,9,7,.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}
.venue-card-pro__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.venue-card-pro__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.venue-card-pro__title a { color: var(--ink); text-decoration: none; }
.venue-card-pro__title a:hover { color: var(--green); }
.venue-card-pro__addr {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.venue-card-pro__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.venue-card-pro__chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--muted);
}

/* Class Card Pro */
.class-card-pro {
  background: #fff;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.class-card-pro:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.class-card-pro__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.class-card-pro__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.class-card-pro:hover .class-card-pro__thumb img { transform: scale(1.06); }
.class-card-pro__seats {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.class-card-pro__seats--low { color: var(--brand); }
.class-card-pro__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.class-card-pro__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  flex: 1;
}
.class-card-pro__title a { color: var(--ink); text-decoration: none; }
.class-card-pro__title a:hover { color: var(--blue); }
.class-card-pro__info { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.class-card-pro__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.class-card-pro__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.class-card-pro__price { font-size: 16px; font-weight: 900; color: var(--blue); font-family: var(--font-display); }

/* CLB Card Pro */
.clb-card-pro {
  background: #fff;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.clb-card-pro::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.clb-card-pro:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.clb-card-pro__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.clb-card-pro__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.clb-card-pro:hover .clb-card-pro__thumb img { transform: scale(1.06); }
.clb-card-pro__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 0;
}
.clb-card-pro__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.clb-card-pro__title-wrap {}
.clb-card-pro__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.clb-card-pro__title a { color: var(--ink); text-decoration: none; }
.clb-card-pro__title a:hover { color: #7c3aed; }
.clb-card-pro__members { font-size: 12px; color: var(--muted); font-weight: 600; }
.clb-card-pro__body { padding: 14px 18px; flex: 1; }
.clb-card-pro__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}
.clb-card-pro__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.clb-card-pro__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.clb-card-pro__footer {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── CPT Archive Hero ─────────────────────────────────────── */
.cpt-archive-hero {
  padding: 60px 0 44px;
  position: relative;
  overflow: hidden;
}
.cpt-archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.cpt-archive-hero--su-kien   { background: linear-gradient(135deg, #7c1c0c 0%, var(--brand) 100%); }
.cpt-archive-hero--nha-van-hoa{ background: linear-gradient(135deg, #0a2e25 0%, var(--green) 100%); }
.cpt-archive-hero--lop-hoc   { background: linear-gradient(135deg, #0f2150 0%, var(--blue) 100%); }
.cpt-archive-hero--cau-lac-bo{ background: linear-gradient(135deg, #3b0764 0%, #7c3aed 100%); }
.cpt-archive-hero--khong-gian{ background: linear-gradient(135deg, #0a0906 0%, #2a2822 100%); }
.cpt-archive-hero--hoi-dap   { background: linear-gradient(135deg, #042f3a 0%, #0891b2 100%); }
.cpt-archive-hero__inner { position: relative; z-index: 1; }
.cpt-archive-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.cpt-archive-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
}
.cpt-archive-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.6;
}
.cpt-archive-hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cpt-archive-hero__stat { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 700; }
.cpt-archive-hero__stat strong { color: #fff; font-family: var(--font-display); font-size: 22px; margin-right: 5px; }

/* ── CPT Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cpt-grid { grid-template-columns: 1fr; }
  .cpt-sidebar { position: static; }
  .cpt-related__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .cpt-hero { padding: 28px 0 36px; }
  .cpt-hero--has-img { padding-top: 60px; min-height: 300px; }
  .cpt-stats { position: static; }
  .cpt-stat { min-width: 130px; padding: 12px 16px; }
  .cpt-gallery { grid-template-columns: repeat(2,1fr); }
  .cpt-gallery__item:first-child { grid-column: span 2; }
  .register-box { padding: 20px; }
}
@media (max-width: 640px) {
  .cpt-hero { padding: 24px 0 30px; }
  .cpt-hero--has-img { min-height: 240px; }
  .cpt-hero__title { font-size: 24px; }
  .cpt-related__grid { grid-template-columns: 1fr; }
  .cpt-sidebar-cta__price { font-size: 28px; }
  .cpt-archive-hero { padding: 44px 0 32px; }
}

/* ═══════════════════════════════════════════════════════════
   STATIC PAGES — PRO UI
═══════════════════════════════════════════════════════════ */

/* ── Page Hero Pro ────────────────────────────────────────── */
.page-hero-pro {
  position: relative;
  padding: 72px 0 64px;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-pro__content { position: relative; z-index: 1; }
.page-hero-pro--about {
  background: linear-gradient(135deg, #0a2e25 0%, var(--green) 55%, #34d399 100%);
}
.page-hero-pro--about::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(52,211,153,.15) 0%, transparent 60%);
}
.page-hero-pro--contact {
  background: linear-gradient(135deg, #0f2150 0%, var(--blue) 55%, #60a5fa 100%);
}
.page-hero-pro--contact::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(96,165,250,.18) 0%, transparent 60%);
}
.page-hero-pro--legal {
  background: linear-gradient(135deg, #1c1b18 0%, #2a2822 60%, #3a3830 100%);
}
.page-hero-pro__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.page-hero-pro__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 50px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.page-hero-pro__desc {
  font-size: 17px;
  color: rgba(255,255,255,.76);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.page-hero-pro__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-pro__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.page-hero-pro__meta-item { font-size: 13px; color: rgba(255,255,255,.65); }
.page-hero-pro__meta-item strong {
  color: #fff;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 28px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

/* ── About Page ───────────────────────────────────────────── */
.about-page {
  overflow-x: hidden;
  background: linear-gradient(180deg, #fffaf1 0%, var(--bg) 46%, #fffaf1 100%);
}
.about-hero {
  position: relative;
  padding: 76px 0 68px;
  background:
    linear-gradient(135deg, rgba(213,69,47,.11), rgba(242,163,58,.18) 48%, rgba(22,98,79,.12)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.about-hero::before {
  content: '';
  position: absolute;
  right: -8vw;
  top: 46px;
  width: min(48vw, 680px);
  height: 320px;
  background: linear-gradient(135deg, rgba(22,98,79,.13), rgba(37,62,125,.1));
  border-radius: 999px 0 0 999px;
  transform: rotate(-7deg);
}
.about-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 56px;
  align-items: center;
}
.about-hero__copy,
.about-hero__media,
.about-split > *,
.about-value-card,
.about-process-card {
  min-width: 0;
}
.about-hero__copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: break-word;
}
.about-hero__copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.about-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.about-hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 28px 70px rgba(84,61,28,.16);
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}
.about-hero-note strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.about-hero-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.about-stats-band { background: var(--ink); color: #fff; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}
.about-stats div {
  padding: 24px 26px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.about-stats div:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}
.about-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 700;
}
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
}
.about-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-split__content h2,
.about-section-head h2,
.about-discover h2,
.about-cta-pro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.14;
}
.about-split__content h2 {
  max-width: 720px;
  font-size: clamp(28px, 4vw, 44px);
}
.about-split__content p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--brand);
  font-weight: 900;
}
.about-text-link::after { content: '\203A'; font-size: 20px; line-height: 1; }
.about-split__panel { display: grid; gap: 12px; }
.about-principle,
.about-process-card,
.about-value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(44,35,20,.06);
}
.about-principle { padding: 18px 20px; }
.about-principle span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}
.about-principle strong { display: block; font-size: 17px; font-weight: 900; }
.about-principle p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.about-section-head { max-width: 720px; margin-bottom: 30px; }
.about-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.about-section-head h2 { font-size: clamp(26px, 4vw, 38px); }
.about-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-process-card { padding: 26px; }
.about-process-card span,
.about-value-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(213,69,47,.1);
  color: var(--brand);
  font-weight: 900;
}
.about-process-card h3,
.about-value-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}
.about-process-card p,
.about-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-value-card { padding: 24px; }
.about-discover {
  padding: 54px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}
.about-discover__inner {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.about-discover h2 { font-size: 30px; }
.about-discover-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.about-discover-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 900;
}
.about-discover-links a::after {
  content: '\203A';
  color: var(--brand);
  font-size: 20px;
}
.about-discover-links a:hover {
  border-color: rgba(213,69,47,.45);
  color: var(--brand);
}
.about-cta-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 20px 60px rgba(213,69,47,.18);
}
.about-cta-pro span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .76;
}
.about-cta-pro h2 {
  max-width: 740px;
  font-size: clamp(26px, 4vw, 38px);
}
.about-cta-pro p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.75;
}
.about-cta-pro__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.about-story__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.about-story__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.2;
}
.about-story__body p { font-size: 16px; line-height: 1.85; color: var(--muted); margin: 0 0 14px; }
.about-story__body p:last-child { margin-bottom: 0; }
.about-story__link { margin-top: 20px; }
.about-story__link a {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}
.about-story__link a:hover { text-decoration: underline; }

.about-how { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-step {
  padding: 28px 24px 24px;
  background: var(--paper);
  border-radius: var(--radius2);
  border: 1.5px solid var(--line);
  transition: box-shadow .2s;
}
.about-step:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.about-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  display: grid; place-items: center; margin-bottom: 14px;
}
.about-step__title { font-weight: 800; font-size: 16px; margin: 0 0 8px; }
.about-step__desc { font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0; }

.about-cta {
  background: linear-gradient(135deg, #0a2e25 0%, var(--green) 60%, #34d399 100%);
  border-radius: var(--radius);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.about-cta__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}
.about-cta__desc { font-size: 15px; color: rgba(255,255,255,.75); margin: 0; }
.about-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page {
  background:
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 48%, #fffaf1 100%);
  overflow-x: hidden;
}
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    linear-gradient(135deg, rgba(213,69,47,.12), rgba(242,163,58,.2) 46%, rgba(22,98,79,.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 22px 0 auto auto;
  width: min(44vw, 620px);
  height: 260px;
  background: linear-gradient(135deg, rgba(213,69,47,.16), rgba(37,62,125,.12));
  border-radius: 999px 0 0 999px;
  transform: rotate(-8deg) translateX(15%);
}
.contact-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  align-items: center;
}
.contact-hero__copy,
.contact-hero-card,
.contact-pro-layout > *,
.contact-card > span:last-child {
  min-width: 0;
}
.contact-hero__copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  overflow-wrap: break-word;
}
.contact-hero__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: break-word;
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.contact-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 900;
}
.contact-hero-card {
  position: relative;
  padding: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.76);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(84, 61, 28, .16);
  backdrop-filter: blur(18px);
}
.contact-hero-card__label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22,98,79,.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.contact-hero-card__title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}
.contact-hero-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: break-word;
}
.contact-hero-card__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-hero-card__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.contact-hero-card__stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.contact-main.section { padding-top: 62px; }
.contact-pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: start;
}
.contact-form-panel,
.contact-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(44,35,20,.08);
}
.contact-form-panel { padding: 34px; }
.contact-section-head { margin-bottom: 24px; }
.contact-section-head__kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}
.contact-section-head p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.contact-form-panel .nvh-form {
  display: grid;
  gap: 16px;
}
.contact-form-panel .form-group { margin-bottom: 0; }
.contact-form-panel .form-group input,
.contact-form-panel .form-group select,
.contact-form-panel .form-group textarea {
  background: #fffaf1;
  border-color: rgba(28,27,24,.14);
}
.contact-form-panel .form-group textarea { min-height: 150px; }
.contact-form-panel .btn[type="submit"] {
  width: fit-content;
  min-width: 180px;
  justify-content: center;
  background: var(--brand);
  box-shadow: 0 16px 32px rgba(213,69,47,.22);
}
.contact-pro-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 116px;
}
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius3);
  box-shadow: 0 12px 32px rgba(44,35,20,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(213,69,47,.42);
  box-shadow: 0 18px 42px rgba(44,35,20,.1);
}
.contact-card__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(213,69,47,.1);
  color: var(--brand);
  font-size: 15px;
  font-weight: 900;
}
.contact-card__label,
.contact-card__value,
.contact-card__note {
  display: block;
}
.contact-card__label {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-card__value {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.contact-card__note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.contact-hours-card,
.contact-quick-block,
.contact-owner-cta {
  border-radius: var(--radius3);
  padding: 18px;
}
.contact-hours-card {
  background: var(--ink);
  color: #fff;
}
.contact-hours-card__title,
.contact-quick-block__title {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-hours-card__title { color: rgba(255,255,255,.58); }
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}
.contact-hours-row:last-child { border-bottom: 0; }
.contact-hours-row__day { color: rgba(255,255,255,.66); }
.contact-hours-row__time { color: rgba(255,255,255,.5); font-weight: 800; text-align: right; }
.contact-hours-row--open .contact-hours-row__time { color: #86efac; }
.contact-quick-block {
  background: rgba(255,250,241,.7);
  border: 1px solid var(--line);
}
.contact-quick-block__title { color: var(--ink); }
.contact-quick-links-list { list-style: none; margin: 0; padding: 0; }
.contact-quick-links-list li {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.contact-quick-links-list li:last-child { border-bottom: 0; }
.contact-quick-links-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}
.contact-quick-links-list a::after {
  content: '\203A';
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
}
.contact-quick-links-list a:hover { color: var(--brand); }
.contact-owner-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 18px 42px rgba(213,69,47,.2);
}
.contact-owner-cta span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  opacity: .75;
}
.contact-owner-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}
.contact-owner-cta p {
  margin: 8px 0 16px;
  font-size: 13px;
  line-height: 1.6;
  opacity: .86;
}
.contact-faq-band { padding: 0 0 58px; }
.contact-faq { padding: 28px 32px; }
.contact-quick-links-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 52px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
}
.legal-toc__title {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.legal-toc__list { list-style: none; margin: 0; padding: 0; }
.legal-toc__list li { margin-bottom: 1px; }
.legal-toc__list a {
  display: block; font-size: 12px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 5px 8px; border-radius: 6px;
  line-height: 1.4; transition: background .15s, color .15s;
}
.legal-toc__list a:hover { background: rgba(213,69,47,.08); color: var(--brand); }
.legal-toc__footer {
  font-size: 11px; color: var(--muted); margin-top: 14px;
  border-top: 1px solid var(--line); padding-top: 12px; line-height: 1.6;
}
.legal-toc__footer a { color: var(--brand); font-weight: 700; text-decoration: none; }

.legal-updated {
  font-size: 13px; color: var(--muted);
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 8px; padding: 10px 16px; margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 8px;
}

.legal-content h2 {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  margin: 44px 0 12px; padding-top: 12px;
  border-top: 1.5px solid var(--line); color: var(--ink);
  scroll-margin-top: 100px;
}
.legal-content h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 15px; font-weight: 700; margin: 22px 0 8px; color: var(--ink); }
.legal-content p { font-size: 15px; line-height: 1.85; color: var(--muted); margin: 0 0 14px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin: 0 0 14px; }
.legal-content li { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 6px; }
.legal-content strong { color: var(--ink); font-weight: 700; }
.legal-content a { color: var(--brand); font-weight: 600; }
.legal-highlight {
  background: rgba(213,69,47,.07); border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 20px 0;
  font-size: 14px; line-height: 1.75; color: var(--ink);
}
.legal-related {
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius2); padding: 20px 24px; margin-top: 44px;
}
.legal-related__title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.legal-related__links { display: flex; gap: 10px; flex-wrap: wrap; }
.legal-related__links a {
  font-size: 14px; font-weight: 700; color: var(--brand); text-decoration: none;
  background: rgba(213,69,47,.07); padding: 7px 16px;
  border-radius: 99px; border: 1.5px solid rgba(213,69,47,.2);
  transition: background .15s, color .15s;
}
.legal-related__links a:hover { background: var(--brand); color: #fff; }

/* ── Missing utilities ────────────────────────────────────── */
.btn.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn.btn-ghost-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.section--gray { background: var(--bg); }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.section-header { margin-bottom: 36px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  margin: 0;
  line-height: 1.15;
}

/* ── Static Pages Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .legal-page-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; order: -1; }
  .legal-toc__list { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
  .about-hero__grid,
  .about-split,
  .about-discover__inner,
  .about-cta-pro { grid-template-columns: 1fr; }
  .about-hero__media { max-width: 620px; }
  .about-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-discover-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-cta-pro__actions { justify-content: flex-start; }
  .about-how { grid-template-columns: 1fr 1fr; }
  .contact-pro-layout { grid-template-columns: 1fr; }
  .contact-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-hero-card { max-width: 560px; }
  .contact-pro-sidebar { position: static; }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-cta { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .page-hero-pro { padding: 48px 0 40px; }
  .about-hero { padding: 52px 0 46px; }
  .about-hero::before { width: 78vw; height: 190px; opacity: .75; }
  .about-hero__grid { gap: 30px; }
  .about-hero__copy p { font-size: 16px; }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats div { padding: 20px 18px; }
  .about-process,
  .about-values { grid-template-columns: 1fr; }
  .about-discover { padding: 40px 0; }
  .about-cta-pro { padding: 28px 24px; border-radius: 20px; }
  .contact-hero { padding: 48px 0 42px; }
  .contact-hero::before { width: 78vw; height: 180px; opacity: .7; }
  .contact-hero__copy p { font-size: 16px; }
  .contact-hero-card,
  .contact-form-panel,
  .contact-faq { border-radius: 20px; }
  .contact-form-panel,
  .contact-faq { padding: 24px; }
  .contact-cards,
  .contact-quick-links-list--grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .about-story__img { aspect-ratio: 16/9; }
  .about-how { grid-template-columns: 1fr; }
  .about-cta { padding: 32px 24px; }
  .page-hero-pro__meta { gap: 20px; }
  .sitemap-hero { padding: 52px 0 34px; }
  .sitemap-content { padding: 34px 0 52px; }
  .sitemap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero-pro__title { font-size: 26px; }
  .about-page .wrap {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }
  .about-hero__copy h1 { font-size: 28px; line-height: 1.12; }
  .about-hero__actions .btn,
  .about-cta-pro__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .about-hero-note { left: 14px; right: 14px; bottom: 14px; }
  .about-hero-note strong { font-size: 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-discover-links { grid-template-columns: 1fr; }
  .contact-page .wrap {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }
  .contact-hero__copy h1 {
    font-size: 26px;
    line-height: 1.12;
  }
  .contact-hero__copy p { font-size: 15px; }
  .contact-hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .contact-hero-card { padding: 22px; }
  .contact-hero-card__stats { grid-template-columns: 1fr; }
  .contact-main.section { padding-top: 36px; }
  .contact-form-panel .btn[type="submit"] { width: 100%; }
  .legal-toc__list { grid-template-columns: 1fr; }
  .legal-page-layout { gap: 20px; }
}
