@import "./destinations.css";

/* ── Hero showcase — cinematic full-viewport slideshow ─────── */

@keyframes hero-kb-zoom-in {
  0% {
    transform: scale(1.02) translate3d(0, 0.6%, 0);
  }
  100% {
    transform: scale(1.18) translate3d(0, -0.6%, 0);
  }
}

@keyframes hero-kb-zoom-out {
  0% {
    transform: scale(1.18) translate3d(0, -0.4%, 0);
  }
  100% {
    transform: scale(1.04) translate3d(0, 0.5%, 0);
  }
}

@keyframes hero-kb-pan-left {
  0% {
    transform: scale(1.12) translate3d(2.4%, 0.65%, 0);
  }
  100% {
    transform: scale(1.12) translate3d(-2.4%, -0.65%, 0);
  }
}

@keyframes hero-kb-pan-right {
  0% {
    transform: scale(1.12) translate3d(-2.4%, 0.65%, 0);
  }
  100% {
    transform: scale(1.12) translate3d(2.4%, -0.65%, 0);
  }
}

@keyframes hero-kb-drift-up {
  0% {
    transform: scale(1.06) translate3d(0, 2%, 0);
  }
  100% {
    transform: scale(1.16) translate3d(0, -2%, 0);
  }
}

@keyframes hero-overlay-rise {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.78;
  }
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(2.5rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-text-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-2.5rem) scale(0.95);
  }
}

@keyframes hero-kb-mobile-drift {
  0% {
    transform: scale(1) translate3d(0, 0.2%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, -0.2%, 0);
  }
}

@keyframes hero-particle-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.12;
  }
  50% {
    transform: translateY(-1.75rem);
    opacity: 0.3;
  }
}

.hero-showcase {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  color: var(--color-white);
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
  isolation: isolate;
}

.hero-showcase__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  z-index: 0;
  transition:
    opacity 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.hero-showcase__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-showcase__slide.is-leaving {
  opacity: 0;
  transform: scale(1.04);
  z-index: 1;
}

.hero-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  min-height: 115%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
  will-change: transform;
  transform: scale(1.06);
  transform-origin: center center;
}

.hero-showcase__slide.is-active[data-motion="zoom-in"] .hero-showcase__img {
  animation: hero-kb-zoom-in var(--ken-burns-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-showcase__slide.is-active[data-motion="zoom-out"] .hero-showcase__img {
  animation: hero-kb-zoom-out var(--ken-burns-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-showcase__slide.is-active[data-motion="pan-left"] .hero-showcase__img {
  animation: hero-kb-pan-left var(--ken-burns-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-showcase__slide.is-active[data-motion="pan-right"] .hero-showcase__img {
  animation: hero-kb-pan-right var(--ken-burns-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-showcase__slide.is-active[data-motion="drift-up"] .hero-showcase__img {
  animation: hero-kb-drift-up var(--ken-burns-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-showcase__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.hero-showcase__overlay-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    168deg,
    rgba(50, 153, 90, 0.12) 0%,
    rgba(38, 136, 72, 0.2) 42%,
    rgba(26, 92, 52, 0.28) 100%
  );
  mix-blend-mode: soft-light;
}

.hero-showcase__overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 86% at 50% 44%,
    rgba(50, 153, 90, 0.04) 8%,
    rgba(38, 136, 72, 0.16) 52%,
    rgba(15, 61, 34, 0.46) 100%
  );
}

.hero-showcase__overlay-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(15, 61, 34, 0.48) 0%,
      rgba(26, 92, 52, 0.24) 26%,
      rgba(38, 136, 72, 0.07) 52%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(15, 61, 34, 0.32) 0%,
      rgba(38, 136, 72, 0.07) 22%,
      transparent 42%
    ),
    radial-gradient(
      ellipse 54% 42% at 50% 42%,
      rgba(15, 61, 34, 0.32) 0%,
      rgba(38, 136, 72, 0.1) 50%,
      transparent 78%
    );
}

.hero-showcase__overlay-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 38% at 50% 38%,
      rgba(50, 153, 90, 0.14) 0%,
      rgba(38, 136, 72, 0.05) 48%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 38% 30% at 50% 42%,
      rgba(201, 169, 98, 0.1) 0%,
      transparent 72%
    );
  mix-blend-mode: screen;
}

.hero-showcase__overlay-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* Fixed film layer — Haiddy-style gradient + particles (always on, no cut) */
.hero-showcase__film {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-showcase__film-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(38, 136, 72, 0.62) 0%,
    rgba(30, 109, 58, 0.48) 25%,
    rgba(15, 61, 34, 0.42) 50%,
    rgba(15, 61, 34, 0.58) 75%,
    rgba(201, 169, 98, 0.45) 100%
  );
}

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

.hero-showcase__particle {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-gold-light);
  animation: hero-particle-float calc(6s + var(--i, 0) * 1.5s) ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.5s);
}

