:root {
  --ink: #17333b;
  --ink-deep: #10282f;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --copper: #bd684c;
  --copper-dark: #934a35;
  --sage: #8e9a81;
  --line: rgba(23, 51, 59, 0.18);
  --text: #354b50;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(24, 43, 47, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e49b79;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.eyebrow.light {
  color: #dca78d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.5vw, 6.85rem);
}

h1 em {
  color: var(--copper);
  font-weight: 400;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.45;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 246, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(25, 44, 49, 0.05);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.wordmark {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.44rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wordmark span {
  color: var(--copper);
  font-style: italic;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 13px 10px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 23px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.68rem;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 162px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 85%, rgba(142, 154, 129, 0.14), transparent 28%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 86px;
  bottom: 0;
  left: calc(50% + 148px);
  width: 1px;
  background: rgba(23, 51, 59, 0.11);
  content: "";
}

.hero-shape {
  position: absolute;
  top: 136px;
  right: -170px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(189, 104, 76, 0.3);
  border-radius: 50%;
}

.hero-shape::before,
.hero-shape::after {
  position: absolute;
  border: 1px solid rgba(189, 104, 76, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-shape::before {
  inset: 44px;
}

.hero-shape::after {
  inset: 88px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.72fr);
  gap: 86px;
  align-items: center;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 38px;
  font-size: 1.16rem;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-portrait {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 430px;
  padding: 18px 18px 0 0;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 0.765;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.name-card {
  position: absolute;
  z-index: 3;
  right: -50px;
  bottom: -45px;
  width: 255px;
  padding: 22px 25px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 16px 35px rgba(17, 41, 47, 0.22);
}

.name-card strong,
.name-card span {
  display: block;
}

.name-card strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.23rem;
  font-weight: 400;
}

.name-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.orbit-mark {
  position: absolute;
  z-index: 1;
  top: -45px;
  left: -70px;
  width: 150px;
  height: 150px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.4;
}

.orbit-mark path {
  stroke-dasharray: 6 8;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  color: var(--copper);
  font-size: 1.1rem;
}

.caleb-band {
  padding: 86px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.caleb-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 100px;
  align-items: start;
}

.caleb-grid h2 {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.caleb-grid p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.83fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: center;
}

.about-image {
  position: relative;
  padding: 0 0 40px 40px;
}

.about-image::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 74%;
  height: 72%;
  background: #d9dfd3;
  content: "";
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: 50% 40%;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 2px;
  display: flex;
  gap: 18px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.focus-list {
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.focus-list li {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-list span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.quote-section {
  padding: 110px 0;
  text-align: center;
  background: #e7e0d3;
}

.quote-section .container {
  max-width: 980px;
}

.quote-mark {
  display: block;
  height: 65px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.speaking {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p {
  padding-bottom: 8px;
}

.speaking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 112px);
  align-items: center;
}

.speaking-photo {
  position: relative;
  margin: 0;
}

.speaking-photo::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -22px;
  width: 66%;
  height: 78%;
  border: 1px solid var(--copper);
  content: "";
}

.speaking-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.71;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.8) contrast(1.03);
}

.speaking-photo figcaption {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 28px;
  max-width: 220px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.35;
}

.topics {
  border-top: 1px solid var(--line);
}

.topic {
  border-bottom: 1px solid var(--line);
}

.topic button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.topic-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
}

.topic-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

.topic-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.topic-icon::before,
.topic-icon::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.topic-icon::after {
  transform: rotate(90deg);
}

.topic.is-open .topic-icon::after {
  transform: rotate(0);
}

.topic-content {
  max-width: 640px;
  padding: 0 40px 25px 60px;
}

.topic-content p {
  margin: 0;
}

.topics > .button {
  margin-top: 36px;
}

.energy {
  padding-top: 0;
}

.energy-panel {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  min-height: 360px;
  padding: 70px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--copper-dark);
}

.energy-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.energy-panel p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 0;
}

