/* ------------------
   CSS RESET (MINIMAL)
------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --dark-warm: #ff6900;
  --light-warm: #fcb900;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

/* ------------------
   HERO
------------------ */
.hero {
  position: relative;
  min-height: 840px;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("/img/abstract-network.jpeg") center / cover no-repeat;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    image-set(
      url("/img/abstract-network.avif") type("image/avif"),
      url("/img/abstract-network.jpeg") type("image/jpeg")
    ) center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  scroll-margin-top: 80px;
}

/* ------------------
   SITE HEADER (non-hero pages)
------------------ */
.site-header {
  background: linear-gradient(135deg, #0D2058, #071233);
}

.site-header .nav {
  padding: 1.5rem;
}

/* ------------------
   NAVIGATION
------------------ */
.nav {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  padding-right: 4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-dropdown-label::after {
  content: '';
  width: 6px;
  height: 6px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -4px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0.75rem 0 0;
  padding: 0.5rem;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(13, 32, 88, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: #0D2058;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f4f6fa;
}

/* Burger toggle (base) */
.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}


/* ------------------
   HERO CONTENT
------------------ */
.hero-body {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  max-width: clamp(340px, calc(340px + 220 * (100vw - 768px) / 432), 560px);
  text-align: left;
}

.hero-portrait {
  position: absolute;
  bottom: 0;
  right: max(1.5rem, calc((100% - 1200px) / 2 + 1.5rem));
  z-index: 1;
  width: clamp(260px, calc(260px + 260 * (100vw - 768px) / 432), 520px);
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  font-weight: 500;
  font-size: clamp(0.95rem, calc(0.95rem + 2.4 * (100vw - 768px) / 432), 1.1rem);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(3rem, calc(3rem + 16 * (100vw - 768px) / 432), 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.subtitle {
  color: #e0e0e0;
  margin-bottom: 2rem;
}

/* ------------------
   CTA
------------------ */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--light-warm), var(--dark-warm));
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.cta-secondary {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--light-warm), var(--dark-warm)) border-box;
  border: 2px solid transparent;
  color: #0D2058;
}

.cta-blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

/* ------------------
   SHARED UI
------------------ */
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.accent-callout {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-left: 1.5rem;
  border-left: 3px solid #3b82f6;
  text-align: left;
}

.accent-callout h3 {
  margin: 0 0 0.75rem;
  color: #0D2058;
  font-size: 1.4rem;
}

.accent-callout p {
  color: #333;
  margin: 0 0 1rem;
}

/* ------------------
   DIVIDER IMAGE
------------------ */
.hero-divider-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero-divider {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ------------------
   SECTIONS
------------------ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  scroll-margin-top: 90px;
}

.section h1,
.section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: #0D2058;
}

.section p {
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  color: #666;
  margin-bottom: 3rem;
}

/* ------------------
   SERVICES
------------------ */
.services-showcase {
  background: linear-gradient(160deg, #ffffff 0%, #f4f6fa 100%);
  color: #0D2058;
}

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

p.eyebrow-alt {
  color: #a04000;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: none;
}

.services-showcase .section-intro {
  color: #444;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-byline {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto 1rem;
  text-align: left;
}

.services-byline p {
  margin: 0;
  color: #333;
  font-weight: 500;
}

.solution-icon svg,
.contact-icon svg {
  width: 32px;
  height: 32px;
  color: #3b82f6;
  margin-bottom: 0.75rem;
  display: block;
}

p.services-closing {
  text-align: center;
  max-width: 640px;
  margin: 4rem auto 0;
  font-size: 1.15rem;
  color: #0D2058;
  font-weight: 500;
}

/* ------------------
   HOW I WORK
------------------ */
.thought-process {
  max-width: 1100px;
  margin: 0 auto;
}

.thought-process .section-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.thought-line {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.thought-line::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(147, 197, 253, 0.15),
    rgba(59, 130, 246, 0.55) 12%,
    rgba(59, 130, 246, 0.55) 88%,
    rgba(147, 197, 253, 0.15)
  );
  transform: translateX(-50%);
}

.thought-step {
  position: relative;
  width: 50%;
  padding-bottom: 4rem;
  text-align: left;
}

.thought-step:last-child {
  padding-bottom: 0;
}

.thought-step:nth-child(odd) {
  padding-right: 3.5rem;
  text-align: right;
}

.thought-step:nth-child(even) {
  margin-left: 50%;
  padding-left: 3.5rem;
}

.thought-marker {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3b82f6;
  color: #0D2058;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.thought-marker svg {
  width: 20px;
  height: 20px;
}

.thought-step:nth-child(odd) .thought-marker {
  right: -22px;
}