.hero-showcase__particle:nth-child(1) { top: 18%; left: 14%; }
.hero-showcase__particle:nth-child(2) { top: 34%; left: 76%; }
.hero-showcase__particle:nth-child(3) { top: 62%; left: 22%; }
.hero-showcase__particle:nth-child(4) { top: 72%; left: 64%; }
.hero-showcase__particle:nth-child(5) { top: 44%; left: 46%; }

.hero-showcase__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(5.5rem, 13vh, 7rem) clamp(1.5rem, 5vw, 3rem) clamp(5.5rem, 12vh, 7rem);
  text-align: center;
}

.hero-showcase__nav {
  position: absolute;
  bottom: clamp(1.75rem, 4.5vh, 2.75rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
  z-index: 5;
}

.hero-showcase--text-bottom .hero-showcase__content {
  justify-content: flex-end;
  padding-bottom: clamp(6.75rem, 14vh, 8.5rem);
}

.hero-showcase__panels {
  position: relative;
  width: min(100%, 52rem);
  min-height: clamp(13rem, 32vh, 18rem);
}

.hero-showcase:not(.hero-showcase--text-bottom) .hero-showcase__panels {
  min-height: clamp(12rem, 28vh, 16rem);
}

.hero-showcase__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.5vh, 1.65rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-showcase__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-showcase__panel.is-leaving {
  animation: hero-text-out 0.62s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-showcase__copy,
.hero-showcase__cta {
  opacity: 0;
}

.hero-showcase__panel.is-active:not(.is-leaving) .hero-showcase__copy {
  animation: hero-text-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-showcase__panel.is-active:not(.is-leaving) .hero-showcase__cta {
  animation: hero-text-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

.hero-showcase__copy {
  position: relative;
  width: min(100%, 46rem);
  padding: clamp(0.5rem, 1.5vw, 0.85rem) clamp(1rem, 3vw, 1.75rem);
}

.hero-showcase__signature {
  margin: 0 0 0.55rem;
  font-family: var(--font-signature);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.08;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

.hero-showcase--text-bottom .hero-showcase__signature {
  color: #f5ecd4;
}

.hero-showcase__signature::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0.7rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.85) 50%,
    transparent
  );
}

.hero-showcase__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-showcase__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.55vw, 1.125rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

.hero-showcase__cta {
  flex-shrink: 0;
  min-height: 2.65rem;
  padding: 0.65rem 1.75rem;
  margin: 0;
  border-radius: 2px;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.12em;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-showcase__cta::before {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
}

.hero-showcase__cta::after {
  display: none;
}

.hero-showcase__cta:hover,
.hero-showcase__cta:focus-visible {
  color: var(--color-brand-dark);
  border-color: rgba(255, 255, 255, 0.98);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hero-showcase--text-bottom .hero-showcase__cta {
  margin-bottom: 0.15rem;
}

.hero-showcase__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: min(14rem, 52vw);
}

.hero-showcase__counter {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

.hero-showcase__track {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-showcase__fill {
  display: block;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-brand-light) 0%,
    var(--color-gold-light) 100%
  );
  transition: width 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-showcase__dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-showcase__dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.hero-showcase__dot.is-active {
  background: var(--color-gold-light);
  transform: scale(1.45);
  box-shadow: 0 0 10px rgba(201, 169, 98, 0.55);
}

.hero-showcase__dot:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.hero-showcase__arrow {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.hero-showcase__arrow:hover,
.hero-showcase__arrow:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  transform: scale(1.08);
  outline: none;
}

@media (max-width: 768px) {
  .hero-showcase__content {
    padding-top: 5.5rem;
    padding-inline: 1.25rem;
    padding-bottom: clamp(5rem, 12vh, 6.5rem);
  }

  .hero-showcase--text-bottom .hero-showcase__content {
    padding-bottom: clamp(6.25rem, 13vh, 7.5rem);
  }

  .hero-showcase__img {
    height: 100%;
    min-height: 100%;
    transform: scale(1);
    object-position: var(--hero-focus-mobile, var(--hero-focus, center center));
  }

  .hero-showcase__slide.is-active[data-motion] .hero-showcase__img {
    animation: hero-kb-mobile-drift var(--ken-burns-duration, 9s) cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }

  .hero-showcase__particle {
    display: none;
  }

  .hero-showcase__slide {
    transform: scale(1.02);
  }

  .hero-showcase__slide.is-active {
    transform: scale(1);
  }

  .hero-showcase__slide.is-leaving {
    transform: scale(1.01);
  }

  .hero-showcase__panels {
    width: 100%;
    min-height: 11rem;
  }

  .hero-showcase__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-showcase__nav {
    gap: 0.65rem;
  }

  .hero-showcase__rail {
    min-width: min(11rem, 58vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase__slide,
  .hero-showcase__panel,
  .hero-showcase__img,
  .hero-showcase__overlay,
  .hero-showcase__overlay-tint,
  .hero-showcase__overlay-vignette,
  .hero-showcase__overlay-scrim,
  .hero-showcase__overlay-glow,
  .hero-showcase__copy,
  .hero-showcase__cta {
    transition: none;
    transform: none;
    animation: none;
  }

  .hero-showcase__slide.is-active .hero-showcase__overlay {
    opacity: 1;
  }

  .hero-showcase__panel.is-leaving {
    animation: none;
    opacity: 0;
  }

  .hero-showcase__panel.is-active .hero-showcase__copy,
  .hero-showcase__panel.is-active .hero-showcase__cta {
    opacity: 1;
  }
}

/* Hero CTA variants (used on inner pages) */
.btn--hero-gold,
.btn--hero-green,
.btn--hero-cream,
.btn--hero-forest {
  min-height: 2.65rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 4px 16px rgba(10, 10, 10, 0.22);
}

.btn--hero-gold::before,
.btn--hero-green::before,
.btn--hero-cream::before,
.btn--hero-forest::before {
  display: block;
}

.btn--hero-gold {
  color: var(--color-gold-light);
  border-color: rgba(201, 169, 98, 0.72);
  background: rgba(10, 10, 10, 0.28);
}

.btn--hero-gold::before {
  background: linear-gradient(
    165deg,
    var(--color-gold-light) 0%,
    var(--color-gold) 50%,
    var(--color-gold-dark) 100%
  );
}

.btn--hero-green {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(10, 10, 10, 0.24);
}

.btn--hero-green::before {
  background: linear-gradient(
    165deg,
    var(--color-brand-light) 0%,
    var(--color-brand) 48%,
    var(--color-brand-dark) 100%
  );
}

.btn--hero-cream {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.btn--hero-cream::before {
  background: linear-gradient(145deg, #fffdf8, var(--color-cream));
}

.btn--hero-forest {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(10, 10, 10, 0.32);
}

.btn--hero-forest::before {
  background: linear-gradient(165deg, #1a5c34 0%, #0f3d22 52%, var(--color-brand-dark) 100%);
}

.btn--hero-gold:hover,
.btn--hero-green:hover,
.btn--hero-cream:hover,
.btn--hero-forest:hover,
.btn--hero-gold:focus-visible,
.btn--hero-green:focus-visible,
.btn--hero-cream:focus-visible,
.btn--hero-forest:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(10, 10, 10, 0.32),
    0 3px 8px rgba(0, 0, 0, 0.14);
}

.btn--hero-gold:hover,
.btn--hero-gold:focus-visible {
  color: var(--color-black);
}

.btn--hero-green:hover,
.btn--hero-green:focus-visible,
.btn--hero-forest:hover,
.btn--hero-forest:focus-visible {
  color: var(--color-white);
}

.btn--hero-cream:hover,
.btn--hero-cream:focus-visible {
  color: var(--color-brand-dark);
}

/* ── About ────────────────────────────────────────────────── */

.home-about {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-cream);
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.home-about__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(38, 136, 72, 0.1);
}

.home-about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-about__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-about__media-overlay--gold {
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.35));
  opacity: 0.45;
}

.home-about__media-overlay--green {
  background: linear-gradient(188deg, transparent 40%, rgba(38, 136, 72, 0.35));
  opacity: 0.5;
}

.home-about__script {
  display: block;
  font-family: var(--font-signature);
  font-size: 1.35rem;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.home-about__text {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.home-about__stat {
  padding: 0.65rem 0.75rem;
  border: 1px dashed rgba(201, 169, 98, 0.32);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.55);
}

.home-about__stat dt {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.15rem;
}

.home-about__stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-black);
}

/* ── Destinations + Itineraries sections ──────────────────── */

#home-destinations,
#home-itineraries {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

#home-destinations {
  background: var(--color-surface);
}

#home-itineraries {
  background: var(--color-cream);
}

/* ── Experiences ──────────────────────────────────────────── */

.home-experiences {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-surface);
}

.home-experiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  gap: 0.875rem;
}

