/* ===== Light, senior‑friendly healthcare palette ===== */
:root{
  /* surfaces */
  --bg:        #F7F9FB;   /* very light blue‑gray (page background) */
  --panel:     #FFFFFF;   /* cards, header, sections */
  --line:      #E6EEF5;   /* soft borders/dividers */

  /* text */
  --text:      #222426;   /* primary text */
  --muted:     #5A6B7A;   /* secondary text */

  /* brand accents (teal + trust blue) */
  --accent:    #2A9D8F;   /* primary CTA & highlights (teal) */
  --accent-2:  #0B74C9;   /* secondary links/accents (blue) */
}

*{box-sizing:border-box} html,body{margin:0}
body{
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}

/* layout */
.wrap{width:min(1100px,92%);margin-inline:auto}
.center{text-align:center}.small{font-size:0.9rem}.muted{color:var(--muted)}
.section{padding:56px 0}.soft{background:linear-gradient(180deg,#121831 0,#0f1320 100%)}
/* Brand lockup (logo text next to the mark) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;               /* space between the mark and text */
}

/* Logo image size */
.site-logo {
  height: 64px; /* doubled from 32px for better presence */
  width: auto;
  margin-right: 8px;
}

/* "Intentional" */
.logo-top {
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--muted);
  line-height: 1.05;
  font-size: clamp(22px, 2.2vw, 28px); /* bigger */
}

