:root {
  --ink: #090907;
  --ink-soft: #1b1915;
  --ivory: #fbf6ec;
  --paper: #fffaf1;
  --muted: #6b6255;
  --line: rgba(12, 10, 7, 0.14);
  --gold: #c99a3c;
  --gold-bright: #e8bd61;
  --blue: #123c68;
  --burgundy: #7a1830;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 1rem;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 236, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  padding-block: 0.6rem;
}

.nav {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand {
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  width: clamp(58px, 8vw, 82px);
  aspect-ratio: 1;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.4rem);
}

.nav-menu a {
  color: rgba(255, 250, 241, 0.86);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header.is-scrolled .nav-menu a,
.site-header.nav-open .nav-menu a {
  color: var(--ink);
}

.nav-menu a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.35);
  border-radius: 999px;
  background: rgba(9, 9, 7, 0.2);
  color: currentColor;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--paper);
  display: block;
  margin: 3px auto;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.7);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span {
  background: var(--ink);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  appearance: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #181104;
  box-shadow: 0 14px 36px rgba(201, 154, 60, 0.26);
}

.button-outline {
  border: 1px solid rgba(255, 250, 241, 0.42);
  color: var(--paper);
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(8px);
}

.hero {
  min-height: 94svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 9rem 1rem 5rem;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 7, 0.72) 0%, rgba(9, 9, 7, 0.58) 48%, rgba(9, 9, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(9, 9, 7, 0.76) 0%, transparent 52%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset-block: 0;
  width: 56%;
  overflow: hidden;
}

.hero-image-left {
  left: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
}

.hero-image-right {
  right: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-left img {
  object-position: 54% center;
}

.hero-image-right img {
  object-position: 64% center;
}

.hero-content {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: var(--paper);
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.hero-copy {
  max-width: 680px;
  margin: 1.4rem auto 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.share-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.4);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
  position: relative;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 241, 0.16);
}

.share-button span,
.share-button::before,
.share-button::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.share-button span {
  left: 15px;
  top: 21px;
}

.share-button::before {
  right: 14px;
  top: 13px;
  box-shadow: -13px 10px 0 -2px rgba(232, 189, 97, 0.38);
}

.share-button::after {
  right: 14px;
  bottom: 13px;
}

.audience-pair {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.audience-pair span {
  border: 1px solid rgba(232, 189, 97, 0.5);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.86);
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 1rem;
}

.section-inner {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
}

.credential-logos {
  padding: clamp(1rem, 2.4vw, 1.6rem) 1rem;
  background: var(--paper);
}

.credential-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.6vw, 1.2rem);
  flex-wrap: nowrap;
}

.credential-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(78px, 22vw, 136px);
  aspect-ratio: 1;
  border: 1px solid rgba(12, 10, 7, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  padding: clamp(0.24rem, 1vw, 0.55rem);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31, 24, 13, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.credential-logo-button:hover,
.credential-logo-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 60, 0.5);
  box-shadow: 0 16px 34px rgba(31, 24, 13, 0.12);
}

.credential-logo-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-lead {
  max-width: 920px;
  margin: 0 auto;
}

.section-lead p:not(.eyebrow),
.body-copy p,
.about-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

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

.coaching-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.4rem);
  min-height: 100%;
  box-shadow: 0 18px 60px rgba(31, 24, 13, 0.08);
}

.coaching-card p {
  color: var(--muted);
  margin: 1rem 0 1.2rem;
}

