/* ============================================================
   GAC — Global Arts Council
   Palette: Royal Plum + Antique Gold
   Type: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A4458;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

/* === Design Tokens === */
:root {
  --midnight:   #4A225E;
  --midnight-2: #3B1A4B;
  --midnight-3: #5C2E73;
  --gold:       #C8A96E;
  --gold-light: #D4BC8A;
  --white:      #FFFFFF;
  --parchment:  #F5F3EF;
  --slate:      #4A4458;
  --slate-light: #786F87;
  --border-gold: rgba(200, 169, 110, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --max-width: 1200px;
  --section-py: 100px;
}

/* === Container === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(74, 34, 94, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.logo-full {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* === Hamburger Toggle === */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.nav-toggle-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X */
.nav-toggle-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 169, 110, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(92, 46, 115, 0.55) 0%, transparent 55%),
    linear-gradient(160deg, #4A225E 0%, #3B1A4B 45%, #4A225E 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  opacity: 0.75;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 124px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
}

.divider-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.divider-emblem {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-bottom: 52px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.45), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

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

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

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.28);
}

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

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

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

/* ============================================================
   SECTION SEPARATOR — Signature Element
   ============================================================ */
.section-sep {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  background: var(--white);
}

.section-sep--dark {
  background: var(--midnight);
}

.sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.35), transparent);
}

.sep-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  margin: 0 20px;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: rgba(200, 169, 110, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-title--light {
  color: var(--white);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--parchment);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  border-left: 2px solid var(--gold);
  padding-left: 44px;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 20px;
}

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

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: var(--section-py) 0;
  background: var(--midnight);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Social feed module */
.social-feed {
  grid-column: 1 / -1;
  background: var(--midnight-2);
  border: 1px solid var(--border-gold);
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  border-bottom: 1px solid var(--border-gold);
}

.social-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--midnight);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.social-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.social-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.social-media-item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--midnight-3);
  overflow: hidden;
}

.social-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-media-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.social-media-item:hover::before {
  background: rgba(0, 0, 0, 0.25);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

.product-card {
  background: var(--midnight-3);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.product-card:hover {
  background: #6B3684;
}

.card-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  flex-shrink: 0;
}

.card-body {
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 36px;
}

.card-section {
  margin-bottom: 28px;
}

.card-section-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 14px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.card-list li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 18px;
  position: relative;
}

.card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
  font-size: 11px;
  top: 2px;
}

.card-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.card-footer {
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid rgba(200, 169, 110, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.price-period {
  font-size: 20px;
  opacity: 0.65;
  letter-spacing: 0;
}

.card-footer .btn-gold {
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.process-step {
  padding: 0 36px;
  border-right: 1px solid rgba(200, 169, 110, 0.18);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate-light);
  margin-bottom: 20px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.step-list li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}

.step-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 68px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--midnight);
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-rule {
  width: 64px;
  height: 1px;
  background: rgba(200, 169, 110, 0.25);
  margin: 0 auto 32px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .social-feed-header {
    padding: 24px 24px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 52px;
  }

  .process-step {
    border-right: none;
    padding: 0 0 0 0;
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid rgba(200, 169, 110, 0.18);
    padding-right: 36px;
  }

  .process-step:nth-child(even) {
    padding-left: 36px;
  }
}

/* === Mobile Hamburger Menu === */
@media (max-width: 960px) {
  .navbar {
    height: auto;
  }

  .nav-inner {
    flex-wrap: wrap;
    min-height: 72px;
    height: auto;
    align-items: center;
  }

  .nav-toggle-btn {
    display: flex;
  }

  .logo-full {
    display: none;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-menu.is-open {
    max-height: 600px;
    border-top: 1px solid rgba(200, 169, 110, 0.12);
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(200, 169, 110, 0.07);
  }

  .nav-link {
    display: block;
    padding: 15px 24px;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    width: 100%;
    white-space: normal;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
  }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .section-sep { padding: 0 24px; }

  .hero-eyebrow { display: none; }
  .hero-subtitle { margin-bottom: 40px; }

  .card-body { padding: 36px 28px 36px; }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .about-content { padding-left: 28px; }

  .process-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .process-step,
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    border-right: none;
    border-left: 2px solid rgba(200, 169, 110, 0.25);
    padding: 0 0 0 28px;
  }

  .footer-inner { padding: 52px 24px 36px; }
  .footer-nav { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ============================================================
   APPLY PAGE — Form Section
   ============================================================ */
.apply-form-section {
  padding: 80px 0 120px;
  background: var(--parchment);
}

.apply-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.apply-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--slate-light);
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.form-block {
  background: var(--white);
  padding: 48px 44px;
  margin-bottom: 3px;
}

.form-block-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.form-block-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.form-block-intro {
  font-size: 13px;
  color: var(--slate-light);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
  margin-top: -4px;
}

.field-group {
  margin-bottom: 32px;
}

.field-group:last-child {
  margin-bottom: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}

.field-required {
  color: var(--gold);
  margin-left: 2px;
}

.field-input,
.field-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(74, 68, 88, 0.35);
  font-size: 14px;
}

.field-input:focus,
.field-textarea:focus {
  border-bottom-color: var(--gold);
}

.field-input.is-error,
.field-textarea.is-error {
  border-bottom-color: #c0392b;
}

.field-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.75;
}