/* "Health & Wellness" */
.logo-main {
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(38px, 4.5vw, 56px); /* much bigger */
  background: linear-gradient(90deg, var(--accent) 0%, #9fafcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* "Solutions" */
.logo-sub {
  font-weight: 700;
  color: var(--text);
  opacity: 0.95;
  line-height: 1.05;
  font-size: clamp(22px, 2.2vw, 28px); /* bigger */
}


/* Optional: tighten slightly on very small screens */
@media (max-width: 480px){
  .site-logo { height: 28px; }
  .logo-top, .logo-sub { font-size: clamp(14px, 3.5vw, 16px); }
  .logo-main { font-size: clamp(22px, 6vw, 28px); }
}


.links a{ color: var(--muted); margin-left:18px; }
.links a:hover{ color: var(--accent-2); }


.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{font-weight:800;letter-spacing:.2px}
.logo span{color:var(--accent)}
.links a{color:var(--muted);margin-left:18px}
.links a:hover{color:var(--text)}
.btn{background:var(--accent);color:#04131c;padding:10px 14px;border-radius:10px;font-weight:700;border:0}
.ghost{border:1px solid var(--accent);color:var(--accent);padding:10px 14px;border-radius:10px}
.menu{display:none;background:none;border:1px solid var(--line);color:var(--text);padding:6px 10px;border-radius:8px}

/* hero */
.hero{background:
  radial-gradient(600px 200px at 10% 0%,rgba(98,208,255,.15),transparent 60%),
  radial-gradient(600px 200px at 90% -20%,rgba(123,241,168,.12),transparent 60%)}
.hero .wrap{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center;padding:40px 0}
.hero__copy h1{font-size:clamp(32px,6vw,56px);line-height:1.1;margin:0 0 10px}
.hero__copy p{color:var(--muted);max-width:60ch;margin:0}
.cta{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.hero__card{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px}
.hero__card ul{list-style:none;margin:0;padding:0}
.hero__card li{padding:8px 0;border-bottom:1px dashed var(--line)}
.hero__card li:last-child{border-bottom:0}

/* cards / grid */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:18px}
.card{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px}
.card h3{margin:0 0 6px}
.link{color:var(--accent)}

/* steps */
.steps{counter-reset:step;list-style:none;margin:22px 0 0;padding:0;display:grid;gap:12px}
.steps li{background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:14px}
.steps li::before{counter-increment:step;content:counter(step);display:inline-grid;place-content:center;width:28px;height:28px;margin-right:10px;border-radius:50%;background:var(--accent);color:#03121a;font-weight:800}

/* quotes */
.quote{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:16px}
.quote span{display:block;color:var(--muted);margin-top:6px}

/* FAQ */
.faq{background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:12px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:700}

/* form */
.form{display:grid;gap:12px;max-width:640px;margin:18px auto}
.form label{display:grid;gap:6px}
.form input,.form select,.form textarea{width:100%;padding:12px;border-radius:10px;border:1px solid var(--line);background:#0c1226;color:var(--text)}
.form button{width:fit-content}

/* footer */
.site-footer{border-top:1px solid var(--line);margin-top:48px;padding:22px 0 36px}
.foot-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.list{list-style:none;margin:0;padding:0}
.list li{margin:4px 0}

@media (max-width:820px){
  .menu{display:inline-block}
  .links{position:absolute;top:58px;right:4%;background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:10px 12px;display:none}
  .links.open{display:block}
  .links a{display:block;margin:8px 2px}
  .hero .wrap{grid-template-columns:1fr}
}
/* about layout */
.about-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.about-card{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px}
.avatar {
  width: 100%;
  height: auto; /* Let the height adjust automatically */
  max-height: 260px; /* Prevent it from being too tall */
  object-fit: contain; /* Shows the whole image without cropping */
  border-radius: 10px;
  margin-bottom: 10px;
}


/* resources grid */
.grid.three{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.res{display:block;text-align:center;font-weight:600}

/* carousel */
.carousel{position:relative;overflow:hidden;border-radius:14px;border:1px solid var(--line)}
.car-track{display:flex;transition:transform .5s ease}
.car-track img{width:100%;flex:0 0 100%;height:280px;object-fit:cover}
.car-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(15,19,32,.7);border:1px solid var(--line);color:var(--text);padding:6px 12px;border-radius:10px}
.car-btn.prev{left:8px}.car-btn.next{right:8px}

/* check list */
.checks{list-style:none;margin:12px 0 0;padding:0}
.checks li{padding:6px 0;border-bottom:1px dashed var(--line)}
.checks li:last-child{border-bottom:0}

@media (max-width:900px){
  .about-grid{grid-template-columns:1fr}
}
.brand-banner{
  width:100%;
  text-align:center;
  font-weight:900;
  letter-spacing:.3px;
  font-size: clamp(22px, 4.2vw, 42px);
  padding: 10px 0 4px;
  background: radial-gradient(600px 180px at 50% -20%, rgba(98,208,255,.18), transparent 60%);
  color: var(--text);
}
/* ------- About / Profile styling upgrades ------- */
.profile-card { padding: 18px 18px 20px; }
.profile-name { margin: 10px 0 2px; font-size: 1.35rem; }

/* About headshot */
.profile-photo{
  width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
@media (max-width: 992px){ .profile-photo{ width: 280px; } }
@media (max-width: 600px){ .profile-photo{ width: 200px; } }


.shadow{box-shadow:0 12px 30px rgba(0,0,0,.35)}

.prose p{margin:10px 0;color:var(--text);line-height:1.65}
.prose em{color:var(--muted)}
.prose strong{color:var(--accent)}

.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.chip {
  padding: 6px 10px;
  border: 1px solid #9fd4c7; /* light teal border */
  background: #d6f0eb;       /* pale teal background */
  color: #0f4c45;            /* deep teal text */
  border-radius: 999px;
  font-size: .85rem;
}


.divider{border:0;border-top:1px solid var(--line);margin:14px 0}

/* tighten the left column so your bio fits nicely on taller screens */
.about-grid{align-items:start}
/* Medicare resources section */
.resources-section {
  text-align: center;
  margin: 40px 0;
}

/* Force Medicare Resources heading to be bright and readable */
.resources-section h2,
.resources-section h3,
.resources-section .section-title {
  color: #0f4c45 !important; /* teal with high contrast */
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
}



/* Medicare resources section */
.resources-section {
  text-align: center;
  margin: 40px 0;
}

/* Medicare resources heading */
.resources-section h2 {
  color: #0f4c45; /* deep teal */
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* Medicare resource buttons */
.resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d6f0eb; /* pale teal */
  color: #0f4c45; /* deep teal text */
  border: 1px solid #9fd4c7; /* light teal border */
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 8px;
  min-width: 230px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

/* Bigger clickable area for seniors */
.resource-link:hover {
  background: #b8e1d6; /* slightly darker teal */
  color: #073c36; /* darker teal text */
  transform: scale(1.04);
  text-decoration: none;
}

/* Optional: icon before text */
.resource-link::before {
  content: "🔗";
  margin-right: 8px;
  font-size: 1.1rem;
}


/* Bigger clickable area for seniors */
.resource-link:hover {
  background: #b8e1d6; /* slightly darker teal */
  color: #073c36; /* darker teal text */
  transform: scale(1.04);
  text-decoration: none;
}

/* Optional: icon before text */
.resource-link::before {
  content: "🔗";
  margin-right: 8px;
  font-size: 1.1rem;
}
/* ---------- Section title fixes ---------- */

/* Medicare resources (light teal on light theme) */
#resources-title {
  color: #0bb39c !important; /* bright teal that pops on dark bg */

  opacity: 1 !important;      /* cancel any .muted opacity */
  -webkit-text-fill-color: initial;
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-align: center;
  margin-bottom: 25px;
}

/* How it works (shown on a dark background → use white) */
#how-title {
  color: #0bb39c !important; /* same bright teal for consistency */
  opacity: 1 !important;      /* cancel any .muted opacity */
  -webkit-text-fill-color: initial;
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0,0,0,.25); /* subtle lift on dark bg */
}

/* If the theme adds .muted to these headings, neutralize just here */
#resources-title.muted,
#how-title.muted{
  opacity: 1 !important;
}

/* Optional: generic helpers if you later mark a section as "on-dark" */
.on-dark .section-title{ color:#fff !important; opacity:1 !important; }
.on-light .section-title{ color:#0f4c45 !important; opacity:1 !important; }
/* Replace dark blue gradient with light teal gradient */
.soft {
  background: linear-gradient(
    180deg,
    #d6f0eb 0%,  /* pale teal top */
    #b8e1d6 100% /* slightly darker pale teal bottom */
  );
}

/* Ensure text inside soft sections stays high-contrast */
.soft,
.soft .section-title,
.soft h2,
.soft h3,
.soft p {
  color: #0f4c45 !important; /* deep teal text */
}

/* Adjust any "on-dark" overrides so they no longer force white text */
.on-dark .section-title,
.on-dark h2,
.on-dark h3 {
  color: #0f4c45 !important; /* deep teal instead of white */
}
/* Lighten form fields for better readability */
.form input,
.form select,
.form textarea {
  background: #ffffff; /* white background */
  color: var(--text);
  border: 1px solid var(--line);
}

/* Optional: make them easier to see when focused */
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent); /* teal outline */
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}
.medicare-overview {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}

.medicare-overview h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.medicare-overview p {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.medicare-parts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.medicare-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
}

.medicare-card h3 {
  color: #007e6d;
  margin-bottom: 0.5rem;
}

.medicare-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.medicare-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem 1.5rem;
  background-color: #0f8a78;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.medicare-btn:hover {
  background-color: #0c6c5e;
}
.hero-logo {
  height: 300px; /* larger logo */
  width: auto;
}

.hero-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
/* ===== Hero heading: logo + name (bigger, responsive) ===== */
.hero-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;                 /* space between logo and text */
  margin: 10px 0 6px;
}

.hero-heading .hero-logo{
  height: clamp(72px, 8vw, 128px);   /* scales with screen; larger than before */
  width: auto;
}

.hero-heading h1{
  font-size: clamp(34px, 5.2vw, 64px); /* bigger & responsive */
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.hero-heading h1 {
  font-size: clamp(36px, 5vw, 60px); /* Bigger responsive font size */
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent) 0%, #9fafcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 10px; /* small space after logo */
}

.hero-logo {
  height: 80px; /* adjust for balance with new text size */
  width: auto;
  margin-right: 10px;
}

.hero-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tagline {
  font-size: 1.2rem;
  color: #437c7c;
  font-weight: 600;
  margin-top: -8px;
  letter-spacing: 0.5px;
  text-transform: none;
}
/* Brand row */
.hero-heading {
  display: grid;
  grid-template-columns: auto 1fr;   /* logo | title */
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
}

/* keep your existing logo size rules if you have them */
.hero-logo { height: 56px; width: auto; }

/* make sure the H1 has no weird margins that push things */
.hero-heading h1 { margin: 0; }

/* tagline spans full width of the grid and centers */
.tagline {
  grid-column: 1 / -1;        /* span across logo + title */
  justify-self: center;       /* center horizontally */
  font-size: 1.1rem;
  color: #437c7c;
  font-weight: 600;
  letter-spacing: .3px;
  margin-top: 2px;
  text-align: center;
}

/* optional: tighten on small screens */
@media (max-width: 640px) {
  .hero-heading {
    grid-template-columns: 1fr;   /* stack logo, title, tagline */
    justify-items: center;
    text-align: center;
  }
  .hero-logo { height: 48px; }
}
.tagline{
  text-align:center;
  font-weight:800;
  color: var(--muted, #557);
  margin: 10px auto 26px;
  line-height:1.2;
  font-size: clamp(1.1rem, 2vw + 0.6rem, 1.6rem);   // ~18–26px
}
/* --- Centered CTA (Free Medicare Review) --- */
.cta{
  /* If this CTA sits inside a grid, span full width */
  grid-column: 1 / -1;

  max-width: 880px;
  margin: 28px auto 36px;    /* center */
  padding: 28px 24px;
  text-align: center;

  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.02));
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cta h3{
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  font-size: clamp(1.375rem, 1.1vw + 1rem, 1.875rem); /* ~22–30px */
}

.cta p{
  margin: 0 0 18px;
  color: var(--muted, #5a6572);
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem); /* ~16–18px */
}

.btn.btn-cta{
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;

  padding: 14px 22px;  /* bigger button */
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);

  background: var(--accent, #0d8b7d);
  color: #fff;
  box-shadow: 0 6px 18px rgba(13,139,125,0.22);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}

.btn.btn-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(13,139,125,0.28);
}

