/* =========================================================
   Luxury Unlocked — Senior Leadership Retreats
========================================================= */

.slr-page {
  --slr-accent: #C49A4C;
  --slr-accent-deep: #6E4E18;
  --slr-ink: #1C1813;
  --slr-text: #675f54;
  --slr-paper: #fbfaf7;
  --slr-paper-alt: #f4f0e8;
  --slr-line: rgba(28,24,19,.18);
  --slr-serif: "Cormorant Garamond", Georgia, serif;
  --slr-sans: "Jost", Arial, sans-serif;
  --slr-ease: cubic-bezier(.22,.61,.36,1);

  background: var(--slr-paper);
  color: var(--slr-ink);
  font-family: var(--slr-sans);
  font-weight: 300;
}

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

.slr-page .slr-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.slr-page .slr-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.slr-page .slr-paper {
  background: var(--slr-paper-alt);
}

.slr-page h1,
.slr-page h2 {
  font-family: var(--slr-serif);
  font-weight: 400;
  letter-spacing: -.03em;
}

.slr-page h2 {
  margin: 17px 0 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.slr-page h3 {
  font-weight: 400;
}

.slr-page p {
  font-weight: 300;
}

.slr-page .slr-heading-limit {
  max-width: 22ch;
}

.slr-page .slr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--slr-accent-deep);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .23em;
  line-height: 1.3;
  text-transform: uppercase;
}

.slr-page .slr-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}

.slr-page .slr-eyebrow-light {
  color: #f2dfb1;
}

.slr-page .slr-eyebrow-gold {
  color: var(--slr-accent);
}

.slr-page .slr-prose {
  color: var(--slr-text);
  font-size: 15.5px;
  line-height: 1.82;
}

.slr-page .slr-prose p {
  margin: 0 0 18px;
}

.slr-page .slr-prose p:last-child {
  margin-bottom: 0;
}


/* HERO */

.slr-page .slr-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--slr-ink);
}

.slr-page .slr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slrHeroScale 1.8s var(--slr-ease) both;
}

.slr-page .slr-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,rgba(14,12,9,.18),rgba(14,12,9,.38) 44%,rgba(14,12,9,.84)),
    linear-gradient(90deg,rgba(14,12,9,.40),transparent 70%);
}

.slr-page .slr-hero-inner {
  padding-top: 158px;
  padding-bottom: clamp(62px, 8vw, 96px);
}

.slr-page .slr-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.70);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.slr-page .slr-crumb a {
  color: inherit;
  text-decoration: none;
}

.slr-page .slr-hero h1 {
  max-width: 14ch;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.045em;
}

.slr-page .slr-hero h1 em {
  color: #f0dba9;
  font-weight: 300;
}

.slr-page .slr-hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.74;
}

.slr-page .slr-hero-actions,
.slr-page .slr-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.slr-page .slr-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .10em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .45s var(--slr-ease), border-color .45s var(--slr-ease);
}

.slr-page .slr-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f7f2e8;
  transform: translateY(102%);
  transition: transform .5s var(--slr-ease);
}

.slr-page .slr-btn span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.slr-page .slr-btn b {
  font-size: 15px;
  font-weight: 300;
  transition: transform .35s var(--slr-ease);
}

.slr-page .slr-btn-light {
  border-color: rgba(242,235,220,.5);
  color: #fff;
}

.slr-page .slr-btn-light:hover {
  color: var(--slr-ink);
  border-color: #f7f2e8;
}

.slr-page .slr-btn:hover::before {
  transform: translateY(0);
}

.slr-page .slr-btn:hover b {
  transform: translateX(4px);
}

.slr-page .slr-btn-secondary {
  border-color: rgba(242,235,220,.28);
}

@keyframes slrHeroScale {
  from { transform: scale(1.055); opacity: .86; }
  to { transform: scale(1); opacity: 1; }
}


/* OVERVIEW */

.slr-page .slr-overview-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.slr-page .slr-overview-grid h2 {
  max-width: 16ch;
}

.slr-page .slr-overview-image {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e7e1d6;
}

.slr-page .slr-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* FORMATS */

.slr-page .slr-formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--slr-line);
  border-left: 1px solid var(--slr-line);
}

.slr-page .slr-format-card {
  min-height: 225px;
  padding: 30px 28px;
  border-right: 1px solid var(--slr-line);
  border-bottom: 1px solid var(--slr-line);
  background: rgba(255,255,255,.28);
}

.slr-page .slr-size {
  color: var(--slr-accent-deep);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.slr-page .slr-format-card h3 {
  margin: 12px 0 10px;
  font-family: var(--slr-serif);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.15;
}

.slr-page .slr-format-card p {
  margin: 0;
  color: var(--slr-text);
  font-size: 14.5px;
  line-height: 1.75;
}


/* RHYTHM */

.slr-page .slr-dark {
  background: var(--slr-ink);
  color: #fff;
}

.slr-page .slr-dark-heading {
  max-width: 23ch;
  color: #fff;
}

.slr-page .slr-rhythm {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 44px;
  border-top: 1px solid rgba(242,235,220,.20);
}

.slr-page .slr-day {
  padding: 30px 26px;
  border-right: 1px solid rgba(242,235,220,.14);
}

.slr-page .slr-day:last-child {
  border-right: 0;
}

.slr-page .slr-day-label {
  color: var(--slr-accent);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.slr-page .slr-day h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-family: var(--slr-serif);
  font-size: 1.55rem;
  font-weight: 300;
}

.slr-page .slr-day p {
  margin: 0;
  color: rgba(242,235,220,.67);
  font-size: 14px;
  line-height: 1.75;
}


/* VENUES */

.slr-page .slr-venues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
  margin-top: 44px;
}