.field-helper {
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 7px;
  line-height: 1.65;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.field-error.is-visible {
  display: block;
}

/* Art Tags */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.art-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.art-tag:hover {
  border-color: var(--gold);
  color: var(--midnight);
}

.art-tag.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}

.art-other-input {
  margin-top: 12px;
}

/* Program Cards */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 8px;
}

.program-card {
  background: var(--midnight-3);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.program-card:hover {
  background: #6B3684;
}

.program-card.is-selected {
  border-color: var(--gold);
}

.program-card .card-accent {
  opacity: 0;
  transition: opacity 0.2s;
}

.program-card.is-selected .card-accent {
  opacity: 1;
}

.program-card-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
}

.program-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.program-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  opacity: 0.65;
}

.program-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.program-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.program-card.is-selected .program-radio {
  border-color: var(--gold);
}

.program-card.is-selected .program-radio-dot {
  opacity: 1;
}

.program-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.program-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.program-includes {
  flex: 1;
  margin-bottom: 24px;
}

.program-includes-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 12px;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-list li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 16px;
  position: relative;
}

.program-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
  font-size: 10px;
  top: 2px;
}

.program-price-row {
  padding-top: 20px;
  border-top: 1px solid rgba(200, 169, 110, 0.14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-price-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.program-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.program-price-period {
  font-size: 18px;
  opacity: 0.65;
  letter-spacing: 0;
}

/* Declaration */
.declaration-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--slate);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
  margin-bottom: 6px;
}

.checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(200, 169, 110, 0.4);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-wrap input:checked ~ .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-wrap input:checked ~ .checkbox-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--midnight);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: 0.02em;
}

/* Submit */
.form-submit {
  margin-top: 40px;
}

.apply-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* Success State */
.apply-success {
  text-align: center;
  padding: 80px 44px;
  background: var(--white);
}

.success-ornament {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 32px;
  opacity: 0.8;
}

.success-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.success-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 20px;
}

.success-ref {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  margin-bottom: 40px;
}

.success-ref-num {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.success-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(74, 34, 94, 0.25);
  color: var(--midnight);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
}

.success-back-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   APPLY PAGE — Responsive
   ============================================================ */
@media (max-width: 768px) {
  .apply-container { padding: 0 24px; }

  .form-block { padding: 36px 24px; }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .field-row .field-group {
    margin-bottom: 32px;
  }

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

@media (max-width: 480px) {
  .apply-container { padding: 0 20px; }

  .form-block { padding: 28px 20px; }

  .program-card-body { padding: 24px 20px 20px; }

  .program-title { font-size: 20px; }

  .program-price { font-size: 28px; }

  .apply-success { padding: 60px 24px; }

  .success-title { font-size: 32px; }
}

/* ============================================================
   ABOUT PAGE — Page Hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(92, 46, 115, 0.5) 0%, transparent 60%),
    linear-gradient(160deg, #4A225E 0%, #3B1A4B 50%, #4A225E 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.breadcrumb-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.25s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-current {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(200, 169, 110, 0.6);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ============================================================
   ABOUT PAGE — Mission Statement
   ============================================================ */
.mission {
  padding: 80px 0;
  background: var(--parchment);
}

.mission-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 48px;
}