.btn.btn-cta:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(13,139,125,0.22);
}
/* ===== Enrollment Notice Bar (Ticker) ===== */
:root{
  --nb-bg: linear-gradient(90deg, #0e8b7d 0%, #2aa6c3 50%, #738cc8 100%);
  --nb-text: #ffffff;
  --nb-accent: #fff;
  --nb-height: 46px;
  --nb-speed: 28s; /* adjust speed */
}

.noticebar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--nb-bg);
  color: var(--nb-text);
  height: var(--nb-height);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.nb-inner{
  height: 100%;
  max-width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.nb-close{
  appearance: none;
  border: none;
  background: rgba(255,255,255,.18);
  color: var(--nb-text);
  width: 28px; height: 28px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: filter .2s ease, transform .05s ease;
}
.nb-close:hover{ filter: brightness(1.1); }
.nb-close:active{ transform: translateY(1px); }

.nb-track{
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 80px;
}

.nb-item{
  display: inline-block;
  padding-inline: 4px;
  animation: nb-scroll var(--nb-speed) linear infinite;
  will-change: transform;
  font-weight: 800;
  letter-spacing: .2px;
}

.nb-item span a{
  color: var(--nb-accent);
  text-underline-offset: 2px;
}

@keyframes nb-scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.noticebar:hover .nb-item{ animation-play-state: paused; }

@media (prefers-reduced-motion: reduce){
  .nb-item{ animation: none; }
}

@media (max-width: 560px){
  :root{ --nb-height: 44px; }
  .nb-item{ font-weight: 700; }
}
/* ===== Enrollment banner (fixed) ===== */
/* Make the banner full-bleed across the viewport */
html, body { margin: 0; overflow-x: hidden; }

.enroll-banner{
  position: fixed;
  inset: 0 0 auto 0;     /* top:0; right:0; left:0; */
  z-index: 99999;
  width: 100vw;          /* span the viewport width */
  margin-inline: calc(50% - 50vw); /* force edge-to-edge even inside a centered parent */
  border-radius: 0;
  background: linear-gradient(90deg,#148e90,#40b3c8);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.enroll-banner__track { overflow: hidden; }
.enroll-banner__inner{
  display: inline-block;
  padding: 12px 56px 12px 16px;
  white-space: nowrap;
  will-change: transform;
  animation: banner-ticker 24s linear infinite;
}

.enroll-banner__close{
  position: absolute;
  right: 10px; top: 8px;
  width: 28px; height: 28px;
  border: 0; border-radius: 8px;
  background: rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: 18px; line-height: 1;
}

@keyframes banner-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reserve vertical space for the fixed banner (your JS sets --banner-h) */
:root { --banner-h: 48px; }
body.banner-open { padding-top: var(--banner-h); }

/* Keep header below banner if sticky */
.site-header { position: sticky; top: var(--banner-h); z-index: 99998; background: var(--bg); }


/* optional: keep the tagline from hugging the banner */
.tagline { margin-top: .5rem; }
/* Header layout: keep nav next to the logo on the left */
.site-header .wrap.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* was likely space-between */
  gap: 16px;                     /* small gap between logo and links */
}

/* Logo sizing */
.site-header .site-logo {
  height: 34px;                  /* adjust to taste */
  width: auto;
  vertical-align: middle;
}

/* Nav links line up immediately after the logo */
.site-header .links {
  display: flex;
  align-items: center;
  gap: 18px;                     /* spacing between links */
  margin-left: 8px;              /* nudge closer or further from the logo */
}

/* Optional: keep the Contact button from drifting away */
.site-header .links .btn {
  margin-left: 6px;
}

/* Responsive: if you use a mobile menu elsewhere, you can override here */
@media (max-width: 720px) {
  .site-header .wrap.nav {
    gap: 10px;
  }
  .site-header .links {
    gap: 14px;
  }
}
/* ===== Enrollment banner (fixed) — final ===== */
:root { --banner-h: 48px; }   /* JS will overwrite with the real height */

.enroll-banner{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: linear-gradient(90deg,#148e90,#40b3c8);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.enroll-banner__track{ overflow: hidden; }
.enroll-banner__inner{
  display: inline-block;
  padding: 12px 56px 12px 16px;
  white-space: nowrap;
  will-change: transform;
  animation: banner-ticker 24s linear infinite;
}
.enroll-banner__close{
  position: absolute;
  right: 10px; top: 8px;
  width: 28px; height: 28px;
  border: 0; border-radius: 8px;
  background: rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: 18px; line-height: 1;
}

@keyframes banner-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reserve space for the fixed banner */
body.banner-open { padding-top: var(--banner-h); }

/* If your header is sticky/positioned, keep it below the banner too */
.site-header {
  position: sticky;           /* or keep static if you prefer */
  top: var(--banner-h);
  z-index: 99998;
  background: var(--bg);
}

/* small nicety so the tagline doesn’t hug the banner */
.tagline { margin-top: .5rem; }
/* ===== Bigger logo in the header (both pages) ===== */

/* Logo image (LOGO.png) height */
.site-header .site-logo{
  height: 64px;          /* was ~34–56px; make it bigger */
  width: auto;
}

/* Keep logo + links nicely aligned on one row */
.site-header .wrap.nav{
  display: flex;
  align-items: center;
  gap: 18px;             /* space between logo and links */
}

.site-header .links{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
}

/* If you're using the wordmark spans next to the icon */
.logo-top  { font-size: clamp(20px, 2.0vw, 28px); font-weight: 800; }
.logo-main { font-size: clamp(44px, 5.0vw, 72px); font-weight: 900; }
.logo-sub  { font-size: clamp(20px, 2.0vw, 28px); font-weight: 700; }

/* Responsive: scale down a touch on narrow screens so the nav fits */
@media (max-width: 900px){
  .site-header .site-logo{ height: 52px; }
  .logo-main{ font-size: clamp(34px, 6vw, 52px); }
}

@media (max-width: 640px){
  .site-header .site-logo{ height: 44px; }
}
/* ==== Bigger, clearer main navigation ==== */

/* overall header breathing room */
.site-header { padding-block: 16px; }

/* make the nav font larger and increase spacing */
.site-header .links{
  display: flex;
  align-items: center;
  gap: 28px;                              /* space between links (was ~18px) */
}

.site-header .links a{
  font-size: clamp(18px, 1.2vw + 12px, 22px);  /* ~18–22px responsive */
  line-height: 1;
  padding: 8px 2px;                       /* bigger click target */
}

/* enlarge the “Contact” pill button too */
.site-header .links .btn{
  font-size: clamp(16px, 1.0vw + 11px, 20px);
  padding: 12px 18px;
  border-radius: 12px;
}

/* optional: thicker underline on hover for readability */
.site-header .links a::after{
  content: "";
  display: block;
  border-bottom: 3px solid transparent;
  transform: scaleX(0);
  transition: transform .18s ease, border-color .18s ease;
}
.site-header .links a:hover::after{
  border-color: currentColor;
  transform: scaleX(1);
}

/* responsive tweaks so it doesn't wrap too early */
@media (max-width: 1024px){
  .site-header .links{ gap: 20px; }
}
@media (max-width: 820px){
  .site-header .links a{ font-size: 18px; }
  .site-header .links .btn{ font-size: 16px; padding: 10px 16px; }
}
/* ===== Life page header centering ===== */
.page-life .site-header .wrap.nav{
  display: flex;
  flex-direction: column;      /* logo row, then nav row */
  align-items: center;         /* center both rows */
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.page-life .logo{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;              /* keep logo block centered */
}

.page-life .site-header .links{
  display: flex;
  align-items: center;
  justify-content: center;      /* center nav row */
  gap: 28px;
  flex-wrap: wrap;
}

/* keep the contact pill tidy when centered */
.page-life .site-header .links .btn{
  padding: 12px 18px;
  border-radius: 12px;
}

/* OPTIONAL: tighten hero title spacing below a centered header */
.page-life .section:first-of-type .wrap{
  margin-top: 6px;
}
/* Contact */
.contact-wrap {
  padding: 4rem 1rem;
  background: #f7fbfc; /* subtle page break */
}
.contact-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.contact-title {
  margin: 0 0 .25rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #2b6b6d; /* your teal family */
  font-weight: 800;
  letter-spacing: .2px;
}
.contact-sub {
  margin: 0 0 1.5rem;
  color: #6b7a86;
  font-size: .95rem;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.field {
  display: flex;
  flex-direction: column;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-weight: 600;
  margin-bottom: .4rem;
  color: #2e3a46;
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid #d6e3e6;
  border-radius: 10px;
  padding: .8rem .9rem;
  font-size: 1rem;
  line-height: 1.3;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #2b9ea0;
  box-shadow: 0 0 0 4px rgba(43,158,160,.15);
}
.actions {
  grid-column: 2 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: .25rem;
}
.btn-primary {
  appearance: none;
  border: 0;
  background: #2b9ea0;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease;
}
.btn-primary:hover { background: #258e90; }
.btn-primary:active { transform: translateY(1px); }

.contact-footnote {
  margin-top: 1rem;
  font-size: .95rem;
  color: #6b7a86;
}
.contact-footnote a { color: #2b9ea0; text-decoration: underline; }

/* Hide honeypot */
.hidden { position: absolute !important; left: -10000px; }

/* Responsive */
@media (max-width: 760px) {
  .contact-form { grid-template-columns: 1fr; }
  .actions { grid-column: 1 / -1; justify-content: stretch; }
  .btn-primary { width: 100%; }
}
