:root {
  --topbar-yellow: #f5c518;
  --brown-dark: #2a1f17;
  --brown-mid: #4a3728;
  --brown-light: #6b4f3a;
  --gold-accent: #d4a017;
  --gold-hover: #e8b923;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd0;
  --text-on-dark: #ffffff;
  --text-muted: #c9b8a8;
  --text-body: #3d2e24;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(42, 31, 23, 0.25);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1170px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--brown-dark);
  color: var(--text-on-dark);
}

.section-cream {
  background: var(--cream);
}

.section-brown {
  background: var(--brown-mid);
  color: var(--text-on-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title .label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  line-height: 1.2;
}

.section-dark .section-title .label,
.section-brown .section-title .label {
  color: var(--topbar-yellow);
}

.subtitle {
  text-align: center;
  max-width: 720px;
  margin: -1.5rem auto 2rem;
  color: var(--text-muted);
}

.section-cream .subtitle {
  color: #6b5a4a;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  background: var(--gold-accent);
  color: var(--brown-dark);
  border-color: var(--gold-accent);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--gold-accent);
}

.btn-outline:hover {
  background: var(--gold-accent);
  color: var(--brown-dark);
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--text-on-dark);
  border-color: var(--brown-dark);
}

.btn-dark:hover {
  background: var(--brown-mid);
}

/* Top bar */
.top-bar {
  background: var(--topbar-yellow);
  color: var(--brown-dark);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-bar a {
  color: var(--brown-dark);
  text-decoration: underline;
  font-weight: 700;
}

/* Header */
.site-header {
  background: var(--brown-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  color: var(--text-on-dark);
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--topbar-yellow);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold-accent);
  color: var(--text-on-dark);
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: min(85vh, 680px);
  min-height: 480px;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 31, 23, 0.88) 0%, rgba(42, 31, 23, 0.45) 60%, rgba(42, 31, 23, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0;
}

.hero-content .btn {
  width: auto;
}

.hero-content .tag {
  color: var(--topbar-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-on-dark);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
  max-width: 600px;
  letter-spacing: 0.04em;
}

.hero-content .price-line {
  color: var(--gold-accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-on-dark);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.hero-dot.active {
  background: var(--topbar-yellow);
  border-color: var(--topbar-yellow);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 23, 0.75);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.page-hero h1 {
  color: var(--text-on-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 600px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--topbar-yellow);
  margin-bottom: 0.75rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Service tiles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.service-tile {
  background: var(--brown-mid);
  color: var(--text-on-dark);
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.service-tile:last-child {
  border-right: none;
}

.service-tile:hover {
  background: var(--brown-light);
}

.service-tile .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--topbar-yellow);
}

.service-tile h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.service-tile p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 1.75rem;
}

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

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

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

/* About block */
.about-img {
  border-radius: var(--radius);
  min-height: 380px;
  box-shadow: var(--shadow);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.about-feature .icon {
  font-size: 2rem;
  color: var(--topbar-yellow);
  margin-bottom: 0.75rem;
}

.about-feature h4 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section-cream .about-feature {
  background: #fff;
  border: 1px solid var(--cream-dark);
  color: var(--text-body);
}

.section-cream .about-feature .icon {
  color: var(--gold-accent);
}

.section-cream .about-feature p {
  color: #6b5a4a;
  font-size: 0.9rem;
}

/* Class cards */
.class-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.section-dark .class-card,
.section-brown .class-card {
  background: rgba(255, 255, 255, 0.06);
}

.class-card:hover {
  transform: translateY(-6px);
}

.class-card img {
  height: 220px;
  width: 100%;
}

.class-card .body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.class-card .body .btn,
.pricing-card .btn {
  width: auto;
  max-width: 100%;
}

.grid .btn,
.grid-2 .btn,
.grid-3 .btn,
.grid-4 .btn {
  justify-self: start;
  width: auto;
}

.class-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: inherit;
}

.section-cream .class-card h3 {
  color: var(--brown-dark);
}

.class-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.section-cream .class-card p {
  color: #6b5a4a;
}

