.home-page {
  --home-shadow-soft: 0 10px 34px rgba(26, 15, 31, 0.08);
  --home-shadow-image: 0 22px 56px rgba(26, 15, 31, 0.14);
  --home-border: rgba(58, 31, 69, 0.12);
  --home-border-dark: rgba(232, 184, 74, 0.26);
  --home-text-soft: rgba(26, 15, 31, 0.76);
}

.home-page .site-header {
  border-bottom: 1px solid rgba(58, 31, 69, 0.08);
  box-shadow: 0 8px 28px rgba(26, 15, 31, 0.07);
}

.home-page .header-inner {
  min-height: 82px;
  padding: 14px 60px;
  gap: 26px;
}

.home-page .brand img { width: 168px; }

.home-page .main-nav a {
  padding: 13px 20px;
  letter-spacing: 2px;
}

.home-page .main-nav a::after { left: 20px; right: 20px; }

.home-page .header-cta,
.home-page .button {
  min-height: 46px;
  padding: 13px 25px;
  box-shadow: 0 8px 24px rgba(26, 15, 31, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-page .header-cta:hover,
.home-page .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 15, 31, 0.16);
}

.home-page .hero {
  padding: 108px 60px 92px;
  background: radial-gradient(circle at 50% -18%, rgba(232, 184, 74, 0.12), transparent 42%), linear-gradient(135deg, #1a0f1f 0%, #3a1f45 100%);
}

.home-page .narrow-stack { width: min(100%, 1040px); gap: 18px; }

.home-page .site-motto {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.home-page .hero h1 {
  max-width: 940px;
  font-size: clamp(42px, 4.1vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.028em;
}

.home-page .hero .lead {
  max-width: 840px;
  color: rgba(241, 233, 221, 0.9);
  font-size: 18px;
  line-height: 1.65;
}

.home-page .hero-actions { gap: 12px; margin-top: 6px; }
.home-page .outline-button { border-color: rgba(232, 184, 74, 0.7); background: rgba(255, 255, 255, 0.025); }
.home-page .outline-button:hover { border-color: var(--gold); background: rgba(232, 184, 74, 0.08); }

.home-page .section,
.home-page .benefits-section,
.home-page .need-section,
.home-page .upcoming-trips-section,
.home-page .cta-band,
.home-page .closing-section { scroll-margin-top: 86px; }

.home-page .section { padding: 82px 60px; }
.home-page .benefits-section { padding: 84px 60px 88px; background: linear-gradient(180deg, var(--cream) 0%, #fffdf9 100%); }
.home-page .need-section { padding: 86px 60px 92px; background: radial-gradient(circle at 82% 0%, rgba(232, 184, 74, 0.09), transparent 32%), linear-gradient(180deg, var(--plum) 0%, #311a3b 100%); }

.home-page .benefits-layout,
.home-page .need-layout {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.home-page .benefits-layout > .section-heading,
.home-page .need-layout > .section-heading { width: 100%; margin: 0; text-align: center; }

.home-page .benefits-layout > .section-heading h2,
.home-page .need-layout > .section-heading h2 { margin: 0 auto 12px; max-width: none; white-space: nowrap; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -0.02em; }
.home-page .need-section .section-heading h2 { color: #fff; }
.home-page .benefits-layout > .section-heading p { max-width: none; margin: 0 auto; text-align: center; color: var(--home-text-soft); font-size: 17px; line-height: 1.6; }

.home-page .carousel-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}
.home-page .carousel-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 14px;
  width: clamp(34px, 5vw, 64px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0), rgba(255, 253, 249, 0.96));
}
.home-page .need-section .carousel-stage::after {
  background: linear-gradient(90deg, rgba(49, 26, 59, 0), rgba(49, 26, 59, 0.97));
}
.home-page .carousel-shell {
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}
.home-page .carousel-shell::-webkit-scrollbar { display: none; }
.home-page .carousel-shell.is-dragging { cursor: grabbing; user-select: none; }
.home-page .carousel-track {
  display: flex !important;
  width: max-content !important;
  max-width: none !important;
  grid-template-columns: none !important;
  gap: 18px !important;
  margin: 0 !important;
}

.home-page .benefit-carousel { list-style: none; padding: 0 72px 0 0; }
.home-page .benefit-carousel li {
  position: relative;
  flex: 0 0 clamp(250px, 20vw, 275px);
  min-height: 320px;
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(58, 31, 69, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--home-shadow-soft);
  color: rgba(26, 15, 31, 0.92);
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  line-height: 1.35;
}
.home-page .benefit-carousel li::before {
  content: none;
  display: none;
}

.home-page .need-carousel { padding-right: 72px; }
.home-page .need-carousel .need-card {
  flex: 0 0 clamp(290px, 25vw, 330px);
  min-height: 320px;
  padding: 28px 28px 30px;
  border: 1px solid var(--home-border-dark);
  border-radius: 20px;
  background: rgba(26, 15, 31, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.home-page .need-card h3 { margin-bottom: 14px; font-size: 13px; font-weight: 700; line-height: 1.35; letter-spacing: 0.085em; }
.home-page .need-card p { color: rgba(241, 233, 221, 0.9); font-size: 16px; line-height: 1.6; }
.home-page .need-card:hover { transform: translateY(-3px); border-color: rgba(232, 184, 74, 0.42); background: rgba(26, 15, 31, 0.28); box-shadow: 0 14px 30px rgba(26, 15, 31, 0.16); }

.home-page .split { gap: clamp(42px, 5vw, 72px); }
.home-page .copy-stack { gap: 15px; }
.home-page .copy-stack h2 { max-width: 620px; font-size: clamp(30px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.02em; }
.home-page .copy-stack p:not(.kicker) { max-width: 610px; color: var(--home-text-soft); line-height: 1.7; }
.home-page .image-wrap { overflow: hidden; border-radius: 24px; box-shadow: var(--home-shadow-image); }
.home-page .image-wrap img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; transform: none; transition: filter 220ms ease; }
.home-page .image-wrap img:hover { transform: none; filter: saturate(1.03) contrast(1.015); }

.home-page .experiences-head { padding: 86px 60px 14px; }
.home-page .experiences-head .narrow-stack { gap: 12px; }
.home-page .experiences-head h2 { max-width: 780px; font-size: 38px; letter-spacing: -0.02em; }
.home-page .cards-section { padding: 26px 60px 86px; }
.home-page .cards { gap: 32px; }
.home-page .experience { width: 100%; max-width: 390px; min-height: 100%; gap: 11px; padding: 26px 18px 10px; border-top: 1px solid var(--home-border); transition: transform 180ms ease, border-color 180ms ease; }
.home-page .experience:hover { transform: translateY(-3px); border-color: rgba(255, 107, 53, 0.42); }
.home-page .experience h3 { font-size: 23px; line-height: 1.15; }
.home-page .experience p { max-width: 340px; color: var(--home-text-soft); font-size: 15px; line-height: 1.62; }

.home-page .upcoming-trips-section {
  padding: 88px 60px 96px;
  background: #fff;
  border-top: 1px solid rgba(58, 31, 69, 0.08);
}
.home-page .upcoming-trips-inner { width: min(100%, 1320px); margin: 0 auto; }
.home-page .upcoming-trips-section .section-heading { width: min(100%, 720px); margin: 0 0 34px; text-align: left; }
.home-page .upcoming-trips-section .section-heading h2 { margin: 4px 0 10px; font-size: clamp(32px, 3.4vw, 44px); }
.home-page .trip-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.home-page .trip-card { overflow: hidden; border: 1px solid rgba(58, 31, 69, 0.1); border-radius: 22px; background: #fff; box-shadow: var(--home-shadow-soft); transition: transform 180ms ease, box-shadow 180ms ease; }
.home-page .trip-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(26, 15, 31, 0.13); }
.home-page .trip-card > a { display: block; height: 100%; }
.home-page .trip-card-media { min-height: 230px; display: flex; align-items: flex-end; padding: 22px; background-position: center; background-size: cover; }
.home-page .trip-card-media span { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.home-page .trip-card-media--sunset { background-image: linear-gradient(180deg, transparent 30%, rgba(26,15,31,.7)), url("assets/retreats/ischia.jpg"); }
.home-page .trip-card-media--puglia { background-image: linear-gradient(180deg, rgba(232,184,74,.06), rgba(26,15,31,.66)), url("assets/retreats/puglia-monopoli.jpg"); }
.home-page .trip-card-media--forest { background-image: linear-gradient(180deg, transparent 25%, rgba(26,15,31,.72)), url("assets/retreats/manerba-del-garda-brescia.jpg"); }
.home-page .trip-card-media--nicaragua { background-image: linear-gradient(180deg, rgba(76,43,255,.05), rgba(26,15,31,.74)), url("assets/retreats/nicaragua.jpg"); }
.home-page .trip-card-body { padding: 22px 22px 24px; }
.home-page .trip-meta { margin: 0 0 8px; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.home-page .trip-card h3 { margin: 0 0 10px; font-size: 25px; }
.home-page .trip-card-body > p:not(.trip-meta) { margin: 0 0 18px; color: var(--home-text-soft); font-size: 15px; line-height: 1.58; }
.home-page .trip-link { color: var(--plum); font-size: 14px; font-weight: 700; }

.home-page .cta-band { padding: 88px 60px; border-top: 1px solid rgba(232, 184, 74, 0.12); background: radial-gradient(circle at 50% 0%, rgba(232, 184, 74, 0.08), transparent 38%), var(--ink); }
.home-page .cta-band h2 { max-width: 760px; font-size: 37px; line-height: 1.1; letter-spacing: -0.02em; }
.home-page .cta-band p { max-width: 760px; color: rgba(241, 233, 221, 0.86); line-height: 1.65; }
.home-page .cta-band .narrow-stack { gap: 20px; }
.home-page .gold-button { box-shadow: 0 10px 28px rgba(232, 184, 74, 0.12); }
.home-page .closing-section { padding: 76px 60px; background: linear-gradient(180deg, var(--paper) 0%, #f7efe5 100%); }
.home-page .closing-copy { width: min(100%, 1180px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; align-items: start; }
.home-page .closing-copy p { padding-left: 20px; border-left: 2px solid rgba(255, 107, 53, 0.48); color: rgba(26, 15, 31, 0.9); font-size: 19px; line-height: 1.48; }
.home-page .site-footer { padding: 70px 60px 34px; border-top: 1px solid rgba(232, 184, 74, 0.12); }
.home-page .footer-main { gap: 44px; }
.home-page .footer-brand, .home-page .footer-column { gap: 13px; }
.home-page .footer-column a, .home-page .footer-bottom a { transition: color 160ms ease, opacity 160ms ease; }
.home-page .footer-column a:hover, .home-page .footer-bottom a:hover { color: var(--gold); }
.home-page .footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(184, 169, 190, 0.13); }
.home-page a:focus-visible, .home-page button:focus-visible, .home-page .carousel-shell:focus-visible { outline: 3px solid rgba(255, 107, 53, 0.72); outline-offset: 4px; border-radius: 8px; }

@media (max-width: 1180px) {
  .home-page .benefits-layout, .home-page .need-layout { grid-template-columns: 1fr; gap: 30px; }
  .home-page .benefits-layout > .section-heading, .home-page .need-layout > .section-heading { max-width: none; }
  .home-page .trip-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .home-page .header-inner { padding-inline: 40px; }
  .home-page .hero { padding-inline: 40px; }
  .home-page .main-nav a { padding-inline: 13px; font-size: 12px; letter-spacing: 1.5px; }
  .home-page .main-nav a::after { left: 13px; right: 13px; }
  .home-page .experiences-head h2 { font-size: 32px; }
  .home-page .cta-band h2 { font-size: 30px; }
  .home-page .benefits-layout > .section-heading h2, .home-page .need-layout > .section-heading h2 { font-size: 30px; }
  .home-page .cards { gap: 24px; }
}

@media (max-width: 767px) {
  .home-page .site-header { box-shadow: 0 5px 18px rgba(26, 15, 31, 0.07); }
  .home-page .header-inner { min-height: 58px; padding: 0; }
  .home-page .brand img { width: 132px; }
  .home-page .menu-toggle { width: 46px; height: 46px; }
  .home-page .hero { padding: 70px 24px 60px; }
  .home-page .narrow-stack { gap: 14px; }
  .home-page .site-motto { font-size: 16px; }
  .home-page .hero h1 { font-size: clamp(29px, 8.5vw, 36px); line-height: 1.1; }
  .home-page .hero .lead { font-size: 16px; line-height: 1.62; }
  .home-page .hero-actions { width: 100%; align-items: center; gap: 10px; margin-top: 4px; }
  .home-page .hero-actions .button { width: min(88vw, 320px); max-width: 100%; min-height: 48px; }
  .home-page .section, .home-page .cta-band, .home-page .benefits-section, .home-page .need-section, .home-page .upcoming-trips-section, .home-page .closing-section { padding: 58px 24px; }
  .home-page .benefits-layout, .home-page .need-layout { gap: 24px; }
  .home-page .benefits-layout > .section-heading h2, .home-page .need-layout > .section-heading h2 { font-size: clamp(25px, 7vw, 34px); }
  .home-page .benefits-layout > .section-heading h2, .home-page .need-layout > .section-heading h2 { white-space: nowrap; }
  .home-page .section-heading { margin-bottom: 18px; }
  .home-page .section-heading p { font-size: 16px; line-height: 1.58; }
  .home-page .carousel-stage::after { width: 34px; }
  .home-page .benefit-carousel li { flex-basis: min(78vw, 290px); min-height: 330px; padding: 26px 24px; font-size: 20px; }
  .home-page .need-carousel .need-card { flex-basis: min(84vw, 330px); min-height: 330px; padding: 24px; }
  .home-page .split { gap: 34px; }
  .home-page .copy-stack { gap: 13px; }
  .home-page .copy-stack h2 { font-size: 27px; }
  .home-page .copy-stack p:not(.kicker) { line-height: 1.65; }
  .home-page .image-wrap, .home-page .image-wrap img { border-radius: 18px; }
  .home-page .experiences-head { padding: 60px 24px 8px; }
  .home-page .experiences-head h2 { font-size: 28px; }
  .home-page .cards-section { padding: 18px 24px 60px; }
  .home-page .cards { gap: 22px; }
  .home-page .experience { max-width: 100%; padding: 22px 8px 8px; }
  .home-page .experience h3 { font-size: 22px; }
  .home-page .trip-card-grid { grid-template-columns: 1fr; gap: 16px; }
  .home-page .trip-card-media { min-height: 210px; }
  .home-page .cta-band h2 { font-size: 27px; }
  .home-page .closing-copy { grid-template-columns: 1fr; gap: 18px; }
  .home-page .closing-copy p { padding-left: 16px; font-size: 18px; }
  .home-page .site-footer { padding: 58px 24px 30px; }
  .home-page .footer-main { gap: 30px; }
  .home-page .footer-bottom { margin-top: 34px; padding-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal,
  .home-page .button,
  .home-page .header-cta,
  .home-page .image-wrap img,
  .home-page .need-card,
  .home-page .experience,
  .home-page .trip-card { transition: none; transform: none; }
  .home-page .carousel-shell { scroll-behavior: auto; }
}