.thought-step:nth-child(even) .thought-marker {
  left: -22px;
}

.thought-content h3 {
  margin: 0 0 0.5rem;
  color: #0D2058;
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
}

.thought-content p {
  color: #444;
  margin: 0;
  text-align: inherit;
  max-width: none;
}

/* ------------------
   TRUST / SOCIAL PROOF
------------------ */
.trust-section {
  background: #f4f6fa;
  border-radius: 3rem;
}

.trust-section h2 {
  color: #0D2058;
}

.trust-section .section-intro {
  text-align: center;
}

.trust-section > p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(13, 32, 88, 0.12);
  border-bottom: 1px solid rgba(13, 32, 88, 0.12);
}

.credibility-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.credibility-number {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #d35400, #0D2058);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.credibility-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #444;
}

.credibility-tags,
.trait-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.credibility-tags {
  justify-content: center;
  gap: 1.5rem 2rem;
  margin: 0;
}

.credibility-tags li,
.trait-tags li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0D2058;
  font-weight: 500;
  font-size: 0.95rem;
}

.credibility-tags svg,
.trait-tags svg {
  color: #3b82f6;
  flex-shrink: 0;
}

.credibility-tags svg {
  width: 22px;
  height: 22px;
}

.testimonials h3 {
  text-align: center;
  color: #0D2058;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.testimonial {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem 2rem 2.5rem;
  text-align: left;
}

.testimonial + .testimonial {
  border-top: 1px solid rgba(13, 32, 88, 0.12);
}

.testimonial-mark,
.landing-testimonial-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
}

.testimonial-mark {
  position: absolute;
  top: 1.2rem;
  left: -0.5rem;
  font-size: 4.5rem;
  color: rgba(13, 32, 88, 0.12);
  user-select: none;
}

.testimonial .quote,
.landing-testimonial .quote {
  font-style: italic;
  color: #0D2058;
  margin: 0 0 0.75rem;
}

.testimonial .quote {
  position: relative;
  font-size: 1.2rem;
}

.testimonial figcaption a,
.landing-testimonial figcaption a,
.profile-links-list a {
  color: #a04000;
  font-weight: 600;
  text-decoration: none;
}

.testimonial figcaption a {
  font-size: 0.9rem;
}

.testimonial figcaption a:hover,
.landing-testimonial figcaption a:hover,
.profile-links-list a:hover {
  text-decoration: underline;
}

.profile-links {
  text-align: center;
  margin-top: 4rem;
}

.profile-links p {
  text-align: center;
}

.profile-links h3 {
  color: #0D2058;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.profile-links-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.profile-avatars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ------------------
   WHO I AM
------------------ */
.who-i-am {
  max-width: 1100px;
  margin: 0 auto;
}

.who-i-am-grid {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  text-align: left;
  margin-top: 3rem;
}

.who-i-am-media {
  position: relative;
  display: flex;
  flex: 0 0 46%;
  max-width: 440px;
}

.who-i-am-media::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), rgba(211, 84, 0, 0.12) 65%, transparent 75%);
  filter: blur(6px);
  z-index: 0;
}

.who-i-am-photo-main {
  position: relative;
  z-index: 1;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.who-i-am-photo-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.who-i-am-photo-secondary {
  position: absolute;
  z-index: 2;
  width: 42%;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 4px solid #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(13, 32, 88, 0.18);
}

.who-i-am-photo-secondary img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.who-i-am-content {
  flex: 1 1 55%;
}

.who-i-am-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: #0D2058;
  border-left: 3px solid #3b82f6;
  padding-left: 1.25rem;
  margin: 0 0 2rem;
}

.who-i-am-content p {
  color: #333;
  max-width: 580px;
  margin: 0 0 1.25rem;
}

.trait-tags {
  gap: 1.25rem 2rem;
  margin: 2rem 0 0;
}

.trait-tags svg {
  width: 20px;
  height: 20px;
}

/* ------------------
   CONTACT
------------------ */
.contact-section .section-intro {
  margin: 0 auto 1rem;
}

.contact-me-paragraph {
  max-width: 650px;
  margin: 0 auto 3rem;
  color: #444;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.contact-option h3 {
  color: #0D2058;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.contact-option p {
  color: #444;
  margin: 0 0 1.25rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-form input,
.email-form textarea,
.discovery-form input,
.discovery-form select,
.discovery-form textarea {
  font: inherit;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(13, 32, 88, 0.25);
  border-radius: 8px;
  resize: vertical;
}

.email-form input:focus,
.email-form textarea:focus,
.discovery-form input:focus,
.discovery-form select:focus,
.discovery-form textarea:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 1px;
  border-color: #3b82f6;
}