/* Schedule table */
.schedule-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 900px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.schedule-table thead th {
  background: var(--brown-mid);
  color: var(--topbar-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.schedule-table tbody th {
  background: var(--brown-mid);
  color: var(--text-on-dark);
  font-weight: 600;
  text-align: left;
  padding-left: 1rem;
}

.schedule-table td {
  color: var(--text-muted);
}

.schedule-table td.has-class {
  color: var(--topbar-yellow);
  font-weight: 600;
}

.schedule-table td.unavailable {
  color: #666;
}

.schedule-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Mobile schedule tabs */
.schedule-mobile {
  display: none;
}

.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.schedule-tab {
  padding: 0.5rem 0.85rem;
  background: var(--brown-mid);
  color: var(--text-on-dark);
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  text-transform: uppercase;
}

.schedule-tab.active {
  background: var(--topbar-yellow);
  color: var(--brown-dark);
}

.schedule-mobile-panel {
  display: none;
}

.schedule-mobile-panel.active {
  display: block;
}

.schedule-mobile-panel table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-mobile-panel th,
.schedule-mobile-panel td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem;
  text-align: left;
}

/* Counters */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--topbar-yellow);
  line-height: 1;
}

.stat-item .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

/* Team */
.team-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card img {
  height: 280px;
  width: 100%;
}

.team-card .info {
  padding: 1.25rem;
}

.team-card h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.team-card .role {
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.35rem 0 0.75rem;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-mid);
  color: var(--text-on-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--transition);
}

.socials a:hover {
  background: var(--gold-accent);
  color: var(--brown-dark);
}

/* Pricing cards */
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold-accent);
  transition: transform var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-top-color: var(--topbar-yellow);
  transform: scale(1.03);
}

.pricing-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-dark);
  font-size: 1.2rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brown-mid);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-card li::before {
  content: "✓ ";
  color: var(--gold-accent);
  font-weight: 700;
}

/* Newsletter */
.newsletter-box {
  background: var(--brown-mid);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-box h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}

.newsletter-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
}

.newsletter-form .btn {
  flex: 0 0 auto;
  width: auto;
}

/* Footer */
.site-footer {
  background: var(--brown-dark);
  color: var(--text-on-dark);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--topbar-yellow);
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--topbar-yellow);
}

.footer-hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  font-size: 0.88rem;
}

.footer-hours span:nth-child(odd) {
  color: var(--text-muted);
}

.footer-hours span:nth-child(even) {
  color: var(--text-on-dark);
  text-align: right;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-mid);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--gold-accent);
  color: var(--brown-dark);
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--topbar-yellow);
}

/* Forms */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  min-height: 1.2em;
}

.form-success {
  background: #2d6a4f;
  color: #fff;
  padding: 1rem;
  border-radius: 3px;
  margin-top: 1rem;
  font-weight: 600;
  display: none;
}

.form-success.show {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

/* Policy / long content */
.policy-content,
.content-rich {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h1,
.content-rich h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.policy-content h2,
.content-rich h2 {
  font-size: 1.25rem;
  color: var(--brown-mid);
  margin: 2rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-content p,
.policy-content li,
.content-rich p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

.section-dark .content-rich p,
.section-dark .policy-content p {
  color: var(--text-muted);
}

.section-dark .content-rich strong,
.section-dark .policy-content strong {
  color: var(--text-on-dark);
}

.section-dark .content-rich h2,
.section-dark .policy-content h2 {
  color: var(--topbar-yellow);
}

.section-dark .faq-question {
  color: var(--text-on-dark);
}

.section-dark .faq-answer p {
  color: var(--text-muted);
}

.policy-content ul,
.content-rich ul {
  list-style: disc;
  margin: 0 0 1rem 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* Class detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.detail-main img.hero-detail {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.detail-main h2 {
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.05em;
}

.detail-sidebar {
  background: var(--cream-dark);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.detail-sidebar h3 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-accent);
}

.detail-meta {
  margin-bottom: 1.5rem;
}

.detail-meta dt {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-top: 0.75rem;
}

.detail-meta dd {
  font-size: 0.95rem;
  color: var(--text-body);
}

.related-links a {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--brown-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.related-links a:hover {
  color: var(--gold-accent);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1rem;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-question::after {
  content: "+";
  color: var(--gold-accent);
  font-size: 1.25rem;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 2px solid var(--brown-mid);
  color: var(--brown-mid);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 3px;
  transition: all var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--brown-mid);
  color: var(--text-on-dark);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact info */
.contact-info {
  background: var(--brown-mid);
  color: var(--text-on-dark);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.contact-info h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--topbar-yellow);
}

.contact-info a {
  color: var(--gold-accent);
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .service-tile {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .schedule-desktop {
    display: none;
  }

  .schedule-mobile {
    display: block;
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
