:root {
  --bg: #f8f7f3;
  --surface: #ffffff;
  --dark: #111111;
  --muted: #686661;
  --green: #243f32;
  --green-soft: #eef3ef;
  --border: rgba(17, 17, 17, 0.1);
}

/* ==================================================
   GLOBAL STYLES
================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
button,
input,
select,
textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;

  background:
    radial-gradient(circle at 85% 18%, rgba(36, 63, 50, 0.12), transparent 32%),
    var(--bg);

  color: var(--dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 63, 50, 0.35);
  outline-offset: 3px;
}
/* ==================================================
   HEADER AND NAVIGATION
================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 0;
  background: #ffffff;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Navigation --- */
.navbar {
  width: min(1280px, 92%);
  height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.site-header.scrolled .navbar {
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  text-decoration: none;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.logo-subtitle {
  margin-top: 3px;
  font-size: 6.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 100%;
  height: 2px;
  background: var(--dark);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green);
}

/* ==================================================
   HERO
================================================== */
.hero {
  width: min(1280px, 92%);
  min-height: calc(100vh - 98px);
  margin: 0 auto;
  padding: 56px 0 64px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.hero-text {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-primary,
.hero-secondary {
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.hero-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(36, 63, 50, 0.22);
}

.hero-secondary {
  background: var(--surface);
  color: var(--dark);
  border: 1px solid var(--border);
}

.hero-primary:hover {
  transform: translateY(-3px);
  background: var(--dark);
}
.hero-secondary:hover {
  transform: translateY(-3px);
}
.hero-left,
.hero-right {
  min-width: 0;
}

/* --- Hero carousel --- */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.portrait-card {
  position: relative;
  width: min(520px, 100%);
  height: 640px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--green-soft);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.14);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  animation: fadeCarousel 12s infinite ease-in-out;
}

.carousel-track img:nth-child(1) {
  animation-delay: 0s;
}

.carousel-track img:nth-child(2) {
  animation-delay: 4s;
}

.carousel-track img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fadeCarousel {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* --- Hero carousel indicators --- */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;

  z-index: 10;
}

.carousel-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(8px);

  animation: dotAnimation 12s infinite;
}

.carousel-dots span:nth-child(1) {
  animation-delay: 0s;
}

.carousel-dots span:nth-child(2) {
  animation-delay: 4s;
}

.carousel-dots span:nth-child(3) {
  animation-delay: 8s;
}

@keyframes dotAnimation {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1);
  }

  8%,
  30% {
    background: #ffffff;
    transform: scale(1.35);
  }

  38% {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1);
  }
}
/* ==================================================
   ABOUT
================================================== */

.about-section {
  width: 100%;
  padding: 64px 0;
  overflow: hidden;
}