.coaching-card-image {
  width: clamp(96px, 22vw, 136px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  margin: 0 auto 1.1rem;
  box-shadow: 0 14px 32px rgba(31, 24, 13, 0.14);
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  border: 1px solid rgba(18, 60, 104, 0.18);
  background: rgba(18, 60, 104, 0.06);
  color: var(--blue);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  margin-top: 1.4rem;
  padding: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-button::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.text-button:hover::after,
.text-button:focus-visible::after {
  transform: scaleX(1);
}

.about {
  background: var(--ink);
  color: var(--paper);
}

.about-grid,
.latin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  text-align: center;
}

.portrait-stack {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.portrait-stack img {
  width: min(100%, 360px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
  border: 8px solid rgba(255, 250, 241, 0.92);
  outline: 1px solid rgba(232, 189, 97, 0.5);
  margin: 0 auto;
}

.about-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.toastmasters {
  background:
    linear-gradient(180deg, rgba(122, 24, 48, 0.06), transparent 36%),
    var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.split-heading img {
  width: 170px;
  justify-self: center;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.12));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(2rem, 5vw, 4rem) 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.metrics div {
  background: rgba(255, 250, 241, 0.78);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.metrics strong {
  display: block;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.metrics span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wide-copy {
  max-width: 900px;
  margin: 0 auto;
}

.wide-copy p {
  margin-top: 0;
}

.emphasis-mark {
  font-weight: 900;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.latin {
  background: var(--ivory);
}

.latin-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.quote-panel {
  background: var(--ink-soft);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}

.quote-panel img {
  width: min(100%, 260px);
  margin: 0 auto 1.8rem;
  border-radius: 999px;
  background: white;
}

.quote-panel blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.consultation-band {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  background: var(--blue);
  color: var(--paper);
  text-align: center;
}

.consultation-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.consultation-inner p {
  margin: 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 241, 0.72);
  padding: 3rem 1rem 6rem;
}

.footer-inner {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.footer-brand {
  color: var(--paper);
  font-size: 1.4rem;
}

.footer-inner p {
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.5rem auto 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: var(--paper);
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #181104;
  cursor: pointer;
  min-height: 54px;
  padding: 0.95rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.modal-overlay,
.newsletter-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(9, 9, 7, 0.72);
  backdrop-filter: blur(8px);
}

.modal-overlay.is-open,
.newsletter-overlay.is-open {
  display: flex;
}

.modal,
.newsletter {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.newsletter {
  width: min(500px, 100%);
  border-top: 5px solid var(--gold);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 19px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-body h2,
.newsletter h2 {
  padding-right: 2.4rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.modal-body > p,
.newsletter p {
  color: var(--muted);
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(12, 10, 7, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  outline: none;
  text-align: center;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(232, 189, 97, 0.48);
  outline-offset: 3px;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--burgundy);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.form-submit.is-loading span,
.newsletter-form.is-loading button span {
  opacity: 0;
}

.form-submit.is-loading,
.newsletter-form.is-loading button {
  position: relative;
  pointer-events: none;
}

.form-submit.is-loading::after,
.newsletter-form.is-loading button::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(24, 17, 4, 0.25);
  border-top-color: #181104;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.privacy-line {
  margin-bottom: 0;
  font-size: 0.82rem;
}

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

.success-state {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.success-state h2 {
  padding: 0;
}

.success-state p {
  color: var(--muted);
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    display: none;
    background: rgba(251, 246, 236, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    color: var(--ink);
    padding: 0.5rem 0;
  }

  .nav-menu .button {
    width: 100%;
  }

  .hero {
    min-height: 88svh;
    padding-top: 7rem;
  }

  .coaching-grid,
  .about-grid,
  .latin-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .portrait-stack {
    position: static;
  }

  .portrait-stack img {
    width: min(68vw, 260px);
    max-height: none;
  }

  .split-heading img {
    justify-self: center;
  }

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

}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 0.5rem;
  }

  .nav {
    width: calc(100% - 0.5rem);
  }

  .brand {
    width: 58px;
  }

  .hero {
    min-height: 96svh;
    padding: 6.2rem 0.75rem 3.5rem;
    align-items: center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(9, 9, 7, 0.84) 0%, rgba(9, 9, 7, 0.5) 48%, rgba(9, 9, 7, 0.58) 100%),
      linear-gradient(90deg, rgba(9, 9, 7, 0.54), rgba(9, 9, 7, 0.26), rgba(9, 9, 7, 0.54));
  }

  .hero-image {
    inset-inline: 0;
    width: 100%;
    height: 56%;
  }

  .hero-image-left {
    top: 0;
    bottom: auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  }

  .hero-image-right {
    top: auto;
    bottom: 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
  }

  .hero-image-left img {
    object-position: 58% 36%;
  }

  .hero-image-right img {
    object-position: 58% 52%;
  }

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

  .share-button {
    margin-left: auto;
    margin-right: auto;
  }

  .section,
  .consultation-band {
    padding-inline: 0.75rem;
  }

  .section-inner,
  .hero-content,
  .footer-inner {
    width: 100%;
  }

  .metrics,
  .form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }
}
