/* =============================================
   Intentra Consulting — Stylesheet
   Colors: Navy #1A2B4A | Mint #2BBFAC | White #FFFFFF
   Font: DM Sans + Fraunces (Google Fonts)
   ============================================= */

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

:root {
  --navy:       #1A2B4A;
  --navy-light: #2C3E5E;
  --mint:       #2BBFAC;
  --mint-light: #EAF7F5;
  --mint-hover: #22A898;
  --white:      #FFFFFF;
  --gray-bg:    #F7F8FA;
  --gray:       #6B7280;
  --text:       #374151;
  --border:     #E5E7EB;
  --max-width:  1080px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


/* =============================================
   NAVIGATION
   ============================================= */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.nav-logo span {
  color: var(--mint);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mint);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  color: var(--white) !important;
}


/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--mint);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--mint-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}


/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 88px 0;
}

section.tight {
  padding: 64px 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--mint);
  margin-bottom: 32px;
  border-radius: 2px;
}

.divider.center {
  margin: 0 auto 32px;
}


/* =============================================
   HERO — HOME
   ============================================= */

.hero {
  background: var(--navy);
  padding: 100px 0 96px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  letter-spacing: 0.04em;
  font-style: italic;
}


/* =============================================
   SERVICES — HOME CARDS
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(26,43,74,0.08);
  border-color: var(--mint);
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.01em;
}

.service-card .card-link:hover {
  color: var(--mint-hover);
}

.service-card .card-link::after {
  content: ' →';
}


/* =============================================
   WHO THIS IS FOR — HOME
   ============================================= */

.who-section {
  background: var(--gray-bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.audience-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.audience-icon {
  width: 40px;
  height: 40px;
  background: var(--mint-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.audience-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =============================================
   WHY HANNA — HOME
   ============================================= */

.why-section {
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--mint-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =============================================
   SPEAKING TEASER — HOME
   ============================================= */

.speaking-teaser {
  background: var(--gray-bg);
}

.speaking-teaser-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.speaking-teaser-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.speaking-teaser-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.speaking-topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaking-topics-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.speaking-topics-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}


/* =============================================
   CTA BAND
   ============================================= */

.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: var(--navy);
  padding: 72px 0 68px;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}


/* =============================================
   SERVICES PAGE — DETAIL
   ============================================= */

.service-detail {
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.service-detail-label h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-detail-label .service-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-light);
  padding: 4px 10px;
  border-radius: 4px;
}

.service-detail-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-detail-body h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.includes-list {
  list-style: none;
  margin-bottom: 32px;
}

.includes-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.includes-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
}


/* =============================================
   SPEAKING PAGE
   ============================================= */

.speaking-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.speaking-section:last-of-type {
  border-bottom: none;
}

.speaking-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.speaking-section-label h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.speaking-section-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.notify-box {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.notify-box p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px !important;
}

.signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.signup-input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(43,191,172,0.12);
}

.signup-input::placeholder {
  color: #9CA3AF;
}

.signup-btn {
  white-space: nowrap;
}

.signup-message {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 4px !important;
}

.signup-success {
  color: var(--mint-hover);
  font-weight: 500;
}

.signup-error {
  color: #DC2626;
}

.signup-error a {
  color: #DC2626;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}

.topic-card:hover {
  border-color: var(--mint);
}

.topic-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0 !important;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.workshop-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.workshop-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-light);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.workshop-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.workshop-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0 !important;
}


/* =============================================
   ABOUT PAGE
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  background: var(--mint-light);
  border-radius: 10px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.about-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-body .about-title {
  font-size: 0.88rem;
  color: var(--mint);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.about-body p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.credentials h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credentials-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.credentials-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
}

.firm-story {
  background: var(--gray-bg);
}

.firm-story-inner {
  max-width: 680px;
}

.firm-story-inner p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}


/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  padding: 88px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-intro p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-link-item:hover {
  border-color: var(--mint);
  box-shadow: 0 4px 12px rgba(43,191,172,0.1);
}

.contact-link-icon {
  width: 42px;
  height: 42px;
  background: var(--mint-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-link-text strong {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-note {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 36px;
}

.contact-note h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-note p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.contact-note ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.contact-note ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mint);
}


/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-logo span {
  color: var(--mint);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 860px) {
  .hero h1              { font-size: 2.4rem; }
  .services-grid        { grid-template-columns: 1fr; gap: 16px; }
  .audience-grid        { grid-template-columns: 1fr; }
  .pillars-grid         { grid-template-columns: 1fr; gap: 32px; }
  .speaking-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 28px; }
  .speaking-section-inner { grid-template-columns: 1fr; gap: 28px; }
  .topics-grid          { grid-template-columns: 1fr; }
  .about-grid           { grid-template-columns: 1fr; gap: 40px; }
  .about-photo          { aspect-ratio: 4/3; max-width: 320px; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner         { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links         { flex-wrap: wrap; justify-content: center; }
}

/* =============================================
   MOBILE NAV — HAMBURGER
   ============================================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  .container        { padding: 0 20px; }
  .nav-inner        { padding: 0 20px; }
  .hero-inner       { padding: 0 20px; }
  .hero             { padding: 72px 0 68px; }
  .hero h1          { font-size: 2rem; }
  section           { padding: 64px 0; }
  .workshop-item    { grid-template-columns: 1fr; gap: 10px; }

  .nav-toggle       { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(26,43,74,0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .nav-cta {
    margin: 8px 24px 0;
    padding: 10px 20px !important;
    text-align: center;
    border-radius: 6px;
  }
}