.about-wrapper {
  width: min(1280px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.about-image-card,
.about-content {
  min-width: 0;
}

/* IMAGE */
.about-image-card {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;

  border-radius: 18px;
  overflow: hidden;
  background: #eeeade;

  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.about-image-card img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 35%;
}

/* CONTENT */
.about-content {
  position: relative;
  z-index: 1;
}

.about-content::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 40px;

  width: 340px;
  height: 340px;
  border: 55px solid rgba(36, 63, 50, 0.06);

  transform: rotate(45deg);
  z-index: -1;
  pointer-events: none;
}

.about-content h2 {
  max-width: 760px;
  margin: 0;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.about-content h2::after {
  content: "";
  display: block;

  width: 56px;
  height: 3px;
  margin: 24px 0 26px;

  background: var(--green);
  border-radius: 999px;
}

.about-content p {
  max-width: 760px;
  margin: 18px 0 0;

  color: var(--dark);
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
}

/* CTA */
.about-cta {
  width: fit-content;
  margin-top: 28px;
  padding: 15px 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: var(--green);
  color: #fff;

  text-decoration: none;
  font-size: 15px;
  font-weight: 800;

  box-shadow: 0 18px 40px rgba(36, 63, 50, 0.22);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-3px);
  background: var(--dark);
}

/* TABLET */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-card {
    width: min(100%, 420px);
    margin: 0 auto;
  }

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

  .about-content h2::after {
    margin: 24px auto 26px;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta {
    margin: 28px auto 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .about-section {
    padding: 48px 0;
  }

  .about-wrapper {
    width: calc(100% - 32px);
    gap: 36px;
  }

  .about-image-card {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  .about-image-card img {
    object-position: center 35%;
  }

  .about-content::after {
    display: none;
  }

  .about-content h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-cta {
    width: 100%;
  }
}
/* ==================================================
   MISSION
================================================== */
.mission-strap {
  position: relative;
  width: 100%;
  min-height: 360px;
  margin: 0;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url("../assets/Stewart-mentoring-session.jpeg");
  background-size: cover;
  background-position: center;
}

.mission-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(36, 63, 50, 0.82);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.mission-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 92%);
  min-height: 360px;
  margin: 0 auto;
  padding: 40px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-content span {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mission-content h2 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(24px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 74px);
  }

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

  .portrait-card {
    height: 540px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-image-card {
    height: 540px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 56px;
  }

  .about-section {
    padding: 56px 0;
  }

  .mission-strap {
    min-height: 420px;
    margin: 0;
  }

  .mission-overlay {
    width: 100%;
    clip-path: none;
    background: rgba(36, 63, 50, 0.88);
  }

  .mission-content {
    min-height: 420px;
  }

  .mission-content h2 {
    max-width: 100%;
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 14px;
  }

  .navbar {
    width: calc(100% - 28px);
    height: 68px;
    padding: 0 16px;
  }

  .logo-title {
    font-size: 19px;
  }

  .logo-subtitle {
    font-size: 5.8px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero {
    padding: 44px 0 52px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    text-align: center;
  }

  .portrait-card {
    height: 460px;
    border-radius: 28px;
  }

  .about-section {
    padding: 52px 0;
  }

  .about-image-card {
    height: 430px;
    border-radius: 26px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================
   SERVICES
================================================== */
.services-section {
  position: relative;
  padding: 64px 0;
  background: #f1f0eb;
  overflow: hidden;
}

.services-wrapper {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* --- Section heading --- */
.services-heading {
  margin-bottom: 80px;
}

.services-heading h2 {
  color: var(--dark);
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 800;
  text-align: center;
}

/* --- Services grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Service cards --- */
.service-card {
  position: relative;
  min-height: 560px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 28px 75px rgba(17, 17, 17, 0.14);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* --- Card overlays --- */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(10, 20, 15, 0.2) 0%,
    rgba(10, 20, 15, 0.48) 42%,
    rgba(10, 20, 15, 0.94) 100%
  );
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(135deg, rgba(36, 63, 50, 0.18), transparent 58%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 90px rgba(17, 17, 17, 0.21);
}

/* --- Card backgrounds --- */
.service-mentoring {
  background-image: url("https://images.pexels.com/photos/12887239/pexels-photo-12887239.jpeg");
}

.service-training {
  background-image: url("https://images.pexels.com/photos/6814345/pexels-photo-6814345.jpeg");
  transform: translateY(-30px);
}

.service-training:hover {
  transform: translateY(-40px);
}

.service-consulting {
  background-image: url("https://images.pexels.com/photos/7693187/pexels-photo-7693187.jpeg");
}

/* --- Service numbering --- */
.service-number {
  position: relative;
  z-index: 2;
  margin-bottom: auto;

  color: rgba(255, 255, 255, 0.72);
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.07em;
}

/* --- Card content --- */
.service-card-content {
  position: relative;
  z-index: 2;
  margin-top: 60px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-category {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 360px;
  margin-bottom: 16px;

  color: #ffffff;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.6;
}

/* --- Service feature lists --- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin-bottom: 26px;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 19px;

  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;

  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

/* --- Service buttons --- */
.service-button {
  min-height: 46px;
  padding: 13px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 999px;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.service-button:hover {
  transform: translateY(-3px);
}

/* --- Light service button --- */
.service-button-light {
  background: #ffffff;
  color: var(--green);
}

.service-button-light:hover {
  background: var(--green);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

/* --- Tablet --- */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .service-card:last-child .service-card-content {
    max-width: 620px;
  }
  .service-training {
    transform: none;
  }

  .service-training:hover {
    transform: translateY(-8px);
  }
}

/* --- Small tablet --- */
@media (max-width: 768px) {
  .services-section {
    padding: 84px 0;
  }

  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 58px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 540px;
  }

  .service-card:last-child .service-card-content {
    max-width: none;
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .services-section {
    padding: 72px 0;
  }

  .services-heading {
    margin-bottom: 34px;
  }

  .services-heading h2 {
    font-size: 48px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card,
  .service-card:last-child {
    min-height: 520px;
    padding: 26px;
    border-radius: 24px;
  }

  .service-card-content {
    margin-top: 50px;
  }

  .service-number {
    font-size: 50px;
  }

  .service-category {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-list li {
    font-size: 12.5px;
  }

  .service-button {
    width: 100%;
  }
}
/* ==================================================
   WHY OAKTHORPE
================================================== */
.why-section {
  position: relative;
  width: 100%;
  padding: 72px 0;
  overflow: hidden;
  background: var(--green);
  color: #ffffff;
}

.why-wrapper {
  position: relative;
  z-index: 2;
  width: min(1280px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}

/* --- Introductory content --- */
.why-intro {
  position: static;
}

.why-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.why-intro h2 {
  max-width: 560px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.why-intro h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.46);
}

.why-intro > p {
  max-width: 560px;
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
}

/* --- Experience statistic --- */
.why-experience {
  margin-top: 30px;
  padding-top: 24px;

  display: flex;
  align-items: center;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-experience strong {
  flex-shrink: 0;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.why-experience div {
  max-width: 260px;
}

.why-experience span {
  display: block;
  margin-bottom: 4px;

  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.why-experience p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
  line-height: 1.5;
}

/* --- Benefit cards --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  min-height: 190px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.why-card-number {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-card h3 {
  max-width: 280px;
  margin-bottom: 9px;

  color: #ffffff;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  line-height: 1.55;
}

/* --- Featured benefit card --- */
.why-card-featured {
  grid-column: 1 / -1;
  min-height: 160px;
  background: #ffffff;
  color: var(--dark);
}

.why-card-featured:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.why-card-featured h3 {
  max-width: 500px;
  color: var(--green);
  font-size: 24px;
}

.why-card-featured p {
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
}

.why-card-featured .why-card-number {
  color: rgba(36, 63, 50, 0.42);
}

/* --- Tablet --- */
@media (max-width: 1000px) {
  .why-section {
    padding: 64px 0;
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .why-intro > p {
    max-width: 700px;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .why-section {
    padding: 56px 0;
  }

  .why-intro h2 {
    font-size: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card-featured {
    grid-column: auto;
    min-height: 170px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 48px 0;
  }

  .why-wrapper {
    gap: 34px;
  }

  .why-intro h2 {
    font-size: 40px;
  }

  .why-intro > p {
    font-size: 15px;
  }

  .why-experience {
    margin-top: 26px;
  }

  .why-card,
  .why-card-featured {
    min-height: 160px;
    padding: 20px;
    border-radius: 18px;
  }

  .why-card h3,
  .why-card-featured h3 {
    font-size: 20px;
  }

  .why-card p,
  .why-card-featured p {
    font-size: 12.5px;
  }
}

/* ==================================================
   APPROACH
================================================== */

.approach-section {
  position: relative;
  width: 100%;
  padding: 32px 0 72px;
  overflow: hidden;
  background: var(--surface);
}

.approach-wrapper {
  position: relative;
  z-index: 2;

  width: min(1280px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* --- Approach introduction --- */

.approach-header {
  position: sticky;
  top: 90px;
}

.approach-eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.approach-header h2 {
  max-width: 560px;

  color: var(--dark);

  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.approach-header p {
  max-width: 520px;
  margin-top: 18px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.65;
}

/* --- Approach steps --- */

.approach-steps {
  margin-top: 46px;
  border-top: 1px solid var(--border);
}

.approach-step {
  position: relative;

  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;

  align-items: center;

  min-height: 104px;
  padding: 18px 0;

  border-bottom: 1px solid var(--border);

  transition:
    background 0.35s ease,
    padding-left 0.35s ease;
}

.approach-step::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.approach-step:hover {
  background: var(--green-soft);
  padding-left: 12px;
}

.approach-step:hover::after {
  transform: scaleX(1);
}

/* --- Step number --- */

.approach-number {
  position: relative;

  color: rgba(36, 63, 50, 0.18);

  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;

  transition: color 0.35s ease;
}

.approach-number::after {
  content: "";

  position: absolute;
  right: -12px;
  top: 50%;

  width: 1px;
  height: 42px;

  background: rgba(36, 63, 50, 0.15);

  transform: translateY(-50%);
}

.approach-step:hover .approach-number {
  color: var(--green);
}

/* --- Step content --- */

.approach-step-text {
  padding-left: 8px;
  transition: transform 0.35s ease;
}

.approach-step:hover .approach-step-text {
  transform: translateX(4px);
}

.approach-step h3 {
  margin-bottom: 6px;

  color: var(--dark);

  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.approach-step p {
  max-width: 620px;

  color: var(--muted);

  font-size: 13.5px;
  line-height: 1.55;
}

/* --- Tablet --- */

@media (max-width: 1000px) {
  .approach-section {
    padding: 48px 0 60px;
  }

  .approach-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .approach-header {
    position: static;
  }

  .approach-steps {
    margin-top: 0;
  }
}

/* --- Mobile --- */

@media (max-width: 768px) {
  .approach-section {
    padding: 42px 0 54px;
  }

  .approach-wrapper {
    gap: 28px;
  }

  .approach-header h2 {
    font-size: 48px;
  }

  .approach-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 18px 0;
  }

  .approach-number {
    font-size: 32px;
  }

  .approach-number::after {
    height: 38px;
    right: -9px;
  }

  .approach-step h3 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .approach-section {
    padding: 36px 0 48px;
  }

  .approach-header h2 {
    font-size: 38px;
  }

  .approach-header p {
    font-size: 14px;
  }

  .approach-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .approach-number {
    font-size: 26px;
  }

  .approach-number::after {
    height: 34px;
    right: -7px;
  }

  .approach-step h3 {
    font-size: 20px;
  }

  .approach-step p {
    font-size: 13px;
  }
}
/* ==================================================
   TESTIMONIALS
================================================== */

.testimonials-section {
  position: relative;
  width: 100%;
  padding: 64px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(36, 63, 50, 0.12),
      transparent 45%
    ),
    #eef3ef;
}

.testimonials-wrapper {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ==================================================
   HEADER AND NAVIGATION
================================================== */

.testimonials-header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.testimonials-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.testimonials-header h2 {
  color: var(--dark);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.testimonials-header h2 span {
  color: var(--green);
}

.testimonials-header p {
  max-width: 670px;
  margin: 18px auto 0;

  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* --- Carousel layout --- */

.testimonial-carousel {
  position: relative;
}

.testimonial-carousel-track {
  position: relative;
  min-height: 390px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;

  min-height: 390px;
  padding: 64px 72px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  border: 1px solid rgba(36, 63, 50, 0.1);
  border-radius: 32px;

  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.09);

  opacity: 0;
  visibility: hidden;
  transform: translateX(35px);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* --- Decorative quotation marks --- */

.testimonial-quote {
  position: absolute;

  color: rgba(36, 63, 50, 0.18);
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
  font-weight: 700;

  pointer-events: none;
}

.testimonial-quote-open {
  top: -6px;
  left: 52px;
}

.testimonial-quote-close {
  right: 52px;
  bottom: -55px;
}

/* --- Testimonial text --- */

.testimonial-slide blockquote {
  position: relative;
  z-index: 2;

  max-width: 930px;
  margin: 0 0 34px;

  color: var(--dark);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.48;
  letter-spacing: -0.035em;
  font-weight: 600;
}

/* --- Testimonial author --- */

.testimonial-person {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 3px solid rgba(36, 63, 50, 0.14);
  border-radius: 50%;

  background: var(--green);
  color: #ffffff;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.testimonial-person strong {
  display: block;
  margin-bottom: 4px;

  color: var(--dark);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.testimonial-person span {
  display: block;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* --- Carousel controls --- */

.testimonial-controls {
  margin-top: 24px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dot {
  width: 32px;
  height: 8px;

  border: none;
  border-radius: 999px;

  background: rgba(36, 63, 50, 0.18);
  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.testimonial-dot.active {
  width: 62px;
  background: var(--green);
}

.testimonial-arrow {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(36, 63, 50, 0.16);
  border-radius: 50%;

  background: #ffffff;
  color: var(--green);

  font-size: 18px;
  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: #ffffff;
}

/* --- Tablet --- */

@media (max-width: 900px) {
  .testimonial-carousel-track,
  .testimonial-slide {
    min-height: 420px;
  }

  .testimonial-slide {
    padding: 62px 46px 44px;
  }

  .testimonial-quote-open {
    left: 32px;
  }

  .testimonial-quote-close {
    right: 32px;
  }
}

/* --- Mobile --- */

@media (max-width: 600px) {
  .testimonials-section {
    padding: 48px 0;
  }

  .testimonials-header {
    margin-bottom: 28px;
  }

  .testimonials-header h2 {
    font-size: 39px;
  }

  .testimonials-header p {
    font-size: 14px;
  }

  .testimonial-carousel-track,
  .testimonial-slide {
    min-height: 480px;
  }

  .testimonial-slide {
    padding: 58px 25px 32px;
    border-radius: 24px;
  }

  .testimonial-quote {
    font-size: 94px;
  }

  .testimonial-quote-open {
    top: 0;
    left: 20px;
  }

  .testimonial-quote-close {
    right: 20px;
    bottom: -40px;
  }

  .testimonial-slide blockquote {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.55;
  }

  .testimonial-avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .testimonial-person strong {
    font-size: 13px;
  }

  .testimonial-person span {
    font-size: 11px;
  }

  .testimonial-controls {
    gap: 14px;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }

  .testimonial-dot {
    width: 18px;
    height: 7px;
  }

  .testimonial-dot.active {
    width: 38px;
  }
}

/* ==================================================
   CONTACT
================================================== */

.contact-section {
  position: relative;
  width: 100%;
  padding: 72px 0;
  overflow: hidden;
  background: var(--green);
  color: #ffffff;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -220px;

  width: 580px;
  height: 580px;

  border: 100px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;

  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -250px;

  width: 500px;
  height: 500px;

  border: 80px solid rgba(255, 255, 255, 0.025);
  transform: rotate(45deg);

  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  z-index: 2;

  width: min(1280px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: center;
}

/* --- Introductory content --- */

.contact-intro {
  min-width: 0;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-intro h2 {
  max-width: 600px;

  color: #ffffff;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.068em;
  font-weight: 800;
}

.contact-intro h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.43);
}

.contact-description {
  max-width: 550px;
  margin-top: 24px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.contact-details {
  max-width: 550px;
  margin-top: 36px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail-label {
  display: block;
  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}

.contact-detail a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: opacity 0.3s ease;
}

.contact-detail a:hover {
  opacity: 0.65;
}

/* --- Contact form card --- */

.contact-form-card {
  padding: 38px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;

  background: #ffffff;
  color: var(--dark);

  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading > span {
  display: block;
  margin-bottom: 6px;

  color: var(--dark);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.contact-form-heading p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* --- Form layout --- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-group {
  min-width: 0;
}

.contact-form-group label {
  display: block;
  margin-bottom: 9px;

  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
}

.contact-form-group label span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 13px;
  outline: none;

  background: #f8f8f6;
  color: var(--dark);

  font-family: inherit;
  font-size: 13px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 15px;
  line-height: 1.6;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(104, 102, 97, 0.68);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(36, 63, 50, 0.54);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(36, 63, 50, 0.08);
}

.contact-select-wrapper {
  position: relative;
}

.contact-select-wrapper::after {
  content: "▽";
  position: absolute;
  top: 50%;
  right: 16px;

  color: var(--green);
  font-size: 15px;
  font-weight: 800;

  transform: translateY(-58%);
  pointer-events: none;
}

.contact-form select {
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* --- Consent field --- */

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-consent input {
  flex: 0 0 17px;

  width: 17px;
  height: 17px;
  margin-top: 2px;

  accent-color: var(--green);
  cursor: pointer;
}

.contact-consent label {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.5;
  cursor: pointer;
}

/* --- Submit controls --- */

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-submit {
  min-width: 180px;
  min-height: 50px;
  padding: 13px 18px 13px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;

  border: none;
  border-radius: 999px;

  background: var(--green);
  color: #ffffff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(36, 63, 50, 0.2);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--dark);
}

.contact-submit:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.contact-form-status {
  flex: 1;
  min-width: 180px;

  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.contact-form-status.success {
  color: var(--green);
  font-weight: 700;
}

.contact-form-status.error {
  color: #a13939;
  font-weight: 700;
}

/* --- Tablet --- */

@media (max-width: 1000px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-description,
  .contact-details {
    max-width: 720px;
  }
}

/* --- Mobile --- */

@media (max-width: 700px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-intro h2 {
    font-size: 48px;
  }

  .contact-form-card {
    padding: 28px;
    border-radius: 25px;
  }

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

@media (max-width: 500px) {
  .contact-section {
    padding: 48px 0;
  }

  .contact-intro h2 {
    font-size: 41px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-form-card {
    padding: 23px;
    border-radius: 22px;
  }

  .contact-form {
    gap: 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-form-status {
    width: 100%;
    min-width: 0;
  }
}
/* ==================================================
   FOOTER
================================================== */

.site-footer {
  position: relative;
  width: 100%;
  padding: 70px 0 28px;
  overflow: hidden;

  background: var(--green);
  color: #ffffff;
  margin-top: 64px;
}

.footer-wrapper {
  position: relative;
  z-index: 2;

  width: min(1280px, 92%);
  margin: 0 auto;
}

/* --- Main footer layout --- */

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

/* --- Footer brand --- */

.footer-logo {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 13px;

  color: #ffffff;
  text-decoration: none;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.footer-logo-subtitle {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.48);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-brand > p {
  max-width: 440px;
  margin-top: 24px;

  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.7;
}

.footer-email {
  display: inline-block;
  margin-top: 22px;

  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  overflow-wrap: anywhere;

  transition: opacity 0.3s ease;
}

.footer-email:hover {
  opacity: 0.58;
}

.footer-socials {
  margin-top: 25px;
}

.footer-socials a {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;

  transition: color 0.3s ease;
}

.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: #ffffff;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials a:hover::after {
  transform: scaleX(1);
}

/* --- Footer navigation --- */

.footer-links {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 42px;
}

.footer-column h3 {
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;

  list-style: none;
}

.footer-column a {
  position: relative;

  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 600;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

/* --- Footer callout --- */

.footer-callout {
  margin-top: 58px;
  padding: 30px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-callout p {
  max-width: 720px;

  color: #ffffff;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.footer-callout a {
  flex-shrink: 0;

  padding: 14px 18px 14px 22px;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  border-radius: 999px;
  background: #ffffff;
  color: var(--green);

  text-decoration: none;
  font-size: 12px;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.footer-callout a:hover {
  transform: translateY(-3px);
  background: var(--green);
  color: #ffffff;
  border: 1px solid white;
}

/* --- Footer bottom bar --- */

.footer-bottom {
  padding-top: 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10.5px;
  line-height: 1.5;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --- Tablet --- */

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-links {
    max-width: 760px;
  }
}

/* --- Small tablet --- */

@media (max-width: 700px) {
  .site-footer {
    padding-top: 58px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .footer-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --- Mobile --- */

@media (max-width: 500px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo img {
    width: 43px;
    height: 43px;
  }

  .footer-logo-title {
    font-size: 21px;
  }

  .footer-brand > p {
    font-size: 13px;
  }

  .footer-callout {
    margin-top: 44px;
  }

  .footer-callout p {
    font-size: 30px;
  }

  .footer-callout a {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* ==================================================
   ACCESSIBILITY
================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: smooth;
  }

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