:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #f8f5ef;
  --ink: #1d2f3a;
  --muted: #5f7380;
  --line: rgba(29, 47, 58, 0.14);
  --brand: #173f51;
  --brand-soft: #2c6074;
  --accent: #f2ae20;
  --accent-deep: #cb8f12;
  --shadow: 0 12px 28px rgba(20, 51, 65, 0.1);
  --radius: 12px;
  --radius-sm: 10px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

body.is-ready .hero-overlay > * {
  animation: heroFadeUp 700ms ease both;
}

body.is-ready .hero-overlay > *:nth-child(2) {
  animation-delay: 120ms;
}

body.is-ready .hero-overlay > *:nth-child(3) {
  animation-delay: 240ms;
}

img {
  display: block;
  max-width: 100%;
  overflow-clip-margin: content-box;
  overflow: clip;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.section-heading p,
.lede,
.card p,
.quote-card footer,
.contact-list,
.hero-points,
.site-nav a,
.service-list li,
.price-card li,
.partner-card p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 400;
  color: #141414;
}

.site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 0.42rem;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.62rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #102330;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  background: #ffc54c;
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(18, 57, 75, 0.18);
  color: var(--brand);
}

.button-small {
  min-height: 32px;
  padding: 0.45rem 0.8rem;
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(243, 166, 28, 0.4);
  outline-offset: 3px;
}

.hero,
.section {
  padding: 4rem 0;
}

.hero {
  padding-top: 0;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.split-section,
.contact-grid,
.service-columns {
  display: grid;
  gap: 2.2rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #8a5a00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.brand img {
  width: 318px;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.08rem;
}

.lede {
  margin: 0.8rem 0 0;
  max-width: 54ch;
  font-size: 0.96rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-points,
.check-list,
.contact-list,
.service-list ul,
.price-card ul {
  padding-left: 1.2rem;
}

.hero-banner,
.video-frame {
  margin: 0;
}

.hero-banner {
  position: relative;
  min-height: 734px;
  overflow: hidden;
  background: #173f51;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 31, 38, 0.46);
}

.hero-slide > img,
.card img,
.partner-card img,
.quote-card img,
.video-frame video {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}

.hero-slide > img {
  min-height: 734px;
  height: 734px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100% - 3rem, 1040px);
  margin: 0 auto;
  padding-top: 1rem;
  color: #ffffff;
  text-align: center;
}

.hero-overlay h1 {
  max-width: 11ch;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: #f2ae20;
  font-size: clamp(4.1rem, 6vw, 4.8rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-overlay .lede {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.48;
  margin-top: 1.6rem;
}

.hero-overlay .hero-actions {
  margin-top: 2rem;
}

.hero-overlay .button {
  min-height: 68px;
  padding: 0 1.8rem;
  border-radius: 16px;
  font-size: 0.95rem;
  letter-spacing: 0;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(214, 148, 12, 0.4);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(10, 23, 30, 0.12);
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-nav-prev {
  left: 0;
  border-left: 0;
}

.hero-nav-next {
  right: 0;
  border-right: 0;
}

.card,
.partner-card,
.quote-card,
.info-panel,
.contact-card,
.price-card,
.service-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(19, 49, 63, 0.06);
}

.tier,
.tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.section-alt {
  background: #ffffff;
}

.testimonials-section {
  background:
    radial-gradient(circle at top left, rgba(60, 192, 184, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #faf8f2);
}

.testimonials-copy {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.section-alt h2,
.section-alt h3,
.section-alt h4,
.section-alt p,
.section-alt li,
.section-alt footer,
.section-alt .eyebrow {
  color: var(--ink);
}

.section-alt .packages-copy,
.section-alt .price-card > p:not(.tier):not(.tag):not(.price-card-label),
.section-alt .service-list li,
.section-alt .service-list-intro,
.section-alt .quote-card footer,
.section-alt .quote-card-text footer span,
.section-alt .partner-card p {
  color: var(--muted);
}

.blog-hero {
  padding-bottom: 2rem;
}

.blog-page {
  padding-top: 3rem;
}

.blog-page-pdf {
  padding-top: 1.2rem;
  padding-bottom: 4rem;
}

.blog-page-shell {
  width: min(calc(100% - 3.2rem), 1240px);
}

.blog-hero-banner {
  position: relative;
  height: 230px;
  margin-bottom: 4.25rem;
  overflow: hidden;
  background-image: url("/wp-content/uploads/blogimage.png");
  background-position: 50% 42%;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem 8.8rem;
}

.blog-hero-banner h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.7vw, 4rem);
  line-height: 1;
}

.blog-list-pdf {
  display: grid;
  gap: 2.75rem;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
  max-width: 930px;
  margin: 0 auto;
}

.blog-list-image-link {
  display: block;
  width: 400px;
}

.blog-list-image {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

.blog-list-copy {
  max-width: 460px;
}

.blog-list-title {
  margin: 0 0 0.85rem;
  color: #111111;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.4vw, 2.55rem);
  line-height: 1.08;
}

.blog-heading h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--brand);
}

.blog-copy {
  max-width: 60ch;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.blog-list-section {
  padding-top: 1.25rem;
}

.podcast-media-section {
  padding-top: 3rem;
  padding-bottom: 1.8rem;
  background: #ffffff;
}

.podcast-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: center;
}

.podcast-media-image-shell,
.podcast-media-video-shell {
  min-height: 100%;
}

.podcast-brand-card {
  position: relative;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  min-height: 340px;
  padding: 1.3rem 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 81, 0.08);
  background: #b8d4e2;
}

.podcast-brand-card::before,
.podcast-brand-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(240, 247, 250, 0.86);
}

.podcast-brand-card::before {
  width: 168px;
  height: 168px;
  right: -34px;
  top: -34px;
}

.podcast-brand-card::after {
  width: 180px;
  height: 180px;
  left: -72px;
  bottom: -72px;
}

.podcast-brand-mark {
  position: absolute;
  left: 1.3rem;
  top: 1.05rem;
  width: 134px;
  height: auto;
}

.podcast-brand-portrait,
.podcast-brand-copy {
  position: relative;
  z-index: 1;
}

.podcast-brand-portrait {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  margin-top: 2.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fdd631 0 40%, #ffffff 40% 52%, #ddeef5 52% 57%, transparent 57%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 6px, rgba(217, 233, 240, 0.9) 6px 8px);
}

.podcast-brand-portrait img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.podcast-brand-copy {
  margin-top: 2.2rem;
}

.podcast-brand-kicker {
  margin: 0;
  color: #0f161a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.podcast-brand-copy h1 {
  margin: 0.35rem 0 0.1rem;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1;
  color: #1d2f3a;
}

.podcast-brand-copy p {
  margin: 0;
  color: #304955;
  font-size: 0.94rem;
}

.podcast-brand-copy span {
  display: block;
  margin-top: 0.35rem;
  color: #476370;
  font-size: 0.8rem;
}

.podcast-media-video-shell {
  padding: 0.1rem 0;
}

.podcast-feature-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 340px;
  border-radius: 0;
  background: #0f2733;
}

