:root {
  --ink: #172033;
  --muted: #5c6577;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --navy: #101a2f;
  --blue: #1769e0;
  --blue-dark: #0e4ca8;
  --line: #dfe3e8;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(23, 32, 51, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  container-type: inline-size;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 26, 47, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(10, 18, 34, 0.12);
}

header > nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  width: min(1120px, calc(100% - 2rem));
  min-height: 68px;
  margin: 0 auto;
}

header > nav > a,
.nav-services > a,
.nav-dropdown > summary {
  padding: 0.58rem 0.78rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-services {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  border-radius: 8px;
  transition: background-color 160ms ease;
}

.nav-services:hover,
.nav-services:focus-within {
  background: rgba(255, 255, 255, 0.09);
}

.nav-services > .nav-services-link {
  display: flex;
  min-height: 44px;
  padding: 0.58rem 2rem 0.58rem 0.78rem;
  align-items: center;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: 8px;
}

.nav-dropdown {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.nav-dropdown > summary {
  display: flex;
  width: 30px;
  min-height: 44px;
  padding: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  cursor: pointer;
  border-radius: 8px;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 44px;
  right: 0;
  left: auto;
  z-index: 20;
  display: none;
  width: 285px;
  padding: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(9, 30, 66, 0.2);
}

.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-services:hover .nav-dropdown-menu,
.nav-services:focus-within .nav-dropdown-menu {
  display: grid;
}

header > nav .nav-dropdown-menu a {
  padding: 0.68rem 0.75rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

header > nav .nav-dropdown-menu a:hover,
header > nav .nav-dropdown-menu a:focus-visible {
  color: var(--blue-dark);
  background: #eef4fc;
}

header > nav .brand {
  margin-right: auto;
  padding: 0;
}

header > nav .brand img {
  display: block;
  width: 220px;
  height: 33px;
  object-fit: contain;
}

header > nav a:hover,
header > nav a:focus-visible,
.nav-services > a:hover,
.nav-services > a:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.nav-services > a:hover,
.nav-services > a:focus-visible,
.nav-services .nav-dropdown > summary:hover,
.nav-services .nav-dropdown > summary:focus-visible {
  background: transparent;
}

header > nav > a:last-child {
  margin-left: 0.3rem;
  padding-right: 1rem;
  padding-left: 1rem;
  background: var(--blue);
  box-shadow: 0 6px 18px rgba(23, 105, 224, 0.28);
}

header > nav > a:last-child:hover,
header > nav > a:last-child:focus-visible {
  background: #2c7aeb;
}

main {
  width: min(920px, calc(100% - 2rem));
  min-height: 70vh;
  margin: 3rem auto 5rem;
  padding: clamp(1.4rem, 4vw, 4rem);
  overflow-wrap: break-word;
  background: var(--surface);
  border: 1px solid rgba(23, 32, 51, 0.07);
  border-radius: clamp(12px, 2vw, 22px);
  box-shadow: var(--shadow);
}

main.home {
  width: min(1120px, calc(100% - 2rem));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 560px;
  padding-bottom: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid var(--blue);
  border-radius: 10px;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-secondary {
  color: var(--blue-dark);
  background: transparent;
}

.button-secondary:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

main .hero-image {
  width: min(100%, 340px);
  max-height: 490px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
  border-radius: 44% 44% 20px 20px;
  box-shadow: 22px 22px 0 #dceaff;
}

.featured {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.section-block {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-block:last-child {
  border-bottom: 0;
}

.home-newsletter {
  margin-block: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.25rem, 6vw, 4.5rem);
  text-align: center;
  background: #f5f8fd;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.home-newsletter h2 {
  margin-bottom: 0.35rem;
}

.home-newsletter > p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.newsletter-button {
  color: #172033;
  background: #f5a623;
  border-color: #f5a623;
}

.newsletter-button:hover,
.newsletter-button:focus-visible {
  color: #101a2f;
  background: #ffb83d;
  border-color: #ffb83d;
}

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

.home-contact .contact-form-embed {
  display: block;
  margin: 2rem auto 0;
}

.section-block > h2:first-child,
.section-block > .eyebrow + h2 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.card-grid article {
  padding: 1.35rem;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-grid h3 {
  margin-top: 0;
  font-size: 1.18rem;
}

.card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.company-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.company-logos img,
main .company-logos img {
  width: 100%;
  height: 90px;
  padding: 1rem;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  filter: grayscale(1);
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.home-video-testimonials {
  width: min(1120px, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  margin: clamp(3rem, 7vw, 6rem) auto;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 117, 226, 0.38), transparent 38%),
    linear-gradient(135deg, #101a2f, #15345f);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(15, 26, 48, 0.22);
}

.home-video-testimonials-heading {
  display: grid;
  margin-bottom: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 1rem 3rem;
  align-items: end;
}

.home-video-testimonials-heading .eyebrow {
  margin: 0;
  color: #8fbcff;
  grid-column: 1 / -1;
}

.home-video-testimonials-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.home-video-testimonials-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.home-video-testimonials-list {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.home-video-testimonial {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 18px;
  grid-template-columns: minmax(0, 1fr);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.home-video-testimonial-copy {
  display: flex;
  padding: clamp(1.5rem, 4vw, 3rem);
  flex-direction: column;
}

.home-video-testimonial-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.home-video-testimonial-copy h3 a {
  color: var(--blue-dark);
  text-underline-offset: 5px;
}

.home-video-testimonial-role {
  margin: 0.5rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-video-testimonial blockquote {
  padding: 0;
  margin: 0;
  border: 0;
}

.home-video-testimonial blockquote p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 620;
  line-height: 1.65;
}

.video-transcript {
  margin-top: auto;
  padding-top: 1.5rem;
}

.video-transcript summary {
  display: inline-flex;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  background: #edf4ff;
  border-radius: 999px;
  align-items: center;
}

.video-transcript summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.video-transcript p {
  padding: 1rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  background: #f7f9fc;
  border-radius: 10px;
}

.home-video-testimonial > .video-embed {
  width: 100%;
  margin: 0;
  background: #080d17;
  border-radius: 0;
  box-shadow: none;
  align-self: center;
}

.home-video-testimonial > .video-embed iframe {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.8rem;
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: 1.6rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(9, 30, 66, 0.07);
  overflow-wrap: anywhere;
}

.testimonial-card::before {
  position: absolute;
  top: -70px;
  right: -65px;
  width: 170px;
  height: 170px;
  content: "";
  background: rgba(23, 105, 224, 0.07);
  border-radius: 50%;
}

.quote-mark {
  position: relative;
  height: 2.6rem;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card > p {
  position: relative;
  flex: 1;
  margin: 0.5rem 0 1.5rem;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
}

.testimonial-card footer {
  position: relative;
  display: block;
  padding: 1rem 0 0;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid var(--line);
}

.testimonial-stars {
  margin-bottom: 0.45rem;
  color: #f2a900;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-style: normal;
}

.testimonial-card cite strong {
  color: var(--navy);
  font-size: 0.94rem;
}

.testimonial-card cite span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

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

.tools-logo-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1000px;
  margin: 2rem auto;
}

.tools-logo-wall img,
main .tools-logo-wall img {
  width: 100%;
  height: 82px;
  padding: 0.9rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.post-grid article {
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

main .post-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
}

.post-grid h3 {
  margin: 0;
  padding: 1.1rem;
  font-size: 1.05rem;
}

.blog-listing {
  width: min(1180px, calc(100% - 2rem));
}

.article-page {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.5fr);
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.article-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 3vw, 3rem);
  padding-left: max(clamp(2rem, 5vw, 4rem), calc((100vw - 1200px) / 2 + 2rem));
}

.article-hero h1 {
  width: 100%;
  max-width: none;
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  text-align: left;
  text-wrap: balance;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.article-hero-media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  background: #e9eef7;
}

main .article-hero-media .featured-image {
  width: auto;
  max-width: min(100%, 420px);
  height: auto;
  max-height: 280px;
  aspect-ratio: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(10, 25, 51, 0.16);
}

.breadcrumbs {
  margin: 0 0 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  color: #c9d5e8;
  font-size: 0.78rem;
  line-height: 1.4;
  list-style: none;
}

.breadcrumbs li {
  margin: 0;
  padding: 0;
}

.breadcrumbs li:last-child {
  max-width: none;
  overflow: visible;
  white-space: normal;
}

.breadcrumbs a {
  color: #dce9ff;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

main .author-row > img {
  width: 58px;
  height: 58px;
  margin: 0;
  object-fit: cover;
  border-radius: 50%;
}

.author-details h5 {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

.author-details h5 a {
  color: #fff;
}

.author-details h5::after {
  content: "Author";
  display: inline-block;
  margin-left: 0.55rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #c9d5e8;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 0.12em;
}

.author-details ul {
  margin: 0;
  padding: 0;
  color: #c9d5e8;
  font-size: 0.82rem;
  list-style: none;
}

.author-details li,
.author-details p {
  margin: 0;
  padding: 0;
}

.article-page > p,
.article-page > ul,
.article-page > ol,
.article-page > blockquote,
.article-page > h2,
.article-page > h3,
.article-page > h4,
.article-page > h5,
.article-page > h6,
.article-page > figure,
.article-page > table,
.article-page > iframe,
.article-page > .video-embed {
  max-width: 70ch;
  margin-right: auto;
  margin-left: auto;
}

.article-page > img {
  width: auto;
  max-width: min(70ch, calc(100% - 2rem));
}

.article-content {
  width: min(calc(100% - 2rem), 940px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem);
}

.article-content > div {
  width: 100%;
}

.article-content img,
.article-content iframe,
.article-content table {
  max-width: 100%;
}

.author-bio-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2rem, 760px);
  margin: 4rem auto 2rem;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid #dce5f1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(51, 116, 255, 0.11), transparent 34%),
    #f8fafc;
  box-shadow: 0 18px 45px rgba(9, 30, 66, 0.08);
}

.author-bio-photo {
  display: block;
}

main .author-bio-photo img {
  width: 112px;
  height: 112px;
  margin: 0;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.18);
}

.author-bio-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-bio-content h4 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.author-bio-content h4 a {
  color: var(--navy);
}

.author-bio-content > p:not(.author-bio-eyebrow) {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.author-bio-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 750;
}

.author-bio-link span {
  transition: transform 160ms ease;
}

.author-bio-link:hover span {
  transform: translateX(3px);
}

.post-navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: stretch;
  width: min(100% - 2rem, 760px);
  margin: 1.25rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-navigation a {
  text-decoration: none;
}

.previous-post {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.previous-post span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.previous-post strong {
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.previous-post:hover {
  border-color: #a9c7ef;
  transform: translateY(-2px);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
  background: var(--navy);
  border-radius: 12px;
}

.back-to-blog:hover {
  color: #fff;
  background: var(--blue);
}

.course-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 5rem;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 570px;
  padding: clamp(2rem, 5vw, 4.5rem)
    max(clamp(2rem, 5vw, 4.5rem), calc((100vw - 1200px) / 2 + 2rem));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(56, 128, 255, 0.32), transparent 31%),
    linear-gradient(135deg, #0c172c, #142b50);
  border-radius: 0;
}

.course-page > .section-block,
.course-page > .course-proof,
.course-page > .course-final-cta {
  width: min(1120px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.course-hero h1 {
  max-width: 670px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.course-hero .eyebrow {
  color: #89b9ff;
}

.course-lede {
  max-width: 650px;
  color: #d6e2f4;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.course-hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.course-hero-media {
  display: grid;
  place-items: center;
}

main .course-hero-media img {
  width: min(100%, 390px);
  max-height: 430px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.25));
}

.course-proof {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 1.25rem 0 0;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.course-proof div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.course-proof div:last-child {
  border-right: 0;
}

.course-proof strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.course-proof span {
  color: var(--muted);
  font-size: 0.8rem;
}

.course-review-grid,
.course-feature-grid,
.course-benefit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

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

.course-review-grid blockquote {
  margin: 0;
  padding: 1.4rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.06);
}

.course-review-grid blockquote > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.course-review-person {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

main .course-review-person img,
.course-review-initials {
  width: 52px;
  height: 52px;
  margin: 0;
  object-fit: cover;
  border-radius: 50%;
}

.course-review-initials {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--blue);
}

.course-review-person div {
  display: flex;
  flex-direction: column;
}

.course-review-person strong {
  color: var(--navy);
  font-size: 1rem;
}

.course-review-person span {
  color: var(--muted);
  font-size: 0.8rem;
}

.course-feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.course-feature-grid article {
  grid-column: span 2;
  padding: 1.4rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.course-feature-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.course-feature-grid article > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.course-feature-grid h3,
.course-benefit-grid h3,
.course-includes h3 {
  margin: 0.45rem 0;
  font-size: 1.16rem;
}

.course-feature-grid p,
.course-benefit-grid p,
.course-includes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.course-centered-cta {
  margin-top: 2rem;
  text-align: center;
}

.course-split,
.instructor-section,
.course-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

main .course-split > img {
  width: 100%;
  margin: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.course-split > div > p:not(.eyebrow),
.instructor-section > div > p:not(.eyebrow) {
  font-size: 1.05rem;
  line-height: 1.75;
}

.course-benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.course-benefit-grid article {
  padding: 1.25rem;
  border-top: 3px solid var(--blue);
  background: #f8fafc;
  border-radius: 4px 4px 14px 14px;
}

.course-detail-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.course-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.course-detail-list span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.course-includes {
  display: grid;
  gap: 0.75rem;
}

.course-includes article {
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

main .instructor-section > img {
  width: min(100%, 390px);
  max-height: 470px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.course-faq {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.course-faq summary {
  font-size: 1.02rem;
}

.course-faq details p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.course-final-cta {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #101a2f, #153c73);
  border-radius: 20px;
}

.course-final-cta h2 {
  max-width: 720px;
  margin: 0 auto 1rem;
  color: #fff;
}

.course-final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  color: #d6e2f4;
}

.course-final-cta .eyebrow {
  color: #89b9ff;
}

.service-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 5rem;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 530px;
  padding: clamp(2.5rem, 5vw, 4.5rem)
    max(clamp(2rem, 5vw, 4.5rem), calc((100vw - 1200px) / 2 + 2rem));
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(65, 137, 255, 0.3), transparent 32%),
    linear-gradient(135deg, #0c172c, #14315a);
}

.service-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 32px;
}

.service-hero .eyebrow {
  color: #89b9ff;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 1.5rem;
  color: #d6e2f4;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.service-hero-media {
  display: grid;
  place-items: center;
}

main .service-hero-media img {
  width: min(100%, 460px);
  max-height: 350px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.24));
}

.service-intro {
  width: min(920px, calc(100% - 2rem));
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #f5f8fd;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 16px;
}

.service-intro p {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.service-intro p + p {
  margin-top: 1rem;
}

.service-content {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 3vw, 2.5rem) 0;
}

.service-content > h1:first-of-type {
  display: none;
}

.service-content > img {
  max-height: 600px;
  object-fit: contain;
}

.services-overview-content {
  width: min(1120px, calc(100% - 2rem));
}

.services-overview-content > h2:first-of-type,
.services-overview-content > h2:first-of-type + p,
.services-overview-content > h2:nth-of-type(2),
.services-overview-content > h2:nth-of-type(2) + p {
  max-width: 820px;
}

.services-overview-content > img {
  display: none;
}

.primary-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 4rem;
}

.primary-service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(145deg, #f4f7fc, #fff);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(9, 30, 66, 0.07);
}

.primary-service-grid article:nth-child(2),
.primary-service-grid article:nth-child(4) {
  border-top-color: var(--orange);
}

.primary-service-grid h3 {
  margin: 0.25rem 0 0.8rem;
}

.primary-service-grid article > p:not(.eyebrow) {
  color: var(--muted);
}

.primary-service-grid article > a {
  width: fit-content;
  margin-top: auto;
  font-weight: 800;
}

.service-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 4rem;
}

.service-offering {
  align-self: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.05);
}

.service-offering summary {
  position: relative;
  padding: 1.2rem 3rem 1.2rem 1.25rem;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.service-offering summary::-webkit-details-marker {
  display: none;
}

.service-offering summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  content: "+";
}

.service-offering[open] summary {
  color: #fff;
  background: var(--navy);
}

.service-offering[open] summary::after {
  color: #fff;
  content: "−";
}

.service-offering-body {
  padding: 1.25rem;
  color: var(--muted);
}

.service-offering-body > :last-child {
  margin-bottom: 0;
}

.service-offering-body a {
  font-weight: 800;
}

.coaching-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 4rem;
}

.coaching-audience-grid article {
  padding: 1.35rem;
  background: linear-gradient(145deg, #f4f7fc, #fff);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.05);
}

.coaching-audience-grid article:nth-child(3n + 2) {
  border-top-color: var(--orange);
}

.coaching-audience-grid h4 {
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.coaching-audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.coaching-role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 4rem;
}

.coaching-role-list span {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding: 1rem;
  color: var(--navy);
  background: #edf3fd;
  border: 1px solid #d6e3f8;
  border-radius: 14px;
}

.coaching-role-list strong {
  font-size: 0.95rem;
}

.coaching-role-list small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.audit-overview-card {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(145deg, #f2f7ff, #e9f1ff);
  border: 1px solid rgba(37, 111, 229, 0.16);
  border-radius: 20px;
}

.audit-overview-card h2 {
  margin-top: 0;
}

.audit-overview-card .audit-overview-label {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-weight: 800;
}

.audit-testimonials {
  margin: clamp(3rem, 7vw, 6rem) calc(50% - 50vw);
  padding: clamp(3rem, 7vw, 6rem) max(1.5rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #0d1b34 0%, #173866 100%);
  color: #fff;
}

.audit-testimonials .eyebrow {
  color: #8fc0ff;
}

.audit-testimonials h2 {
  max-width: 760px;
  margin-bottom: 2rem;
  color: #fff;
}

.audit-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.audit-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.audit-testimonial-card > p {
  margin: 0 0 1.5rem;
  color: #eef5ff;
}

.audit-testimonial-card footer {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.audit-testimonial-card img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
}

.audit-testimonial-card cite {
  display: grid;
  gap: .15rem;
  font-style: normal;
}

.audit-testimonial-card cite strong {
  color: #fff;
}

.audit-testimonial-card cite span {
  color: #b9cae3;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.coaching-list-intro {
  margin: 1.35rem 0 .7rem;
  color: var(--navy);
}

@media (max-width: 760px) {
  .audit-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.furniture-mastermind-video {
  width: min(100%, 900px);
  margin: clamp(2rem, 5vw, 4rem) auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(9, 30, 66, 0.14);
}

.home-google-reviews {
  background: linear-gradient(145deg, #f4f8ff, #edf4ff);
  border-color: rgba(37, 111, 229, 0.14);
}

.course-details-cta {
  margin-top: 1.25rem;
}

.coaching-example-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 3.5rem;
  padding: 0;
  list-style: none;
}

.coaching-example-list li {
  padding: 1rem 1rem 1rem 1.25rem;
  color: var(--ink);
  background: #f4f7fc;
  border-left: 4px solid var(--blue);
  border-radius: 9px;
}

.tools-directory {
  width: min(1120px, calc(100% - 2rem));
  padding-top: clamp(2rem, 5vw, 4rem);
}

.tool-category {
  margin: 0 0 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #f4f7fc;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.tool-category:nth-of-type(even) {
  background: #fff7e8;
  border-color: #f1dfbd;
}

.tool-category:nth-of-type(3n) {
  background: #eef5ff;
  border-color: #d4e2f7;
}

.tool-category > h2 {
  margin: 0 0 0.75rem;
  padding: 0;
}

.tool-category > h2::after {
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--blue);
  border-radius: 999px;
  content: "";
}

.tool-category:nth-of-type(even) > h2::after {
  background: var(--orange);
}

.tool-category > p {
  max-width: 820px;
  color: var(--muted);
}

.tool-card-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 30, 66, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.06);
}

.tool-card h3,
.tool-card h4 {
  margin: 0 0 0.75rem;
  padding: 0;
}

.tool-card p,
.tool-card > div {
  max-width: 880px;
  color: var(--muted);
}

.tool-card > img,
main .tool-card > img {
  width: min(100%, 520px);
  max-height: 280px;
  margin: 1rem auto;
  object-fit: contain;
  border-radius: 12px;
}

.tool-card.tool-card-logo-layout {
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.tool-card.tool-card-logo-layout > img,
main .tool-card.tool-card-logo-layout > img {
  width: 120px;
  height: 120px;
  max-height: none;
  margin: 0;
  padding: 0.75rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(9, 30, 66, 0.09);
}

.tool-card-body > :first-child {
  margin-top: 0;
}

.tool-card-body > :last-child {
  margin-bottom: 0;
}

.seo-audit-page .audit-supporting-image-redundant {
  display: none;
}

.seo-audit-page .audit-process-image {
  display: block;
  width: min(100%, 680px);
  height: auto;
  max-height: 480px;
  margin: 2rem auto 3rem;
  object-fit: contain;
  border: 1px solid rgba(9, 30, 66, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(9, 30, 66, 0.1);
}

.seo-audit-page .audit-final-cta {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin: clamp(3rem, 7vw, 6rem) 0 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(245, 166, 35, 0.24), transparent 28%),
    linear-gradient(135deg, #0c1a32, #132f57);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(9, 30, 66, 0.2);
}

.seo-audit-page .audit-final-cta::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.seo-audit-page .audit-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.seo-audit-page .audit-final-cta p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.seo-audit-page .audit-final-cta .button {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.24);
}

.seo-audit-page .audit-final-cta .button:hover,
.seo-audit-page .audit-final-cta .button:focus-visible {
  color: var(--navy);
  background: #ffbd4a;
  transform: translateY(-2px);
}

.seo-coaching-page .service-content > img {
  display: none;
}

.seo-coaching-page .coaching-final-cta {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin: clamp(3rem, 7vw, 6rem) 0 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(37, 111, 229, 0.34), transparent 30%),
    linear-gradient(135deg, #0c1a32, #173b68);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(9, 30, 66, 0.2);
}

.seo-coaching-page .coaching-final-cta::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.seo-coaching-page .coaching-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.seo-coaching-page .coaching-final-cta p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.seo-coaching-page .coaching-final-cta .button {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.24);
}

.seo-coaching-page .coaching-final-cta .button:hover,
.seo-coaching-page .coaching-final-cta .button:focus-visible {
  color: var(--navy);
  background: #ffbd4a;
  transform: translateY(-2px);
}

.case-studies-page .service-content {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: min(calc(100% - 2rem), 1040px);
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.case-study-overview {
  padding: 0 clamp(0.5rem, 2vw, 1.25rem) 0.5rem;
}

.case-study-overview h2 {
  margin-top: 0;
}

.case-study-panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 30, 66, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(9, 30, 66, 0.08);
}

.case-study-panel:nth-of-type(3n + 2) {
  background: linear-gradient(145deg, #f2f7ff, #eaf2ff);
  border-color: rgba(37, 111, 229, 0.18);
}

.case-study-panel:nth-of-type(3n) {
  background: linear-gradient(145deg, #fffaf0, #fff4df);
  border-color: rgba(245, 166, 35, 0.2);
}

.case-study-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--blue);
  content: "";
}

.case-study-panel:nth-of-type(3n)::before {
  background: var(--orange);
}

.case-study-panel > h2:first-child {
  max-width: 820px;
  margin-top: 0;
  padding-top: 0.35rem;
}

.case-study-panel > h3 {
  margin-top: 2rem;
}

.case-study-panel > img,
main .case-study-panel > img {
  display: block;
  width: min(100%, 840px);
  height: auto;
  max-height: 460px;
  margin: 2rem auto;
  padding: clamp(0.5rem, 2vw, 1rem);
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(9, 30, 66, 0.08);
  border-radius: 16px;
}

.tool-card > a {
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: var(--blue);
  border-radius: 9px;
}

.tool-card > a:hover,
.tool-card > a:focus-visible {
  color: #fff;
  background: var(--navy);
}

.furniture-guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: clamp(2rem, 5vw, 3.75rem);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 117, 226, 0.42), transparent 40%),
    linear-gradient(135deg, #101a2f, #15345f);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(9, 30, 66, 0.18);
}

.furniture-service-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.furniture-benefits {
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(145deg, #f4f7fc, #fff);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 20px;
}

.furniture-benefits h2 {
  margin-top: 0;
}

.furniture-check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.furniture-check-list li {
  position: relative;
  padding-left: 2rem;
}

.furniture-check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.furniture-service-content > ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.75rem;
  padding-left: 1.3rem;
}

.furniture-tip {
  margin: 1.25rem 0 2.5rem;
  padding: 1rem 1.2rem;
  color: var(--navy);
  background: #fff5df;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
}

.furniture-help-options {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 3rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--navy);
  border-radius: 18px;
}

.furniture-help-options p {
  margin: 0;
  color: #e8eef9;
}

.furniture-help-options strong {
  color: #fff;
}

.furniture-help-options .button {
  width: fit-content;
  margin-top: 0.5rem;
}

.furniture-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 4rem 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #f4f7fc;
  border-radius: 22px;
}

.furniture-testimonials > .eyebrow,
.furniture-testimonials > h2 {
  grid-column: 1 / -1;
}

.furniture-testimonial {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem 1rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(9, 30, 66, 0.06);
}

.furniture-testimonial > img {
  width: 52px;
  height: 52px;
  margin: 0;
  object-fit: cover;
  border-radius: 50%;
}

.furniture-testimonial strong {
  display: block;
}

.furniture-testimonial blockquote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 1rem;
  font-style: normal;
  border: 0;
}

.review-stars {
  display: block;
  margin: 0.15rem 0;
  color: #e68a00;
  letter-spacing: 0.08em;
}

.furniture-testimonials time {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.furniture-guide-cta h2 {
  max-width: 620px;
  margin-top: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.furniture-guide-cta .eyebrow {
  color: #89b9ff;
}

.furniture-guide-lede,
.furniture-guide-cta li,
.furniture-guide-cta p {
  color: #e1eaf7;
}

.furniture-guide-cta ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.35rem;
  margin: 1.35rem 0;
}

.furniture-guide-button {
  max-width: 520px;
  margin-top: 0.75rem;
  color: #172033;
  text-align: center;
  background: #f5a623;
  border-color: #f5a623;
}

.furniture-guide-button:hover,
.furniture-guide-button:focus-visible {
  color: #101a2f;
  background: #ffb83d;
  border-color: #ffb83d;
}

.furniture-guide-media {
  display: grid;
  place-items: center;
}

main .furniture-guide-media img {
  width: min(100%, 250px);
  max-height: 355px;
  margin: 0;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

.about-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 5rem;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(3rem, 6vw, 5.5rem)
    max(clamp(2rem, 5vw, 4.5rem), calc((100vw - 1200px) / 2 + 2rem));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(59, 129, 255, 0.3), transparent 32%),
    linear-gradient(135deg, #0b162b, #14315a);
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: 32px;
}

.about-hero .eyebrow {
  color: #89b9ff;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #d6e2f4;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.about-hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.about-hero-media {
  align-self: end;
  height: 100%;
}

.about-intro-video {
  width: min(100% - 2rem, 1080px);
  margin: clamp(2rem, 5vw, 4rem) auto;
}

.about-intro-video .video-embed {
  overflow: hidden;
  border: 1px solid rgba(9, 30, 66, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(9, 30, 66, 0.16);
}

main .about-hero-media img {
  display: block;
  width: min(100%, 470px);
  height: 100%;
  max-height: 590px;
  margin: auto auto 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px 24px 0 0;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
}

.home > .home-hero {
  width: 100cqw;
  margin-top: calc(-3rem - clamp(1.4rem, 4vw, 4rem));
  margin-left: calc(50% - 50cqw);
}

.home-hero h1 {
  font-size: 32px;
}

.home-hero .lede {
  color: #d6e2f4;
}

main .home-hero-image {
  object-fit: contain;
  border-radius: 24px 24px 0 0;
}

main .about-hero-media .about-collage {
  width: min(100%, 540px);
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
}

.about-page > .section-block,
.about-page > .about-stats,
.about-page > .about-final-cta {
  width: min(1120px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.about-intro,
.about-story,
.about-learning,
.about-personal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-intro p,
.about-story p,
.about-learning p,
.about-personal p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-role-grid,
.about-project-grid,
.about-testimonial-grid {
  display: grid;
  gap: 1rem;
}

.about-role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-role-grid article {
  padding: 1.4rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-role-grid article > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-role-grid h3,
.about-project-grid h3 {
  margin: 0.45rem 0;
  font-size: 1.1rem;
}

.about-role-grid p,
.about-project-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-story-media {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

main .about-story-media img {
  display: block;
  width: 100%;
  height: 560px;
  margin: 0;
  object-fit: cover;
}

.about-story {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #101a2f;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 26, 48, 0.2);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
}

.about-story-media {
  position: static;
  height: auto;
  overflow: hidden;
  background: #dce5f3;
  border-radius: 0;
  box-shadow: none;
}

main .about-story-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-story-copy {
  display: flex;
  padding: clamp(2rem, 5vw, 4.5rem);
  flex-direction: column;
  justify-content: center;
}

.about-story-copy h2 {
  max-width: 640px;
  margin: 0 0 2rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.about-story-copy p:first-of-type {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-story-details {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
}

.about-story-details p {
  padding: 1.25rem 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.78;
}

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

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  content: "";
  background: #cbd9ec;
  transform: translateX(-50%);
}

.timeline article {
  position: relative;
  width: calc(50% - 2.25rem);
  padding: 1.25rem 1.4rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.timeline article + article {
  margin-top: 1.5rem;
}

.timeline article:nth-child(even) {
  margin-left: calc(50% + 2.25rem);
}

.timeline article::before {
  position: absolute;
  top: 1.35rem;
  left: calc(100% + 1.72rem);
  width: 0.82rem;
  height: 0.82rem;
  content: "";
  background: var(--blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue);
}

.timeline article:nth-child(even)::before {
  right: calc(100% + 1.72rem);
  left: auto;
}

.timeline article::after {
  position: absolute;
  top: 1.78rem;
  left: 100%;
  width: 2.25rem;
  height: 2px;
  content: "";
  background: #cbd9ec;
}

.timeline article:nth-child(even)::after {
  right: 100%;
  left: auto;
}

.timeline span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0.4rem 0;
  font-size: 1.05rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.about-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.about-project-grid article {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid var(--blue);
  border-radius: 4px 14px 14px 4px;
}

.about-project-grid a {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 750;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.credential-list span {
  padding: 0.65rem 0.85rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 750;
  background: #f1f5fa;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-lede {
  max-width: 760px;
  color: var(--muted);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.gallery-instruction {
  margin-bottom: 0;
  color: var(--muted);
}

.certificate-item {
  display: flex;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.certificate-item:hover,
.certificate-item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.12);
}

main .certificate-grid img {
  width: 100%;
  height: 175px;
  margin: 0;
  object-fit: contain;
  background: #fff;
}

.certificate-item span {
  padding: 0.75rem 0.9rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
}

.certificate-lightbox {
  width: min(1100px, calc(100% - 2rem));
  max-width: none;
  height: min(850px, calc(100% - 2rem));
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #0c1424;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.certificate-lightbox::backdrop {
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(5px);
}

.certificate-lightbox-inner {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}

.certificate-lightbox figure {
  display: flex;
  min-width: 0;
  height: 100%;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificate-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - 3rem);
  margin: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.certificate-lightbox figcaption {
  margin-top: 0.75rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
}

.certificate-lightbox button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  place-items: center;
}

.certificate-lightbox button:hover,
.certificate-lightbox button:focus-visible {
  background: var(--blue);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.certificate-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem !important;
}

.certificate-lightbox-nav {
  font-size: 2rem !important;
}

.activity-grid,
.about-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

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

.activity-grid article,
.about-post-grid article {
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

main .activity-grid img,
main .about-post-grid img {
  width: 100%;
  height: 160px;
  margin: 0;
  object-fit: cover;
  background: #fff;
}

main .about-post-grid img {
  height: 220px;
  padding: 0.75rem;
  object-fit: contain;
}

main .activity-grid img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.activity-grid article div {
  padding: 1.1rem;
}

.activity-grid h3,
.about-post-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.activity-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

main .activity-speaking-photo {
  width: 100%;
  max-height: 560px;
  margin: 1rem 0 0;
  object-fit: cover;
  border-radius: 18px;
}

.about-post-grid a {
  height: 100%;
  display: block;
  color: var(--navy);
  text-decoration: none;
}

.about-post-grid h3 {
  padding: 1rem;
}

.about-post-grid article {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.about-post-grid article:hover {
  transform: translateY(-4px);
  border-color: #b8cbea;
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.11);
}

.about-latest-action {
  margin: 2rem 0 0;
  text-align: center;
}

.about-featured {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  background: linear-gradient(135deg, #101a2f, #173b6d);
  border-radius: 22px;
}

.about-featured > p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.about-content-types {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-content-types a {
  padding: 0.78rem 1rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 150ms ease, transform 150ms ease;
}

.about-content-types a:hover,
.about-content-types a:focus-visible {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}

.about-content-types a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.about-live-reference {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.featured-reference-group {
  padding: clamp(3rem, 7vw, 6rem) 0;
  scroll-margin-top: 6rem;
}

.featured-reference-group + .featured-reference-group {
  border-top: 1px solid var(--line);
}

.featured-reference-heading {
  display: grid;
  margin-bottom: 2rem;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1.65fr);
  gap: 2rem;
  align-items: start;
}

.featured-reference-heading > p {
  margin: 0.65rem 0 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-reference-heading h2 {
  max-width: 850px;
  margin: 0;
}

.featured-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.featured-reference-card {
  display: flex;
  min-height: 320px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-direction: column;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.featured-reference-card:hover {
  border-color: #b6c9e7;
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.08);
  transform: translateY(-3px);
}

.featured-reference-logo {
  display: grid;
  height: 112px;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  place-items: center;
}

main .featured-reference-logo img {
  width: 100%;
  height: 72px;
  margin: 0;
  object-fit: contain;
}

.featured-reference-card-body {
  display: flex;
  padding: 1.4rem;
  flex: 1;
  flex-direction: column;
}

.featured-reference-card-body > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.featured-reference-cta {
  display: flex;
  padding: 0.85rem 1rem;
  margin-top: auto;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  background: var(--blue);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.featured-reference-cta:hover {
  color: #fff;
  background: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-reference-cta:focus-visible {
  color: #fff;
  background: var(--blue-dark);
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-reference-cta span {
  flex: 0 0 auto;
}

.featured-reference-cta-disabled {
  color: var(--navy);
  background: #e8edf5;
}

.affiliate-image-fallback {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-weight: 800;
  background: var(--blue);
  border-radius: 10px;
}

.live-copy-list {
  columns: 2 320px;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.live-copy-list li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.live-summary,
.live-project-summary {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 24px;
}

.live-summary {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 134, 243, 0.35), transparent 36%),
    linear-gradient(135deg, #0f1a30 0%, #15345f 100%);
  box-shadow: 0 24px 60px rgba(15, 26, 48, 0.18);
}

.live-summary h2,
.live-project-summary h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.live-summary h2 {
  color: #fff;
}

.live-summary .live-copy-list,
.live-project-summary .live-copy-list {
  display: grid;
  padding: 0;
  columns: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
}

.live-summary .live-copy-list li,
.live-project-summary .live-copy-list li {
  position: relative;
  min-height: 68px;
  margin: 0;
  padding: 1rem 1rem 1rem 2.85rem;
  line-height: 1.5;
  border-radius: 13px;
}

.live-summary .live-copy-list li {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.live-summary .live-copy-list li::before,
.live-project-summary .live-copy-list li::before {
  position: absolute;
  top: 1.08rem;
  left: 1rem;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  content: "✓";
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
}

.live-project-summary {
  background: linear-gradient(145deg, #f5f8fd, #fff);
  border: 1px solid var(--line);
}

.live-project-summary .live-copy-list li {
  color: var(--navy);
  font-weight: 650;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.05);
}

.project-story {
  display: grid;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.project-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.project-story p:first-child {
  color: var(--ink);
  font-size: 1.02rem;
  grid-row: span 2;
}

.live-summary {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.summary-heading {
  position: sticky;
  top: 6.5rem;
}

.live-summary .eyebrow {
  color: #78aefc;
}

.summary-index {
  padding-top: 1.25rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
}

.summary-groups {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.summary-groups article {
  display: grid;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: 1.5rem;
}

.summary-groups h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.summary-groups ul,
.project-ledger ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.summary-groups li {
  position: relative;
  padding: 0 0 0.7rem 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.91rem;
  line-height: 1.55;
}

.summary-groups li:last-child {
  padding-bottom: 0;
}

.summary-groups li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #78aefc;
  border-radius: 50%;
}

.summary-current h3 {
  color: #ffb347;
}

.live-project-summary {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.projects-heading {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2rem;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  align-items: start;
  gap: 2rem;
}

.projects-heading .eyebrow {
  margin: 0.7rem 0 0;
}

.projects-heading h2 {
  margin: 0;
}

.project-ledger {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-ledger article {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.project-ledger article:last-child {
  border-right: 0;
}

.project-ledger span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.project-ledger h3 {
  min-height: 2.6em;
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
}

.project-ledger li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

.project-ledger li::before {
  position: absolute;
  top: 1.28rem;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.live-project-summary .project-story {
  display: flex;
  max-width: 920px;
  padding: clamp(2.5rem, 6vw, 5rem);
  margin: 0;
  border-top: 0;
  flex-direction: column;
  gap: 1rem;
  margin-inline: auto;
}

.live-project-summary .project-story p {
  padding: 1.25rem 1.5rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
}

.live-project-summary .project-story p:first-child {
  padding: 0 0 1.5rem;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 620;
  line-height: 1.65;
  background: transparent;
  border-radius: 0;
}

.live-project-summary .project-story a {
  font-weight: 750;
  text-underline-offset: 3px;
}

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

main .about-personal > img {
  width: 100%;
  height: 440px;
  margin: 0;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.about-testimonial-grid blockquote {
  position: relative;
  display: flex;
  min-height: 250px;
  margin: 0;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f4f7fc 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.07);
  flex-direction: column;
}

.about-testimonial-grid blockquote::before {
  position: absolute;
  top: -1.2rem;
  right: 1rem;
  color: rgba(27, 105, 224, 0.09);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  content: "“";
}

.testimonial-stars {
  position: relative;
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.about-testimonial-grid blockquote p {
  position: relative;
  margin: 1.1rem 0 1.5rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.about-testimonial-grid cite {
  position: relative;
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
}

.about-final-cta {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #101a2f, #153c73);
  border-radius: 20px;
}

.about-final-cta h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: #fff;
}

.about-final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  color: #d6e2f4;
}

.about-final-cta .eyebrow {
  color: #89b9ff;
}

.archive-intro {
  margin-bottom: 2rem;
}

.archive-intro h1 {
  margin-bottom: 0.5rem;
}

.archive-intro ol {
  display: flex;
  gap: 0.4rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.13);
}

.post-card-image {
  display: block;
  overflow: hidden;
}

main .post-card-image img {
  display: block;
  width: 100%;
  height: 210px;
  aspect-ratio: 16 / 9;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  transition: transform 220ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.post-card-meta {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 2.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.post-card-meta span {
  color: var(--blue-dark);
  font-weight: 800;
  text-transform: capitalize;
}

.post-card-meta time {
  flex: 0 0 auto;
  white-space: nowrap;
}

.post-card h2 {
  margin: 0.55rem 0 0.8rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.post-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.post-card-author {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.post-card-link {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.featured h2 {
  margin-top: 0;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(70px, 1fr));
  gap: 1rem;
  align-items: center;
}

.logo-wall a {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 0.65rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.logo-wall img,
main .logo-wall img {
  width: 100%;
  height: 48px;
  margin: 0;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
  border-radius: 0;
}

.logo-wall a:hover img {
  filter: none;
  opacity: 1;
}

.company-section {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.company-section h2 {
  max-width: 820px;
  margin-top: 0;
}

.company-section .company-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.company-section .company-logos img,
main .company-section .company-logos img {
  width: 100%;
  height: 130px;
  margin: 0;
  padding: 1.25rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid #d9e1eb;
  border-radius: 14px;
  filter: none;
  opacity: 1;
  box-shadow: 0 10px 28px rgba(9, 30, 66, 0.06);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.8em 0 0.55em;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-top: 0;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  line-height: 1.02;
}

h2 {
  padding-top: 0.4rem;
  font-size: clamp(1.65rem, 4vw, 2.65rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.12rem;
}

p,
ul,
ol,
blockquote,
table,
figure {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

p:empty {
  display: none;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.17em;
}

a:hover {
  color: var(--blue);
}

main > a,
p > a:only-child {
  font-weight: 700;
}

main img,
main video,
main iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.75rem auto;
  border-radius: var(--radius);
}

.video-embed {
  width: min(100%, 760px);
  margin: 1.75rem auto;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

main .video-embed iframe {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
}

main iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  background: #e9edf3;
}

main .contact-form-embed {
  width: min(100%, 760px);
  height: 901px;
  min-height: 901px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

figure {
  margin-right: 0;
  margin-left: 0;
}

figcaption {
  margin-top: -0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

blockquote {
  margin-left: 0;
  padding: 1.25rem 1.5rem;
  color: #293349;
  background: #eef5ff;
  border-left: 5px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.35rem;
}

li {
  margin: 0.42rem 0;
  padding-left: 0.25rem;
}

hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}

th {
  color: #fff;
  background: var(--navy);
}

tr:nth-child(even) td {
  background: #f6f8fb;
}

details {
  margin-bottom: 0.75rem;
  padding: 0.9rem 1rem;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
}

summary {
  font-weight: 750;
  cursor: pointer;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 1rem 1.5rem;
  color: #dbe5f7;
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: #dbe5f7;
}

.site-footer a {
  color: #bcd7ff;
  text-decoration-color: rgba(188, 215, 255, 0.4);
  text-underline-offset: 0.2em;
}

.footer-brand img {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer-brand > p {
  max-width: 410px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.footer-social a {
  padding: 0.35rem 0.65rem;
  color: #dce9ff;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.footer-social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-nav h2 {
  margin: 0 0 0.45rem;
  padding: 0;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a {
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  width: min(1120px, 100%);
  margin: 3rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.footer-bottom a {
  font-size: 0.78rem;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #69a6ff;
  outline-offset: 3px;
  border-radius: 4px;
}

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

pre {
  padding: 1rem;
  overflow-x: auto;
  color: #eef4ff;
  background: var(--navy);
  border-radius: 10px;
}

@media (max-width: 1180px) {
  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero-media {
    display: none;
  }
}

@media (max-width: 1020px) {
  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero-media {
    display: none;
  }

  .author-bio-card {
    width: min(100% - 1rem, 760px);
  }

  .post-navigation {
    width: min(100% - 1rem, 760px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  }

  .about-role-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline article:nth-child(n + 3) {
    margin-top: 1.5rem;
  }

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

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

  .home-video-testimonials-heading,
  .home-video-testimonial {
    grid-template-columns: 1fr;
  }

  .home-video-testimonial > .video-embed {
    align-self: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  /*
   * Keep page titles predictable across every mobile template. Individual
   * article, service, course, about, archive, and homepage rules must not
   * enlarge the H1 beyond this shared size.
   */
  main h1 {
    max-width: 100%;
    font-size: 32px !important;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  header {
    position: sticky;
    overflow-x: hidden;
  }

  header > nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.4rem;
    width: min(100% - 1.25rem, 720px);
    padding: 0.75rem 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  header > nav::-webkit-scrollbar {
    display: none;
  }

  header > nav > a,
  .nav-services > a,
  .nav-dropdown > summary {
    flex: 0 0 auto;
    padding: 0.52rem 0.7rem;
    font-size: 0.76rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  header > nav .brand {
    width: auto;
    margin: 0 0.5rem 0 0;
    padding: 0;
    background: none;
    border: 0;
  }

  header > nav .brand img {
    width: 170px;
    height: auto;
  }

  header > nav > a:last-child {
    margin-left: 0;
    background: var(--blue);
    border-color: var(--blue);
  }

  .nav-dropdown {
    flex: 0 0 auto;
  }

  .nav-services > .nav-services-link {
    padding: 0.52rem 1.85rem 0.52rem 0.7rem;
    font-size: 0.76rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-services .nav-dropdown > summary {
    width: 30px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-dropdown-menu {
    position: fixed;
    top: 66px;
    right: 0.625rem;
    left: 0.625rem;
    width: auto;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  main {
    width: min(100% - 1rem, 920px);
    margin: 0.5rem auto 2.5rem;
    padding: 1.35rem;
    border-radius: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .article-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .article-hero-copy {
    width: 100%;
    padding: 1.35rem 1rem 1.5rem;
  }

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

  .article-content {
    width: calc(100% - 1rem);
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .course-page {
    width: 100%;
    padding: 0 0 3rem;
  }

  .course-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 1.25rem;
  }

  .course-hero-media {
    display: none;
  }

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

  .course-proof div {
    border-bottom: 1px solid var(--line);
  }

  .course-proof div:nth-child(even) {
    border-right: 0;
  }

  .course-proof div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .course-review-grid,
  .course-benefit-grid {
    grid-template-columns: 1fr;
  }

  .course-feature-grid {
    grid-template-columns: 1fr;
  }

  .course-feature-grid article,
  .course-feature-grid article:nth-child(4) {
    grid-column: auto;
  }

  .course-split,
  .instructor-section,
  .course-details {
    grid-template-columns: 1fr;
  }

  .course-detail-list li {
    flex-direction: column;
    gap: 0.15rem;
  }

  .course-detail-list span {
    text-align: left;
  }

  .service-page {
    padding-bottom: 3rem;
  }

  .service-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 1.25rem;
  }

  .service-hero-media {
    display: none;
  }

  .service-content {
    width: min(100% - 1rem, 920px);
    padding: 2rem 1rem 0;
  }

  .primary-service-grid,
  .service-offering-grid {
    grid-template-columns: 1fr;
  }

  .coaching-audience-grid {
    grid-template-columns: 1fr;
  }

  .coaching-role-list {
    grid-template-columns: 1fr;
  }

  .coaching-example-list {
    grid-template-columns: 1fr;
  }

  .tools-directory {
    width: min(100% - 1rem, 920px);
  }

  .tool-category {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .tool-card {
    padding: 1.15rem;
  }

  .tool-card.tool-card-logo-layout {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 1rem;
  }

  .tool-card.tool-card-logo-layout > img,
  main .tool-card.tool-card-logo-layout > img {
    width: 76px;
    height: 76px;
    padding: 0.45rem;
  }

  .primary-service-grid {
    margin-bottom: 3rem;
  }

  .primary-service-grid article {
    min-height: 0;
  }

  .furniture-guide-cta {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .furniture-testimonials {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .furniture-guide-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .furniture-guide-button {
    width: 100%;
  }

  .furniture-guide-media {
    grid-row: 1;
  }

  main .furniture-guide-media img {
    width: min(68%, 220px);
    max-height: 300px;
  }

  .about-page {
    padding-bottom: 3rem;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2.5rem 1.25rem 0;
  }

  .home > .home-hero {
    width: 100cqw;
    margin-top: calc(-3rem - clamp(1.4rem, 4vw, 4rem));
    margin-left: calc(50% - 50cqw);
    padding-bottom: 0;
  }

  .about-hero-media {
    max-height: 390px;
  }

  main .about-hero-media img {
    max-height: 390px;
    margin-top: 1.5rem;
  }

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

  .about-stats div:nth-child(even) {
    border-right: 0;
  }

  .about-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-intro,
  .about-story,
  .about-learning,
  .about-personal,
  .about-role-grid,
  .about-project-grid,
  .certificate-grid,
  .activity-grid,
  .about-post-grid,
  .about-testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .live-summary .live-copy-list,
  .live-project-summary .live-copy-list,
  .project-story {
    grid-template-columns: 1fr;
  }

  .live-summary,
  .projects-heading,
  .summary-groups article,
  .project-ledger,
  .featured-reference-heading,
  .featured-reference-grid,
  .home-video-testimonials-heading,
  .home-video-testimonial {
    grid-template-columns: 1fr;
  }

  .home-video-testimonials {
    width: calc(100% - 1rem);
    padding: 1.25rem;
    border-radius: 18px;
  }

  .home-video-testimonial > .video-embed iframe {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .featured-reference-heading {
    gap: 0.75rem;
  }

  .featured-reference-card {
    min-height: 0;
  }

  .summary-heading {
    position: static;
  }

  .summary-groups article {
    gap: 1rem;
  }

  .project-ledger article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-ledger article:last-child {
    border-bottom: 0;
  }

  .project-ledger span {
    margin-bottom: 1.25rem;
  }

  .project-ledger h3 {
    min-height: 0;
  }

  .project-story p:first-child {
    grid-row: auto;
  }

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

  .certificate-lightbox {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }

  .certificate-lightbox-inner {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    padding: 0.75rem;
  }

  .certificate-lightbox button {
    width: 36px;
    height: 36px;
  }

  .about-story-media {
    order: 2;
  }

  .about-story .about-story-media {
    position: static;
    order: 0;
  }

  main .about-story-media img,
  main .about-personal > img {
    height: 380px;
  }

  main .about-story .about-story-media img {
    height: auto;
  }

  .about-story-copy {
    padding: 2rem 1.5rem;
  }

  .about-story-details {
    padding: 1rem 1.5rem 1.5rem;
    grid-template-columns: 1fr;
  }

  .timeline {
    display: block;
    gap: 1rem;
    border-top: 0;
  }

  .timeline::before {
    right: auto;
    left: 0.4rem;
    transform: none;
  }

  .timeline article,
  .timeline article:nth-child(even),
  .timeline article:nth-child(n + 3) {
    width: calc(100% - 2rem);
    margin: 0 0 1.25rem 2rem;
    padding: 1.1rem 1.2rem;
    border-left: 1px solid var(--line);
  }

  .timeline article::before {
    top: 1.25rem;
    right: auto;
    left: -2.08rem;
  }

  .timeline article::after {
    top: 1.68rem;
    right: 100%;
    left: auto;
    width: 2rem;
  }

  .timeline article:nth-child(even)::before {
    right: auto;
    left: -2.08rem;
  }

  .timeline article:nth-child(even)::after {
    right: 100%;
    left: auto;
  }

  .author-bio-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
  }

  .author-bio-photo {
    justify-self: center;
  }

  .author-bio-link {
    justify-content: center;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .previous-post strong {
    white-space: normal;
  }

  main .hero-image {
    grid-row: 1;
    max-height: 380px;
  }

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

  .card-grid,
  .post-grid,
  .testimonial-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .company-section .company-logos {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }

  main iframe {
    min-height: 240px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .archive-grid,
  .card-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

header > nav > a.newsletter-nav {
  color: #172033;
  background: #f5a623;
  border-color: #f5a623;
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.28);
}

header > nav > a.newsletter-nav:hover,
header > nav > a.newsletter-nav:focus-visible {
  color: #101a2f;
  background: #ffb83d;
  border-color: #ffb83d;
}

header > nav > a,
header > nav > .nav-services > a,
header > nav > .nav-dropdown > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
}

header > nav > a.brand {
  min-height: 44px;
}

.mobile-nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  header > nav {
    display: flex;
    width: calc(100% - 1.25rem);
    padding: 0.7rem 0;
    flex-wrap: wrap;
    overflow: visible;
  }

  header > nav .brand {
    margin-right: auto;
  }

  .mobile-nav-toggle {
    display: inline-flex !important;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.55rem 1rem;
    align-items: center;
    color: #fff;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    cursor: pointer;
  }

  header > nav > a:not(.brand),
  header > nav > .nav-services {
    display: none;
  }

  header > nav.mobile-nav-open > a:not(.brand),
  header > nav.mobile-nav-open > .nav-services {
    position: static;
    display: grid;
    width: 100%;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  header > nav.mobile-nav-open > a:not(.brand) {
    justify-content: flex-start;
  }

  header > nav.mobile-nav-open > .nav-services > .nav-services-link {
    width: 100%;
    padding-right: 0.7rem;
    background: transparent;
    border: 0;
  }

  header > nav.mobile-nav-open > .newsletter-nav {
    justify-content: center;
  }

  header > nav.mobile-nav-open .nav-services .nav-dropdown {
    position: static;
    display: block;
    width: 100%;
  }

  header > nav.mobile-nav-open .nav-services .nav-dropdown > summary {
    display: none;
  }

  header > nav.mobile-nav-open .nav-services .nav-dropdown-menu {
    position: static !important;
    display: grid !important;
    width: 100%;
    max-height: none;
    padding: 0 0.45rem 0.55rem 1rem;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
  }

  header > nav.mobile-nav-open .nav-services .nav-dropdown-menu a {
    padding: 0.62rem 0.75rem;
    color: #d9e6f8;
    font-size: 0.76rem;
    background: transparent;
    border-left: 2px solid rgba(137, 185, 255, 0.38);
    border-radius: 0;
  }

  header > nav.mobile-nav-open .nav-services .nav-dropdown-menu a:hover,
  header > nav.mobile-nav-open .nav-services .nav-dropdown-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .home > .home-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .home-hero .about-hero-copy,
  .home-hero h1,
  .home-hero .lede {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .home-hero h1,
  .home-hero .lede {
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  header {
    display: none;
  }

  body,
  main {
    background: #fff;
  }

  main {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
