/* Balanced Title — design system
   Brand: cream / navy / lavender / gold. Coastal SW Florida elegance. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --cream:        #FAF6EE;
  --cream-deep:   #F2EAD8;
  --shell:        #FFFFFF;
  --ink:          #2A2960;
  --ink-soft:     #5C5687;
  --ink-faint:    #9B9AB8;
  --lavender:     #B7A5D4;
  --lavender-deep:#6E5BA0;
  --lavender-soft:#EFE7F5;
  --gold:         #B59458;
  --gold-deep:    #9A7E45;
  --gold-soft:    #F2E5C8;
  --line:         rgba(42, 41, 96, 0.10);
  --line-soft:    rgba(42, 41, 96, 0.06);
  --shadow-sm:    0 1px 2px rgba(42, 41, 96, 0.05);
  --shadow-md:    0 8px 24px -12px rgba(42, 41, 96, 0.18);
  --shadow-lg:    0 24px 48px -20px rgba(42, 41, 96, 0.25);
  --radius:       14px;
  --radius-lg:    20px;
  --max:          1180px;
  --max-narrow:   860px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(183, 165, 212, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 35% at 100% 100%, rgba(181, 148, 88, 0.07), transparent 60%);
  background-attachment: fixed;
}

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

a { color: var(--lavender-deep); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--ink); }

.serif { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.01em; }
.tab   { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container       { max-width: var(--max);        margin: 0 auto; padding: 0 1.25rem; }
.container-narrow{ max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.25rem; }

section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

.eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 1rem; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; }
em { font-style: italic; color: var(--lavender-deep); font-weight: 400; }
p  { margin: 0 0 1rem; color: var(--ink-soft); max-width: 60ch; }
p.lead { font-size: 1.125rem; color: var(--ink); }

ul.checks { list-style: none; padding: 0; margin: 0; }
ul.checks li {
  padding: 0.625rem 0 0.625rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
ul.checks li:last-child { border-bottom: none; }
ul.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold-soft), var(--lavender-soft));
  border: 1px solid var(--gold);
}
ul.checks li::after {
  content: '';
  position: absolute;
  left: 7px; top: 50%;
  width: 8px; height: 4px;
  margin-top: -4px;
  border-left: 1.75px solid var(--gold-deep);
  border-bottom: 1.75px solid var(--gold-deep);
  transform: rotate(-45deg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-soft) 0%, var(--lavender-soft) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(181, 148, 88, 0.35);
}
.brand-mark svg { color: var(--gold-deep); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  margin-top: 4px;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.6); }
.nav-links a.active { color: var(--ink); background: var(--shell); box-shadow: var(--shadow-sm); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.625rem 1.125rem !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-md);
}
.nav-cta:hover { background: var(--lavender-deep) !important; color: var(--cream) !important; }
.nav-toggle {
  display: none;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    padding: 5rem 1.25rem 1rem;
    align-items: stretch;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 280ms;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0s;
  }
  .nav-links a { padding: 0.875rem 1rem; border-radius: 12px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}
.btn:active { transform: scale(0.985); }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 32px -16px rgba(42, 41, 96, 0.6);
}
.btn-primary:hover { background: var(--lavender-deep); color: var(--cream); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--cream);
  box-shadow: 0 14px 32px -16px rgba(154, 126, 69, 0.55);
}
.btn-gold:hover { filter: brightness(1.05); color: var(--cream); }
.btn-ghost {
  background: var(--shell);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--cream); border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(110, 91, 160, 0.2);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  margin: 0 0 1.25rem;
}
.hero h1 .accent { color: var(--lavender-deep); font-style: italic; font-weight: 400; }
.hero p.lead { font-size: 1.1875rem; max-width: 36rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lavender-soft);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(42,41,96,0.18));
  pointer-events: none;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.hero-trust .item { display: flex; align-items: center; gap: 0.625rem; color: var(--ink-soft); font-size: 0.875rem; }
.hero-trust .item svg { color: var(--gold-deep); flex-shrink: 0; }

/* ---------- Section utilities ---------- */
.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.section-head p { margin-left: auto; margin-right: auto; }

/* ---------- Cards / grids ---------- */
.card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(110, 91, 160, 0.25); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lavender-soft), var(--gold-soft));
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--lavender-deep);
  border: 1px solid rgba(181, 148, 88, 0.18);
}
.card h3 { margin: 0 0 0.5rem; }
.card p  { margin: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--ink) 0%, #1F1E4A 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(183, 165, 212, 0.25), transparent 70%);
  pointer-events: none;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lavender);
  margin-top: 0.625rem;
  font-weight: 600;
}

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.step h4 { margin: 0 0 0.5rem; font-size: 1.0625rem; }
.step p  { font-size: 0.9375rem; margin: 0; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(110, 91, 160, 0.92), rgba(42, 41, 96, 0.94)),
    linear-gradient(45deg, var(--lavender), var(--gold));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(250, 246, 238, 0.85); margin: 0 auto 1.75rem; max-width: 32rem; }
