/* ============================================================
   Nourished Nights — Shared Stylesheet
   Brand palette (from brief):
   #746389 purple · #8b7b9b lilac · #9caf88 sage · #d4a59a blush
   #c9b8a8 tan · #f7f4ef cream · #4a5f4a deep green
   Fonts: script display (Playlist Script alt: Dancing Script) · Lato body
   ============================================================ */

:root {
  --purple: #746389;
  --purple-dark: #5d4f70;
  --lilac: #8b7b9b;
  --lilac-soft: #b5a9c2;
  --lilac-pale: #ece7f1;
  --lilac-ghost: #f6f3f9;
  --sage: #9caf88;
  --sage-soft: #c3d0b6;
  --sage-pale: #eef2e9;
  --blush: #d4a59a;
  --blush-soft: #ecd6d0;
  --blush-pale: #f8eeeb;
  --tan: #c9b8a8;
  --tan-pale: #f1ebe4;
  --cream: #f7f4ef;
  --green-dark: #4a5f4a;
  --ink: #3f3651;
  --ink-mid: #6b6178;
  --ink-light: #8f869c;
  --white: #ffffff;

  --shadow-soft: 0 4px 30px rgba(116, 99, 137, 0.10);
  --shadow-card: 0 10px 40px rgba(116, 99, 137, 0.13);
  --shadow-lift: 0 16px 50px rgba(116, 99, 137, 0.18);

  --font-script: 'Dancing Script', 'Playlist Script', cursive;
  --font-body: 'Lato', 'Segoe UI', sans-serif;

  --radius-pill: 30px;
  --radius-card: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--purple); }

/* ---------- Utilities ---------- */

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }

.text-center { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.section-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.section-heading {
  font-family: var(--font-script);
  font-size: clamp(2.3rem, 4.5vw, 3.3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--purple);
  margin-bottom: 1.4rem;
}

.section-sub {
  color: var(--ink-mid);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 1rem 2.2rem;
  transition: all 0.35s var(--ease);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(116, 99, 137, 0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(116, 99, 137, 0.4);
}

.btn-sage {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(74, 95, 74, 0.3);
}
.btn-sage:hover { background: #3c4e3c; transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  padding: 1rem 1.2rem;
}
.btn-ghost:hover { color: var(--purple); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(116, 99, 137, 0.08);
  transition: box-shadow 0.4s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(116, 99, 137, 0.1); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-brand img { height: 52px; width: auto; }
.nav-brand .nav-wordmark { height: 42px; width: auto; }
.nav-brand-name {
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--sage);
  transition: width 0.35s var(--ease);
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--purple); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }

.nav-links .btn { padding: 0.65rem 1.5rem; font-size: 0.76rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--purple);
  border-radius: 3px;
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 9.5rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(156, 175, 136, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(212, 165, 154, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, var(--lilac-ghost) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 600;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.page-hero .lede {
  color: var(--ink-mid);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */

.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-lilac { background: var(--lilac-ghost); }
.section-sage { background: var(--sage-pale); }
.section-blush { background: var(--blush-pale); }

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(116, 99, 137, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.card p { font-size: 0.95rem; color: var(--ink-mid); }

/* ---------- Chips / pills ---------- */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}
.chip {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  border: 1.5px solid var(--sage-soft);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.35rem;
  transition: all 0.3s var(--ease);
}
.chip:hover { background: var(--sage-pale); border-color: var(--sage); transform: translateY(-2px); }

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  background: var(--lilac-pale);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem;
}

/* ---------- Checklist ---------- */

.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: var(--ink-mid);
  font-size: 0.97rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FAQ accordion ---------- */

.faq-item {
  background: var(--white);
  border: 1px solid rgba(116, 99, 137, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-mid);
  font-size: 0.96rem;
}

/* ---------- Forms ---------- */

.form-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--lilac-pale);
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(116, 99, 137, 0.12);
}

.form-note { font-size: 0.8rem; color: var(--ink-light); }

.form-success {
  display: none;
  text-align: center;
  background: var(--sage-pale);
  border: 1.5px solid var(--sage-soft);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--green-dark); font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-mid); }

/* ---------- Tables ---------- */

.table-wrap { overflow-x: auto; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 1.05rem 1.4rem;
  border-bottom: 1px solid var(--lilac-pale);
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--purple);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:last-child { font-weight: 700; color: var(--purple); white-space: nowrap; }
.compare-table tbody tr:hover { background: var(--lilac-ghost); }