.mission-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: 8px;
  display: block;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.mission-source {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ============================================================
   ABOUT PAGE — Three Pillars
   ============================================================ */
.pillars {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.pillar-item {
  padding: 0 48px;
  border-right: 1px solid rgba(200, 169, 110, 0.18);
}

.pillar-item:first-child {
  padding-left: 0;
}

.pillar-item:last-child {
  padding-right: 0;
  border-right: none;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pillar-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--slate-light);
}

/* ============================================================
   ABOUT PAGE — Story
   ============================================================ */
.story {
  padding: var(--section-py) 0;
  background: var(--parchment);
}

/* --- Mission & Vision diptych --- */
.story-diptych {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.story-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 64px;
}

.story-panel:first-child {
  padding-left: 0;
}

.story-panel:last-child {
  padding-right: 0;
}

.story-panel-mark {
  display: block;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 22px;
}

.story-panel-mark svg {
  display: block;
  width: 56px;
  height: 56px;
  stroke-linecap: round;
}

.story-panel-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.story-panel-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 24px;
}

.story-panel-text {
  font-size: 16px;
  line-height: 1.95;
  color: var(--slate);
}

/* Centre join — the page's line–dot–line separator, turned upright */
.story-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200, 169, 110, 0.35), transparent);
}

.story-divider-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  margin: 20px 0;
}

/* ============================================================
   ABOUT PAGE — Who We Serve
   ============================================================ */
.community {
  padding: var(--section-py) 0;
  background: var(--white);
}

.shequn-grid {
  display: grid;
  gap: 44px;
}

.shequn-label {
  display: block;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
  text-align: center;
}

.shequn-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.shequn-tag {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.03em;
  line-height: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.shequn-tag:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--midnight);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.community-item {
  padding: 36px 32px;
  border: 1px solid rgba(200, 169, 110, 0.12);
  background: var(--white);
  transition: background 0.25s;
}

.community-item:hover {
  background: var(--parchment);
}

.community-item--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 0 32px;
}

.community-num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 10px;
}

.community-item--wide .community-num {
  margin-bottom: 0;
}

.community-name {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.community-item--wide .community-name {
  margin-bottom: 0;
}

.community-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-light);
}

/* ============================================================
   ABOUT PAGE — Core Values
   ============================================================ */
.values {
  padding: var(--section-py) 0;
  background: var(--midnight);
}

/* ============================================================
   ABOUT PAGE — Programs (我们的主要活动)
   ============================================================ */
.huodong-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 56px;
  margin-bottom: 80px;
}

.huodong-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 0 36px;
  border-left: 1px solid rgba(200, 169, 110, 0.18);
}

.huodong-item:nth-child(3n+1) {
  padding-left: 0;
  border-left: none;
}

.huodong-item:nth-child(3n) {
  padding-right: 0;
}

.huodong-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  color: var(--gold);
}

.huodong-icon svg {
  display: block;
}

.huodong-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.huodong-en {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.huodong-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

/* CTA inside values section */
.about-cta {
  text-align: center;
  padding-top: 64px;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.about-cta-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 32px;
}

.about-cta-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-text-2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .page-hero-content {
    padding: 0 32px 60px;
  }

  .story-diptych {
    grid-template-columns: 1fr;
  }

  .story-panel {
    padding: 0;
  }

  .story-divider {
    flex-direction: row;
    padding: 44px 0;
  }

  .story-divider-line {
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.35), transparent);
  }

  .story-divider-dot {
    margin: 0 20px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillar-item {
    padding: 0;
    border-right: none;
    border-left: 2px solid rgba(200, 169, 110, 0.25);
    padding-left: 28px;
  }

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

  .community-item--wide {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .community-item--wide .community-num {
    grid-row: 1;
    margin-bottom: 0;
  }

  .community-item--wide .community-name {
    grid-row: 1;
    margin-bottom: 8px;
  }

  .community-item--wide .community-desc {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .huodong-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }

  .huodong-item {
    padding: 0 32px;
    border-left: 1px solid rgba(200, 169, 110, 0.18);
  }

  /* 先撤销三栏时的首列规则，再按两栏重新指定 */
  .huodong-item:nth-child(3n+1) {
    padding-left: 32px;
    border-left: 1px solid rgba(200, 169, 110, 0.18);
  }

  .huodong-item:nth-child(3n) {
    padding-right: 32px;
  }

  .huodong-item:nth-child(2n+1) {
    padding-left: 0;
    border-left: none;
  }

  .huodong-item:nth-child(2n) {
    padding-right: 0;
  }

}

@media (max-width: 768px) {
  .page-hero-content {
    padding: 0 24px 52px;
  }

  .mission-inner {
    padding: 0 24px;
  }

  .mission-mark {
    font-size: 80px;
  }

  .story-panel-mark svg {
    width: 48px;
    height: 48px;
  }

  .shequn-grid {
    gap: 34px;
  }

  .shequn-tags {
    gap: 8px;
  }

  .shequn-tag {
    padding: 10px 18px;
    font-size: 13px;
  }

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

  .community-item--wide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .community-item--wide .community-desc {
    grid-column: 1;
    grid-row: 3;
  }

  .huodong-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-bottom: 56px;
  }

  /* 单栏：竖线换成横线，覆盖上面两个断点留下的所有 nth-child 规则 */
  .huodong-item,
  .huodong-item:nth-child(3n+1),
  .huodong-item:nth-child(3n),
  .huodong-item:nth-child(2n+1),
  .huodong-item:nth-child(2n) {
    padding: 32px 0;
    border-left: none;
    border-top: 1px solid rgba(200, 169, 110, 0.18);
  }

  .huodong-item:first-child {
    padding-top: 0;
    border-top: none;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   CERTIFICATION PAGE — Hero
   ============================================================ */
.cert-hero .page-hero-content {
  padding-bottom: 60px;
}

.cert-hero-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 16px;
}

.cert-hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 14px;
  margin-bottom: 36px;
}

