@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import "tailwindcss";

/* ============================================================
   SOVEREIGN BODY ALCHEMY — standalone design system
   Self-contained: no tg-* dependencies, extractable verbatim.
   Palette mirrors the live Twenty Twenty-Five WordPress theme.
   ============================================================ */

:root {
  --sba-bg:        #fffcf5;
  --sba-text:      #111111;
  --sba-muted:     #666564;
  --sba-teal:      #85cfce;
  --sba-yellow:    #fadb98;
  --sba-bright:    #FFEE58;
  --sba-divider:   #e8e4db;
  --sba-surface:   #FFFFFF;
  --sba-dark-bg:   #111111;
}

/* Shell & layout */

/* Hero with full-width image */

.sba-hero {
  position: relative;
  overflow: hidden;
}

.sba-hero__image-wrap {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.sba-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sba-hero__content {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.sba-hero__heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  max-width: 36rem;
  margin-inline: auto;
}

/* Two-column layout */

.sba-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sba-two-col--reversed .sba-two-col__image { order: -1; }

.sba-content-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

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

  .sba-two-col--reversed .sba-two-col__image { order: 0; }
}

/* Logo in header */

.sba-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.sba-logo__img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.sba-logo__text {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 1rem + ((1vw - 0.2rem) * 0.169), 1rem);
  font-weight: 600;
  color: var(--sba-text);
}

.sba-logo:hover .sba-logo__text {
  color: var(--sba-muted);
}

/* Logo in footer */

.sba-footer__logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.sba-footer__logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.sba-footer__logo-link:hover .sba-footer__logo-img {
  opacity: 1;
}

.sba-shell {
  min-height: 100vh;
  background: var(--sba-bg);
  color: var(--sba-text);
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: clamp(1.125rem, 1.125rem + ((1vw - 0.2rem) * 0.339), 1.375rem);
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.sba-container {
  max-width: 50rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sba-container--wide {
  max-width: 93.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Typography */

.sba-shell h1,
.sba-shell h2,
.sba-shell h3,
.sba-shell h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: -0.1px;
  color: var(--sba-text);
}

.sba-shell h1 { font-size: clamp(2.15rem, 2.15rem + ((1vw - 0.2rem) * 1.153), 3rem); }
.sba-shell h2 { font-size: clamp(1.75rem, 1.75rem + ((1vw - 0.2rem) * 0.339), 2rem); }
.sba-shell h3 { font-size: clamp(1.25rem, 1.25rem + ((1vw - 0.2rem) * 0.2), 1.5rem); }
.sba-shell h4 { font-size: 1.125rem; }
.sba-shell h6 { font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }

.sba-shell a {
  color: var(--sba-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sba-shell a:hover {
  color: var(--sba-muted);
  text-decoration: underline;
}

.sba-shell p { margin-bottom: 1.2rem; }

/* Tagline / lead text */

.sba-tagline {
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  color: var(--sba-muted);
  line-height: 1.5;
}

/* Cards */

.sba-card {
  background: var(--sba-surface);
  border: 1px solid var(--sba-divider);
  border-radius: 4px;
  padding: 2rem;
}

/* Buttons — pill shape matching the original site */

.sba-button-primary {
  display: inline-block;
  background: var(--sba-text);
  color: var(--sba-surface);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  font-weight: 400;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.sba-button-primary:hover {
  background: color-mix(in srgb, #111111 85%, transparent);
  color: var(--sba-surface);
  text-decoration: none;
}

.sba-button-outline {
  display: inline-block;
  background: transparent;
  color: var(--sba-text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  font-weight: 400;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid var(--sba-text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sba-button-outline:hover {
  background: var(--sba-text);
  color: var(--sba-surface);
  text-decoration: none;
}

/* Navigation */

.sba-header {
  background: var(--sba-bg);
  border-bottom: 1px solid var(--sba-divider);
  padding: 1.25rem 0;
  position: relative;
  z-index: 200;
}

.sba-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 93.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Hamburger button */

.sba-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.sba-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sba-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Nav wrapper */

.sba-nav-wrap {
  display: flex;
  align-items: center;
}

/* Nav list */

.sba-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav item + dropdown — desktop hover */

.sba-nav-item--has-dropdown {
  position: relative;
}

/* Invisible bridge fills the gap so the pointer never leaves the hover area */
.sba-nav-item--has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.sba-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  background: var(--sba-surface);
  border: 1px solid var(--sba-divider);
  border-radius: 4px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  z-index: 100;
  box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.1);
}

.sba-nav-item--has-dropdown:hover .sba-nav-dropdown {
  display: block;
}

.sba-nav-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  font-weight: 300;
  color: var(--sba-text);
  text-decoration: none;
  white-space: nowrap;
}

.sba-nav-dropdown li a:hover {
  background: var(--sba-bg);
  text-decoration: none;
}

.sba-nav-link {
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  font-weight: 300;
  color: var(--sba-text);
  text-decoration: none;
  cursor: default;
}

a.sba-nav-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Mobile nav — breakpoint at 768px */

@media (max-width: 767px) {
  .sba-hamburger {
    display: flex;
  }

  .sba-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sba-bg);
    border-bottom: 1px solid var(--sba-divider);
    padding: 1rem 1.25rem 1.5rem;
    z-index: 150;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .sba-nav-wrap--open {
    display: block;
  }

  .sba-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .sba-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--sba-divider);
  }

  .sba-nav > li:last-child {
    border-bottom: none;
  }

  .sba-nav-link,
  .sba-nav > li > a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  /* Dropdown becomes inline list on mobile */
  .sba-nav-item--has-dropdown::after {
    display: none;
  }

  .sba-nav-dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    background: transparent;
  }

  .sba-nav-dropdown li a {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--sba-muted);
    white-space: normal;
  }

  .sba-nav-dropdown li a:hover {
    background: transparent;
    color: var(--sba-text);
  }
}

.sba-nav-cta {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  font-weight: 400;
  color: var(--sba-surface);
  background: var(--sba-text);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s;
}

.sba-nav-cta:hover {
  background: color-mix(in srgb, #111111 85%, transparent);
  color: var(--sba-surface);
  text-decoration: none;
}

/* Hero */

.sba-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.sba-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--sba-muted);
  margin-bottom: 1.2rem;
}