.energy-symbol {
  position: relative;
  width: 168px;
  height: 168px;
}

.energy-symbol span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.energy-symbol span:nth-child(2) {
  transform: translateX(30px);
}

.energy-symbol span:nth-child(3) {
  transform: translate(15px, 26px);
}

.coming-soon {
  align-self: start;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 140px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 480px;
}

.contact-detail {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-detail span,
.contact-detail a {
  display: block;
}

.contact-detail span {
  margin-bottom: 4px;
  color: var(--copper-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-detail a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.32rem;
}

.inquiry-form {
  padding: 46px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(40, 52, 54, 0.08);
}

.inquiry-form label {
  display: block;
  margin-bottom: 25px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 51, 59, 0.34);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

input {
  min-height: 48px;
}

textarea {
  padding: 10px 0;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--copper);
  outline: 0;
  box-shadow: 0 2px 0 -1px var(--copper);
}

.form-note,
.form-status {
  margin: 13px 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.form-note {
  color: #68787b;
}

.form-status {
  color: var(--copper-dark);
  font-weight: 700;
}

.site-footer {
  padding: 65px 0 26px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink-deep);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-top {
  padding-bottom: 55px;
}

.footer-top p {
  max-width: 380px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.4;
  text-align: right;
}

.footer-wordmark {
  color: var(--white);
  font-size: 2rem;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 19px;
  }

  .primary-nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1.12fr 0.7fr;
    gap: 48px;
  }

  .name-card {
    right: -15px;
  }

  .energy-panel {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .energy-symbol {
    width: 115px;
    height: 115px;
  }

  .coming-soon {
    position: absolute;
    top: 35px;
    right: 35px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 34px 45px;
    visibility: hidden;
    opacity: 0;
    background: var(--cream);
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav > a:not(.button) {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .primary-nav .button {
    margin-top: 28px;
  }

  .hero {
    padding: 138px 0 110px;
  }

  .hero::before,
  .scroll-cue {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-portrait {
    justify-self: center;
    max-width: 480px;
  }

  .caleb-grid,
  .about-grid,
  .section-heading,
  .speaking-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .caleb-grid {
    gap: 38px;
  }

  .about-grid {
    gap: 62px;
  }

  .about-image {
    max-width: 580px;
    margin: 0 auto;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 55px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .speaking-layout {
    gap: 70px;
  }

  .speaking-photo {
    width: min(90%, 520px);
  }

  .energy-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 45px;
  }

  .energy-symbol {
    width: 120px;
    height: 120px;
  }

  .contact-copy {
    position: static;
  }
}

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

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

  .nav-wrap {
    min-height: 74px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: 118px;
  }

  .hero-intro {
    font-size: 1.04rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    align-self: flex-start;
  }

  .hero-portrait {
    width: calc(100% - 16px);
    padding-right: 0;
  }

  .orbit-mark {
    top: -44px;
    left: -25px;
    width: 110px;
  }

  .name-card {
    right: -7px;
    bottom: -42px;
    width: 228px;
  }

  .caleb-band {
    padding: 72px 0;
  }

  .about-image {
    padding: 0 0 28px 24px;
  }

  .image-caption {
    right: -10px;
  }

  .quote-section {
    padding: 82px 0;
  }

  .speaking-photo {
    width: calc(100% - 18px);
  }

  .speaking-photo figcaption {
    right: -18px;
    bottom: 18px;
  }

  .topic button {
    grid-template-columns: 35px minmax(0, 1fr) 20px;
    padding: 22px 0;
  }

  .topic-content {
    padding: 0 0 22px 47px;
  }

  .energy-panel {
    width: 100%;
    padding: 78px 28px 45px;
  }

  .coming-soon {
    top: 26px;
    right: 26px;
  }

  .inquiry-form {
    padding: 30px 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    text-align: left;
  }

  .footer-bottom div {
    gap: 14px 22px;
    flex-wrap: wrap;
  }
}
