/* Thrive MJE — navy + lime brand; light content pages */
:root {
  --bg-dark: #051b2c;
  --bg-dark-2: #0a2540;
  --green: #27d045;
  --green-bright: #39ff14;
  --green-deep: #008000;
  --white: #ffffff;
  --silver: #c0c0c0;
  --cream: #fdfbf4;
  --welcome-bg: #fdfbf7;
  --welcome-navy: #1d355e;
  --navy-text: #1d3583;
  --pink-accent: #f7d1d5;
  --sage: #c6d694;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(5, 27, 44, 0.12);
  /* Main content width — wider than typical 1100px “boxed” layouts */
  --layout-max: 1400px;
  --layout-header: 1520px;
  --layout-hero-inner: 1180px;
  --section-padding-x: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-text);
  background: var(--cream);
}

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

a {
  color: var(--green-deep);
  text-decoration-thickness: 1px;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: var(--bg-dark);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  border-bottom: 1px solid rgba(39, 208, 69, 0.2);
}

.site-header__inner {
  max-width: var(--layout-header);
  margin: 0 auto;
  padding: 0.75rem var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand__logo {
  max-height: 64px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  border-radius: 1px;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 72px;
  max-height: 0;
  overflow: hidden;
  background: var(--bg-dark);
  transition: max-height 0.35s ease;
}

.site-nav.is-open {
  max-height: min(100vh, 520px);
  overflow-y: auto;
  border-bottom: 1px solid rgba(39, 208, 69, 0.2);
}

@media (min-width: 960px) {
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: 0;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1rem;
    padding: 0;
  }
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(39, 208, 69, 0.15);
  color: var(--green-bright);
  outline: none;
}

.site-nav__cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white) !important;
  font-weight: 700 !important;
}

.site-nav__cta:hover {
  filter: brightness(1.08);
}

.site-nav a.is-active {
  background: rgba(39, 208, 69, 0.22);
  color: var(--green-bright);
}

.site-nav a.site-nav__cta.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

/* Page layout */
.page-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: clamp(1.35rem, 3vh, 2rem) var(--section-padding-x);
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}

.page-hero--home {
  min-height: min(44vh, 26rem);
  position: relative;
  isolation: isolate;
}

/* Hero slideshow — full-opacity photos; readability from overlay only */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slider__slides {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.page-hero--home .page-hero__overlay {
  background: linear-gradient(
    125deg,
    rgba(5, 27, 44, 0.72) 0%,
    rgba(10, 37, 64, 0.45) 42%,
    rgba(5, 27, 44, 0.68) 100%
  );
}

.hero-slider__toolbar {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 27, 44, 0.55);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: rgba(39, 208, 69, 0.35);
  border-color: rgba(39, 208, 69, 0.6);
  outline: none;
}

.hero-slider__dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider__dot[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green-bright);
  transform: scale(1.15);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(5, 27, 44, 0.92) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(5, 27, 44, 0.88) 100%);
  pointer-events: none;
}

.page-hero--home .page-hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 2.25rem;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--layout-hero-inner);
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.page-hero .lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--silver);
  margin: 0;
}

.page-hero .accent {
  color: var(--green);
  font-weight: 700;
}

.about-subnav {
  background: var(--white);
  border-bottom: 1px solid rgba(29, 53, 131, 0.12);
}

.about-subnav__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0.75rem var(--section-padding-x);
}

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

.about-subnav__list a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-text);
}

.about-subnav__list a:hover {
  color: var(--green);
}

#who-we-are,
#vision-mission,
#core-values {
  scroll-margin-top: 5.5rem;
}

.section .lead-in {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--navy-text);
  opacity: 0.9;
  margin: -0.75rem 0 1.25rem;
}

.section {
  padding: 3rem var(--section-padding-x);
  max-width: var(--layout-max);
  margin: 0 auto;
}

.section--alt {
  background: var(--white);
  box-shadow: var(--shadow);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-text);
  margin: 0 0 1.25rem;
}

.section p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split--reverse .split__text {
    order: 2;
  }

  .split--reverse .split__media {
    order: 1;
  }
}

.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: min(70vh, 560px);
  object-fit: cover;
}

.decor-bar {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--pink-accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(29, 53, 131, 0.1);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--green-deep);
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.service-block {
  margin-bottom: 2.5rem;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block h3 {
  color: var(--green);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.service-block .service-row {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 800px) {
  .service-block .service-row {
    grid-template-columns: 1fr 1.1fr;
  }
}

.service-block img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  margin-bottom: 1.5rem;
}

.values-list strong {
  display: block;
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.values-list p {
  margin: 0;
}

.procedure-cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .procedure-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.procedure-cols ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
  font-family: var(--font-serif);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 53, 131, 0.12);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(29, 53, 131, 0.25);
  border-radius: 8px;
  font: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  font-family: var(--font-sans);
}