/* ---------- Steps ---------- */

.steps { display: grid; gap: 1.4rem; counter-reset: step; }
.step {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(116, 99, 137, 0.06);
}
.step-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--lilac-pale);
  color: var(--purple);
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--ink); }
.step p { font-size: 0.94rem; color: var(--ink-mid); }

/* ---------- Testimonial cards ---------- */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.3rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--blush);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.4rem;
  color: var(--blush-soft);
  position: absolute;
  top: 0.6rem; left: 1.4rem;
  line-height: 1;
}
.testimonial-quote {
  font-style: italic;
  color: var(--ink-mid);
  padding-top: 1.4rem;
  margin-bottom: 1.2rem;
}
.testimonial-stars { color: #d9a441; letter-spacing: 3px; margin-bottom: 0.4rem; font-size: 0.9rem; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.testimonial-role { font-size: 0.82rem; color: var(--ink-light); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--lilac) 100%);
  border-radius: var(--radius-card);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-band h2 {
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--purple);
  position: relative;
  z-index: 1;
}
.cta-band .btn-primary:hover { background: var(--cream); }

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(116, 99, 137, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card-banner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--lilac-pale), var(--sage-pale));
}
.blog-card-body { padding: 1.7rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.blog-card h2 { font-size: 1.18rem; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card h2 a { color: var(--ink); text-decoration: none; transition: color 0.3s; }
.blog-card h2 a:hover { color: var(--purple); }
.blog-card p { font-size: 0.92rem; color: var(--ink-mid); flex: 1; }
.blog-card-link {
  margin-top: 1.2rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
}
.blog-card-link:hover { text-decoration: underline; }

/* Blog article */
.article {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}
.article-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.article h1 {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.article h2 {
  font-size: 1.45rem;
  color: var(--purple);
  margin: 2.4rem 0 0.9rem;
}
.article h3 { font-size: 1.15rem; color: var(--ink); margin: 1.8rem 0 0.7rem; }
.article p { margin-bottom: 1.15rem; color: var(--ink-mid); }
.article ul, .article ol { margin: 0 0 1.15rem 1.4rem; color: var(--ink-mid); }
.article li { margin-bottom: 0.45rem; }
.article blockquote {
  border-left: 4px solid var(--sage);
  background: var(--sage-pale);
  border-radius: 0 14px 14px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  font-style: italic;
  color: var(--green-dark);
}
.article strong { color: var(--ink); }
.article-footer-cta { margin-top: 2.5rem; }

.article h1 {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.8rem;
}

/* Tables inside pasted articles */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
}
.article table th, .article table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border: 1px solid var(--lilac-pale);
  color: var(--ink-mid);
  min-width: 120px;
}
.article table th {
  background: var(--lilac-ghost);
  color: var(--purple);
  font-weight: 700;
}
.article table tbody tr:nth-child(even) { background: var(--cream); }

.blog-card-banner-img { padding: 0; }
.blog-card-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 56px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-brand p { font-size: 0.86rem; margin-bottom: 0.4rem; }
.footer-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--sage-soft);
  border: 1px solid rgba(156, 175, 136, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.95rem;
  margin-top: 0.7rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--sage-soft); }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2000;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--lilac-pale);
  padding: 1.5rem 1.7rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.87rem; color: var(--ink-mid); margin-bottom: 1rem; }
.cookie-banner p a { font-weight: 700; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie-actions .btn { padding: 0.6rem 1.4rem; font-size: 0.76rem; }

/* ---------- Calendly embed ---------- */

.calendly-frame {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.calendly-inline-widget { min-width: 100%; height: 760px; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  /* absolute (not fixed): the header's backdrop-filter makes it the
     containing block for fixed descendants, so fixed wouldn't cover the viewport */
  .nav-links {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    background: #f7f4ef;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 1.15rem; }
  .nav-toggle { display: flex; }

  .section { padding: 3.6rem 0; }
  .page-hero { padding: 8rem 0 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-brand img { height: 44px; }
  .nav-brand .nav-wordmark { height: 32px; }
  .nav-brand-name { font-size: 1.3rem; }
  .card { padding: 1.8rem; }
  .cta-band { padding: 2.6rem 1.5rem; }
  .calendly-inline-widget { height: 900px; }
}