.sba-hero__heading { margin-bottom: 1.2rem; }

.sba-hero__sub {
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem);
  color: var(--sba-muted);
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.sba-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */

.sba-section        { padding: clamp(1.875rem, 5vw, 3.125rem) 0; }
.sba-section--alt   { background: var(--sba-yellow); padding: clamp(1.875rem, 5vw, 3.125rem) 0; }
.sba-section--dark  { background: var(--sba-dark-bg); color: rgba(255,255,255,0.9); padding: clamp(1.875rem, 5vw, 3.125rem) 0; }
.sba-section--teal  { background: var(--sba-teal); padding: clamp(1.875rem, 5vw, 3.125rem) 0; }

.sba-section__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sba-divider-line {
  width: 3rem;
  height: 1px;
  background: var(--sba-divider);
  margin: 1.2rem auto;
}

/* Grid */

.sba-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.2rem;
}

.sba-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.2rem;
}

/* Forms */

.sba-form       { display: flex; flex-direction: column; gap: 1.2rem; }
.sba-form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.sba-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--sba-muted);
}

.sba-input,
.sba-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: var(--sba-surface);
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sba-input::placeholder,
.sba-textarea::placeholder { color: #999; }

.sba-input:hover:not(:focus),
.sba-textarea:hover:not(:focus) { border-color: #aaa; }

.sba-input:focus,
.sba-textarea:focus {
  border-color: var(--sba-teal);
  box-shadow: 0 0 0 3px rgba(133, 207, 206, 0.25);
}

.sba-textarea    { min-height: 7rem; resize: vertical; }
.sba-field-error { font-size: 0.85rem; color: #cf2e2e; }

/* Flash messages */

.sba-flash-notice,
.sba-flash-alert { padding: 0.75rem 1rem; font-size: 0.9rem; }

.sba-flash-notice { background: #e6f4ea; color: #1e4620; border-bottom: 1px solid #c3e6cb; }
.sba-flash-alert  { background: #fce8e6; color: #7d1c1c; border-bottom: 1px solid #f5c6c6; }

.sba-flash-inner {
  max-width: 50rem;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.sba-flash-dismiss {
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}

.sba-flash-dismiss:hover { opacity: 1; }

/* Blog */

.sba-blog-list { display: flex; flex-direction: column; gap: 3rem; }

.sba-blog-item {
  border-bottom: 1px solid var(--sba-divider);
  padding-bottom: 3rem;
}

.sba-blog-item:last-child { border-bottom: none; }

.sba-blog-item__meta   { font-size: 0.875rem; color: var(--sba-muted); margin-bottom: 0.5rem; }
.sba-blog-item__title  { margin-bottom: 0.75rem; }
.sba-blog-item__teaser { color: var(--sba-muted); margin-bottom: 1rem; }

/* Markdown body */

.sba-markdown { max-width: 44rem; }
.sba-markdown p  { margin-bottom: 1.2rem; }
.sba-markdown ul,
.sba-markdown ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.sba-markdown li { margin-bottom: 0.5rem; }
.sba-markdown h2,
.sba-markdown h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.sba-markdown blockquote {
  border-left: 3px solid var(--sba-teal);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--sba-muted);
}
.sba-markdown img { max-width: 100%; border-radius: 4px; margin: 1.5rem 0; }
.sba-markdown hr  { border: none; border-top: 1px solid var(--sba-divider); margin: 2rem 0; }

/* Footer */

.sba-footer {
  background: var(--sba-dark-bg);
  color: rgba(255,255,255,0.75);
  padding: clamp(1.875rem, 5vw, 3.125rem) 0 2rem;
  margin-top: clamp(3rem, 7vw, 5.625rem);
}

.sba-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.sba-footer__brand   { font-family: "Manrope", sans-serif; font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.169), 1.125rem); font-weight: 600; color: #fff; }
.sba-footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; font-weight: 300; }

.sba-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.sba-footer__links a       { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.875rem; font-weight: 300; }
.sba-footer__links a:hover { color: #fff; text-decoration: none; }

.sba-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-weight: 300;
}

/* Price block */

.sba-price      { font-size: 1.75rem; font-weight: 400; color: var(--sba-text); margin: 0.5rem 0 0.25rem; }
.sba-price__note { font-size: 0.875rem; color: var(--sba-muted); font-weight: 300; }

/* Accent blocks */

.sba-accent-block          { background: var(--sba-teal); padding: 2rem; border-radius: 4px; }
.sba-accent-block--yellow  { background: var(--sba-yellow); }

/* Utility */

.sba-text-center { text-align: center; }
.sba-mt-xs  { margin-top: 0.5rem; }
.sba-mt-sm  { margin-top: 1rem; }
.sba-mt-md  { margin-top: 2rem; }
.sba-mt-lg  { margin-top: clamp(3rem, 7vw, 5.625rem); }
.sba-mb-sm  { margin-bottom: 1rem; }

/* ── Homepage sections ─────────────────────────────────────── */

/* 1. Full-screen hero */

.sba-hero-full {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.sba-hero-full__bg {
  position: absolute;
  inset: 0;
}

.sba-hero-full__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sba-hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.sba-hero-full__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
}

/* Scope color overrides inside .sba-hero-full to beat .sba-shell h1/.sba-shell a specificity */
.sba-hero-full .sba-hero-full__heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  max-width: 36rem;
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
}

.sba-hero-full__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sba-button-light {
  display: inline-block;
  background: #fff;
  color: var(--sba-text);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sba-button-light:hover {
  background: var(--sba-bg);
  color: var(--sba-text);
  text-decoration: none;
}

/* .sba-hero-full scope beats .sba-shell a specificity for ghost button color */
.sba-hero-full .sba-button-ghost,
.sba-button-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.sba-hero-full .sba-button-ghost:hover,
.sba-button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* 2. Welcome */

.sba-welcome {
  padding: clamp(4rem, 9vw, 8rem) 1.25rem;
  background: var(--sba-bg);
}

.sba-welcome__inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--sba-text);
}

/* 3. Dark split — "Why I Do This Work" */

.sba-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.sba-split--dark {
  background: #1a1410;
  color: rgba(255, 255, 255, 0.85);
}

.sba-split--dark h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.sba-split--dark p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sba-split__image {
  overflow: hidden;
}

.sba-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sba-split__text {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sba-split__kicker {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  font-weight: 400 !important;
  color: var(--sba-teal) !important;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .sba-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sba-split__image {
    height: 50vw;
    min-height: 260px;
  }
}

/* 4. Pillars — SOVEREIGN / BODY / ALCHEMY */

.sba-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--sba-bg);
  border-top: 1px solid var(--sba-divider);
  border-bottom: 1px solid var(--sba-divider);
}

