body {
  margin: 0;
  background-color: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   Navigation
========================= */

.gsaa-navbar {
  background-color: #050505 !important;
  border-bottom: 1px solid rgba(201, 145, 43, 0.35);
  padding: 18px 0;
}

.gsaa-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff !important;
  text-decoration: none;
}

.gsaa-navbar .navbar-brand:hover,
.gsaa-navbar .navbar-brand:focus {
  color: #ffffff !important;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  line-height: 1.05;
  letter-spacing: 1px;
}

.gsaa-navbar .brand-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
}

.gsaa-navbar .brand-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #d9d9d9 !important;
}

.gsaa-navbar .brand-chinese {
  display: block;
  margin-top: 5px;
  color: #d6a23a !important;
  font-family: "Noto Serif TC", "Microsoft JhengHei", "PingFang TC", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
}

.gsaa-navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 10px;
  padding: 8px 0;
}

.gsaa-navbar .navbar-nav .nav-link:hover,
.gsaa-navbar .navbar-nav .nav-link:focus,
.gsaa-navbar .navbar-nav .nav-link.active {
  color: #d6a23a !important;
}

.view-classes-btn {
  color: #d6a23a !important;
  border: 1px solid #d6a23a;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.view-classes-btn:hover,
.view-classes-btn:focus {
  background-color: #d6a23a;
  color: #050505 !important;
}

.gsaa-navbar .navbar-toggler {
  border-color: #d6a23a;
}

.gsaa-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(214, 162, 58, 0.45);
}

.gsaa-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* =========================
   Shared Section Headings
========================= */

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.heading-line {
  display: block;
  width: 160px;
  height: 1px;
}

/* =========================
   Home Hero Section
========================= */

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.78) 36%,
      rgba(0, 0, 0, 0.42) 66%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    url("../images/shawn-miller.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-content {
  min-height: 760px;
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: 60px 0;
}

.hero-title {
  margin: 0 0 28px 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title-gsaa .hero-line-1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.1vw, 5.7rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.hero-line-2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  font-weight: 700;
  color: #d6a23a;
  margin-top: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.hero-tagline {
  position: relative;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 38px;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.hero-tagline::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 520px;
  height: 4px;
  background-color: #b60f14;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background-color: #e3b656;
  color: #050505;
}

.hero-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #d6a23a;
}

.hero-btn-outline:hover,
.hero-btn-outline:focus {
  background-color: #d6a23a;
  color: #050505;
}

.hero-instructor {
  position: relative;
  min-height: 760px;
}

.hero-instructor-text {
  position: absolute;
  right: 0;
  bottom: 70px;
  text-align: left;
}

.instructor-name {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d6a23a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

/* =========================
   About GSAA Section
========================= */

.about-gsaa-section {
  background-color: #f1eee7;
  color: #111111;
  overflow: hidden;
}

.about-gsaa-container {
  max-width: 1920px;
  margin: 0 auto;
}

.about-art {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-art-img {
  width: 115%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -80px;
  opacity: 0.68;
}

.about-copy {
  padding: 70px 8vw 70px 40px;
}

.section-kicker {
  margin: 0 0 18px 0;
  color: #9f1418;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 28px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  color: #111111;
}

.about-copy p {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #242424;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* =========================
   Home Curriculum Section
========================= */

.curriculum-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 55%);
  background-color: #050505;
  color: #ffffff;
  padding: 42px 0 58px;
  border-top: 1px solid rgba(201, 145, 43, 0.22);
  border-bottom: 1px solid rgba(201, 145, 43, 0.22);
}

.curriculum-heading h2 {
  color: #d6a23a;
}

.curriculum-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.8);
}

.curriculum-card {
  min-height: 260px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 38px 42px;
  background-color: rgba(12, 12, 12, 0.94);
  border: 1px solid rgba(214, 162, 58, 0.78);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.curriculum-card:hover,
.curriculum-card:focus {
  border-color: #d6a23a;
  background-color: rgba(20, 20, 20, 0.98);
  transform: translateY(-3px);
}

.curriculum-icon {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-icon img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.curriculum-card-copy h3,
.curriculum-card-copy h4 {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.55vw, 1.95rem);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}

.curriculum-card-copy p {
  margin: 0;
  max-width: 300px;
  color: #e4e4e4;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* =========================
   Core Training Benefits
========================= */

.training-benefits-section {
  background-color: #f1eee7 !important;
  color: #111111;
  padding: 38px 0 46px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benefits-heading {
  margin-bottom: 34px;
}

.benefits-heading h2 {
  color: #9f1418;
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.benefits-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.6);
}

.training-benefits-row {
  align-items: stretch;
}

.training-benefit {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  position: relative;
}

.training-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: calc(100% - 12px);
  background-color: rgba(0, 0, 0, 0.18);
}

.benefit-icon {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  display: block;
}

.benefit-copy h3 {
  margin: 0 0 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.benefit-copy p {
  margin: 0;
  max-width: 220px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #222222;
}

/* =========================
   Lineage & Style Section
========================= */

.lineage-style-section {
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.88) 45%,
      rgba(0, 0, 0, 0.96) 100%
    );
  background-color: #050505;
  color: #ffffff;
  padding: 54px 0 38px;
  border-top: 1px solid rgba(201, 145, 43, 0.22);
  border-bottom: 1px solid rgba(201, 145, 43, 0.22);
  overflow: hidden;
}

