@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #ececec;
  background: #0d0d0d;
  background-image: radial-gradient(ellipse 120% 80% at 50% -25%, rgba(172, 200, 83, 0.11), transparent 55%), radial-gradient(ellipse 70% 55% at 100% 100%, rgba(87, 128, 52, 0.09), transparent 50%), radial-gradient(ellipse 50% 40% at 0% 80%, rgba(137, 174, 71, 0.05), transparent 45%);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #acc853;
  color: #0d0d0d;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.strikeout {
  text-decoration: line-through;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.container-narrow {
  max-width: 38rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #ececec;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo:hover {
  color: #acc853;
}
.logo:hover .logo-image {
  opacity: 0.92;
}

.logo-image {
  display: block;
  height: 1.6875rem;
  width: auto;
  max-width: min(9rem, 33.75vw);
  object-fit: contain;
}

.logo-text {
  padding-left: 10px;
}

.nav {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.75rem;
  position: relative;
  overflow: visible;
}
@media (min-width: 640px) {
  .nav {
    display: flex;
  }
}
.nav a {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav a:hover {
  color: #ececec;
}
.nav a.nav-link-assessment {
  color: #acc853;
  font-weight: 600;
}
.nav a.nav-link-assessment:hover {
  color: #89ae47;
}
.nav a.nav-link-assessment:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 3px;
  border-radius: 4px;
}
.nav a.nav-link-assessment[aria-current=page] {
  color: #acc853;
  text-decoration: underline;
  text-decoration-color: rgba(172, 200, 83, 0.45);
  text-underline-offset: 0.2em;
}

/* Desktop: flyout under trigger — keeps the bar height/margins stable */
.nav-dropdown {
  position: relative;
  flex-shrink: 0;
}

.nav-dropdown-summary {
  list-style: none;
  cursor: pointer;
  color: #9b9b9b;
  font-size: 0.9375rem;
  font-weight: 500;
  user-select: none;
}
.nav-dropdown-summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown-summary:hover {
  color: #ececec;
}
.nav-dropdown-summary:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 3px;
  border-radius: 4px;
}

details.nav-dropdown[open] > .nav-dropdown-summary {
  color: #ececec;
}

details.nav-dropdown[open] {
  z-index: 60;
}

.nav-dropdown-links {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 13.5rem;
  max-width: min(20rem, 100vw - 2.5rem);
  padding: 0.4rem 0;
  margin: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}
.nav-dropdown-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: normal;
  border-radius: 6px;
}
.nav-dropdown-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ececec;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-social li {
  margin: 0;
}
.nav-social .nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 1.6875rem;
  padding: 0.35rem;
  margin: -0.35rem;
  border-radius: 8px;
  text-decoration: none;
  color: #9b9b9b;
}
.nav-social .nav-social-link:hover {
  color: #acc853;
}
.nav-social .nav-social-link:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 2px;
}
.nav-social .nav-social-link svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.nav-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #1a1a1a;
  cursor: pointer;
  position: relative;
}
@media (min-width: 640px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: #ececec;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle::before {
  top: 0.9rem;
}
.nav-toggle::after {
  top: 1.35rem;
}
.nav-toggle[aria-expanded=true]::before {
  top: 1.15rem;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded=true]::after {
  top: 1.15rem;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0d0d0d;
  padding: 1rem;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: #ececec;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
}
.mobile-nav a:hover {
  background: #1a1a1a;
}
.mobile-nav a.nav-link-assessment {
  color: #acc853;
  font-weight: 600;
}
.mobile-nav a.nav-link-assessment:hover {
  color: #acc853;
  background: rgba(172, 200, 83, 0.14);
}
.mobile-nav a.nav-link-assessment:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 2px;
}
.mobile-nav a.nav-link-assessment[aria-current=page] {
  background: rgba(172, 200, 83, 0.14);
}
.mobile-nav .nav-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: unset;
  min-height: unset;
  padding: 0.75rem 0.5rem;
  margin: 0;
  color: #ececec;
}
.mobile-nav .nav-social-link:hover {
  color: #acc853;
}
.mobile-nav .nav-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav-dropdown {
  margin: 0.15rem 0;
  border-radius: 8px;
}
.mobile-nav-dropdown[open] {
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-dropdown-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ececec;
  border-radius: 8px;
}
.mobile-nav-dropdown-summary::-webkit-details-marker {
  display: none;
}
.mobile-nav-dropdown-summary:hover {
  background: #1a1a1a;
}
.mobile-nav-dropdown-summary:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 2px;
}

.mobile-nav-dropdown > a {
  padding-left: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #9b9b9b;
}
.mobile-nav-dropdown > a:hover {
  color: #ececec;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(85dvh, 44rem);
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #acc853;
  max-width: 40ch;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: min(40ch, 100%);
}

