/* ============================================
   N Hughes ETM — Shared Stylesheet
   Palette: Navy #1a2744 | Amber #f59e0b | Slate #64748b
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #64748b;
  background: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  color: #1a2744;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: #1a2744; font-weight: 600; }

/* --- Layout Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--light {
  background: #f8fafc;
}

.section--navy {
  background: #1a2744;
  color: #cbd5e1;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy strong {
  color: #ffffff;
}

.section--navy p,
.section--navy li {
  color: #cbd5e1;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  border: none;
  line-height: 1.3;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-amber {
  background: #f59e0b;
  color: #1a2744;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid #1a2744;
  color: #1a2744;
}

.btn-navy {
  background: #1a2744;
  color: #ffffff;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a2744;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav__logo span {
  color: #f59e0b;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__links a {
  padding: 0.45rem 0.85rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2744;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__links a:hover,
.nav__links a.active {
  background: #f1f5f9;
  color: #1a2744;
}

.nav__cta {
  margin-left: 0.75rem;
}

.nav__cta .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  height: 3px;
  background: #1a2744;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Nav open state */
.nav.open .nav__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav.open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav.open .nav__links a {
    display: block;
    padding: 0.6rem 0.85rem;
    font-size: 1rem;
  }

  .nav.open .nav__cta {
    display: block;
    padding: 0.75rem 1.5rem 1.5rem;
    position: absolute;
    top: calc(68px + /* links height placeholder */ 0px);
    left: 0; right: 0;
    background: #ffffff;
    z-index: 998;
  }
}

/* We handle the mobile CTA inside the links list instead */

/* --- Hero Section --- */
.hero {
  background: #1a2744;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: #ffffff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero--light-footer::after {
  background: #f8fafc;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(245,158,11,0.18);
  color: #f59e0b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero__body {
  color: #94a3b8;
  max-width: 620px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__contact-note {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.hero__contact-note a {
  color: #94a3b8;
  text-decoration: underline;
}

/* --- Trust Bar --- */
.trust-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.75rem 0;
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2744;
}

.trust-bar__item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #f59e0b;
  color: #1a2744;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(26,39,68,0.1);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: gap 0.15s ease;
}

.card__link:hover {
  gap: 0.55rem;
}

/* --- Problem / Feature Sections --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.two-col--center {
  align-items: center;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: #475569;
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #f59e0b;
  color: #1a2744;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}

/* Navy bg variant */
.section--navy .feature-list li {
  color: #cbd5e1;
}

/* --- Urgency / Alert Box --- */
.alert-box {
  background: rgba(255,255,255,0.07);
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.alert-box h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #f59e0b;
}

.alert-box p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255,255,255,0.88);
}

/* --- CTA Banner --- */
.cta-banner {
  background: #1a2744;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner .contact-note {
  margin-top: 1.25rem;
  color: #64748b;
  font-size: 0.9rem;
}

.cta-banner .contact-note a {
  color: #94a3b8;
  text-decoration: underline;
}

/* --- Sister Services Banner --- */
.sister-bar {
  background: #0f1a35;
  padding: 2.5rem 0;
}

.sister-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sister-bar__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.sister-bar__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sister-bar__link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.sister-bar__link:hover {
  background: rgba(255,255,255,0.1);
}

.sister-bar__link strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.sister-bar__link span {
  color: #64748b;
  font-size: 0.8rem;
}

/* --- Services Page List --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.2s ease;
}

.service-item:hover {
  box-shadow: 0 4px 20px rgba(26,39,68,0.07);
}

.service-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 44px;
  text-align: center;
}

.service-item__body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.service-item__body p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.service-item__body a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f59e0b;
}

/* --- Credentials Block --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.credential-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.credential-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #f59e0b;
  color: #1a2744;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.contact-detail-item__text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail-item__text a,
.contact-detail-item__text p {
  color: #1a2744;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  text-decoration: none;
}

.contact-detail-item__text a:hover {
  color: #f59e0b;
}

.contact-form-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1a2744;
  background: #ffffff;
  font-family: inherit;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-disclaimer {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2744;
  margin: 0.5rem 0;
}

.pricing-card .price-note {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* --- What We Review (Health Check) --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.75rem;
}

.review-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f59e0b;
}

.review-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-card ul li {
  font-size: 0.9rem;
  color: #475569;
  padding-left: 1.1rem;
  position: relative;
}

.review-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}

/* --- Deliverables --- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.deliverable-item {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.5rem;
  border-top: 3px solid #f59e0b;
}

.deliverable-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.deliverable-item p {
  font-size: 0.9rem;
}

/* --- About Bio --- */
.bio-highlight {
  background: rgba(245,158,11,0.07);
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.bio-highlight p {
  font-size: 1.05rem;
  color: #1a2744;
  font-style: italic;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-placeholder {
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* --- Urgent Callout --- */
.urgency-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Footer --- */
.footer {
  background: #0f1a35;
  padding: 3.5rem 0 2rem;
  color: #64748b;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer__brand .logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  display: block;
}

.footer__brand .logo span {
  color: #f59e0b;
}

.footer__brand p {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 1.25rem;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: #475569;
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer__col ul li a:hover {
  color: #f59e0b;
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact-list li {
  font-size: 0.88rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__contact-list a {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__contact-list a:hover {
  color: #f59e0b;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.footer__social a:hover {
  background: #f59e0b;
  color: #1a2744;
  border-color: #f59e0b;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: #374151;
  margin: 0;
}

.footer__bottom a {
  color: #475569;
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #f59e0b;
}

.footer__sister {
  font-size: 0.82rem;
  color: #374151;
}

.footer__sister a {
  color: #475569;
  text-decoration: underline;
}

.footer__sister a:hover {
  color: #f59e0b;
}

/* --- RAG Badge (Health Check) --- */
.rag-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.rag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.rag-badge--red   { background: #fee2e2; color: #991b1b; }
.rag-badge--amber { background: #fef3c7; color: #92400e; }
.rag-badge--green { background: #d1fae5; color: #065f46; }

/* --- Responsive Utilities --- */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero    { padding: 4.5rem 0 3.5rem; }
  .hero::after { display: none; }
  .cta-banner { padding: 3rem 0; }
}

/* Logo image in nav */
.nav__logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 820px) {
  .nav__logo-img {
    height: 52px;
    max-width: 140px;
  }
}