.btn:hover {
  filter: brightness(1.06);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.alert--ok {
  background: rgba(39, 208, 69, 0.15);
  color: var(--green-deep);
  border: 1px solid rgba(39, 208, 69, 0.4);
}

.alert--err {
  background: rgba(180, 40, 40, 0.1);
  color: #8b1e1e;
  border: 1px solid rgba(180, 40, 40, 0.25);
}

/* Contact page — form card (Send a message) */
.contact-card--form {
  position: relative;
  border: 1px solid rgba(29, 53, 131, 0.18);
  padding: 2rem 1.75rem;
}

.contact-form__title {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--welcome-navy);
  margin: 0 0 1.35rem;
}

.contact-page .form-group label {
  color: var(--welcome-navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  background: var(--white);
  border: 1px solid rgba(29, 53, 131, 0.22);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
}

.contact-page .form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn--contact {
  margin-top: 0.25rem;
  border-radius: 12px;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: linear-gradient(115deg, #3fe068 0%, #27d045 45%, #1a9e32 100%);
  box-shadow: 0 4px 14px rgba(39, 208, 69, 0.25);
}

.btn--contact:hover {
  filter: brightness(1.05);
}

.btn--contact:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  filter: none;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--silver);
  padding: 2.5rem var(--section-padding-x) 1.5rem;
  margin-top: 3rem;
}

.site-footer__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.site-footer__name {
  color: var(--green);
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--green-bright);
  font-family: ui-monospace, monospace;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green-bright);
}

.site-footer__copy {
  text-align: center;
  font-size: 0.85rem;
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--layout-max);
  margin-left: auto;
  margin-right: auto;
}

.geo-sidebar {
  position: relative;
  min-height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #e6eef3 0%, #c6d694 45%, #d9b595 100%);
}

.geo-sidebar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 40%;
  background: #f9d4d7;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.split--vm .split__media .geo-sidebar {
  min-height: 280px;
}

.decor-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy-text);
  opacity: 0.9;
  top: 1rem;
  right: 1rem;
}

/* —— Home: Welcome (before About) —— */
.home-welcome {
  background: var(--welcome-bg);
  text-align: left;
}

.home-welcome__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding-left: 0.25rem;
}

.home-welcome__accent {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green-bright) 35%,
    rgba(253, 251, 247, 0) 100%
  );
}

.home-welcome__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--welcome-navy);
}

.home-welcome__lead {
  margin: 0 0 1.5rem;
  max-width: min(65rem, 100%);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--welcome-navy);
}

.home-welcome__cta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  border-radius: 14px;
  background: linear-gradient(115deg, #3fe068 0%, #27d045 45%, #1a9e32 100%);
  box-shadow: 0 4px 14px rgba(39, 208, 69, 0.25);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.home-welcome__cta:hover {
  color: var(--white);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.home-welcome__cta:focus-visible {
  outline: 2px solid var(--welcome-navy);
  outline-offset: 3px;
}

/* —— Home page: About / Delivery / Speaking (profile slides) —— */
.home-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.home-bisect {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .home-bisect {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.home-bisect__text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.home-about__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0;
  min-width: 0;
}

/* Image carousels: About (square) + Delivery (portrait) */
.about-carousel,
.delivery-carousel {
  width: 100%;
  max-width: min(400px, 100%);
  margin: 0 auto;
}

.about-carousel__viewport,
.delivery-carousel__viewport {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  border: none;
}

.about-carousel__viewport {
  aspect-ratio: 1 / 1;
}

.delivery-carousel__viewport {
  aspect-ratio: 3 / 4;
  max-height: min(520px, 70vh);
}

.about-carousel__slides,
.delivery-carousel__slides {
  position: absolute;
  inset: 0;
}

.about-carousel__slide,
.delivery-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  border: 0;
  outline: none;
  box-shadow: none;
}

.about-carousel__slide.is-active,
.delivery-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.about-carousel__toolbar,
.delivery-carousel__toolbar,
.testimonials-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.about-carousel__arrow,
.delivery-carousel__arrow,
.testimonials-carousel__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(29, 53, 131, 0.2);
  background: var(--white);
  color: var(--navy-text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.about-carousel__arrow:hover,
.about-carousel__arrow:focus-visible,
.delivery-carousel__arrow:hover,
.delivery-carousel__arrow:focus-visible,
.testimonials-carousel__arrow:hover,
.testimonials-carousel__arrow:focus-visible {
  background: rgba(39, 208, 69, 0.12);
  border-color: rgba(39, 208, 69, 0.45);
  color: var(--green-deep);
  outline: none;
}

.about-carousel__dots,
.delivery-carousel__dots,
.testimonials-carousel__dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.about-carousel__dot,
.delivery-carousel__dot,
.testimonials-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(29, 53, 131, 0.35);
  background: rgba(29, 53, 131, 0.12);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.about-carousel__dot[aria-selected="true"],
.delivery-carousel__dot[aria-selected="true"],
.testimonials-carousel__dot[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green-deep);
  transform: scale(1.2);
}

.split__media--carousel {
  min-width: 0;
}

.split__media--carousel .about-carousel,
.split__media--carousel .delivery-carousel {
  max-width: 100%;
}

.home-delivery__carousel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .home-delivery__carousel {
    margin-right: 0;
    margin-left: auto;
  }
}

/* Home — testimonials block (standalone section) */
.home-testimonials-section .testimonials-carousel {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.testimonials-carousel {
  max-width: 100%;
}

.testimonials-carousel__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-text);
  margin: 0 0 1.25rem;
}