.hero-lead {
  margin: 0 0 2rem;
  color: #9b9b9b;
  max-width: 52ch;
  font-size: 1.125rem;
}

.hero-lead code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: #1a1a1a;
  color: #acc853;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-qualify-cta {
  width: 100%;
  max-width: min(36rem, 100%);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hero-qualify-divider {
  margin: 0 0 1.5rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
}

.hero-qualify-lead {
  margin: 0 auto 0.65rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ececec;
  line-height: 1.35;
  max-width: 42ch;
}

.hero-qualify-sub {
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  color: #9b9b9b;
  line-height: 1.45;
  max-width: 48ch;
}

.hero-qualify-highlight {
  color: #acc853;
  font-weight: 600;
}

.hero-qualify-button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-block: 0.85rem;
  cursor: pointer;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.button-primary {
  background: linear-gradient(165deg, #acc853 0%, #89ae47 45%, #578034 100%);
  color: #0d0d0d;
}
.button-primary:hover {
  filter: brightness(1.06);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ececec;
  background: transparent;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 2rem;
  color: #9b9b9b;
  max-width: 55ch;
}

.services-container {
  width: min(100% - 1rem, 80rem);
  margin-inline: auto;
}
.services-container > h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.services-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
}

.service-panel {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.service-panel img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-panel h3 {
  margin: 0;
  padding: 1.1rem 1.25rem 0.35rem;
  font-size: 1.0625rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.service-panel p {
  margin: 0;
  flex: 1 1 auto;
  padding: 0 1.25rem 1rem;
  color: #9b9b9b;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.service-panel button {
  align-self: flex-start;
  margin: 0 1.25rem 1.25rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  background: linear-gradient(165deg, #acc853 0%, #89ae47 45%, #578034 100%);
  color: #0d0d0d;
  transition: filter 0.15s ease;
}
.service-panel button:hover {
  filter: brightness(1.06);
}
.service-panel button.service-button {
  margin-top: 10px;
}

@media (max-width: 639px) {
  .services-row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .service-panel {
    flex: 0 0 auto;
    width: 100%;
  }
}
.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}
.card p {
  margin: 0;
  color: #9b9b9b;
  font-size: 0.9375rem;
}

.services {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services li {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.services strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ececec;
}
.services span {
  color: #9b9b9b;
  font-size: 0.9375rem;
}

.contact-links {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}
.contact-links a {
  color: #acc853;
  text-decoration: none;
}
.contact-links a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer p {
  margin: 0;
  color: #9b9b9b;
  font-size: 0.875rem;
  text-align: center;
}

@keyframes homeHeroReveal {
  from {
    opacity: 0;
    transform: translateY(0.45em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .logo-image-main,
  .hero .hero-eyebrow,
  .hero .hero-headline-line,
  .hero .hero-lead,
  .hero .hero-actions,
  .hero .hero-qualify-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero .logo-image-main {
  display: block;
  width: min(140px, 36vw);
  height: auto;
  margin: 0 auto 1.35rem;
  opacity: 0;
  /* Short beat after second headline line */
  animation: homeHeroReveal 0.86s cubic-bezier(0.22, 1, 0.36, 1) 2.72s forwards;
}

.hero .hero-eyebrow {
  opacity: 0;
  animation: homeHeroReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) 3.28s forwards;
}

.hero-eyebrow-now {
  color: #acc853;
}

.hero h1 {
  perspective: 920px;
}

.hero-headline-line {
  display: block;
  opacity: 0;
  animation: homeHeroReveal 0.86s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline-line--1 {
  animation-delay: 0.32s;
}

.hero-headline-line--2 {
  animation-delay: 1.38s;
}

.hero-headline-rotator {
  position: relative;
  transform-style: preserve-3d;
  min-height: 1.22em;
}

.hero-headline-rotator-text {
  display: inline-block;
  transform-origin: 50% 55%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero .hero-lead {
  opacity: 0;
  /* Short beat after eyebrow finishes */
  animation: homeHeroReveal 0.86s cubic-bezier(0.22, 1, 0.36, 1) 4.38s forwards;
}

.hero .hero-actions {
  opacity: 0;
  animation: homeHeroReveal 0.84s cubic-bezier(0.22, 1, 0.36, 1) 4.92s forwards;
}

.hero .hero-qualify-cta {
  opacity: 0;
  animation: homeHeroReveal 0.84s cubic-bezier(0.22, 1, 0.36, 1) 5.46s forwards;
}

.leader-quotes-section {
  overflow: hidden;
}

.leader-quotes-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #acc853;
}

/* Must beat `.section h2 { margin: … }` (higher specificity was winning). */
.leader-quotes-section .leader-quotes-heading {
  margin: 0 0 4.75rem;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 20ch;
}

.leader-quotes-stage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.leader-quotes-band {
  display: flex;
  width: 100%;
  min-width: 0;
}

.leader-quotes-band--left {
  justify-content: flex-start;
}

.leader-quotes-band--right {
  justify-content: flex-end;
}

.leader-quotes-panel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  max-width: min(42rem, 100%);
  transition: opacity 0.78s ease;
  will-change: opacity;
}

.leader-quotes-panel--dim {
  opacity: 0.04;
}

.leader-quotes-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  min-height: 0;
  width: 100%;
}

.leader-quotes-panel--top .leader-quotes-card {
  flex-direction: row;
  text-align: left;
}

.leader-quotes-panel--bottom .leader-quotes-card {
  flex-direction: row-reverse;
  text-align: right;
}

.leader-quotes-photo-cell {
  flex-shrink: 0;
}

.leader-quotes-photo-cell[hidden] {
  display: none !important;
}

.leader-quotes-lead-mark {
  flex-shrink: 0;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  line-height: 0.72;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", Times, ui-serif, serif;
  letter-spacing: -0.06em;
  color: #acc853;
  margin: 0;
  padding-right: 0.08em;
  user-select: none;
  align-self: flex-start;
  text-shadow: 0 0 32px rgba(172, 200, 83, 0.45), 0 0 12px rgba(172, 200, 83, 0.25), 0 2px 14px rgba(0, 0, 0, 0.55);
}

.leader-quotes-panel--bottom .leader-quotes-lead-mark {
  padding-right: 0;
  padding-left: 0.08em;
}

.leader-quotes-blockquote {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.leader-quotes-text {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.45;
  color: #ececec;
  font-style: italic;
}

.leader-quotes-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.35rem;
  font-size: 0.875rem;
  color: #9b9b9b;
}

.leader-quotes-panel--top .leader-quotes-meta {
  justify-content: flex-start;
}

.leader-quotes-panel--bottom .leader-quotes-meta {
  justify-content: flex-end;
}

.leader-quotes-name {
  font-weight: 600;
  color: #ececec;
}

.leader-quotes-role {
  color: #9b9b9b;
}

.leader-quotes-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.leader-quotes-photo-credit {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #9b9b9b;
}

.leader-quotes-panel--top .leader-quotes-photo-credit {
  text-align: left;
  align-self: flex-start;
}

.leader-quotes-panel--bottom .leader-quotes-photo-credit {
  text-align: right;
  align-self: flex-end;
}

.leader-quotes-photo-credit[hidden] {
  display: none !important;
}

.services-partner-prose {
  max-width: 68ch;
}

.services-partner-prose p {
  margin: 0 0 1rem;
  color: #9b9b9b;
}

.services-partner-lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ececec;
  line-height: 1.45;
}

.service-panel-book-now {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  color: #0d0d0d;
  background: linear-gradient(165deg, #acc853 0%, #89ae47 45%, #578034 100%);
  border: 1px solid transparent;
  transition: filter 0.15s ease;
}

.service-panel-book-now:hover {
  filter: brightness(1.08);
}

#services-glance .service-panel-book-now {
  display: flex;
  align-self: center;
  justify-content: center;
  width: calc(100% - 2.5rem);
  box-sizing: border-box;
  margin: 0.75rem 1.25rem 1.25rem;
}

.featured-showcase .container--80 {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.featured-showcase-intro {
  margin-bottom: 2rem;
}

.featured-carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-width: none;
  outline: none;
}

.featured-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.featured-carousel-track {
  display: flex;
  flex-direction: row;
}

.featured-carousel-slide {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  max-width: 100vw;
  min-height: min(72vw, 38rem);
  box-sizing: border-box;
}

.featured-carousel-slide-media {
  position: absolute;
  inset: 0;
  background: #111;
}

.featured-carousel-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-carousel-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.05) 35%, rgba(13, 13, 13, 0.88) 100%);
  pointer-events: none;
}

.featured-carousel-slide-copy {
  max-width: min(36rem, 100%);
  pointer-events: none;
}

.featured-carousel-slide-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  color: #fafafa;
}

.featured-carousel-slide-tagline {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #acc853;
}

.featured-carousel-slide-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(236, 236, 236, 0.92);
}

.featured-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 13, 13, 0.55);
  color: #f4f4f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.featured-carousel-btn:hover {
  background: rgba(26, 26, 26, 0.85);
  border-color: rgba(172, 200, 83, 0.45);
  color: #acc853;
}

.featured-carousel-btn:focus-visible {
  outline: 2px solid #acc853;
  outline-offset: 2px;
}

.featured-carousel-btn--prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.featured-carousel-btn--next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

.featured-carousel-btn-icon {
  display: flex;
  width: 1.35rem;
  height: 1.35rem;
}

.featured-carousel-btn-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 639px) {
  .featured-carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .featured-carousel-slide {
    min-height: min(95vw, 28rem);
  }
}