.podcast-video-title {
  margin: 0 0 0.6rem;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
}

.podcast-media-actions {
  margin-top: 1rem;
}

.podcast-episode-section {
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 47, 58, 0.08);
}

.podcast-episode-copy {
  max-width: 1160px;
}

.podcast-episode-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111111;
}

.podcast-episode-copy p {
  max-width: 74ch;
  margin: 0;
  color: #5f5f5f;
  font-size: 0.98rem;
  line-height: 1.7;
}

.podcast-episode-copy a {
  color: black
}

.podcast-listen-label {
  margin-top: 1.25rem !important;
  margin-bottom: 0.7rem !important;
  color: #111111 !important;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem !important;
}

.podcast-social-section {
  padding-top: 0.5rem;
}

.podcast-social-card {
  padding: 1.8rem 1rem;
  border-top: 1px solid rgba(29, 47, 58, 0.08);
  text-align: center;
}

.podcast-social-line {
  margin: 0;
  color: #111111;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
}

.podcast-social-line + .podcast-social-line {
  margin-top: 0.6rem;
}

.podcast-social-line a {
  color: #111111;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.podcast-player-section {
  padding-top: 0.5rem;
}

.podcast-player-card {
  padding: 1.15rem;
  border: 1px solid rgba(29, 47, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfbfd, #f3f3f8);
  box-shadow: 0 14px 34px rgba(18, 41, 54, 0.08);
}

.podcast-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.podcast-player-brand {
  margin: 0;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.podcast-player-brand-link,
.podcast-player-legal a {
  color: #5a5f6b;
  font-size: 0.84rem;
  text-decoration: none;
}

.podcast-player-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.podcast-player-artwork {
  display: grid;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
}

.podcast-player-artwork img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: transparent;
  padding: 0;
}

.podcast-player-eyebrow {
  margin: 0 0 0.35rem;
  color: #7a8091;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.podcast-player-copy h2 {
  margin-bottom: 0.25rem;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  color: #111111;
}

.podcast-player-host {
  margin: 0 0 0.8rem;
  color: #5a5f6b;
  font-size: 1rem;
  font-weight: 700;
}

.podcast-player-description {
  max-width: 72ch;
  margin: 0;
  color: #545b68;
  font-size: 0.95rem;
  line-height: 1.68;
}

.podcast-player-description a {
  color: #111111;
}

.podcast-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.podcast-tracklist {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.podcast-track {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(29, 47, 58, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.podcast-track:hover,
.podcast-track:focus-visible {
  border-color: rgba(29, 47, 58, 0.16);
  background: #ffffff;
}

.podcast-track-meta {
  color: #7a8091;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.podcast-track-title {
  color: #151922;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.podcast-player-legal {
  margin: 1rem 0 0;
  text-align: right;
}
video.podcast-feature-video {
    height: 250px;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-grid-live {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem 1.6rem;
}

.blog-card {
  overflow: hidden;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(23, 63, 81, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(18, 41, 54, 0.06);
}

.blog-card-live {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-card-image {
  width: 100%;
  max-width: 100%;
  margin: 0 0 1rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.blog-card-live .blog-card-image {
  margin-bottom: 0;
  border-radius: 0;
}

.blog-card-body {
  padding-top: 1rem;
}

.blog-card-link {
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-date {
  margin: 0 0 0.55rem;
  color: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-live .blog-date {
  color: #4a4f55;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.blog-date-pdf {
  margin-bottom: 0.9rem;
  color: #a6a6a6;
  font-size: 0.95rem;
  font-weight: 500;
}

.blog-card h3 {
  margin-bottom: 0.7rem;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--brand);
}

.blog-card-live h3 {
  margin-bottom: 0.55rem;
  font-size: 1.34rem;
  line-height: 1.25;
  color: #111111;
}

.blog-card p:last-of-type {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.blog-card-live .blog-excerpt {
  margin: 0;
  color: #444b55;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-excerpt-pdf {
  margin: 0;
  color: #7c7c7c;
  font-size: 0.98rem;
  line-height: 1.55;
}

.blog-detail-page {
  padding-top: 2.3rem;
  padding-bottom: 4rem;
}

.blog-detail-shell {
  width: min(calc(100% - 3rem), 860px);
}

.blog-detail-back {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

.blog-detail-back a,
.blog-detail-nav a {
  color: var(--brand);
  text-decoration: none;
}

.blog-detail-back a:hover,
.blog-detail-back a:focus-visible,
.blog-detail-nav a:hover,
.blog-detail-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.blog-detail-header {
  margin-bottom: 1.6rem;
}

.blog-detail-header h1 {
  max-width: none;
  margin-top: 0.25rem;
  color: #111111;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.blog-date-detail {
  margin-top: 0.95rem;
  margin-bottom: 0.75rem;
  color: #7a7a7a;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}

.blog-detail-excerpt {
  max-width: 58ch;
  margin: 0;
  color: #5f6771;
  font-size: 1.04rem;
  line-height: 1.7;
}

.blog-detail-media {
  margin: 0 0 1.85rem;
}

.blog-detail-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-detail-content {
  color: #222831;
}

.blog-detail-content h2 {
  margin-top: 1.6rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: #111111;
}

.blog-detail-content p {
  margin: 0 0 1rem;
  color: #4c5660;
  font-size: 1rem;
  line-height: 1.8;
}

.blog-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(29, 47, 58, 0.12);
}

.blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.2rem;
  color: #111111;
  font-size: 0.95rem;
}

.blog-detail-share a {
  color: inherit;
  text-decoration: none;
}

.blog-detail-share a:hover,
.blog-detail-share a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.blog-detail-related {
  margin-top: 2.8rem;
}

.blog-detail-related h2 {
  margin-bottom: 1.4rem;
  color: #111111;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.blog-detail-related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-detail-related-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0.85rem;
}

.blog-detail-related-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #111111;
}

.blog-detail-related-item h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-detail-related-item h3 a:hover,
.blog-detail-related-item h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.blog-detail-related-item .blog-date {
  margin-bottom: 0.45rem;
  color: #666666;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.blog-detail-related-item p:last-child {
  margin: 0;
  color: #4c5660;
  font-size: 0.94rem;
  line-height: 1.55;
}

.blog-detail-related-pager {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.2rem;
  color: #555555;
  font-size: 0.92rem;
}

.blog-detail-page-authentic-pdf .blog-detail-shell {
  width: min(calc(100% - 3.2rem), 1240px);
}

.blog-detail-hero-authentic {
  margin-bottom: 3.25rem;
  background: #b8b8b8;
}

.blog-detail-hero-authentic-inner {
  width: min(calc(100% - 3rem), 800px);
  margin: 0 auto;
  padding: 7.5rem 0 5rem;
}

.blog-detail-hero-authentic h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 4.7vw, 4rem);
}

.blog-date-detail-authentic {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.blog-detail-authentic-intro,
.blog-detail-page-authentic-pdf .blog-detail-content,
.blog-detail-page-authentic-pdf .blog-detail-nav,
.blog-detail-page-authentic-pdf .blog-detail-share,
.blog-detail-page-authentic-pdf .blog-detail-related {
  width: min(calc(100% - 3rem), 800px);
  margin-left: auto;
  margin-right: auto;
}

.blog-detail-authentic-intro {
  margin-bottom: 0.1rem;
}

.blog-detail-authentic-intro p {
  margin: 0;
  color: #171717;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.blog-detail-page-authentic-pdf .blog-detail-media {
  width: min(100%, 280px);
  margin: 0 auto 1.2rem;
}

.blog-detail-page-authentic-pdf .blog-detail-content {
  color: #222222;
}

.blog-detail-page-authentic-pdf .blog-detail-content h2 {
  margin-top: 1.45rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  color: #111111;
}

.blog-detail-page-authentic-pdf .blog-detail-content p,
.blog-detail-page-authentic-pdf .blog-detail-content li {
  color: #30343b;
  font-size: 0.98rem;
  line-height: 1.5;
}

.blog-detail-page-authentic-pdf .blog-detail-content ul,
.blog-detail-page-authentic-pdf .blog-detail-content ol {
  margin: 0.5rem 0 1.2rem;
  padding-left: 1.4rem;
}

.blog-detail-page-authentic-pdf .blog-detail-content li + li {
  margin-top: 0.28rem;
}

.blog-detail-page-authentic-pdf .blog-detail-content strong {
  color: #111111;
}

.blog-detail-page-authentic-pdf .blog-detail-share {
  margin-top: 1rem;
}

.about-feature-section {
  background: #173f51;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  gap: 4.8rem;
  align-items: center;
}

.about-feature-media {
  position: relative;
  padding: 1.45rem 0 1.45rem 3.6rem;
}

.about-feature-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border: 3px solid #db5d2b;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 20px,
      rgba(219, 93, 43, 0.95) 20px 23px
    );
}

.about-feature-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

.about-feature-copy {
  max-width: 760px;
}

.about-feature-section .eyebrow {
  color: #8be3d1;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.about-feature-copy h2 {
  max-width: 13ch;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 0.95;
}

.about-feature-copy p:last-of-type {
  max-width: 30ch;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-feature-button {
  margin-top: 1.95rem;
  min-height: 58px;
  padding: 0 2.4rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.comfort-zone-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.comfort-zone-background {
  position: absolute;
  inset: 0;
}

.comfort-zone-background img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
}

.comfort-zone-shell {
  position: relative;
  z-index: 1;
}

.comfort-zone-panel {
  width: min(100%, 740px);
  min-height: 720px;
  padding: 2.2rem 3.3rem 3rem;
  background: rgba(161, 189, 246, 0.56);
  color: #111111;
  text-align: left;
}

.comfort-zone-panel h2 {
  display: grid;
  gap: 0.1rem;
  justify-items: start;
  color: #000;
  direction: ltr;
  font-family: "DM Serif Display", "DM Serif Display Fallback", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.06;
}

.comfort-zone-panel h2 span:first-child,
.comfort-zone-panel h2 span:last-child {
  color: #ffd24b;
}

.comfort-zone-rule {
  width: 330px;
  max-width: 100%;
  height: 3px;
  margin: 2rem 0 1.8rem;
  background: rgba(255, 210, 75, 0.7);
}

.comfort-zone-panel p {
  max-width: 34ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #10151a;
}

.comfort-zone-button {
  margin-top: 2rem;
  min-height: 58px;
  padding: 0 3rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.communication-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.communication-background {
  position: absolute;
  inset: 0;
}

.communication-background img {
  width: 100%;
  height: 100%;
  min-height: 810px;
  object-fit: cover;
  object-position: center;
}

.communication-shell {
  position: relative;
  z-index: 1;
}

.communication-panel {
  width: min(100%, 790px);
  min-height: 810px;
  padding: 2.5rem 3.8rem 3.2rem;
  background: rgba(173, 195, 244, 0.58);
  color: #111111;
  text-align: center;
}

.communication-panel h2 {
  display: grid;
  gap: 0.08rem;
  justify-items: center;
  font-family: "DM Serif Display", "DM Serif Display Fallback", Georgia, serif;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: #000;
  direction: ltr;
}

.communication-panel h2 span:first-child,
.communication-panel h2 span:last-child {
  color: #ffd24b;
}

.communication-rule {
  width: 360px;
  max-width: 100%;
  height: 3px;
  margin: 2rem auto 1.85rem;
  background: rgba(255, 210, 75, 0.72);
}

.communication-panel p {
  max-width: 38ch;
  margin: 0 auto;
  color: #10151a;
  font-size: 1rem;
  line-height: 1.72;
}

.communication-button {
  margin-top: 2rem;
  min-height: 62px;
  padding: 0 3.2rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.services-section {
  padding-top: 3.8rem;
}

.services-shell {
  max-width: 1210px;
}

.services-heading {
  max-width: 560px;
  margin-bottom: 1.7rem;
}

.services-heading .eyebrow {
  color: #6f8290;
  font-size: 0.64rem;
}

.services-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.services-heading p:last-child {
  max-width: 500px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #6c7f8b;
}

.services-grid {
  gap: 1.15rem;
}

.section-dark {
  color: #f4f7f8;
  background: linear-gradient(180deg, #173f51, #173f51);
}

.section-dark .section-heading p,
.section-dark .partner-card p {
  color: rgba(244, 247, 248, 0.78);
}

.section-dark .partner-card p {
  color: #111111;
}

.section-heading {
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials-link-row {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.testimonial-slider {
  position: relative;
  margin-top: 2rem;
}

.testimonial-slides {
  position: relative;
  min-height: 100%;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-slide-last {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 63, 81, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(18, 41, 54, 0.08);
  cursor: pointer;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: #fff9ea;
  border-color: rgba(23, 63, 81, 0.24);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-42px, 18px, 0);
}

[data-reveal="right"] {
  transform: translate3d(42px, 18px, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section-heading-centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.62rem;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
}

.card-grid,
.partner-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 1.15rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid,
.testimonial-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.partner-card,
.quote-card,
.info-panel,
.contact-card,
.price-card,
.service-list {
  padding: 1rem;
}

.card,
.partner-card,
.quote-card {
  overflow: hidden;
}

.services-grid .card {
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(18, 41, 54, 0.08);
}

.services-grid .card img {
  aspect-ratio: 1.42 / 1;
}

.services-grid .card h3 {
  min-height: 2.15em;
}

.services-grid .card p {
  min-height: 2.6em;
}

.card img,
.partner-card img,
.quote-card img {
  margin-bottom: 0.8rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card a,
.partner-card a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  background: var(--accent);
  color: #122734;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.card p,
.partner-card p,
.quote-card p,
.price-card p,
.service-list li,
.contact-card li {
  font-size: 0.86rem;
  line-height: 1.5;
}

.partner-card p {
  color: var(--ink);
}

.card h3,
.partner-card h3,
.quote-card footer,
.price-card .tier,
.price-card .tag {
  color: var(--brand);
}

.card h3,
.partner-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.04rem;
}

.quote-card {
  text-align: left;
  padding: 0;
}

.quote-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 63, 81, 0.08);
  box-shadow: 0 12px 26px rgba(18, 41, 54, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.98));
}

.quote-card img {
  width: 100%;
  height: 170px;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
}

.quote-card p,
.quote-card footer {
  padding-left: 1rem;
  padding-right: 1rem;
}

.quote-card-text p,
.quote-card-text footer {
  padding-left: 0;
  padding-right: 0;
}

.quote-card p {
  margin: 0.9rem 0 0.55rem;
}

.quote-card-text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
}

.quote-card-text::before {
  content: "“";
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(23, 63, 81, 0.18);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.8;
}

.quote-card footer {
  display: block;
  padding-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--brand-soft);
}

.quote-card-text footer {
  padding-bottom: 0;
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}

.quote-card-text footer span {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--brand-soft);
}

.split-section,
.contact-grid,
.service-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

#about .split-section {
  grid-template-columns: 1fr;
  gap: 0;
}

.video-frame {
  margin-top: 1.2rem;
  width: 100%;
  max-width: 1080px;
}

.video-frame video {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  min-height: 560px;
  object-fit: cover;
}

.service-list {
  background: linear-gradient(180deg, #f8f5ef, #f3eee5);
  color: var(--ink);
  padding: 1.45rem;
  border: 1px solid rgba(23, 63, 81, 0.12);
  border-top: 5px solid var(--brand);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(10, 28, 38, 0.08);
}

.service-list h3,
.service-list h4 {
  color: var(--brand);
}

.service-list h3 {
  margin: 0.2rem 0 0.55rem;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.06;
}

.service-list li {
  color: #4f5f69;
}

.service-list-kicker {
  margin: 0;
  color: var(--brand-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-list-intro {
  max-width: 48ch;
  margin: 0 0 1.15rem;
  color: #52646f;
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-track-grid {
  display: grid;
  gap: 0.9rem;
}

.list-group {
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(23, 63, 81, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.track-index {
  margin: 0 0 0.45rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.list-group h4 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.list-group ul {
  margin: 0;
}

.list-group li + li {
  margin-top: 0.42rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1rem 1rem 1.2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(20, 40, 52, 0.08);
}

.price-card .tier {
  display: block;
  margin-bottom: 0.65rem;
  color: #113311;
}

.price-card h3 {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  margin: 0.15rem 0 0;
  color: #113311;
}

.price-card h3 span {
  font-size: 1rem;
  color: #113311;
  font-weight: 400;
}

.price-card-label {
  min-height: 2.2em;
  margin: 0.22rem 0 0.65rem;
  color: var(--brand-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.price-card li + li {
  margin-top: 0.35rem;
}

.price-card-divider {
  width: 100%;
  height: 2px;
  margin: 0.7rem 0 1rem;
  background: #8c8c8c;
}

.price-card > p:not(.tier):not(.tag):not(.price-card-label) {
  margin: 0;
  color: #777777;
}

.price-card-button {
  margin-top: 1rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  align-self: center;
}

.price-card-featured {
  border-color: rgba(243, 166, 28, 0.4);
  border-top-width: 5px;
  background: linear-gradient(180deg, rgba(243, 166, 28, 0.08), rgba(255, 255, 255, 0.96));
}

.tag {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.price-card-featured .tag {
  color: #ffffff;
}

.packages-copy {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.94rem;
  line-height: 1.68;
}

.packages-funding-button {
  margin-top: 1rem;
  background: #efab09 !important;
  border-color: #efab09 !important;
  color: #102330 !important;
}

.packages-funding-button:hover,
.packages-funding-button:focus-visible {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #102330 !important;
}

.lead-generation-section {
  background:
    radial-gradient(circle at top right, rgba(242, 174, 32, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f7f2e7);
}

.lead-generation-shell {
  display: grid;
  gap: 1.6rem;
}

.lead-generation-copy {
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead-generation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 1.1rem;
  align-items: stretch;
}

.lead-card {
  min-height: 100%;
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(23, 63, 81, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(18, 41, 54, 0.06);
}

.lead-card-featured {
  background: linear-gradient(180deg, rgba(23, 63, 81, 0.98), rgba(31, 81, 101, 0.96));
  border-color: rgba(23, 63, 81, 0.08);
}

.lead-card-kicker {
  margin: 0 0 0.55rem;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-card h3 {
  margin-bottom: 0.65rem;
  color: var(--brand);
  font-size: 1.2rem;
}

.lead-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.lead-card-featured h3,
.lead-card-featured p,
.lead-card-featured li {
  color: rgba(255, 255, 255, 0.94);
}

.lead-card-featured .lead-card-kicker {
  color: #ffd574;
}

.lead-card-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.lead-card-list li + li {
  margin-top: 0.42rem;
}

.lead-card .button {
  margin-top: 1rem;
}

#packages .service-columns {
  align-items: stretch;
  gap: 1.2rem;
}

#packages .pricing-grid {
  gap: 1rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto -16% -14% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(242, 174, 32, 0.92);
  z-index: 0;
}

.contact-form-notice {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-notice-success {
  background: #e8f7ee;
  border: 1px solid #9fd0af;
  color: #1f5b33;
}

.contact-form-notice-error {
  background: #fff3e8;
  border: 1px solid #ebb986;
  color: #8b4b12;
}

.contact-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 3.2rem;
  align-items: start;
}

.contact-form-card {
  width: min(100%, 430px);
  background: #ffffff;
  border: 1px solid rgba(23, 63, 81, 0.12);
  border-radius: 16px;
  padding: 1.1rem 1.05rem 1.15rem;
  box-shadow: 0 12px 28px rgba(15, 40, 52, 0.1);
  text-align: center;
}

.contact-form-logo {
  width: 122px;
  height: auto;
  margin: 0 auto 0.25rem;
}

.contact-form-eyebrow,
.contact-form-copy,
.contact-form-subcopy {
  margin: 0;
}

.contact-form-eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form-card h2 {
  margin-top: 0.2rem;
  font-size: 1.32rem;
}

.contact-form-copy {
  font-size: 0.88rem;
  color: var(--brand);
}

.contact-form-subcopy {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.28rem;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 63, 81, 0.18);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  color: var(--ink);
  background: #fff;
}

.contact-info-card {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
  min-height: 620px;
  padding: 2.2rem 2rem 2.6rem;
  border: 1px solid rgba(23, 63, 81, 0.12);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 40, 52, 0.1);
}

.contact-submit {
  justify-self: start;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

.contact-antibot {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(23, 63, 81, 0.12);
  border-radius: 12px;
  background: rgba(244, 249, 250, 0.9);
}

.contact-antibot-title,
.contact-antibot-question,
.contact-antibot-error {
  margin: 0;
}

.contact-antibot-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand);
}

.contact-antibot-question {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-antibot-confirm {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.contact-antibot-confirm input {
  width: 16px;
  height: 16px;
  margin: 0.1rem 0 0;
}

.contact-antibot-error {
  font-size: 0.74rem;
  font-weight: 700;
  color: #b42318;
}

.contact-grid {
  gap: 0.9rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.contact-strip-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
}

.contact-strip-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #111111;
}

.contact-strip-item a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid #3d8be1;
  background: transparent;
  color: #3d8be1;
  font-size: 1.2rem;
}

.contact-strip-item-phone {
  align-items: center;
}

.contact-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 40px;
  border-radius: 6px;
  background: #3d8be1;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
}

.contact-icon-whatsapp {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  padding: 0;
}

.contact-icon-whatsapp img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.contact-strip-item-whatsapp p {
}

.contact-cta {
  text-align: center;
  padding-top: 1.1rem;
}

.contact-cta h3 {
  margin-bottom: 1rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.08;
  color: #111111;
}

.contact-schedule-button {
  min-height: 40px !important;
  min-width: 280px;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
  background: #3d8be1 !important;
  color: #ffffff !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer-shell {
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 0 0.9rem;
}

.footer-brand img {
  width: 203px;
  height: auto;
}

.site-footer p {
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  .hero,
  .section {
    padding: 3.2rem 0;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .contact-info-card,
  .contact-form-card {
    justify-self: stretch;
    width: 100%;
  }

  .about-feature-grid,
  .split-section,
  .contact-grid,
  .service-columns,
  .lead-generation-grid,
  .podcast-media-grid,
  .card-grid,
  .partner-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .services-section {
    padding-top: 3rem;
  }

  .about-feature-media {
    padding: 0 0 0 1.5rem;
  }

  .about-feature-frame {
    width: 220px;
    height: 220px;
  }

  .comfort-zone-panel {
    width: min(100%, 100%);
    min-height: 620px;
    padding: 2rem 2rem 2.5rem;
  }

  .comfort-zone-background img {
    min-height: 620px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .communication-panel {
    width: min(100%, 100%);
    min-height: 640px;
    padding: 2rem 2rem 2.5rem;
  }

  .communication-background img {
    min-height: 640px;
  }

  .section-heading h2::after {
    width: 52px;
  }

  .hero-banner {
    min-height: 520px;
  }

  .hero-slide > img {
    min-height: 520px;
    height: 520px;
  }

  .hero-overlay {
    width: calc(100% - 2.5rem);
  }

  .hero-overlay h1 {
    font-size: 3rem;
  }

  .hero-overlay .lede {
    font-size: 0.98rem;
    margin-top: 1rem;
  }

  .hero-overlay .button {
    min-height: 58px;
    font-size: 0.8rem;
  }

  .hero-nav {
    width: 38px;
    height: 82px;
    font-size: 2.35rem;
  }

  .services-grid,
  .partner-grid,
  .testimonial-grid,
  .pricing-grid {
    gap: 1rem;
  }

  .blog-grid-live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero-banner-overlay {
    padding: 2rem 3rem;
  }

  .blog-list-item {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 1.8rem;
  }

  .blog-list-image-link {
    width: 340px;
  }

  .blog-list-image {
    height: 270px;
  }

  .blog-list-title {
    font-size: 1.95rem;
  }

  .blog-detail-shell {
    width: min(calc(100% - 2rem), 860px);
  }

  .blog-detail-page-authentic-pdf .blog-detail-shell {
    width: min(calc(100% - 2rem), 1240px);
  }

  .blog-detail-hero-authentic-inner,
  .blog-detail-authentic-intro,
  .blog-detail-page-authentic-pdf .blog-detail-content,
  .blog-detail-page-authentic-pdf .blog-detail-nav,
  .blog-detail-page-authentic-pdf .blog-detail-share,
  .blog-detail-page-authentic-pdf .blog-detail-related {
    width: min(calc(100% - 2rem), 800px);
  }

  .blog-detail-related-list {
    grid-template-columns: 1fr;
  }

  .blog-detail-related-item img {
    height: 180px;
  }

  .comfort-zone-panel h2 {
    font-size: 2.75rem;
  }

  .communication-panel h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 780px) {
  .hero,
  .section {
    padding: 2.6rem 0;
  }

  .container {
    width: min(calc(100% - 1.35rem), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
  }

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

  .footer-shell,
  .nav-shell {
    position: relative;
    align-items: center;
  }

  .hero-banner {
    min-height: 460px;
  }

  .hero-slide > img {
    min-height: 460px;
    height: 460px;
  }

  .hero-overlay {
    width: calc(100% - 2rem);
  }

  .hero-overlay h1 {
    max-width: 9ch;
    font-size: 2.5rem;
  }

  .hero-overlay .lede {
    max-width: 25ch;
    font-size: 0.92rem;
    margin-top: 0.9rem;
  }

  .hero-overlay .hero-actions {
    margin-top: 1.15rem;
  }

  .hero-overlay .button {
    min-height: 52px;
    padding: 0 1.1rem;
    border-radius: 12px;
    font-size: 0.74rem;
  }

  .about-feature-grid {
    gap: 2.2rem;
  }

  .about-feature-copy h2 {
    font-size: 2.55rem;
  }

  .service-list {
    padding: 1.1rem;
  }

  .service-list h3 {
    font-size: 1.55rem;
  }

  .list-group {
    padding: 0.9rem;
  }

  .price-card {
    padding: 1rem 0.95rem 1.05rem;
  }

  .price-card h3 {
    font-size: 1.65rem;
  }

  .about-feature-copy p:last-of-type {
    max-width: none;
    font-size: 0.9rem;
  }

  .about-feature-button {
    min-height: 50px;
    font-size: 0.82rem;
    padding: 0 1.3rem;
  }

  .comfort-zone-panel {
    min-height: 540px;
    padding: 1.6rem 1.2rem 2rem;
  }

  .packages-copy,
  .service-list-intro {
    font-size: 0.88rem;
  }

  .service-list {
    padding: 1rem;
    border-radius: 18px;
  }

  .service-list h3 {
    font-size: 1.5rem;
  }

  .list-group {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .list-group h4 {
    font-size: 0.94rem;
  }

  .price-card {
    padding: 0.95rem 0.9rem 1rem;
    border-radius: 18px;
  }

  .price-card h3 {
    font-size: 1.6rem;
  }

  .price-card-label {
    min-height: 0;
    font-size: 0.66rem;
  }

  .comfort-zone-background img {
    min-height: 540px;
  }

  .comfort-zone-panel h2 {
    font-size: 2rem;
  }

  .comfort-zone-panel p {
    font-size: 0.9rem;
  }

  .comfort-zone-rule {
    width: 220px;
    margin: 1.2rem auto 1.2rem;
  }

  .comfort-zone-button {
    min-height: 48px;
    padding: 0 1.6rem;
    font-size: 0.82rem;
  }

  .communication-panel {
    min-height: 560px;
    padding: 1.6rem 1.2rem 2rem;
  }

  .communication-background img {
    min-height: 560px;
  }

  .communication-panel h2 {
    font-size: 2rem;
  }

  .communication-panel p {
    font-size: 0.9rem;
  }

  .communication-rule {
    width: 220px;
    margin: 1.2rem auto 1.2rem;
  }

  .communication-button {
    min-height: 48px;
    padding: 0 1.6rem;
    font-size: 0.82rem;
  }

  .hero-nav {
    width: 30px;
    height: 64px;
    font-size: 1.9rem;
  }

  .quote-card img {
    height: 210px;
  }

  .contact-form-card h2,
  .contact-cta h3 {
    font-size: 1.2rem;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .blog-grid-live {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-page-shell {
    width: min(calc(100% - 1.35rem), 1240px);
  }

  .blog-hero-banner {
    height: 170px;
    margin-bottom: 2rem;
  }

  .blog-hero-banner-overlay {
    padding: 1.5rem 1.25rem;
  }

  .blog-hero-banner h1 {
    font-size: 2.3rem;
  }

  .blog-list-pdf {
    gap: 2rem;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-list-image-link {
    width: 100%;
  }

  .blog-list-image {
    height: 240px;
  }

  .blog-list-copy {
    max-width: none;
  }

  .blog-list-title {
    font-size: 1.8rem;
  }

  .blog-date-pdf,
  .blog-excerpt-pdf {
    font-size: 0.92rem;
  }

  .blog-detail-shell {
    width: min(calc(100% - 1.35rem), 860px);
  }

  .blog-detail-page-authentic-pdf .blog-detail-shell {
    width: min(calc(100% - 1.35rem), 1240px);
  }

  .blog-detail-hero-authentic {
    margin-bottom: 1.9rem;
  }

  .blog-detail-hero-authentic-inner {
    width: min(calc(100% - 1.35rem), 800px);
    padding: 3.1rem 0 2.6rem;
  }

  .blog-detail-authentic-intro,
  .blog-detail-page-authentic-pdf .blog-detail-content,
  .blog-detail-page-authentic-pdf .blog-detail-nav,
  .blog-detail-page-authentic-pdf .blog-detail-share,
  .blog-detail-page-authentic-pdf .blog-detail-related {
    width: min(calc(100% - 1.35rem), 800px);
  }

  .blog-detail-authentic-intro p {
    font-size: 1.45rem;
  }

  .blog-detail-page-authentic-pdf .blog-detail-media {
    width: min(100%, 240px);
  }

  .blog-detail-page-authentic-pdf .blog-detail-content p,
  .blog-detail-page-authentic-pdf .blog-detail-content li {
    font-size: 0.93rem;
  }

  .blog-detail-header h1 {
    font-size: 2.2rem;
  }

  .blog-detail-excerpt,
  .blog-detail-content p {
    font-size: 0.95rem;
  }

  .blog-detail-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-detail-share {
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  .blog-detail-related-item img {
    height: 160px;
  }

  .contact-info-card {
    min-height: auto;
    padding: 1.5rem 1.1rem 1.8rem;
  }

  .contact-strip-item p,
  .contact-form-subcopy {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
