/* ── TOKENS ── */
:root {
  --sky:      #D6EBF2;
  --pool:     #8EC8D8;
  --deep:     #3A7D8C;
  --sage:     #8FAF8A;
  --sage-lt:  #C8DBBF;
  --stone:    #2B3A3F;
  --white:    #FAFCFD;
  --off:      #EEF6F8;
  --font-brand: 'Raleway', sans-serif;
  --font-title: 'Cormorant Garamond', serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-brand); color: var(--stone); background: var(--white); font-size: 17px; line-height: 1.7; }
h1, h2, h3 { font-family: var(--font-title); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }

/* ── SHARED ELEMENTS ── */
.eyebrow {
  font-family: var(--font-brand); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep);
  display: block; margin-bottom: 0.6rem;
}
.container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; background: var(--deep); color: var(--white);
  padding: 0.85rem 2.2rem; border-radius: 2px; font-family: var(--font-brand);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--stone); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--deep); color: var(--deep); }
.btn-outline:hover { background: var(--deep); color: var(--white); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.74rem; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.82rem; color: #7a8e93; padding: 1.2rem 0 0; }
.breadcrumb a { color: var(--deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,252,253,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sky);
  padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 42px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--stone); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.nav-links a:hover { color: var(--deep); }
.nav-book-btn {
  background: var(--deep); color: var(--white) !important; padding: 0.6rem 1.4rem;
  border-radius: 2px; font-weight: 600 !important; letter-spacing: 0.08em !important;
  text-transform: uppercase; font-size: 0.78rem !important;
}
.nav-book-btn:hover { background: var(--stone) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--stone); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--sky);
  padding: 0.8rem 1.5rem 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-brand); font-size: 1rem; font-weight: 500;
  color: var(--stone); text-decoration: none;
  padding: 0.7rem 0; border-bottom: 1px solid var(--sky); letter-spacing: 0.04em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--deep); }

/* ── FOOTER ── */
footer { background: var(--stone); color: rgba(255,255,255,0.7); padding: 2.6rem 1.5rem; font-size: 0.85rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 32px; margin-bottom: 0.8rem; filter: brightness(1.4); }
.footer-brand p { color: rgba(255,255,255,0.7); }
footer h4 { color: var(--white); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 400; }
footer a:hover { color: var(--pool); }
footer ul { list-style: none; }
footer li { margin-bottom: 0.45rem; }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0; padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.12); display: flex;
  justify-content: space-between; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ── CTA BAND (shared) ── */
#cta-band { background: var(--sage-lt); padding: 4rem 1.5rem; text-align: center; }
#cta-band h2 { margin-bottom: 0.8rem; }
#cta-band p { max-width: 480px; margin: 0 auto 1.8rem; color: #4a6068; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SHARED SERVICE PAGE ELEMENTS ── */
#page-hero { padding: 2.5rem 0 1rem; }
#page-hero .hook {
  font-family: var(--font-title); font-style: italic; font-size: 1.3rem;
  color: var(--deep); line-height: 1.5; margin-bottom: 1.8rem;
}
#story p { color: #3d5258; margin-bottom: 1.2rem; font-size: 1.02rem; }
#story h2 { margin: 2.5rem 0 1rem; }
#story .pull {
  font-family: var(--font-title); font-style: italic; font-size: 1.25rem;
  color: var(--deep); border-left: 3px solid var(--sage); padding-left: 1.3rem;
  margin: 1.8rem 0;
}
.inline-cta {
  background: var(--sky); border-radius: 6px; padding: 1.6rem 1.8rem;
  margin: 2rem 0; text-align: center;
}
.inline-cta p { color: var(--stone) !important; margin-bottom: 1rem !important; font-weight: 500; }
.related-card {
  background: var(--off); border: 1px solid var(--sky); border-top: 3px solid var(--pool);
  border-radius: 0 0 6px 6px; padding: 1.5rem 1.3rem;
}
.related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--deep); }
.related-card p { font-size: 0.88rem; color: #4a6068; margin-bottom: 1rem; }
.related-card a { font-size: 0.78rem; font-weight: 600; color: var(--deep); text-decoration: none; letter-spacing: 0.05em; }
.related-card a:hover { text-decoration: underline; }

/* ── POLICY PAGES ── */
.pb { border-left: 3px solid var(--pool); padding: 1rem 1.3rem; margin-bottom: 1.3rem; background: var(--off); border-radius: 0 4px 4px 0; }
.pb h2 { font-size: 0.95rem; font-family: var(--font-brand); font-weight: 700; letter-spacing: 0.05em; color: var(--deep); margin: 0 0 0.5rem; }
.pb p { margin: 0 0 0.6rem; font-size: 0.97rem; }
.pb p:last-child { margin: 0; }
.page-wrap { max-width: 680px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.effective-date { font-size: 0.85rem; color: #7a8e93; margin-bottom: 2rem; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
}
