/* KAIRRON - SHARED STYLES */
:root {
  --deep-navy: #0F2547;
  --navy: #1B3A6B;
  --gold: #C9A84C;
  --light-gold: #F9F2DC;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --pale-navy: #F4F7FB;
  --dark: #1A1A1A;
  --grey: #555555;
  --light-grey: #DDDDDD;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 37, 71, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 6px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--deep-navy) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #d4b75e;
  color: var(--deep-navy) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* PAGE HERO */
.page-hero {
  background: var(--deep-navy);
  color: var(--white);
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(27, 58, 107, 0.4), transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* GENERAL SECTIONS */
section { padding: 120px 0; }

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
  color: var(--deep-navy);
}

.section-sub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}

.btn-gold {
  background: var(--gold);
  color: var(--deep-navy);
}

.btn-gold:hover {
  background: #d4b75e;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--deep-navy);
}

.btn-navy {
  background: var(--deep-navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

/* PILLAR CARDS */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 2px;
  border: 1px solid var(--light-grey);
  transition: all 0.3s ease;
}

.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 37, 71, 0.08);
}

.pillar.featured {
  border-color: var(--gold);
  background: var(--light-gold);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--deep-navy);
  margin-bottom: 16px;
  font-weight: 600;
}

.pillar-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
}

.pillar-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-navy);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* CRITERIA GRID */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.criteria-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--light-grey);
}

.criteria-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.criteria-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--deep-navy);
  font-weight: 600;
  margin-bottom: 8px;
}

.criteria-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* FORM */
.form-section {
  background: var(--pale-navy);
  padding: 80px 0;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 48px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(15, 37, 71, 0.06);
}

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

.form-row.full { grid-template-columns: 1fr; }

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

.form-group label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group label .required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease;
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.form-checkbox input { margin-top: 4px; }

.form-checkbox label {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-submit { text-align: center; margin-top: 32px; }

/* FOOTER */
footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-desc {
  max-width: 360px;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

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

.footer-appointment {
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

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

/* FADE-IN ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .page-hero { padding: 150px 0 80px; }

  .pillars { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .criteria-grid { grid-template-columns: 1fr; }
}