.email-form button {
  align-self: flex-start;
}

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

.contact-intro-media {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.contact-intro-media img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.contact-intro-media p {
  margin: 0;
  color: #333;
}

.contact-photo-break {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.contact-photo-break p {
  text-align: center;
  color: #444;
  margin: 0;
}

.contact-photo-break img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 1rem;
}

/* ------------------
   LANDING PAGE HERO
------------------ */
.landing-hero {
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("/img/world-at-night-for-international-seo.jpg") center / cover no-repeat;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    image-set(
      url("/img/world-at-night-for-international-seo.avif") type("image/avif"),
      url("/img/world-at-night-for-international-seo.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  color: #fff;
  padding: 4rem 1.5rem 5rem;
}

.landing-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.landing-hero-content {
  flex: 1 1 55%;
  text-align: left;
}

.landing-hero .eyebrow-alt {
  color: var(--light-warm);
  text-align: left;
  max-width: none;
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  color: #fff;
}

.landing-hero-subtitle {
  color: #e0e0e0;
  max-width: 560px;
  margin: 0 0 2rem;
}

.landing-hero-media {
  position: relative;
  flex: 0 0 320px;
  max-width: 320px;
  margin-top: -2.5rem;
}

.landing-hero-icon {
  display: block;
}

.landing-hero-icon-primary {
  width: 100%;
  height: auto;
}

.landing-hero-icon-accent {
  position: absolute;
  width: 35%;
  right: 8%;
  bottom: 8%;
}

/* ------------------
   DEFINITION BOX
------------------ */
.definition-box {
  background: #eef4ff;
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: left;
}

.definition-box p {
  margin: 0;
  color: #0D2058;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ------------------
   LANDING TESTIMONIALS (alt layout)
------------------ */
.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  text-align: left;
}

.landing-testimonial {
  background: #f4f6fa;
  border-radius: 16px;
  padding: 1.75rem;
}

.landing-testimonial-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.landing-testimonial .quote {
  font-size: 1rem;
}

.landing-testimonial figcaption a {
  font-size: 0.85rem;
}

/* ------------------
   DISCOVERY FORM
------------------ */
.discovery-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.discovery-form .field-full {
  grid-column: 1 / -1;
}

.discovery-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0D2058;
  margin-bottom: 0.35rem;
}

.discovery-form input,
.discovery-form select,
.discovery-form textarea {
  width: 100%;
  background: #fff;
}

/* ------------------
   FAQ ACCORDION
------------------ */
.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 32, 88, 0.12);
  padding: 1.25rem 0;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #0D2058;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: #444;
}

/* ------------------
   FOOTER
------------------ */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 5vw 5vw 0 0;
}

.footer a {
  color: #cbd5f5;
}

.footer p:last-child {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* ------------------
   HERO — STACKED LAYOUT (TABLET & MOBILE)
------------------ */
@media (max-width: 999px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-body {
    position: static;
    transform: none;
    padding: 3rem 1.5rem 0;
  }

  .hero-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-portrait {
    position: static;
    margin: 2.5rem auto 0;
    width: clamp(240px, 55vw, 360px);
  }
}

/* ------------------
   MOBILE
------------------ */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
  }

  .nav-toggle:checked + .nav-burger + .nav-links {
    display: flex;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 0.75rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
  }

  .nav-dropdown-menu a {
    color: #fff;
    padding: 0.4rem 0;
  }

  .thought-line::before {
    left: 21px;
  }

  .thought-step,
  .thought-step:nth-child(odd),
  .thought-step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 3.25rem;
    padding-right: 0;
    text-align: left;
  }

  .thought-step:nth-child(odd) .thought-marker,
  .thought-step:nth-child(even) .thought-marker {
    left: 0;
    right: auto;
  }

  .accent-callout {
    padding-left: 1.25rem;
  }

  .credibility-strip {
    gap: 2rem;
    padding: 1.5rem 0;
  }

  .testimonial {
    padding: 1.5rem 0.5rem 1.5rem 2rem;
  }

  .testimonial-mark {
    font-size: 3.5rem;
    left: -0.25rem;
  }

  .who-i-am-grid {
    flex-direction: column;
    gap: 3.5rem;
  }

  .who-i-am-media {
    max-width: 320px;
    margin: 0 auto;
  }

  .who-i-am-photo-main img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

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

  .contact-intro-media {
    flex-direction: column;
    text-align: center;
  }

  .landing-hero-inner {
    flex-direction: column;
  }

  .landing-hero-media {
    max-width: 240px;
    margin: 0 auto;
  }

  .landing-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .discovery-form {
    grid-template-columns: 1fr;
  }
}