.sba-pillar {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--sba-divider);
}

.sba-pillar:last-child {
  border-right: none;
}

.sba-pillar__word {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--sba-text);
  margin-bottom: 1.25rem;
}

.sba-pillar__rule {
  width: 2rem;
  height: 1px;
  background: var(--sba-text);
  margin-bottom: 1.5rem;
}

.sba-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.sba-pillar__list li {
  font-size: 0.95rem;
  color: var(--sba-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--sba-divider);
}

.sba-pillar__list li:last-child {
  border-bottom: none;
}

.sba-pillar__note {
  font-size: 0.95rem;
  color: var(--sba-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  .sba-pillars {
    grid-template-columns: 1fr;
  }

  .sba-pillar {
    border-right: none;
    border-bottom: 1px solid var(--sba-divider);
  }

  .sba-pillar:last-child {
    border-bottom: none;
  }
}

/* 5. Offerings */

.sba-offerings {
  background: var(--sba-surface);
  padding-bottom: 0;
}

.sba-offerings__header {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) 0;
  max-width: 93.75rem;
  margin-inline: auto;
}

.sba-offerings__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.sba-offering-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--sba-divider);
  max-width: 93.75rem;
  margin-inline: auto;
  transition: background 0.15s;
}

.sba-offering-row:last-child {
  border-bottom: 1px solid var(--sba-divider);
}

