/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --green-deep:   #0B3B28;
  --green-mid:    #115C3F;
  --green-light:  #18A86A;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --white:        #FFFFFF;
  --off-white:    #F7F5F0;
  --charcoal:     #1C1C1C;
  --grey-soft:    #6B7280;
  --glass:        rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        72px;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-md:    0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg:    0 8px 48px rgba(0, 0, 0, 0.18);
  --transition:   0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 840px;
}

.section-pad {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-label--light {
  color: var(--gold-light);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px 0;
}

.gold-rule-center {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
}

/* ============================================================
   REVEAL ANIMATIONS (IntersectionObserver)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(26, 71, 49, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-wrap { flex-shrink: 0; }

.nav-logo,
.nav-logo-placeholder {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-placeholder {
  align-items: center;
  justify-content: center;
}

.nav-ministry-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 25, 16, 0.86) 0%, rgba(11, 59, 40, 0.74) 50%, rgba(8, 32, 20, 0.86) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60 L60 0' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.04;
}

.hero-coa-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 80vw);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0 20px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 17px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold-light);
  fill: none;
}

/* Countdown */
.countdown-wrap {
  margin: 24px 0 32px;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.countdown-lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-top: -8px;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-outline-green {
  border: 1.5px solid var(--green-light);
  color: var(--green-mid);
  background: transparent;
}

.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  animation: bounce 2s ease infinite;
}

.scroll-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin-top: -6px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 40px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-soft);
  line-height: 1.6;
}

/* Decorative date */
.about-deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.about-deco-num {
  font-family: var(--font-serif);
  font-size: 180px;
  font-weight: 300;
  color: var(--green-deep);
  opacity: 0.08;
  line-height: 1;
  user-select: none;
}

.about-deco-date {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deco-month {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.2em;
}

.deco-year {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Stat cards */
.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.stat-num sup {
  font-size: 22px;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   SPEAKERS
============================================================ */
.speakers {
  background: var(--off-white);
}

.speaker-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}

.speaker-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.speaker-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.speaker-photo-wrap {
  position: relative;
  width: 200px;
  min-height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.speaker-photo--pate {
  object-position: 30% top;
}

.speaker-photo-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
}

.speaker-photo-placeholder svg {
  width: 100%;
  height: 100%;
}

.speaker-bio {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.speaker-badge--host {
  background: var(--green-mid);
  color: var(--white);
}

.speaker-name {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.2;
}

.speaker-chinese,
.speaker-con {
  color: var(--gold);
  font-style: normal;
}

.speaker-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 8px;
}

.speaker-former {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.speaker-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.speaker-bullets li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-soft);
  padding-left: 16px;
  position: relative;
}

.speaker-bullets li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.3;
}

/* ============================================================
   PROGRAMME
============================================================ */
.programme {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.programme::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 20px 1fr;
  gap: 0 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.timeline-time {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: right;
  padding-top: 3px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green-deep);
  outline: 1px solid var(--green-light);
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.timeline-dot--gold {
  background: var(--gold);
  outline-color: var(--gold);
  width: 14px;
  height: 14px;
  margin-top: 3px;
  margin-left: -2px;
}

.timeline-content h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-content p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-soft);
  line-height: 1.5;
}

.timeline-content--featured h3 {
  color: var(--gold-light);
}

/* ============================================================
   VIRTUAL ACCESS
============================================================ */
.virtual {
  background: #1C1C1C;
  position: relative;
  overflow: hidden;
}

.virtual::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.virtual .section-label { color: var(--gold); }

.virtual .section-heading {
  color: var(--white);
  text-align: center;
}

.virtual-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey-soft);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
}

.virtual .section-label { display: block; text-align: center; }

.zoom-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  max-width: 620px;
  margin: 0 auto;
}

.zoom-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.zoom-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.zoom-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}

.zoom-field {
  margin-bottom: 20px;
}

.zoom-field-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.zoom-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.zoom-link-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  word-break: break-all;
}

.zoom-link-text.tba {
  animation: pulse-tba 2s ease infinite;
  color: var(--grey-soft);
}