.cta-banner .btn-primary { background: var(--cream); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--gold-soft); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  background: var(--cream-deep);
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: 'Inter', sans-serif; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink); margin-bottom: 1rem; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: var(--ink-soft); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--ink); }
.footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gold-deep);
  margin-top: 1rem;
  display: block;
}
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

/* ---------- Misc ---------- */
.divider {
  display: block;
  margin: 0 auto;
  color: var(--gold);
  opacity: 0.7;
}
.kicker {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  background: var(--gold-soft);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(183, 165, 212, 0.16), transparent 65%),
    radial-gradient(ellipse 50% 45% at 50% 100%, rgba(181, 148, 88, 0.10), transparent 65%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero h1 em { color: var(--lavender-deep); font-style: italic; }
.page-hero p.lead { max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.page-hero .eyebrow { display: inline-block; }

/* ---------- Detailed service blocks ---------- */
.service-row {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.service-row:last-of-type { border-bottom: none; }
@media (min-width: 880px) {
  .service-row { grid-template-columns: minmax(0, 1fr) 1.4fr; }
  .service-row.flip { grid-template-columns: 1.4fr minmax(0, 1fr); }
  .service-row.flip .service-row-aside { order: 2; }
}
.service-row-aside {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.service-row-aside .card-icon { margin-bottom: 1rem; }
.service-row-aside h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-row-aside p { margin: 0; font-size: 0.9375rem; }
.service-row-body h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
.service-row-body h4 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--lavender-deep); }
.service-row-body p { max-width: 60ch; }

/* ---------- Forms ---------- */
.form-grid {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { font-size: 0.8125rem; color: var(--ink-faint); margin: 0.25rem 0 0; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: 0.9375rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 7.5rem; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%235C5687' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lavender-deep);
  background: var(--shell);
  box-shadow: 0 0 0 4px rgba(110, 91, 160, 0.12);
}
.field.with-prefix { position: relative; }
.field.with-prefix input { padding-left: 2.25rem; }
.field.with-prefix .prefix {
  position: absolute;
  left: 1rem;
  bottom: 0.875rem;
  color: var(--ink-faint);
  font-weight: 600;
  pointer-events: none;
}

/* ---------- Net Sheet calculator ---------- */
.calc-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1000px) { .calc-shell { grid-template-columns: 1fr 1fr; } }

.calc-result {
  background: linear-gradient(160deg, var(--ink) 0%, #1F1E4A 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calc-result::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(183, 165, 212, 0.22), transparent 70%);
  pointer-events: none;
}
.calc-result h3 {
  color: var(--cream);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.25rem;
  position: relative;
}
.calc-result .sub { color: var(--lavender); font-size: 0.8125rem; margin-bottom: 1.5rem; position: relative; }

.calc-net {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.calc-net .lbl { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-soft); font-weight: 600; }
.calc-net .num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 0.4rem;
}
.calc-net .num.negative { color: #F2C8C8; }

.calc-lines { list-style: none; margin: 0; padding: 0; position: relative; }
.calc-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  font-size: 0.9375rem;
  color: rgba(250, 246, 238, 0.85);
}
.calc-lines li:last-child { border-bottom: none; }
.calc-lines li.subhead {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}
.calc-lines li.total {
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: none;
  padding-top: 0.875rem;
  margin-top: 0.5rem;
}
.calc-lines .amt { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--cream); }
.calc-lines .amt.zero { opacity: 0.4; }

.calc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
  position: relative;
}
.calc-result .btn-primary { background: var(--gold); color: var(--ink); }
.calc-result .btn-primary:hover { background: var(--gold-soft); color: var(--ink); }
.calc-result .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}
.calc-result .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 48rem; margin: 0 auto; }
.faq details {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq details[open] { border-color: rgba(110, 91, 160, 0.3); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body { padding: 0 1.5rem 1.25rem; color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
.faq .faq-body p { margin: 0 0 0.75rem; }
.faq .faq-body p:last-child { margin: 0; }

/* ---------- About page ---------- */
.values { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.value h4 { color: var(--lavender-deep); font-style: italic; font-size: 1.1875rem; margin-bottom: 0.5rem; }
.value p  { font-size: 0.9375rem; margin: 0; }

.quote-block {
  background: linear-gradient(135deg, var(--lavender-soft), var(--gold-soft));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}
.quote-block p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
.quote-block .cite { font-size: 0.875rem; color: var(--ink-soft); position: relative; z-index: 1; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card .ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lavender-soft), var(--gold-soft));
  display: grid; place-items: center;
  color: var(--lavender-deep);
  border: 1px solid rgba(181, 148, 88, 0.18);
}
.contact-card h4 { font-family: 'Inter', sans-serif; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-faint); font-weight: 600; margin: 0 0 0.25rem; }
.contact-card p, .contact-card a { margin: 0; font-size: 0.9375rem; color: var(--ink); font-weight: 500; }
.contact-card .meta { font-size: 0.8125rem; color: var(--ink-faint); margin-top: 0.25rem; }

/* ---------- Counties tag list ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.tag-list .tag {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(110, 91, 160, 0.15);
}

/* ---------- Form success / banner ---------- */
.form-status {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--ink);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-status.show { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto; }
}
