@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   RSM Poland — Design System
   River School of Ministry Poland
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */

:root {
  --navy: #1a1a2e;
  --navy-dark: #0f0f1a;
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --bg-light: #f8f9fa;
  --text-dark: #212529;
  --text-light: #e8e8e8;
  --text-muted: #9a9ab0;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --border-radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.25);
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

* {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}


body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================================================
   Typography
   ============================================================ */

h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   Container
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: 5rem 0;
  contain: layout style;
}

/* Adjacent same-color sections: remove top padding to avoid visual double-gap */
.section-dark + .section-dark,
.section-light + .section-light,
.section-dark + .quote-section,
.quote-section + .section-dark {
  padding-top: 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: var(--text-light);
}

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

.section-white {
  background: white;
}

/* ============================================================
   Navbar
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.2rem 0;
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:active,
.nav-links a.btn-primary:focus,
.nav-links a.btn-primary:visited {
  color: var(--navy-dark);
}

.nav-links a.btn-primary:hover {
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
  text-decoration: none;
}

.nav-links a.btn-primary.active::after {
  display: none;
}

.nav-home-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              background 0.6s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(212,175,55,0.3),
              0 0 28px rgba(212,175,55,0.2),
              0 0 50px rgba(212,175,55,0.1);
}

.btn-primary:hover::before {
  left: 100%;
  transition: left 0.7s ease;
}

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

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: white;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (smaller, for subpages) */

.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  padding-top: 80px;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--gold);
  }
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
}

@media (hover: hover) {
  .card-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
  }
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card-dark h3 {
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ============================================================
   Stats / Counters
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   Quote Block
   ============================================================ */

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(212,175,55,0.05);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quote-block p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
}

.quote-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.quote-section blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

.quote-section blockquote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

/* ============================================================
   Info Box
   ============================================================ */

.info-box {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.info-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-box-row:last-child {
  border-bottom: none;
}

.info-box-label {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  min-width: 120px;
}

.info-box-value {
  color: var(--text-light);
}

.price-display {
  text-align: center;
  padding: 3rem;
}

.price-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ============================================================
   Badges
   ============================================================ */

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0.25rem;
  letter-spacing: 0.05em;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* ============================================================
   Steps / Timeline
   ============================================================ */

.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 5rem;
  bottom: -1rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-number {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  gap: 1rem;
}

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

.accordion-item.open .accordion-btn {
  color: var(--gold);
}

.accordion-icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
  color: var(--gold);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ============================================================
   Lineage Diagram
   ============================================================ */

.lineage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 500px;
  margin: 2rem auto;
}

.lineage-node {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--border-radius);
  padding: 1rem 2rem;
  text-align: center;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}

.lineage-node.highlight {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
}

.lineage-node span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.25rem;
  font-style: italic;
}

/* Section-subtitle on light backgrounds needs darker color for readability */
.section-light .section-subtitle,
.section-white .section-subtitle {
  color: #555;
}

/* Badges on light (white card) background — gold-on-white is unreadable */
.card:not(.card-dark) .badge {
  background: rgba(180, 140, 20, 0.12);
  color: #7a5e00;
  border-color: rgba(180, 140, 20, 0.5);
}

/* btn-outline on white/light card backgrounds — gold-on-white lacks contrast */
.card:not(.card-dark) .btn-outline {
  color: #6b5200;
  border-color: #a07a00;
}

.card:not(.card-dark) .btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.lineage-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0.25rem 0;
  opacity: 0.6;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.footer {
  background: var(--navy-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-email {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-church {
  font-size: 0.85rem;
}

.footer-accred {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   Utility Classes
   ============================================================ */

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.content-narrow {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.content-medium {
  max-width: 800px;
  margin: 0 auto;
}

/* Person cards with photos */
.person-card {
  overflow: hidden;
}

.person-card-img {
  display: block;
  width: calc(100% + 4rem);
  height: 280px;
  object-fit: cover;
  object-position: center top;
  margin: -2rem -2rem 1.5rem -2rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Zoomed wrapper — focuses on faces, clips overflow via parent card */
.person-card-img-wrap {
  width: calc(100% + 4rem);
  height: 320px;
  margin: -2rem -2rem 1.5rem -2rem;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.person-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 31%;
  transform: scale(1.85);
  transform-origin: 50% 31%;
  transition: transform 0.4s ease;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.photo-grid-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

@media (hover: hover) {
  .photo-grid-item:hover img {
    transform: scale(1.04);
  }
}

.photo-grid-item:first-child img {
  object-position: center 19%;
}

/* Small photo grid for person galleries */
.person-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.person-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top; /* default: faces at top for most person photos */
  border-radius: calc(var(--border-radius) / 2);
  display: block;
}

/* Revival selfie: faces at bottom of photo */
.person-photos img:nth-child(2) {
  object-position: center 80%;
}

@media (max-width: 480px) {
  .person-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .person-card-img {
    height: 200px;
  }
}

.quote-attribution {
  color: var(--gold);
  margin-top: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.checklist-centered {
  max-width: 400px;
  margin: 0 auto;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist li::before {
  content: '\2713 ';
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

@media (max-width: 1200px) {
  .container { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .section { padding: 3rem 0; }

  h2 { font-size: 1.8rem; }

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

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

  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .step:not(:last-child)::before { display: none; }

  .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-number { font-size: 3rem; }
}

/* ============================================================
   Form
   ============================================================ */

.form-page {
  background: var(--bg-light);
  padding: 5rem 0;
}

.form-page .container {
  max-width: 720px;
}

.form-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 3rem;
}

.form-section-heading {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

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

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-label .required {
  color: #c0392b;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  background: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
}

.form-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 2rem 0;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox-row label {
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1.5;
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================================
   Print
   ============================================================ */

@media print {
  .navbar,
  .footer,
  .hero-cta {
    display: none;
  }
}

/* ============================================================
   Accessibility — Focus
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