.lineage-content {
  min-height: 420px;
}

.lineage-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.lineage-image {
  width: 100%;
  max-width: 360px;
  display: block;
  filter: grayscale(100%);
  opacity: 0.82;
}

.lineage-copy {
  padding: 20px 20px 20px 40px;
}

.lineage-kicker {
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #d6a23a;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lineage-copy h2 {
  margin: 0 0 28px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.lineage-copy p {
  max-width: 760px;
  margin: 0 0 18px 0;
  color: #e0e0e0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.lineage-copy p:last-of-type {
  margin-bottom: 0;
}

.lineage-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  color: #d6a23a;
  border: 1px solid #d6a23a;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.lineage-btn:hover,
.lineage-btn:focus {
  background-color: #d6a23a;
  color: #050505;
}

/* =========================
   Our Instructors Section
========================= */

.instructors-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 42px 0 52px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.instructors-heading {
  margin-bottom: 10px;
}

.instructors-heading h2 {
  color: #9f1418;
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.instructors-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.6);
}

.instructors-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #222222;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.instructors-grid {
  align-items: stretch;
}

.instructor-card {
  display: block;
  height: 100%;
  color: #111111;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.instructor-card:hover,
.instructor-card:focus {
  transform: translateY(-3px);
}

.instructor-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center center;
  border: 3px solid #111111;
  border-radius: 3px;
  background-color: #050505;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.instructor-card-copy {
  padding: 14px 8px 0;
}

.instructor-card-copy h3 {
  margin: 0;
  color: #9f1418;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.15;
  text-transform: uppercase;
}

.instructor-card-copy p {
  margin: 4px 0 0;
  color: #222222;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================
   Curriculum Page Hero
========================= */

.curriculum-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 38%,
      rgba(0, 0, 0, 0.48) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url("../images/curriculum-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.curriculum-hero-content {
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.curriculum-hero-copy {
  padding: 70px 0;
}

.curriculum-hero-title {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d6a23a;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.curriculum-hero-subtitle {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #b60f14;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.curriculum-hero-rule {
  width: 84px;
  height: 3px;
  margin: 0 0 24px 0;
  background-color: #d6a23a;
}

.curriculum-hero-text {
  max-width: 560px;
  margin: 0 0 34px 0;
  color: #e8e1d4;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.curriculum-hero-buttons {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.curriculum-hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.curriculum-hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.curriculum-hero-btn-primary:hover,
.curriculum-hero-btn-primary:focus {
  background-color: #e3b656;
  color: #050505;
}

.curriculum-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.curriculum-hero-link span {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease-in-out;
}

.curriculum-hero-link:hover,
.curriculum-hero-link:focus {
  color: #e3b656;
}

.curriculum-hero-link:hover span,
.curriculum-hero-link:focus span {
  transform: translateX(5px);
}

/* =========================
   Curriculum Philosophy
========================= */

.curriculum-philosophy-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 0;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.curriculum-philosophy-section .container {
  max-width: 1320px;
}

.curriculum-philosophy-heading {
  margin: 0;
  padding: 32px 0 24px;
}

.curriculum-philosophy-heading h2 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.curriculum-philosophy-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.55);
}

.curriculum-philosophy-panel {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 0 52px;
}

.curriculum-philosophy-art {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-philosophy-art img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  opacity: 0.72;
}

.curriculum-philosophy-copy p {
  margin: 0;
  color: #111111;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.7;
}

/* =========================
   Training in Practice
========================= */

.training-practice-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)),
    radial-gradient(circle at center, rgba(214, 162, 58, 0.08), transparent 55%);
  background-color: #050505;
  color: #ffffff;
  padding: 52px 0 60px;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.training-practice-heading {
  margin-bottom: 8px;
}

.training-practice-heading h2 {
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 6px;
}

.training-practice-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.75);
}

.training-practice-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.training-practice-card {
  height: 100%;
  overflow: hidden;
  background-color: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(214, 162, 58, 0.75);
  color: #ffffff;
}

.training-practice-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid rgba(214, 162, 58, 0.6);
}

.training-practice-copy {
  padding: 22px 24px 26px;
}