.experience-card {
  padding: 1rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 8px 22px rgba(38, 136, 72, 0.05);
}

.experience-card__icon {
  color: var(--color-brand);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.experience-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
  color: var(--color-black);
}

.experience-card__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.experience-card__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-brand-dark);
}

.experience-card__link:hover {
  color: var(--color-brand);
}

/* ── Credentials ────────────────────────────────────────── */

.home-credentials {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-cream);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  gap: 0.75rem;
  margin: 0;
}

.credentials-grid__item {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-soft);
  background: var(--color-white);
  border: 1px dashed rgba(201, 169, 98, 0.28);
}

.credentials-grid__item dt {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.2rem;
}

.credentials-grid__item dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
}

.credentials-grid__item a {
  color: var(--color-brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ── Testimonials ─────────────────────────────────────────── */

.home-testimonials {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.125rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 10px 28px rgba(38, 136, 72, 0.06);
}

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.testimonial-card__quote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--color-ink);
}

.testimonial-card__author {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-black);
}

.testimonial-card__meta {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

/* ── Contact CTA ──────────────────────────────────────────── */

.home-contact {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background:
    linear-gradient(135deg, rgba(38, 136, 72, 0.92), rgba(30, 109, 58, 0.96)),
    var(--color-brand);
  color: var(--color-white);
}

.home-contact__inner {
  text-align: center;
  max-width: 40rem;
}

.home-contact__script {
  display: block;
  font-family: var(--font-signature);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.home-contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 0.65rem;
}

.home-contact__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.home-contact__meta {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .home-about__grid {
    grid-template-columns: 1fr;
  }

  .home-about__stats {
    grid-template-columns: 1fr;
  }
}
