:root {
  --navy: #1a2744;
  --gold: #c8922a;
  --parchment: #f5f0e8;
  --white: #ffffff;
  --grey: #6b7280;
  --lightgrey: #e5e7eb;
  --text: #1f2937;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--white); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav { background: var(--navy); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; min-height: 64px; }
.nav-brand { color: var(--white); font-size: 1.2rem; font-weight: bold; letter-spacing: 0.02em; padding: 1rem 0; }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.nav-links a { color: #cbd5e1; font-family: Arial, sans-serif; font-size: 0.875rem; letter-spacing: 0.04em; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-cta { background: var(--gold); color: var(--white) !important; padding: 0.4rem 1rem; border-radius: 3px; font-weight: bold; }

/* PAGE HERO */
.page-hero { background: var(--navy); color: var(--white); padding: 3.5rem 2rem 3rem; text-align: center; }
.hero-eyebrow { font-family: Arial, sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: normal; }

/* SECTION */
.section { padding: 3.5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-family: Arial, sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: normal; color: var(--navy); margin-bottom: 0.75rem; }
.section .lead { color: var(--grey); font-family: Arial, sans-serif; font-size: 1rem; margin-bottom: 2.5rem; max-width: 640px; }

/* PROSE */
.prose-block { max-width: 780px; margin: 0 auto; }
.prose-block h2 { font-size: 1.35rem; font-weight: normal; color: var(--navy); margin: 2rem 0 0.75rem; border-bottom: 1px solid var(--lightgrey); padding-bottom: 0.4rem; }
.prose-block h2:first-child { margin-top: 0; }
.prose-block p { font-family: Arial, sans-serif; font-size: 0.95rem; color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.prose-block em { font-style: italic; }
.legal-date { font-family: Arial, sans-serif; font-size: 0.8rem; color: var(--grey); margin-bottom: 1.5rem; }

/* LISTS */
.styled-list { font-family: Arial, sans-serif; font-size: 0.95rem; color: #374151; padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.8; }
.styled-list li { margin-bottom: 0.4rem; }
ol.styled-list { list-style: decimal; }

/* TABLE */
.info-table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 0.9rem; margin-bottom: 1.5rem; }
.info-table td, .info-table th { padding: 0.65rem 1rem; border: 1px solid var(--lightgrey); vertical-align: top; }
.info-table td:first-child { color: var(--grey); width: 35%; font-weight: bold; background: var(--parchment); }
.info-table th { background: var(--navy); color: var(--white); font-weight: bold; text-align: left; }

/* PRICE BOX */
.price-box { background: var(--parchment); border-left: 4px solid var(--gold); padding: 1.5rem; margin: 1.5rem 0; border-radius: 0 4px 4px 0; }
.price-amount { font-size: 2rem; font-weight: bold; color: var(--navy); font-family: Georgia, serif; }
.price-amount span { font-size: 1rem; font-weight: normal; color: var(--grey); }
.price-note { font-family: Arial, sans-serif; font-size: 0.85rem; color: var(--grey); margin-top: 0.25rem; }

/* NOTICE BOX */
.notice-box { background: #fffbeb; border: 1px solid #f59e0b; border-radius: 4px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; font-family: Arial, sans-serif; font-size: 0.9rem; line-height: 1.7; color: #374151; }
.notice-important { background: #fef2f2; border-color: #ef4444; }

/* FORM */
.application-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: Arial, sans-serif; font-size: 0.85rem; font-weight: bold; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid #d1d5db; border-radius: 3px; font-family: Arial, sans-serif; font-size: 0.9rem; color: var(--text); background: var(--white); }
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-group textarea { resize: vertical; }

/* BTN */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 3px; font-family: Arial, sans-serif; font-size: 0.9rem; font-weight: bold; letter-spacing: 0.03em; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b07d22; text-decoration: none; }
.btn-outline { border: 2px solid #475569; color: #cbd5e1; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.service-card { border: 1px solid var(--lightgrey); border-top: 3px solid var(--gold); padding: 1.75rem; background: var(--white); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-family: Arial, sans-serif; font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.25rem; }
.service-card .price { font-family: Arial, sans-serif; font-size: 0.8rem; background: var(--parchment); display: inline-block; padding: 0.25rem 0.75rem; border-radius: 2px; color: var(--navy); font-weight: bold; margin-bottom: 1rem; }

/* ABOUT STRIP */
.about-strip { background: var(--parchment); padding: 4rem 2rem; }
.about-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-inner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: normal; color: var(--navy); margin-bottom: 1rem; }
.about-inner p { font-family: Arial, sans-serif; font-size: 0.95rem; color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.about-detail { border-left: 3px solid var(--gold); padding-left: 1.25rem; }
.about-detail p { font-family: Arial, sans-serif; font-size: 0.9rem; color: var(--grey); margin-bottom: 0.75rem; }
.about-detail strong { color: var(--navy); display: block; margin-bottom: 0.1rem; font-size: 0.875rem; }

/* DIVIDER */
.gold-divider { display: flex; align-items: center; gap: 1rem; margin: 0 auto; max-width: 200px; padding: 2.5rem 0; }
.gold-divider::before, .gold-divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); }
.gold-divider span { color: var(--gold); font-size: 0.6rem; }

/* HERO (home only) */
.hero { background: var(--navy); color: var(--white); padding: 5rem 2rem 4rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; margin-bottom: 1.25rem; font-weight: normal; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.125rem; color: #94a3b8; max-width: 600px; margin: 0 auto 2rem; font-family: Arial, sans-serif; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--navy); color: #94a3b8; font-family: Arial, sans-serif; font-size: 0.85rem; padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; color: #94a3b8; margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-col p { line-height: 1.7; }
.footer-bottom { border-top: 1px solid #2d3748; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: #64748b; }

@media (max-width: 640px) {
  .about-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { gap: 1rem; padding-bottom: 0.75rem; }
  .info-table td:first-child { width: 40%; }
}
