/* Alexander's Appraisal Group, LLC — Professional site styles */
:root {
  --navy: #0f2744;
  --navy-deep: #0a1a2e;
  --charcoal: #2c333a;
  --slate: #4a5560;
  --muted: #6b7580;
  --border: #d8dee6;
  --bg: #f7f8fa;
  --white: #ffffff;
  --accent: #1a4a7a;
  --accent-hover: #153d66;
  --gold: #c4a35a;
  --success: #1e6b45;
  --success-bg: #e8f5ee;
  --error: #9b2c2c;
  --error-bg: #fdecec;
  --shadow: 0 1px 3px rgba(15, 39, 68, 0.08), 0 4px 12px rgba(15, 39, 68, 0.06);
  --shadow-lg: 0 4px 24px rgba(15, 39, 68, 0.12);
  --radius: 6px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --max: 1100px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--accent-hover); }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header / Nav */
.site-header {
  background: var(--navy-deep);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  padding: 0.75rem 0;
  line-height: 1.25;
}
.logo:hover { color: var(--white); text-decoration: none; }
.logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.logo-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  display: block;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  margin-left: 0.35rem;
}
.site-nav a.nav-cta:hover {
  background: #d4b46a;
  color: var(--navy-deep);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy);
    padding: 0.75rem 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .site-nav a.nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3a5c 100%);
  color: var(--white);
  padding: 3.5rem 0 3.75rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-meta strong { color: var(--gold); font-weight: 700; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #d4b46a;
  color: var(--navy-deep);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
}
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-deep);
  color: var(--white);
  text-decoration: none;
}

/* Sections */
main { flex: 1; }

.section {
  padding: 3.25rem 0;
}
.section-alt { background: var(--bg); }
.section-narrow { padding: 2.5rem 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.section-intro {
  max-width: 40rem;
  color: var(--slate);
  margin: 0 0 2rem;
}

.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2.25rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--slate);
  font-size: 1.1rem;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (min-width: 801px) and (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}
.card a.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.card a.card-link:hover { text-decoration: underline; }

/* UAD callout */
.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.callout-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.65rem;
}
.callout h2, .callout h3 {
  color: var(--white);
  font-family: var(--font-serif);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.callout p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  max-width: 36rem;
}
.callout .btn-primary { flex-shrink: 0; }

/* Coverage strip */
.coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: 1rem;
}
.chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* Process steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 0 0 1.75rem 3.25rem;
  border-left: 2px solid var(--border);
  margin-left: 1rem;
}
.steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -1.15rem;
  top: 0;
  width: 2.15rem;
  height: 2.15rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps h3 {
  margin: 0.15rem 0 0.4rem;
  color: var(--navy);
  font-size: 1.15rem;
}
.steps p {
  margin: 0;
  color: var(--slate);
}

/* Service detail blocks */
.service-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.service-block p { margin: 0 0 0.75rem; color: var(--slate); }
.service-block ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--slate);
}
.service-block li { margin-bottom: 0.35rem; }

/* FAQ */
.faq-list { max-width: 44rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 650;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--slate);
}
.faq-body p { margin: 0 0 0.75rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  max-width: 40rem;
}
.form-group {
  margin-bottom: 1.15rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group .hint {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.2rem;
}
.required { color: var(--error); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 74, 122, 0.18);
}
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.12);
}
.field-error {
  display: none;
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.field-error.is-visible { display: block; }
textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  background: var(--success-bg);
  border: 1px solid #b8dfc8;
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 40rem;
}
.form-success.is-visible { display: block; }
.form-success h2 {
  color: var(--success);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: var(--font);
}
.form-success p { margin: 0 0 0.75rem; color: var(--charcoal); }
.form-success p:last-child { margin-bottom: 0; }

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.925rem;
  color: var(--slate);
}
.disclaimer strong { color: var(--navy); }

/* About / content prose */
.prose { max-width: 42rem; }
.prose p { margin: 0 0 1rem; color: var(--slate); }
.prose ul, .prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--slate);
}
.prose li { margin-bottom: 0.4rem; }
.prose h2 {
  margin-top: 2rem;
}
.address-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.address-block strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.address-block p { margin: 0; color: var(--slate); }

/* CTA band */
.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 2.75rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  color: var(--white);
  margin: 0 0 0.65rem;
  font-size: 1.6rem;
}
.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(255,255,255,0.85);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 2.5rem 0 1.75rem;
  margin-top: auto;
  font-size: 0.925rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.site-footer h3 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
}
.site-footer .footer-brand {
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.site-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* Fee schedule table */
.fee-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.fee-table th,
.fee-table td {
  padding: 0.95rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.fee-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 650;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:nth-child(even) { background: var(--bg); }
.fee-table tbody tr:hover { background: #eef3f8; }
.fee-amount {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.fee-contact {
  color: var(--accent);
  font-weight: 650;
}

/* Book / pay layout */
.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .book-layout { grid-template-columns: 1fr; }
}
.form-card-wide { max-width: none; }
.form-card-title {
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.form-card-title:not(:first-child) { margin-top: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-conditional[hidden] { display: none !important; }
.form-card .form-row { margin-bottom: 0; }

.estimate-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0 1.5rem;
}
.estimate-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 0.25rem;
}
.estimate-value {
  display: block;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.estimate-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate);
}

/* Pay online panel */
.pay-panel {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.pay-panel h2 {
  font-family: var(--font-serif);
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.pay-lead { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.55; }
.pay-matched {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.pay-matched-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 650;
  margin-bottom: 0.2rem;
}
.pay-matched strong {
  font-size: 1.35rem;
  color: var(--white);
}
.pay-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1.15rem;
}
.pay-packages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.btn-pay {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 650;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 163, 90, 0.75);
  background: rgba(196, 163, 90, 0.28);
  color: var(--white);
  cursor: pointer;
  opacity: 1;
  text-align: center;
  text-decoration: none;
}
.btn-pay:hover {
  background: rgba(196, 163, 90, 0.42);
  color: var(--white);
  text-decoration: none;
}
.btn-pay:disabled,
.btn-pay[aria-disabled="true"],
.btn-pay.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  color: rgba(255,255,255,0.55);
  background: rgba(196, 163, 90, 0.12);
}
.pay-alt {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.pay-panel a:not(.btn-pay) {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pay-panel a:not(.btn-pay):hover { color: #e0c989; }

/* Fees teaser on home */
.fees-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .fees-teaser { grid-template-columns: 1fr; }
}
.fees-teaser h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.fees-teaser p { margin: 0 0 1rem; color: var(--slate); }
.fees-teaser-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--slate);
}
.fees-teaser-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.fees-teaser-list li:last-child { border-bottom: none; }
.fees-teaser-list strong { color: var(--navy); }


/* Calendly schedule section */
.calendly-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}
.calendly-section h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.65rem;
}
.calendly-intro {
  margin: 0 0 1.25rem;
  color: var(--slate);
  max-width: 52rem;
  line-height: 1.55;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: var(--radius);
  overflow: hidden;
}
.form-backup-schedule {
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.form-card-subtitle {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.form-backup-lead {
  margin: 0 0 0.85rem;
}
.section-alt {
  background: var(--bg);
}