.testimonials-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.testimonials-carousel__slides {
  position: relative;
  min-height: 15rem;
}

@media (min-width: 700px) {
  .testimonials-carousel__slides {
    min-height: 11rem;
  }
}

.testimonials-carousel__slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--welcome-bg);
  border: 1px solid rgba(29, 53, 131, 0.12);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.testimonials-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.testimonials-carousel__quote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--green);
}

.testimonials-carousel__quote p {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy-text);
}

.testimonials-carousel__quote p:last-child {
  margin-bottom: 0;
}

.testimonials-carousel__cite {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--green-deep);
}

.home-section__more {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-weight: 600;
}

.home-section__more a {
  text-decoration: none;
  color: var(--green-deep);
}

.home-section__more a:hover {
  color: var(--green);
  text-decoration: underline;
}

/* Delivery procedure block */
.home-delivery {
  position: relative;
  border-left: 4px solid #f4c2c2;
  padding-left: 1.5rem;
}

.home-delivery__accent {
  position: absolute;
  top: 0;
  right: 1.25rem;
  width: 56px;
  height: 10px;
  background: #f4c2c2;
  border-radius: 2px;
}

.home-delivery__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .home-delivery__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    align-items: stretch;
  }
}

.home-delivery__columns {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .home-delivery__columns {
    grid-template-columns: 1fr 1fr;
  }
}

.home-delivery__intro {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  color: var(--navy-text);
}

.home-delivery__list {
  margin: 0;
  padding-left: 1.2rem;
  font-family: var(--font-serif);
  color: var(--navy-text);
}

.home-delivery__list li {
  margin-bottom: 0.5rem;
}

.home-delivery__aside {
  position: relative;
  align-self: stretch;
  min-height: 280px;
}

.home-delivery__arcs {
  position: absolute;
  bottom: -8px;
  right: -8px;
  z-index: 1;
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.home-delivery__arc {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}

.home-delivery__arc--pink {
  inset: 0;
  border-width: 0;
  background: radial-gradient(circle at 70% 70%, #f4c2c2 0%, #f4c2c2 35%, transparent 36%);
  opacity: 0.85;
}

.home-delivery__arc--blue {
  inset: 24px;
  border-width: 18px;
  border-color: #b8d4e8;
  background: transparent;
}

.home-delivery__arc-dot {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-text);
  z-index: 1;
}

/* Speaking impact block */
.home-speaking__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .home-speaking__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
  }
}

.home-speaking__text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.home-speaking__visual {
  position: relative;
  min-height: 200px;
  padding-top: 2rem;
}

@media (min-width: 900px) {
  .home-speaking__visual {
    padding-top: 0;
  }
}

.home-speaking__decor--tr {
  position: absolute;
  top: 0;
  right: 0;
  width: min(55%, 220px);
  height: min(55vw, 220px);
  max-height: 200px;
  z-index: 1;
  pointer-events: none;
}

.home-speaking__arc--pink {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f7d1d5;
  opacity: 0.92;
}

.home-speaking__arc--lime {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.95) 0,
    rgba(255, 255, 255, 0.95) 2px,
    #c6d694 2px,
    #c6d694 8px
  );
  opacity: 0.95;
}

.home-speaking__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 380px;
}

.home-speaking__decor--bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 140px;
  z-index: 1;
  pointer-events: none;
}

.home-speaking__corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d4d9a1;
  border-radius: 0 100% 0 0;
  opacity: 0.95;
}

.home-speaking__corner-dot {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-text);
  z-index: 2;
}


/* Services page refinements from profile content */
.service-block--numbered h3 {
  color: #c51f1f;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.9rem;
}

.success-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 53, 131, 0.2);
  background: var(--white);
}

.success-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.success-table th,
.success-table td {
  border: 1px solid rgba(29, 53, 131, 0.25);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
  font-family: var(--font-serif);
  color: var(--navy-text);
}

.success-table th {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  background: rgba(198, 214, 148, 0.35);
}

.success-table td:first-child,
.success-table th:first-child {
  width: 56px;
  text-align: center;
}

/* Projects page — S/N + Country centered; description left; no wrap */
.success-table.success-table--projects {
  width: max-content;
  min-width: max(100%, 560px);
  max-width: none;
  table-layout: auto;
}

.success-table.success-table--projects col.projects-table__sn {
  width: 3.25rem;
}

.success-table.success-table--projects col.projects-table__country {
  width: 7.5rem;
}

.success-table.success-table--projects th,
.success-table.success-table--projects td {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  vertical-align: top;
}

.success-table.success-table--projects td:first-child,
.success-table.success-table--projects th:first-child {
  width: 3.25rem;
  text-align: center;
}

.success-table.success-table--projects td:nth-child(2),
.success-table.success-table--projects th:nth-child(2) {
  text-align: left;
  min-width: max-content;
}

.success-table.success-table--projects td:nth-child(3),
.success-table.success-table--projects th:nth-child(3) {
  text-align: center;
}