@keyframes pulse-tba {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.zoom-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.zoom-copy-btn:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.zoom-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.zoom-detail {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.zoom-detail-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.zoom-detail-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
}

.zoom-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-soft);
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

/* ============================================================
   REGISTRATION FORM
============================================================ */
.register {
  background: var(--white);
}

.register-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey-soft);
  line-height: 1.6;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.reg-form > .form-group--full {
  margin-top: 20px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.required { color: var(--gold); }
.optional { font-weight: 400; color: var(--grey-soft); text-transform: none; letter-spacing: 0; font-size: 11px; }

.form-input {
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-input.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #DC2626;
  min-height: 16px;
}

/* Attendance mode */
.attendance-fieldset {
  border: none;
  padding: 0;
}

.attendance-fieldset legend {
  margin-bottom: 12px;
}

.attendance-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.attendance-option {
  flex: 1;
  min-width: 220px;
  cursor: pointer;
}

.attendance-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.attendance-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.attendance-option input:checked + .attendance-pill {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.attendance-option:hover .attendance-pill {
  border-color: var(--gold);
}

.att-icon { font-size: 24px; }

.attendance-pill strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}

.attendance-pill small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-soft);
}

/* Inline radios */
.inline-fieldset {
  border: none;
  padding: 0;
}

.inline-radios {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.inline-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
}

.inline-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Info note */
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: #7A5E1A;
  line-height: 1.5;
}

/* Submit button */
.form-submit-wrap {
  margin-top: 8px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--green-deep);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-position var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-submit:hover:not(:disabled) {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(26, 71, 49, 0.3);
  border-top-color: var(--green-deep);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .btn-text { opacity: 0.5; }
.btn-submit.loading .btn-spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.reg-success {
  text-align: center;
  padding: 56px 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(82, 183, 136, 0.3);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.success-circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: draw-circle 0.6s ease forwards;
}

.success-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw-check 0.4s ease 0.5s forwards;
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.success-heading {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.success-msg {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.success-detail {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-soft);
  margin-bottom: 20px;
}

.success-contact {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-soft);
  line-height: 1.7;
}

.success-contact a {
  color: var(--green-mid);
  font-weight: 500;
  text-decoration: underline;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}

.rsvp-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.rsvp-deadline-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.rsvp-deadline-date {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}

.contact-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-link {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--green-mid);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); text-decoration: underline; }

.arrival-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-soft);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed rgba(201, 168, 76, 0.4);
}

/* Map */
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
}

.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  text-align: center;
  gap: 12px;
}

.map-venue {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-deep);
}

.map-address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--green-deep);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-partners {
  text-align: center;
  margin-bottom: 40px;
}

.partners-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partner-logo {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  transition: border-color var(--transition), color var(--transition);
}

.partner-logo:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-wrap { flex-shrink: 0; }

.footer-logo,
.footer-logo-placeholder {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-logo-placeholder {
  align-items: center;
  justify-content: center;
}

.footer-ministry {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-event-name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.footer-event-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-idin {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-deco { margin-bottom: 0; }
  .stat-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(26, 71, 49, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--gold);
  }

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

  .nav-link {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .nav-link:last-child { border-bottom: none; }

  /* Hero */
  .hero-badges { flex-direction: column; align-items: center; }
  .badge { width: 100%; max-width: 320px; justify-content: center; }

  .countdown { gap: 4px; }
  .countdown-unit { min-width: 54px; padding: 10px 12px; }
  .countdown-num { font-size: 28px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Speakers */
  .speaker-card {
    grid-template-columns: 1fr;
  }

  .speaker-photo-wrap {
    width: 100%;
    height: 240px;
  }

  /* Timeline */
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 64px 20px 1fr; gap: 0 12px; }
  .timeline-time { font-size: 12px; }

  /* Zoom card */
  .zoom-card { padding: 28px 20px; }
  .zoom-details-row { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .attendance-options { flex-direction: column; }

  /* Footer */
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .nav-ministry-name { display: none; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-dot { display: none; }
}
