:root {
  --ink: #071e28;
  --teal: #0b4f6c;
  --teal-deep: #083a50;
  --ice: #9ec9d6;
  --mist: #eef4f6;
  --brass: #a67c52;
  --paper: #f7fafb;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(158, 201, 214, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(11, 79, 108, 0.08), transparent 50%),
    var(--paper);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 250, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 79, 108, 0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; }
.brand strong { display: block; font-family: var(--font-display); color: var(--teal); font-size: 1.15rem; }
.brand small { display: block; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: rgba(7,30,40,0.5); }
.nav-desktop { display: none; gap: 1.5rem; }
.nav-desktop a { font-size: 0.9rem; color: rgba(7,30,40,0.7); }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--teal); font-weight: 600; }
.phone-pill {
  display: none; border: 1px solid rgba(11,79,108,0.15); border-radius: 999px;
  padding: 0.5rem 0.9rem; color: var(--teal); font-size: 0.875rem; font-weight: 500;
}
.menu-btn {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(11,79,108,0.15);
  background: transparent; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-btn span { width: 18px; height: 2px; background: var(--teal); border-radius: 99px; }
.nav-mobile {
  display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(11,79,108,0.08);
}
.nav-mobile a { padding: 0.8rem 1rem; border-radius: 0.85rem; color: rgba(7,30,40,0.8); }
.nav-mobile a:hover { background: var(--mist); }
.nav-mobile .phone-cta { background: var(--teal); color: #fff; text-align: center; font-weight: 600; margin-top: 0.5rem; }

.page-hero { padding: 3.5rem 0 1.5rem; text-align: center; }
.eyebrow { color: var(--brass); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 0.75rem; }
.page-hero h1, .post-hero h1 {
  font-family: var(--font-display); color: var(--teal); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin: 0; text-wrap: balance;
}
.lead { max-width: 40rem; margin: 1rem auto 0; color: rgba(7,30,40,0.65); line-height: 1.6; }

.posts-grid {
  display: grid; gap: 1.25rem; padding: 1.5rem 0 4rem;
  grid-template-columns: 1fr;
}
.post-card {
  background: rgba(255,255,255,0.8); border: 1px solid rgba(11,79,108,0.1);
  border-radius: 1.25rem; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -30px rgba(11,79,108,0.45); }
.post-card .cover { aspect-ratio: 16/10; background: var(--mist); overflow: hidden; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.post-card .body { padding: 1.25rem 1.35rem 1.5rem; }
.post-card .meta { font-size: 0.8rem; color: rgba(7,30,40,0.5); margin-bottom: 0.5rem; }
.post-card h2 { font-family: var(--font-display); color: var(--teal); font-size: 1.4rem; margin: 0 0 0.5rem; }
.post-card p { margin: 0; color: rgba(7,30,40,0.65); line-height: 1.55; font-size: 0.95rem; }
.empty {
  text-align: center; padding: 3rem 1rem 5rem; color: rgba(7,30,40,0.6);
}

.post-hero { padding: 3rem 0 1rem; }
.post-meta { color: rgba(7,30,40,0.55); font-size: 0.9rem; margin-top: 1rem; }
.post-cover {
  border-radius: 1.5rem; overflow: hidden; margin: 1.5rem 0 2rem;
  border: 1px solid rgba(11,79,108,0.1);
  aspect-ratio: 16 / 9;
  background: var(--mist);
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.post-content {
  width: 100%; margin: 0 0 4rem; font-size: 1.05rem; line-height: 1.75; color: rgba(7,30,40,0.82);
}
.post-content h2, .post-content h3 { font-family: var(--font-display); color: var(--teal); margin-top: 2rem; }
.post-content p { margin: 1rem 0; }
.post-content img { border-radius: 1rem; margin: 1.5rem 0; }
.post-content ul, .post-content ol { padding-left: 1.25rem; }
.post-content a { color: var(--teal); text-decoration: underline; }

.site-footer { background: var(--teal-deep); color: #fff; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-brand strong, .footer-brand small { color: #fff; }
.footer-brand small { color: rgba(158,201,214,0.85); }
.site-footer h3 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); margin: 0 0 0.75rem; }
.site-footer a, .site-footer p { display: block; color: rgba(255,255,255,0.8); margin: 0.35rem 0; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.wa-widget {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70;
  display: flex; align-items: center; gap: 0.75rem;
}
.wa-widget span {
  display: none; background: #fff; color: var(--teal); padding: 0.5rem 0.75rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 500; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.wa-widget i {
  width: 56px; height: 56px; border-radius: 999px; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.8);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-btn, .nav-mobile { display: none !important; }
  .phone-pill { display: inline-flex; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .wa-widget span { display: inline; }
}
@media (min-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}