.sba-offering-row:hover {
  background: var(--sba-bg);
}

.sba-offering-row__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sba-muted);
  user-select: none;
}

.sba-offering-row__body h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.4rem;
}

.sba-offering-row__body p {
  font-size: 0.95rem;
  color: var(--sba-muted);
  margin-bottom: 0;
  max-width: 40rem;
}

.sba-offering-row__cta {
  white-space: nowrap;
}

.sba-offering-row__cta a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sba-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sba-offering-row__cta a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .sba-offering-row {
    grid-template-columns: 2.5rem 1fr;
    row-gap: 0.5rem;
  }

  .sba-offering-row__cta {
    grid-column: 2;
  }
}

/* 6. Full-width image break */

.sba-image-break {
  height: 50vh;
  min-height: 280px;
  max-height: 560px;
  overflow: hidden;
}

.sba-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* 7. Values */

.sba-values {
  background: var(--sba-teal);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.sba-values__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
  max-width: 93.75rem;
  margin-inline: auto;
}

.sba-values__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 93.75rem;
  margin-inline: auto;
}

.sba-values__list li {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: #111;
  line-height: 1.3;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.sba-values__list li:last-child {
  border-bottom: none;
}

/* 8. Newsletter */

.sba-newsletter-block {
  background: #1a1410;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.sba-newsletter-block__inner {
  max-width: 32rem;
  margin-inline: auto;
  text-align: center;
}

.sba-newsletter-block h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.sba-newsletter-block p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.sba-newsletter-block .sba-label {
  color: rgba(255, 255, 255, 0.5);
}

.sba-newsletter-block .sba-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.sba-newsletter-block .sba-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sba-newsletter-block .sba-input:focus {
  border-color: var(--sba-teal);
  box-shadow: 0 0 0 3px rgba(133, 207, 206, 0.2);
}

.sba-newsletter-block .sba-button-primary {
  background: var(--sba-teal);
  color: #111;
  font-weight: 600;
}

.sba-newsletter-block .sba-button-primary:hover {
  background: #6bbcbb;
}

.sba-newsletter-block__footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.sba-newsletter-block__footer a {
  color: rgba(255, 255, 255, 0.65);
}
.sba-mb-md  { margin-bottom: 2rem; }
