:root {
  --brand-blue: #24547b;
  --brand-blue-dark: #153b5c;
  --brand-teal: #008f9f;
  --brand-pale: #eaf5fa;
  --ink: #173044;
  --muted: #516577;
  --surface: rgba(255, 255, 255, 0.95);
  --border: rgba(36, 84, 123, 0.18);
  --shadow: 0 12px 36px rgba(18, 52, 77, 0.12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background: #f5fbfe;
  position: relative;
  isolation: isolate;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body::before {
  /* Page background photographs are retained in /images but are not displayed. */
  background-image: none;
  opacity: 0;
  filter: none;
}
body::after {
  z-index: -1;
  background: linear-gradient(135deg, rgba(36,84,123,0.18), rgba(0,143,159,0.12) 46%, rgba(255,255,255,0.46));
}

a { color: #075f87; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--brand-teal); }
a:focus-visible, button:focus-visible, video:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
img, video { max-width: 100%; height: auto; }
button, a.button { touch-action: manipulation; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: 8px; transform: translateY(-180%); z-index: 1000; padding: 10px 14px; background: white; color: var(--brand-blue-dark); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: none; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(20,58,89,0.07); backdrop-filter: blur(8px); }
.header-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-blue-dark); text-decoration: none; font-weight: 800; font-size: 1.2rem; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.primary-nav { display: flex; gap: 8px; align-items: center; }
.primary-nav a { color: var(--brand-blue-dark); font-weight: 700; text-decoration: none; padding: 12px 14px; border-radius: 10px; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--brand-pale); color: #004e70; }
.nav-toggle { display: none; border: 1px solid var(--border); background: white; border-radius: 10px; min-width: 48px; min-height: 48px; font-size: 1.4rem; color: var(--brand-blue-dark); }
main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: clamp(38px, 6vw, 76px) 0; }
main:focus { outline: none; }
h1, h2, h3, h4 { line-height: 1.17; color: var(--brand-blue-dark); margin-top: 0; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 5vw, 4.4rem); letter-spacing: -0.035em; margin-bottom: 18px; }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.25rem); margin: 1.6em 0 .55em; }
h3 { font-size: clamp(1.16rem, 2vw, 1.45rem); margin: 1.35em 0 .4em; }
h4 { font-size: 1.08rem; margin: 1.2em 0 .35em; }
p, li { font-size: clamp(1rem, 1.2vw, 1.08rem); }
.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: #2d4c62; max-width: 760px; }
.eyebrow { margin: 0 0 8px; font-size: .88rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-teal); }
.page-intro, .content-card, .recommendations, .home-links, .video-section, .membership-placeholders, .callout { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 46px); margin-bottom: 28px; }
.page-intro { max-width: 930px; }
.page-intro > :last-child, .content-card > :last-child { margin-bottom: 0; }
.hero { background: rgba(255,255,255,0.96); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); padding: clamp(24px, 5vw, 56px); margin-bottom: 28px; }
.hero-home { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.owner-photo { margin: 0; }
.owner-photo img, .about-photo img { width: 100%; display: block; border-radius: 18px; box-shadow: 0 10px 28px rgba(18,52,77,.16); background: #eef4f7; }
.owner-photo figcaption, .about-photo figcaption { margin-top: 8px; color: var(--muted); font-size: .92rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 4px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 20px; border-radius: 12px; font-weight: 800; text-decoration: none; border: 2px solid transparent; }
.button-primary { background: var(--brand-blue); color: #fff; }
.button-primary:hover { background: var(--brand-blue-dark); color: #fff; }
.button-secondary { background: #fff; color: var(--brand-blue-dark); border-color: var(--brand-blue); }
.button-secondary:hover { background: var(--brand-pale); color: var(--brand-blue-dark); }
.small-print { font-size: .92rem; color: var(--muted); margin-top: 18px; }
.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
blockquote { margin: 0; padding: 22px; background: #f7fbfd; border-left: 4px solid var(--brand-teal); border-radius: 10px; color: #29475d; }
.card-grid, .service-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); margin-bottom: 28px; }
.link-card, .service-card { display: block; padding: 24px; background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 8px 24px rgba(18,52,77,.08); text-decoration: none; color: var(--ink); transition: transform .16s ease, box-shadow .16s ease; }
.link-card:hover, .service-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18,52,77,.14); color: var(--ink); }
.link-card h3, .service-card h2 { margin-top: 0; color: var(--brand-blue-dark); }
.service-card h2 { font-size: 1.35rem; }
.service-card span { color: #006b89; font-weight: 800; }
.content-card ul { padding-left: 1.35rem; }
.content-card li + li { margin-top: .42rem; }
.callout { border-top: 5px solid var(--brand-teal); }
.video-section video { display: block; width: min(880px,100%); margin: 16px auto 0; border-radius: 14px; background: #000; box-shadow: 0 10px 28px rgba(0,0,0,.16); }
.profile-layout { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0,1.45fr); gap: 28px; align-items: start; margin-bottom: 28px; }
.about-photo { margin: 0; position: sticky; top: 108px; }
.logo-placeholders { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; max-width: 680px; }
.logo-placeholder { min-height: 150px; border: 2px dashed #8aa9bd; border-radius: 14px; display: grid; place-content: center; text-align: center; background: #f8fcfe; color: var(--brand-blue-dark); font-weight: 800; font-size: 1.2rem; }
.membership-logo { min-height: 150px; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 18px; background: #fff; }
.membership-logo img { display: block; max-width: 100%; max-height: 190px; width: auto; height: auto; object-fit: contain; opacity: 1; }

.placeholder-note, .notice { padding: 16px 18px; background: #fff8e5; border-left: 4px solid #c98a00; border-radius: 8px; }
.fee-table-wrap { overflow-x: auto; margin: 24px 0; }
.fee-table { width: 100%; border-collapse: collapse; background: white; }
.fee-table caption { text-align: left; font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.fee-table th, .fee-table td { border: 1px solid #c9d8e2; padding: 14px; text-align: left; vertical-align: top; }
.fee-table thead th { background: var(--brand-blue-dark); color: white; }
.fee-table tbody th { background: #eef7fb; min-width: 180px; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; }
.topic-tags span { background: rgba(255,255,255,.86); border: 1px solid var(--border); color: var(--brand-blue-dark); border-radius: 999px; padding: 5px 10px; font-size: .85rem; }
.site-footer { background: #123a58; color: #f3f9fc; margin-top: 20px; }
.footer-grid { width: min(1120px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 42px 0 30px; }
.site-footer h2 { color: white; font-size: 1.05rem; margin: 0 0 12px; }
.site-footer a { color: #e6fbff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 7px; }
.site-footer p, .site-footer li { font-size: .96rem; }
.footer-note { color: #c8dbe7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 18px 0 24px; color: #c8dbe7; font-size: .88rem; }
@media (max-width: 900px) {
  .hero-home, .profile-layout { grid-template-columns: 1fr; }
  .owner-photo { max-width: 650px; }
  .about-photo { position: static; max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header-inner { min-height: 68px; }
  .brand img { width: 50px; height: 50px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .primary-nav { display: none; position: absolute; left: 16px; right: 16px; top: calc(100% + 6px); padding: 10px; background: white; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 48px; display: flex; align-items: center; }
  main { width: min(100% - 22px,1120px); padding-top: 28px; }
  .page-intro, .content-card, .recommendations, .home-links, .video-section, .membership-placeholders, .callout, .hero { padding: 22px; border-radius: 14px; }
  .quote-grid, .service-grid, .logo-placeholders, .footer-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
  .fee-table { min-width: 650px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
@media print {
  .site-header, .site-footer, .cta-row, .topic-tags, .video-section { display: none !important; }
  body::before, body::after { display: none; }
  body { background: white; color: black; }
  main { width: 100%; padding: 0; }
  .page-intro, .content-card { box-shadow: none; border: 0; padding: 0; }
}