.cert-hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 28px;
  border: 1px solid rgba(200, 169, 110, 0.28);
  background: rgba(200, 169, 110, 0.06);
}

.badge-fee {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
}

/* ============================================================
   CERTIFICATION PAGE — Introduction
   ============================================================ */
.cert-intro {
  padding: var(--section-py) 0;
  background: var(--parchment);
}

.cert-intro-grid {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 80px;
  align-items: start;
}

.cert-intro-aside {
  position: sticky;
  top: 100px;
}

.intro-aside-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 20px;
}

.intro-aside-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.intro-aside-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 24px;
}

.intro-aside-note {
  font-size: 13px;
  line-height: 1.85;
  color: var(--slate-light);
}

.cert-intro-body {
  border-left: 2px solid var(--gold);
  padding-left: 44px;
}

.cert-intro-lead {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cert-intro-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--slate);
  margin-bottom: 22px;
}

.cert-intro-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CERTIFICATION PAGE — Recognition Package
   ============================================================ */
.cert-package {
  padding: var(--section-py) 0;
  background: var(--white);
}

.package-list {
  max-width: 900px;
  margin: 0 auto;
}

.package-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.14);
}

.package-item:first-child {
  padding-top: 0;
}

.package-item:last-child {
  border-bottom: none;
}

.package-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 4px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.package-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-light);
}

/* ============================================================
   CERTIFICATION PAGE — Standards + Who Can Apply
   ============================================================ */
.cert-criteria {
  padding: var(--section-py) 0;
  background: var(--parchment);
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.criteria-divider {
  width: 1px;
  min-height: 400px;
  background: rgba(200, 169, 110, 0.2);
  align-self: stretch;
  margin: 0 64px;
}

.criteria-intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--slate-light);
  margin-bottom: 32px;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.criteria-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.14);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

.criteria-list li:last-child {
  border-bottom: none;
}

.criteria-mark {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

.applicant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.applicant-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  font-size: 13px;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: 0.03em;
  background: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.applicant-tag:hover {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--gold);
}

/* ============================================================
   CERTIFICATION PAGE — Fee + Recognition
   ============================================================ */
.cert-fee {
  padding: var(--section-py) 0;
  background: var(--midnight);
}

.fee-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.fee-divider {
  width: 1px;
  min-height: 320px;
  background: rgba(200, 169, 110, 0.18);
  align-self: stretch;
  margin: 0 72px;
}

.fee-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.fee-amount {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.fee-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
  max-width: 340px;
  margin-bottom: 36px;
}

.fee-btn {
  display: inline-flex;
  margin-bottom: 20px;
}

.fee-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.recognition-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.recognition-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.recognition-intro {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recognition-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.recognition-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
  font-size: 11px;
  top: 2px;
}

/* ============================================================
   CERTIFICATION PAGE — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cert-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cert-intro-aside {
    position: static;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .criteria-divider {
    display: none;
  }

  .fee-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .fee-divider {
    display: none;
  }

  .fee-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cert-intro-body {
    padding-left: 24px;
  }

  .package-item {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  .cert-hero-badge {
    padding: 12px 20px;
  }
}