.training-practice-copy h3 {
  margin: 0 0 10px 0;
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.training-practice-copy p {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================
   Eight Animals / Eight Methods
========================= */

.animals-section,
.methods-section {
  background-color: #050505;
  color: #ffffff;
  padding: 46px 0 34px;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.methods-section {
  padding-top: 28px;
  padding-bottom: 58px;
}

.animals-heading,
.methods-heading {
  margin-bottom: 24px;
}

.animals-heading h2,
.methods-heading h2 {
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 6px;
}

.animals-heading .heading-line,
.methods-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.75);
}

.curriculum-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.curriculum-icon-tile {
  min-height: 184px;
  padding: 18px 10px 16px;
  background-color: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(214, 162, 58, 0.72);
  text-align: center;
}

.curriculum-symbol {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-symbol img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.curriculum-icon-tile h3 {
  margin: 0 0 7px 0;
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.curriculum-icon-tile p {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.82rem;
  line-height: 1.35;
}

/* =========================
   Curriculum CTA
========================= */

.curriculum-cta-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 42px 0;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.curriculum-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.curriculum-cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.curriculum-cta-copy .curriculum-cta-red {
  color: #9f1418;
}

.curriculum-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.curriculum-cta-btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.curriculum-cta-btn:hover,
.curriculum-cta-btn:focus {
  background-color: #e3b656;
  color: #050505;
}

.curriculum-cta-link {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.curriculum-cta-link span {
  margin-left: 10px;
}

/* =========================
   Footer Info Bar
========================= */

.footer-info-bar {
  background-color: #050505;
  color: #ffffff;
  padding: 28px 0;
  border-top: 1px solid rgba(214, 162, 58, 0.45);
  border-bottom: 1px solid rgba(214, 162, 58, 0.45);
}

.footer-info-row {
  align-items: stretch;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 0 36px;
  position: relative;
}

.footer-info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(214, 162, 58, 0.45);
}

.footer-info-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b60f14;
  border: 4px solid #b60f14;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.footer-info-copy h3 {
  margin: 0 0 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-info-copy p,
.footer-info-cta p {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-info-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 36px;
  text-align: center;
  position: relative;
}

.footer-info-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(214, 162, 58, 0.45);
}

.footer-classes-btn {
  display: inline-block;
  min-width: 210px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.footer-classes-btn:hover,
.footer-classes-btn:focus {
  background-color: #e3b656;
  color: #050505;
}

/* =========================
   Main Footer
========================= */

.site-footer {
  background-color: #050505;
  color: #ffffff;
  padding: 26px 0 18px;
}

.footer-main-row {
  align-items: flex-start;
}

.footer-brand-col,
.footer-contact-col,
.footer-social-col {
  padding: 0 38px;
  position: relative;
}

.footer-brand-col::after,
.footer-contact-col::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: calc(100% - 8px);
  background-color: rgba(214, 162, 58, 0.45);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand:hover,
.footer-brand:focus {
  color: #ffffff;
}

.footer-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.footer-brand-text {
  display: block;
  line-height: 1.05;
}

.footer-brand-title {
  display: block;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand-subtitle {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand-chinese {
  display: block;
  margin-top: 6px;
  color: #d6a23a;
  font-family: "Noto Serif TC", "Microsoft JhengHei", "PingFang TC", serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 4px;
}

.footer-contact-col h3,
.footer-social-col h3 {
  margin: 0 0 12px 0;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  color: #d9d9d9;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: #d6a23a;
  width: 18px;
  text-align: center;
}

.footer-contact-list a {
  color: #d9d9d9;
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: #d6a23a;
}

.footer-social-links {
  display: flex;
  gap: 18px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6a23a;
  border: 2px solid #d6a23a;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
  background-color: #d6a23a;
  color: #050505;
}

.footer-copyright {
  margin-top: 24px;
  color: #8f8f8f;
  font-size: 0.82rem;
  text-align: center;
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px) {
  .gsaa-navbar .navbar-collapse {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 145, 43, 0.35);
  }

  .gsaa-navbar .navbar-nav .nav-link {
    margin: 6px 0;
  }

  .view-classes-btn {
    display: inline-block;
    margin-top: 12px;
  }

  .hero-section,
  .hero-content,
  .hero-instructor {
    min-height: auto;
  }

  .hero-section {
    padding: 80px 0;
    background-position: 68% center;
  }

  .hero-text {
    padding: 20px 0;
  }

  .hero-title-gsaa .hero-line-1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-line-2 {
    font-size: clamp(2rem, 6.4vw, 3rem);
  }

  .hero-instructor-text {
    position: static;
    margin-top: 40px;
    text-align: left;
  }

  .about-gsaa-section {
    padding: 50px 0;
  }

  .about-art {
    min-height: auto;
    justify-content: center;
    margin-bottom: 30px;
  }

  .about-art-img {
    width: 100%;
    max-width: 720px;
    margin-left: 0;
    opacity: 0.7;
  }

  .about-copy {
    padding: 20px 40px;
  }

  .curriculum-card {
    min-height: auto;
    padding: 34px;
  }

  .training-benefit {
    padding: 24px 28px;
  }

  .training-benefit:not(:last-child)::after {
    display: none;
  }

  .training-benefit:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    top: 24px;
    right: 0;
    width: 1px;
    height: calc(100% - 48px);
    background-color: rgba(0, 0, 0, 0.18);
  }

  .lineage-content {
    min-height: auto;
  }

  .lineage-image {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .lineage-copy {
    padding: 10px 24px;
  }

  .curriculum-hero-section,
  .curriculum-hero-content {
    min-height: 500px;
  }

  .curriculum-hero-section {
    background-position: 62% center;
  }

  .curriculum-hero-copy {
    padding: 64px 0;
  }

  .curriculum-hero-title {
    font-size: clamp(3.4rem, 10vw, 5.5rem);
  }

  .curriculum-philosophy-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 24px 44px;
  }

  .curriculum-philosophy-art {
    min-height: auto;
  }

  .curriculum-philosophy-art img {
    max-width: 620px;
  }

  .curriculum-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .curriculum-icon-tile {
    min-height: 176px;
  }

  .curriculum-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .curriculum-cta-actions {
    align-items: flex-start;
  }

  .footer-info-item,
  .footer-info-cta {
    padding: 24px 24px;
  }

  .footer-info-item:not(:last-child)::after,
  .footer-info-cta::before,
  .footer-brand-col::after,
  .footer-contact-col::after {
    display: none;
  }

  .footer-info-cta {
    align-items: flex-start;
    text-align: left;
  }

  .footer-main-row {
    row-gap: 30px;
  }

  .footer-brand-col,
  .footer-contact-col,
  .footer-social-col {
    padding: 0 24px;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 575px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .gsaa-navbar .brand-title {
    font-size: 1rem;
  }

  .gsaa-navbar .brand-subtitle {
    font-size: 0.68rem;
  }

  .gsaa-navbar .brand-chinese {
    font-size: 0.68rem;
    letter-spacing: 3px;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2 {
    letter-spacing: 4px;
  }

  .heading-line {
    display: none;
  }

  .hero-section {
    padding: 60px 0;
    background-position: 72% center;
  }

  .hero-section::before,
  .curriculum-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .hero-title-gsaa .hero-line-1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-line-2 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .about-copy {
    padding: 20px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .curriculum-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 26px;
  }

  .curriculum-icon,
  .curriculum-icon img {
    width: 92px;
    height: 92px;
  }

  .training-benefit {
    padding: 22px 20px;
    gap: 20px;
  }

  .training-benefit:nth-child(odd)::after {
    display: none;
  }

  .benefit-icon,
  .benefit-icon img {
    width: 72px;
    height: 72px;
  }

  .lineage-image {
    max-width: 240px;
  }

  .lineage-copy h2 {
    font-size: 2rem;
  }

  .lineage-btn {
    width: 100%;
    text-align: center;
  }

  .curriculum-hero-section {
    min-height: 520px;
    background-position: 70% center;
  }

  .curriculum-hero-content {
    min-height: 520px;
  }

  .curriculum-hero-copy {
    padding: 58px 0;
  }

  .curriculum-hero-title {
    font-size: clamp(3rem, 16vw, 4.2rem);
    letter-spacing: 2px;
  }

  .curriculum-hero-subtitle {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .curriculum-hero-btn,
  .curriculum-hero-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .curriculum-philosophy-heading h2 {
    font-size: 1.7rem;
    letter-spacing: 4px;
  }

  .curriculum-philosophy-panel {
    padding: 0 18px 36px;
  }

  .training-practice-section {
    padding: 42px 0 48px;
  }

  .training-practice-heading h2,
  .animals-heading h2,
  .methods-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .training-practice-copy {
    padding: 20px;
  }

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

  .curriculum-symbol,
  .curriculum-symbol img {
    width: 64px;
    height: 64px;
  }

  .curriculum-icon-tile {
    min-height: 168px;
    padding: 16px 10px;
  }

  .curriculum-icon-tile h3 {
    font-size: 0.92rem;
  }

  .curriculum-icon-tile p {
    font-size: 0.8rem;
  }

  .curriculum-cta-actions,
  .curriculum-cta-btn,
  .curriculum-cta-link {
    width: 100%;
    text-align: center;
  }

  .footer-info-bar {
    padding: 14px 0;
  }

  .footer-info-item {
    gap: 18px;
  }

  .footer-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
    border-width: 3px;
  }

  .footer-info-copy h3 {
    font-size: 1rem;
  }

  .footer-info-copy p,
  .footer-info-cta p {
    font-size: 0.88rem;
  }

  .footer-classes-btn {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    padding: 30px 0 18px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
  }

  .footer-brand-title {
    font-size: 1.15rem;
  }

  .footer-brand-subtitle {
    font-size: 0.72rem;
  }

  .footer-brand-chinese {
    font-size: 0.82rem;
    letter-spacing: 3px;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }
}

/* =========================
   Instructors Hero
========================= */

.instructors-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 38%,
      rgba(0, 0, 0, 0.55) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url("../images/instructors-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.instructors-hero-content {
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.instructors-hero-copy {
  padding: 70px 0;
}

.instructors-hero-title {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d6a23a;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.instructors-hero-subtitle {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #b60f14;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.instructors-hero-rule {
  width: 84px;
  height: 3px;
  margin: 0 0 24px 0;
  background-color: #d6a23a;
}

.instructors-hero-text {
  max-width: 560px;
  margin: 0 0 34px 0;
  color: #e8e1d4;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.instructors-hero-buttons {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.instructors-hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.instructors-hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.instructors-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

/* =========================
   Founder Section
========================= */

.founder-section {
  background-color: #f1eee7;
  color: #111111;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.founder-container {
  max-width: 1920px;
  margin: 0 auto;
}

.founder-image-col {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: none;
  background-color: #f1eee7;
}

.founder-image {
  width: 100%;
  max-width: 430px;
  display: block;
}

.founder-copy {
  padding: 70px 8vw 70px 50px;
}

.founder-role,
.shawn-role,
.bio-card-role {
  margin: -12px 0 22px 0;
  color: #9f1418;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.founder-copy p {
  max-width: 780px;
  color: #242424;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* =========================
   Shawn Leadership
========================= */

.shawn-leadership-section {
  background-color: #050505;
  color: #ffffff;
  padding: 58px 0;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.shawn-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.shawn-feature-image {
  width: 100%;
  max-width: 430px;
  display: block;
}

.shawn-copy {
  padding: 20px 20px 20px 50px;
}

.shawn-copy h2 {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
}

.shawn-copy p {
  max-width: 760px;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================
   Lineage Accordion
========================= */

.lineage-accordion-section {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 58px 0;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.lineage-accordion-heading h2 {
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 6px;
}

.lineage-accordion-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.75);
}

.lineage-intro {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #d7d2c8;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

.gsaa-accordion .accordion-item {
  background-color: #111111;
  border: 1px solid rgba(214, 162, 58, 0.55);
}

.gsaa-accordion .accordion-button {
  background-color: #111111;
  color: #d6a23a;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: none;
}

.gsaa-accordion .accordion-button:not(.collapsed) {
  background-color: #151515;
  color: #ffffff;
}

.gsaa-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(214, 162, 58, 0.55);
}

.gsaa-accordion .accordion-body {
  background-color: #f1eee7;
  padding: 30px;
}

.lineage-tree-img {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(140, 100, 45, 0.45);
  background-color: #ffffff;
}

/* =========================
   Meet the Instructors
========================= */

.meet-instructors-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 58px 0;
}

.meet-instructors-heading {
  margin-bottom: 10px;
}

.meet-instructors-heading h2 {
  color: #9f1418;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 6px;
}

.meet-instructors-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.6);
}

.meet-instructors-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #222222;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.bio-card {
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(140, 100, 45, 0.5);
  color: #111111;
}

.bio-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.bio-card-copy {
  padding: 24px;
}

.bio-card-copy h3 {
  margin: 0 0 12px 0;
  color: #9f1418;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.15;
  text-transform: uppercase;
}

.bio-card-copy p {
  color: #222222;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================
   Instructors CTA
========================= */

.instructors-cta-section {
  background-color: #050505;
  color: #ffffff;
  padding: 50px 0;
  border-top: 1px solid rgba(214, 162, 58, 0.45);
  border-bottom: 1px solid rgba(214, 162, 58, 0.45);
}

.instructors-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.instructors-cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  color: #d6a23a;
}

.instructors-cta-copy h2 span {
  color: #b60f14;
}

.instructors-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
}

.instructors-cta-btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.instructors-cta-link {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

/* =========================
   Instructors Responsive
========================= */

@media (max-width: 991px) {
  .instructors-hero-section,
  .instructors-hero-content {
    min-height: 500px;
  }

  .founder-image-col {
    min-height: auto;
    padding-top: 40px;
  }

  .founder-copy {
    padding: 40px 40px 54px;
  }

  .shawn-copy {
    padding: 40px 24px 10px;
  }

  .instructors-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .instructors-hero-section {
    min-height: 520px;
    background-position: 68% center;
  }

  .instructors-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .instructors-hero-content {
    min-height: 520px;
  }

  .instructors-hero-copy {
    padding: 58px 0;
  }

  .instructors-hero-title {
    font-size: clamp(3rem, 16vw, 4.2rem);
    letter-spacing: 2px;
  }

  .instructors-hero-subtitle {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .instructors-hero-btn,
  .instructors-hero-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .founder-copy {
    padding: 32px 24px 42px;
  }

  .bio-card-photo {
    aspect-ratio: 16 / 10;
  }

  .instructors-cta-actions,
  .instructors-cta-btn,
  .instructors-cta-link {
    width: 100%;
  }
}


/* =========================
   Gallery Hero
========================= */

.gallery-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 38%,
      rgba(0, 0, 0, 0.48) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url("../images/gallery-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.gallery-hero-content {
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.gallery-hero-copy {
  padding: 70px 0;
}

.gallery-hero-title {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d6a23a;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.gallery-hero-subtitle {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #b60f14;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.gallery-hero-rule {
  width: 84px;
  height: 3px;
  margin: 0 0 24px 0;
  background-color: #d6a23a;
}

.gallery-hero-text {
  max-width: 560px;
  margin: 0 0 34px 0;
  color: #e8e1d4;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.gallery-hero-buttons {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.gallery-hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.gallery-hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.gallery-hero-btn-primary:hover,
.gallery-hero-btn-primary:focus {
  background-color: #e3b656;
  color: #050505;
}

.gallery-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-hero-link span {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease-in-out;
}

.gallery-hero-link:hover,
.gallery-hero-link:focus {
  color: #e3b656;
}

.gallery-hero-link:hover span,
.gallery-hero-link:focus span {
  transform: translateX(5px);
}

/* =========================
   Gallery Intro
========================= */

.gallery-intro-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 46px 0 50px;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.gallery-intro-heading h2 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.gallery-intro-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.55);
}

.gallery-intro-text {
  max-width: 880px;
  margin: 0 auto;
  color: #242424;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.7;
  text-align: center;
}

/* =========================
   Gallery Grid
========================= */

.gallery-grid-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)),
    radial-gradient(circle at center, rgba(214, 162, 58, 0.08), transparent 55%);
  background-color: #050505;
  color: #ffffff;
  padding: 52px 0 60px;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.gallery-grid-heading {
  margin-bottom: 8px;
}

.gallery-grid-heading h2 {
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 6px;
}

.gallery-grid-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.75);
}

.gallery-grid-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.gallery-card {
  height: 100%;
  overflow: hidden;
  background-color: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(214, 162, 58, 0.75);
  border-radius: 0;
  color: #ffffff;
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid rgba(214, 162, 58, 0.6);
}

.gallery-card-body {
  padding: 22px 24px 26px;
}

.gallery-card-category {
  margin: 0 0 10px 0;
  color: #b60f14;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-card-title {
  margin: 0 0 10px 0;
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.gallery-card-text {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================
   Gallery CTA
========================= */

.gallery-cta-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 42px 0;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.gallery-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.gallery-cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.gallery-cta-copy h2 span {
  color: #9f1418;
}

.gallery-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.gallery-cta-btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-cta-btn:hover,
.gallery-cta-btn:focus {
  background-color: #e3b656;
  color: #050505;
}

.gallery-cta-link {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.gallery-cta-link span {
  margin-left: 10px;
}

/* =========================
   Gallery Responsive
========================= */

@media (max-width: 991px) {
  .gallery-hero-section,
  .gallery-hero-content {
    min-height: 500px;
  }

  .gallery-hero-section {
    background-position: 62% center;
  }

  .gallery-hero-copy {
    padding: 64px 0;
  }

  .gallery-hero-title {
    font-size: clamp(3.4rem, 10vw, 5.5rem);
  }

  .gallery-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .gallery-hero-section {
    min-height: 520px;
    background-position: 70% center;
  }

  .gallery-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .gallery-hero-content {
    min-height: 520px;
  }

  .gallery-hero-copy {
    padding: 58px 0;
  }

  .gallery-hero-title {
    font-size: clamp(3rem, 16vw, 4.2rem);
    letter-spacing: 2px;
  }

  .gallery-hero-subtitle {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .gallery-hero-btn,
  .gallery-hero-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gallery-grid-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .gallery-card-body {
    padding: 20px;
  }

  .gallery-cta-actions,
  .gallery-cta-btn,
  .gallery-cta-link {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   Contact Hero
========================= */

.contact-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 38%,
      rgba(0, 0, 0, 0.48) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url("../images/contact-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.contact-hero-content {
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.contact-hero-copy {
  padding: 70px 0;
}

.contact-hero-title {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d6a23a;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.contact-hero-subtitle {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #b60f14;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.contact-hero-rule {
  width: 84px;
  height: 3px;
  margin: 0 0 24px 0;
  background-color: #d6a23a;
}

.contact-hero-text {
  max-width: 560px;
  margin: 0 0 34px 0;
  color: #e8e1d4;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.contact-hero-buttons {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.contact-hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.contact-hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.contact-hero-btn-primary:hover,
.contact-hero-btn-primary:focus {
  background-color: #e3b656;
  color: #050505;
}

.contact-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-hero-link span {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease-in-out;
}

.contact-hero-link:hover,
.contact-hero-link:focus {
  color: #e3b656;
}

.contact-hero-link:hover span,
.contact-hero-link:focus span {
  transform: translateX(5px);
}

/* =========================
   Contact Intro / Cards
========================= */

.contact-intro-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 46px 0 56px;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.contact-intro-heading h2,
.contact-visit-heading h2 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.contact-intro-heading .heading-line,
.contact-visit-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.55);
}

.contact-intro-text {
  max-width: 880px;
  margin: 0 auto 34px;
  color: #242424;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.7;
  text-align: center;
}

.contact-card-row {
  align-items: stretch;
}

.contact-card {
  height: 100%;
  padding: 36px 30px;
  background-color: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(214, 162, 58, 0.78);
  color: #ffffff;
  text-align: center;
}

.contact-card-icon,
.contact-card-emblem {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6a23a;
  border: 2px solid #d6a23a;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.contact-card-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.contact-card h3 {
  margin: 0 0 12px 0;
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-card-label {
  margin: 0 0 18px 0;
  color: #b60f14;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-card p {
  color: #e2e2e2;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-card-link {
  display: block;
  margin-top: 10px;
  color: #d6a23a;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card-link:hover,
.contact-card-link:focus {
  color: #e3b656;
}

/* =========================
   Contact Locations
========================= */

.contact-locations-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)),
    radial-gradient(circle at center, rgba(214, 162, 58, 0.08), transparent 55%);
  background-color: #050505;
  color: #ffffff;
  padding: 52px 0 60px;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.contact-locations-heading {
  margin-bottom: 8px;
}

.contact-locations-heading h2 {
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 6px;
}

.contact-locations-heading .heading-line {
  background-color: rgba(214, 162, 58, 0.75);
}

.contact-locations-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.contact-location-card {
  height: 100%;
  overflow: hidden;
  background-color: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(214, 162, 58, 0.75);
  color: #ffffff;
}

.contact-location-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid rgba(214, 162, 58, 0.6);
}

.contact-location-body {
  padding: 24px 24px 28px;
  text-align: center;
}

.contact-location-kicker {
  margin: 0 0 10px 0;
  color: #b60f14;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.contact-location-body h3 {
  margin: 0 0 14px 0;
  color: #d6a23a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-location-body p {
  margin: 0 0 18px 0;
  color: #eeeeee;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-location-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  color: #e7e7e7;
  border-top: 1px solid rgba(214, 162, 58, 0.35);
  font-size: 0.9rem;
}

.contact-location-detail span {
  color: #d6a23a;
  font-weight: 800;
}

.contact-location-detail a {
  color: #e7e7e7;
  text-decoration: none;
}

.contact-location-detail a:hover,
.contact-location-detail a:focus {
  color: #d6a23a;
}

/* =========================
   Before You Visit
========================= */

.contact-visit-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 42px 0;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.contact-visit-art-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-visit-art {
  width: 100%;
  max-width: 420px;
  display: block;
  opacity: 0.78;
}

.contact-visit-copy {
  padding: 28px 30px;
}

.contact-visit-heading {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.contact-visit-copy p {
  max-width: 760px;
  margin: 0 0 18px 0;
  color: #242424;
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-visit-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 780px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(140, 100, 45, 0.45);
}

.contact-visit-note span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  border: 2px solid #111111;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
}

.contact-visit-note p {
  margin: 0;
  font-size: 0.98rem;
}

/* =========================
   Contact CTA
========================= */

.contact-cta-section {
  background-color: #050505;
  color: #ffffff;
  padding: 42px 0;
  border-top: 1px solid rgba(214, 162, 58, 0.45);
  border-bottom: 1px solid rgba(214, 162, 58, 0.45);
}

.contact-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 36px;
  border: 1px solid rgba(214, 162, 58, 0.75);
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at left center, rgba(214, 162, 58, 0.12), transparent 45%);
}

.contact-cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #d6a23a;
}

.contact-cta-copy h2 span {
  color: #ffffff;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.contact-cta-btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-cta-btn:hover,
.contact-cta-btn:focus {
  background-color: #e3b656;
  color: #050505;
}

.contact-cta-link {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.contact-cta-link span {
  margin-left: 10px;
}

/* =========================
   Contact Responsive
========================= */

@media (max-width: 991px) {
  .contact-hero-section,
  .contact-hero-content {
    min-height: 500px;
  }

  .contact-hero-section {
    background-position: 62% center;
  }

  .contact-hero-copy {
    padding: 64px 0;
  }

  .contact-hero-title {
    font-size: clamp(3.4rem, 10vw, 5.5rem);
  }

  .contact-visit-copy {
    padding: 30px 0 0;
  }

  .contact-visit-heading {
    justify-content: center;
  }

  .contact-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .contact-hero-section {
    min-height: 520px;
    background-position: 70% center;
  }

  .contact-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .contact-hero-content {
    min-height: 520px;
  }

  .contact-hero-copy {
    padding: 58px 0;
  }

  .contact-hero-title {
    font-size: clamp(3rem, 16vw, 4.2rem);
    letter-spacing: 2px;
  }

  .contact-hero-subtitle {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .contact-hero-btn,
  .contact-hero-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-intro-heading h2,
  .contact-locations-heading h2,
  .contact-visit-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .contact-location-body {
    padding: 22px 20px 26px;
  }

  .contact-location-detail {
    flex-direction: column;
    gap: 6px;
  }

  .contact-visit-note {
    flex-direction: column;
    gap: 12px;
  }

  .contact-cta-content {
    padding: 28px 22px;
  }

  .contact-cta-actions,
  .contact-cta-btn,
  .contact-cta-link {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   FAQ Hero
========================= */

.faq-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 38%,
      rgba(0, 0, 0, 0.48) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url("../images/faq-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
  overflow: hidden;
}

.faq-hero-content {
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.faq-hero-copy {
  padding: 70px 0;
}

.faq-hero-title {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d6a23a;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.faq-hero-subtitle {
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #b60f14;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.faq-hero-rule {
  width: 84px;
  height: 3px;
  margin: 0 0 24px 0;
  background-color: #d6a23a;
}

.faq-hero-text {
  max-width: 560px;
  margin: 0 0 34px 0;
  color: #e8e1d4;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.faq-hero-buttons {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.faq-hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.faq-hero-btn-primary {
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
}

.faq-hero-btn-primary:hover,
.faq-hero-btn-primary:focus {
  background-color: #e3b656;
  color: #050505;
}

.faq-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #d6a23a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.faq-hero-link span {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease-in-out;
}

.faq-hero-link:hover,
.faq-hero-link:focus {
  color: #e3b656;
}

.faq-hero-link:hover span,
.faq-hero-link:focus span {
  transform: translateX(5px);
}

/* =========================
   FAQ Intro
========================= */

.faq-intro-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 46px 0 50px;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.faq-intro-heading h2 {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.faq-intro-heading .heading-line {
  background-color: rgba(140, 100, 45, 0.55);
}

.faq-intro-text {
  max-width: 880px;
  margin: 0 auto;
  color: #242424;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.7;
  text-align: center;
}

/* =========================
   FAQ Accordion
========================= */

.faq-accordion-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)),
    radial-gradient(circle at center, rgba(214, 162, 58, 0.08), transparent 55%);
  background-color: #050505;
  color: #ffffff;
  padding: 52px 0 60px;
  border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.faq-accordion {
  max-width: 1060px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  background-color: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(214, 162, 58, 0.72);
  border-radius: 0;
  color: #ffffff;
  overflow: hidden;
}

.faq-item:first-of-type,
.faq-item:last-of-type {
  border-radius: 0;
}

.faq-question {
  gap: 18px;
  padding: 22px 26px;
  background-color: rgba(12, 12, 12, 0.96);
  color: #d6a23a;
  border-radius: 0 !important;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.faq-question:not(.collapsed) {
  background-color: #151515;
  color: #ffffff;
  box-shadow: none;
}

.faq-question:focus {
  border-color: rgba(214, 162, 58, 0.75);
  box-shadow: 0 0 0 0.15rem rgba(214, 162, 58, 0.25);
}

.faq-question::after {
  filter: invert(74%) sepia(45%) saturate(650%) hue-rotate(358deg) brightness(90%) contrast(90%);
}

.faq-question:not(.collapsed)::after {
  filter: invert(100%);
}

.faq-number {
  flex: 0 0 auto;
  color: #b60f14;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-answer {
  background-color: #f1eee7;
  color: #111111;
  padding: 26px 30px 30px;
  border-top: 1px solid rgba(214, 162, 58, 0.45);
}

.faq-answer p {
  margin: 0;
  color: #222222;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer strong {
  color: #9f1418;
}

/* =========================
   FAQ CTA
========================= */

.faq-cta-section {
  background-color: #f1eee7;
  color: #111111;
  padding: 42px 0;
  border-top: 2px solid rgba(214, 162, 58, 0.85);
  border-bottom: 2px solid rgba(214, 162, 58, 0.85);
}

.faq-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.faq-cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.faq-cta-copy h2 span {
  color: #9f1418;
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.faq-cta-btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  background-color: #d6a23a;
  color: #050505;
  border: 1px solid #d6a23a;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.faq-cta-btn:hover,
.faq-cta-btn:focus {
  background-color: #e3b656;
  color: #050505;
}

.faq-cta-link {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.faq-cta-link span {
  margin-left: 10px;
}

/* =========================
   FAQ Responsive + Mobile Nav Fix
========================= */

.gsaa-navbar .navbar-toggler {
  border-color: #d6a23a;
}

.gsaa-navbar .navbar-toggler-icon {
  background-image: none;
  width: 1.6em;
  height: 1.2em;
  position: relative;
  border-top: 2px solid #d6a23a;
  filter: none;
}

.gsaa-navbar .navbar-toggler-icon::before,
.gsaa-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 2px solid #d6a23a;
}

.gsaa-navbar .navbar-toggler-icon::before {
  top: 0.45em;
}

.gsaa-navbar .navbar-toggler-icon::after {
  top: 0.9em;
}

@media (max-width: 991px) {
  .faq-hero-section,
  .faq-hero-content {
    min-height: 500px;
  }

  .faq-hero-section {
    background-position: 62% center;
  }

  .faq-hero-copy {
    padding: 64px 0;
  }

  .faq-hero-title {
    font-size: clamp(3.4rem, 10vw, 5.5rem);
  }

  .faq-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .faq-hero-section {
    min-height: 520px;
    background-position: 70% center;
  }

  .faq-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .faq-hero-content {
    min-height: 520px;
  }

  .faq-hero-copy {
    padding: 58px 0;
  }

  .faq-hero-title {
    font-size: clamp(3rem, 16vw, 4.2rem);
    letter-spacing: 2px;
  }

  .faq-hero-subtitle {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .faq-hero-btn,
  .faq-hero-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-intro-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .faq-question {
    gap: 12px;
    padding: 19px 18px;
    font-size: 0.92rem;
    letter-spacing: 0.45px;
  }

  .faq-answer {
    padding: 22px 20px 24px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-cta-actions,
  .faq-cta-btn,
  .faq-cta-link {
    width: 100%;
    text-align: center;
  }
}