.slr-page .slr-venue-card {
  display: grid;
  grid-template-columns: 46% 54%;
  height: 365px;
  overflow: hidden;
  border: 1px solid var(--slr-line);
  background: var(--slr-paper);
}

.slr-page .slr-venue-image {
  width: 100%;
  height: 365px;
  overflow: hidden;
  background: #e7e1d6;
}

.slr-page .slr-venue-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--slr-ease);
}

.slr-page .slr-venue-card:hover .slr-venue-image img {
  transform: scale(1.04);
}

.slr-page .slr-venue-copy {
  height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 28px;
}

.slr-page .slr-venue-copy h3 {
  margin: 0 0 12px;
  font-family: var(--slr-serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.2;
}

.slr-page .slr-venue-copy p {
  max-width: 100%;
  margin: 0;
  color: var(--slr-text);
  font-size: 14.5px;
  line-height: 1.72;
}


/* Tablet */
@media (max-width: 980px) {
  .slr-page .slr-venues {
    grid-template-columns: 1fr;
  }

  .slr-page .slr-venue-card {
    height: 330px;
  }

  .slr-page .slr-venue-image,
  .slr-page .slr-venue-copy {
    height: 330px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .slr-page .slr-venue-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .slr-page .slr-venue-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slr-page .slr-venue-copy {
    height: auto;
    padding: 24px 22px 26px;
  }
}


/* DISCRETION */

.slr-page .slr-discretion {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 42px;
  border-top: 1px solid var(--slr-line);
}

.slr-page .slr-discretion article {
  padding: 28px 25px;
  border-right: 1px solid var(--slr-line);
}

.slr-page .slr-discretion article:last-child {
  border-right: 0;
}

.slr-page .slr-discretion article > span {
  color: var(--slr-accent-deep);
  font-family: var(--slr-serif);
  font-size: 1.1rem;
  font-style: italic;
}

.slr-page .slr-discretion h3 {
  margin: 12px 0 9px;
  font-family: var(--slr-serif);
  font-size: 1.45rem;
  font-weight: 300;
}

.slr-page .slr-discretion p {
  margin: 0;
  color: var(--slr-text);
  font-size: 14.5px;
  line-height: 1.72;
}


/* FAQ */

.slr-page .slr-faq-head {
  text-align: center;
}

.slr-page .slr-faq-head .slr-eyebrow {
  justify-content: center;
}

.slr-page .slr-faq {
  max-width: 840px;
  margin: 36px auto 0;
}

.slr-page .slr-faq-item {
  border-top: 1px solid var(--slr-line);
}

.slr-page .slr-faq-item:last-child {
  border-bottom: 1px solid var(--slr-line);
}

.slr-page .slr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--slr-ink);
  font-family: var(--slr-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.slr-page .slr-faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.slr-page .slr-faq-icon::before,
.slr-page .slr-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--slr-accent-deep);
}

.slr-page .slr-faq-icon::before {
  width: 13px;
  height: 1.5px;
  transform: translate(-50%,-50%);
}

.slr-page .slr-faq-icon::after {
  width: 1.5px;
  height: 13px;
  transform: translate(-50%,-50%);
  transition: transform .35s var(--slr-ease);
}

.slr-page .slr-faq-item.open .slr-faq-icon::after {
  transform: translate(-50%,-50%) scaleY(0);
}

.slr-page .slr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--slr-ease);
}

.slr-page .slr-faq-a p {
  max-width: 70ch;
  margin: 0 0 22px;
  color: var(--slr-text);
  font-size: 15.5px;
  line-height: 1.78;
}


/* CTA */

.slr-page .slr-cta {
  background: var(--slr-ink);
  color: #fff;
  text-align: center;
  box-shadow: none;
}

.slr-page .slr-cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}

.slr-page .slr-cta > .slr-wrap > p {
  max-width: 670px;
  margin: 0 auto;
  color: rgba(242,235,220,.67);
  font-size: 16px;
  line-height: 1.75;
}

.slr-page .slr-cta-actions {
  justify-content: center;
}


/* RESPONSIVE */

@media (max-width: 980px) {
  .slr-page .slr-rhythm,
  .slr-page .slr-discretion {
    grid-template-columns: 1fr 1fr;
  }

  .slr-page .slr-day:nth-child(2n),
  .slr-page .slr-discretion article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .slr-page .slr-wrap {
    width: min(100% - 32px, 1180px);
  }

  .slr-page .slr-section {
    padding: 68px 0;
  }

  .slr-page .slr-hero {
    min-height: 72vh;
  }

  .slr-page .slr-hero-inner {
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .slr-page .slr-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .slr-page .slr-overview-grid,
  .slr-page .slr-venue-card {
    grid-template-columns: 1fr;
  }

  .slr-page .slr-overview-image {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .slr-page .slr-venue-card {
    height: auto;
  }

  .slr-page .slr-venue-image {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slr-page .slr-venue-copy {
    grid-column: 1 !important;
    grid-row: 2 !important;
    height: auto;
  }

  .slr-page .slr-formats,
  .slr-page .slr-rhythm,
  .slr-page .slr-discretion {
    grid-template-columns: 1fr;
  }

  .slr-page .slr-day,
  .slr-page .slr-discretion article {
    border-right: 0;
    border-bottom: 1px solid rgba(28,24,19,.14);
  }

  .slr-page .slr-dark .slr-day {
    border-bottom-color: rgba(242,235,220,.14);
  }

  .slr-page .slr-hero-actions,
  .slr-page .slr-cta-actions {
    flex-direction: column;
  }

  .slr-page .slr-hero-actions .slr-btn,
  .slr-page .slr-cta-actions .slr-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slr-page *,
  .slr-page *::before,
  .slr-page *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
