/* ==========================================================================
   FairwayMasters - shared base styles (fonts, resets, shared components)
   ========================================================================== */
body {
  margin: 0;
  background: #FAF6EC;
  color: #25251F;
  font-family: 'Poppins', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1C332B;
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: #B4924E;
}

h1, h2 {
  text-wrap: balance;
}

.ff-serif {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

.fm-eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
}

.fm-ph {
  background-color: #EAE0CC;
  background-image: repeating-linear-gradient(45deg, rgba(28, 51, 43, .06) 0 12px, transparent 12px 24px);
  position: relative;
}

.fm-ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .66rem;
  letter-spacing: .05em;
  color: #5f6b5c;
  text-transform: uppercase;
  background: rgba(250, 246, 236, .72);
  padding: 4px 8px;
  border: 1px solid rgba(28, 51, 43, .15);
}

.fm-num {
  font-variant-numeric: tabular-nums;
}

.fm-navlink {
  color: #EFE7D5 !important;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  padding: .4rem .62rem !important;
}

.fm-navlink:hover {
  color: #D8B96A !important;
}

.fm-hr-gold {
  height: 1px;
  border: 0;
  background: #B4924E;
  opacity: .9;
}

.fm-card {
  background: #FFFDF7;
  border: 1px solid rgba(28, 51, 43, .12);
  border-radius: 4px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.fm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(28, 51, 43, .5);
}

#fmNav {
  transition: background .4s ease, box-shadow .4s ease;
}

.e-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.e-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  min-height: 32px;
}

.e-ph {
  background-color: #2b3325;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px);
  position: relative;
}

#shop .e-ph {
  background-color: #fff;
}

.e-ph-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: .6rem;
  letter-spacing: .05em;
  color: rgba(237, 231, 216, .65);
  text-transform: uppercase;
  background: rgba(20, 26, 16, .5);
  padding: 3px 7px;
}

.e-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .85rem 1.7rem;
  border-radius: 40px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.e-pill-gold {
  background: #C9A24C;
  color: #20281a;
}

.e-pill-gold:hover {
  transform: translateY(-2px);
  background: #d8b262;
  color: #20281a;
}

.e-pill-ghost {
  background: transparent;
  color: #EDE7D8;
  border: 1px solid rgba(237, 231, 216, .5);
}

.e-pill-ghost:hover {
  border-color: #C9A24C;
  color: #C9A24C;
}

.e-navlink {
  color: rgba(237, 231, 216, .85);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.e-navlink:hover {
  color: #C9A24C;
}

.dropdown-menu-parent {
  position: relative;
}

.em-submenu-arrow {
  margin-left: .35rem;
  font-size: .7rem;
  transition: transform .2s ease;
}

.dropdown-menu-parent:hover .em-submenu-arrow,
.dropdown-menu-parent:focus-within .em-submenu-arrow {
  transform: rotate(180deg);
}

.em-submenu {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 140px;
  list-style: none;
  padding: .5rem 0;
  margin: 0;
  background: rgba(250, 246, 236, .96);
  border: 1px solid rgba(28, 51, 43, .12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 10;
}

.dropdown-menu-parent:hover .em-submenu,
.dropdown-menu-parent:focus-within .em-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.em-submenu li a {
  display: block;
  padding: .6rem 1rem;
  color: #1C332B;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.em-submenu li a:hover {
  background: #F2E9D2;
  color: #B4924E;
}

.e-swiper {
  --swiper-theme-color: #C9A24C;
  --swiper-pagination-bullet-inactive-color: #EDE7D8;
  --swiper-pagination-bullet-inactive-opacity: .35;
}

.e-swiper .swiper-button-next,
.e-swiper .swiper-button-prev {
  color: #C9A24C;
}

.e-swiper .swiper-button-next:after,
.e-swiper .swiper-button-prev:after {
  font-size: 1.4rem;
}

.e-swiper .swiper-pagination {
  position: static;
  margin-top: 1.6rem;
}

/* retreat: recreate the stepped panorama - active slide tallest */
#eSwiperRetreat .swiper-wrapper {
  align-items: center;
  height: 400px;
}

#eSwiperRetreat .swiper-slide {
  height: auto;
  align-self: center;
}

#eSwiperRetreat .e-ph {
  height: 230px;
  transition: height .6s cubic-bezier(.16,.84,.44,1), transform .6s cubic-bezier(.16,.84,.44,1);
}

#eSwiperRetreat .swiper-slide-active .e-ph {
  height: 400px;
}

#eSwiperRetreat .swiper-slide-prev .e-ph,
#eSwiperRetreat .swiper-slide-next .e-ph {
  height: 300px;
}

/* why: square dots controlling the linked text/image thumb sliders */
.em-why-dots {
  display: flex;
  gap: .6rem;
  margin-top: 2rem;
  margin-left: 33px;
}

.em-why-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border-radius: 0px;
  border: none;
  background: rgba(51, 61, 44, .22);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}

.em-why-dot:hover {
  border-color: #C9A24C;
}

.em-why-dot-active {
  background: #C9A24C;
  border-color: #C9A24C;
}

/* page themes (replace the old per-option wrapping <section>) */
body.theme-emerald {
  background: #333D2C;
  font-family: 'Poppins', sans-serif;
}

.fm-logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .35));
}
.fm-divider-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
}
.fm-divider-dot .line {
  height: 1px;
  width: 70px;
  background: rgba(201, 162, 76, .45);
}
.fm-divider-dot .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A24C;
}

body.theme-classic {
  background: #FAF6EC;
}

/* mobile nav toggle - uses Bootstrap's own navbar-collapse mechanism */
.em-nav-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 231, 216, .35);
  border-radius: 3px;
  color: #EDE7D8;
  background: transparent;
}

.em-nav-toggle:focus {
  box-shadow: none;
}

.em-nav-toggle-icon {
  font-size: 1.3rem;
}

/* tighten the 9-item menu so it fits the row at the xxl (>=1400px) breakpoint */
.em-hero-5 .nav-link.e-navlink {
  font-size: .85rem;
  letter-spacing: .09em;
  padding: 0;
  white-space: nowrap;
}

@media (max-width: 1399.98px) {
  .em-hero-nav.show {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    background: #141a10;
    padding: 1rem 5vw 1.5rem;
    gap: 1rem;
  }

  .em-hero-5 {
    flex-direction: column !important;
    align-items: flex-start;
    gap: .5rem;
    width: 100%;
  }

  .em-hero-9 {
    flex-direction: column;
    align-items: flex-start !important;
    gap: .9rem;
    margin-top: .5rem;
    width: 100%;
  }

  .em-hero-9 .e-pill {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   Generated component classes (migrated from inline style="" attributes)
   ========================================================================== */

.em-2a-1 {
  background:#333D2C;
  font-family:'Poppins',sans-serif;
  margin-bottom:80px;
}
.em-hero-1 {
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.em-hero-2 {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.em-hero-3 {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(28,34,20,.78) 0%, rgba(28,34,20,.35) 40%, rgba(28,34,20,.85) 100%);
}
.em-hero-4 {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.8rem 3vw;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, padding .35s ease;
}

.em-hero-4.is-scrolled {
  background: #1C332B;
  padding: .7rem 3vw;
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, .6);
}

.em-hero-5 {
  gap:1.5rem;
}
.em-hero-6 {
  flex:0 0 auto;
}
.em-navbar-logo {
  height: 120px;
  width: auto;
  transition: height .35s ease;
}

.em-hero-4.is-scrolled .em-navbar-logo {
  height: 80px;
}
.em-hero-9 {
  gap:.7rem;
}
.em-hero-10 {
  width:38px;
  height:38px;
  border:1px solid rgba(237,231,216,.35);
  border-radius:30px;
  color:#EDE7D8;
}
.em-hero-11 {
  font-size:1.05rem;
}
.em-hero-12 {
  top:-6px;
  right:-6px;
  min-width:17px;
  height:17px;
  padding:0 4px;
  background:#C9A24C;
  color:#20281a;
  border-radius:9px;
  font-size:.6rem;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}
.em-hero-13 {
  position:relative;
  z-index:3;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:9rem 5vw 1rem;
  /* padding:2rem 5vw; */
}
.em-hero-14 {
  color:rgba(237,231,216,.85);
  margin-bottom:1.4rem;
}
.em-hero-15 {
  color:#F5EFDE;
  font-size:clamp(3.2rem,8vw,7rem);
  line-height:.95;
  font-weight:600;
  margin:0;
  position: relative;
  /* padding: 1.5rem 3rem; */
}
/* .em-hero-15:before {
  width: 100%;
  height: 80%;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-top: 0;
  border-radius: 50px;
} */
.em-hero-15 img {
  max-width: 700px;
  width: 100%;
}
.em-hero-16 {
  color:#C9A24C;
  font-style:italic;
  font-size:clamp(2.6rem,6.5vw,4rem);
  line-height:1;
  font-weight:500;
  margin:2rem 0 1.6rem;
}
.em-hero-17 {
  color:rgba(237,231,216,.82);
  font-weight:300;
  font-size:1.02rem;
  line-height:1.7;
  max-width:43rem;
  margin-bottom:2rem;
}
.em-hero-18 {
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.4rem 3vw;
}
.em-hero-19 {
  color:rgba(237,231,216,.6);
  font-size:.58rem;
}
.em-about-1 {
  padding:6rem 5vw;
}
.em-about-2 {
  color:#C9A24C;
  margin-bottom:1rem;
}
.em-about-3 {
  color:#F2ECDB;
  font-size:clamp(2.4rem,4.5vw,3.6rem);
  line-height:1.02;
  font-weight:600;
  margin:0;
}
.em-about-4 {
  font-style:italic;
  color:#C9A24C;
}
.em-about-5 {
  color:rgba(237,231,216,.78);
  font-weight:300;
  font-size:1rem;
  line-height:1.8;
  max-width:34rem;
}
#chapter-one .em-about-5 {
  max-width:100%;
}
.em-about-6 {
  border:1px solid rgba(237,231,216,.16);
  border-radius:5px;
  overflow:hidden;
  height: 100%;
}
.em-about-6-img {
  display:block;
  overflow:hidden;
}
.em-about-7 {
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.em-about-8 {
  padding:1.4rem;
}
.em-about-9 {
  color:#C9A24C;
  font-size:3rem;
  font-weight:600;
  line-height:1;
}
.em-about-10 {
  color:rgba(237,231,216,.7);
  margin-top:.4rem;
}
.em-about-11 {
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.em-about-12 {
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.em-about-13 {
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

/* Experience - alternative layout: label overlaid on image, bottom-aligned, blurred glass panel */
.em-aboutalt-card {
  position:relative;
  aspect-ratio:4/5;
  border-radius:5px;
  overflow:hidden;
  border:1px solid rgba(237,231,216,.16);
}
.em-aboutalt-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.em-aboutalt-overlay {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  display:flex;
  align-items:flex-end;
  padding:1.1rem 1.1rem;
  background: linear-gradient(180deg,rgba(20,26,16,0) 0%, rgba(20,26,16,.85) 100%);
  /* backdrop-filter:blur(5px) saturate(1.15);
  -webkit-backdrop-filter:blur(5px) saturate(1.15); */
  -webkit-mask-image:linear-gradient(180deg, transparent 0px, #000 32px);
  mask-image:linear-gradient(180deg, transparent 0px, #000 32px);
  /* border-top:1px solid rgba(237,231,216,.14); */
}
.em-aboutalt-label {
  color:#F2ECDB;
  margin:0;
}
.em-next-championship-1 {
  background:#2b3325;
  padding:6rem 5vw;
}
.em-next-championship-2 {
  color:#F2ECDB;
  font-size:clamp(2.2rem,4.5vw,3.6rem);
  font-weight:600;
  line-height:1.05;
  margin:0 0 1.2rem;
}
.em-next-championship-3 {
  color:rgba(237,231,216,.78);
  font-weight:300;
  font-size:1.02rem;
  line-height:1.8;
  max-width:38rem;
  margin:0 auto 2rem;
}
.em-featured-venue-1 {
  padding:6rem 5vw 5rem;
}
.em-featured-venue-2 {
  display:block;
  width:100%;
  aspect-ratio:3/2;
  border-radius:5px;
  object-fit:cover;
}
.em-featured-venue-3 {
  color:#F2ECDB;
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1.05;
  font-weight:600;
  margin:0 0 1.2rem;
}
.em-featured-venue-4 {
  color:rgba(237,231,216,.78);
  font-weight:300;
  font-size:1rem;
  line-height:1.8;
  max-width:34rem;
  margin-bottom:1.6rem;
}
.em-featured-venue-5 {
  max-width:26rem;
  margin-bottom:1.8rem;
}
.em-featured-venue-6 {
  color:rgba(237,231,216,.55);
}
.em-featured-venue-7 {
  color:#F2ECDB;
  font-size:1.6rem;
  font-weight:600;
}
.em-featured-venue-8 {
  color:#F2ECDB;
  font-size:clamp(2.2rem,4.5vw,3.6rem);
  line-height:1.1;
  font-weight:600;
  margin:0 auto 3rem;
  max-width:22ch;
}
.em-eswiperretreat-1 {
  padding:0 3vw 1rem;
}
.em-eswiperretreat-2 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-3 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-4 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-5 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-6 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-7 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-8 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-9 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-10 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-11 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-12 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperretreat-13 {
  display:block;
  width:100%;
  border-radius:5px;
  object-fit:cover;
}
.em-why-1 {
  background:#EDE7D8;
  padding:6rem 5vw;
}
.em-eswiperwhy-1 {
  color:#333D2C;
  font-size:clamp(2.2rem,4vw,3.2rem);
  line-height:1.05;
  font-weight:600;
  margin:0 0 2.5rem;
}
/* .em-eswiperwhy-2 {
  font-style:italic;
} */
.em-eswiperwhy-3 {
  border-top:1px solid rgba(51,61,44,.25);
  padding-top:1.6rem;
}
.em-eswiperwhy-4 {
  gap:1rem;
}
.em-eswiperwhy-5 {
  color:#C9A24C;
  font-size:1.1rem;
  font-weight:600;
}
.em-eswiperwhy-6 {
  color:#333D2C;
  font-size:1.7rem;
  font-weight:600;
  margin:0 0 .5rem;
}
.em-eswiperwhy-7 {
  color:#5a6150;
  font-weight:300;
  font-size:.98rem;
  line-height:1.75;
  margin:0;
}
.em-eswiperwhy-8 {
  display:block;
  width:100%;
  aspect-ratio:16/11;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperwhy-9 {
  display:block;
  width:100%;
  aspect-ratio:16/11;
  border-radius:5px;
  object-fit:cover;
}
.em-eswiperwhy-10 {
  display:block;
  width:100%;
  aspect-ratio:16/11;
  border-radius:5px;
  object-fit:cover;
}

/* Why FairwayMasters - alternative pinned scroll-driven layout */
.em-whyalt-1 {
  background:#EDE7D8;
  height:300vh;
  position:relative;
}
.em-whyalt-pin {
  position:sticky;
  top:0;
  height:90vh;
  overflow:hidden;
  padding:8rem 5vw 5rem;
  display:flex;
  align-items:stretch;
}
.em-whyalt-row {
  width:100%;
}
.em-whyalt-left {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}
.em-whyalt-title {
  color:#333D2C;
  font-size:clamp(2.2rem,4vw,3.2rem);
  line-height:1.05;
  font-weight:600;
  margin:0;
}
.em-whyalt-title-em {
  font-style:italic;
  color:#C9A24C;
}
.em-whyalt-stage {
  position:relative;
}
.em-whyalt-items {
  position:relative;
  height:240px;
}
.em-whyalt-item {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
  pointer-events:none;
}
.em-whyalt-item.is-active {
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.em-whyalt-item.is-left {
  transform:translateY(-28px);
}
.em-whyalt-num {
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.1rem;
  color:#C9A24C;
  margin-bottom:.5rem;
}
.em-whyalt-heading {
  color:#333D2C;
  font-size:1.9rem;
  font-weight:600;
  margin:0 0 1rem;
}
.em-whyalt-desc {
  color:#5a6150;
  font-weight:300;
  font-size:1rem;
  line-height:1.8;
  max-width:30rem;
  margin:0;
}
.em-whyalt-rail-col {
  display:flex;
  align-items:flex-end;
  flex: 1;
  margin-top: 50px;
}
.em-whyalt-rail {
  position:relative;
  width:2px;
  height:100%;
  /* height:240px; */
  background:rgba(51,61,44,.15);
}
.em-whyalt-rail-thumb {
  position:absolute;
  left:0;
  width:2px;
  height:33.33%;
  background:#333D2C;
  border-radius:2px;
  transition:top .5s ease;
}
.em-whyalt-right {
  display:flex;
  align-items:flex-end;
}
.em-whyalt-image-wrap {
  position:relative;
  width:100%;
  height:70vh;
  border-radius:5px;
  overflow:hidden;
}
.em-whyalt-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:translateY(18px) scale(1.02);
  transition:opacity .8s ease, transform .8s ease;
}
.em-whyalt-img.is-active {
  opacity:1;
  transform:translateY(0) scale(1);
}
@media (max-width:991.98px) {
  .em-whyalt-1 {
    height:auto;
  }
  .em-whyalt-pin {
    position:static;
    height:auto;
    flex-direction:column;
    padding:4rem 0;
  }
  .em-whyalt-left {
    height:auto;
  }
  .em-whyalt-rail-col {
    display:none;
  }
  .em-whyalt-items {
    height:auto;
    margin-top:2rem;
  }
  .em-whyalt-item {
    position:static;
    opacity:1;
    transform:none;
    display:none;
  }
  .em-whyalt-item.is-active {
    display:block;
  }
  .em-whyalt-right {
    margin-top:2rem;
  }
  .em-whyalt-image-wrap {
    height:auto;
    aspect-ratio:4/3;
  }
}
.em-tournament-experience-1 {
  color:#C9A24C;
}
.em-tournament-experience-2 {
  color:#C9A24C;
  font-style:italic;
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:500;
}
.em-tournament-experience-3 {
  color:#F2ECDB;
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-weight:600;
  margin:0;
}
.em-tournament-experience-4 {
  display:block;
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.em-tournament-experience-5 {
  padding:1.3rem;
}
.em-tournament-experience-6 {
  color:#F2ECDB;
  font-size:1.35rem;
  font-weight:600;
  margin:0 0 .3rem;
}
.em-tournament-experience-7 {
  display:block;
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.em-tournament-experience-8 {
  display:block;
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.em-tournament-experience-9 {
  display:block;
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}

/* equal-height cards inside the Day Programme slider */
#eSwiperProgramme .swiper-slide {
  height:auto;
}
#eSwiperProgramme .em-about-6 {
  height:100%;
  display:flex;
  flex-direction:column;
}
#eSwiperProgramme .em-tournament-experience-5 {
  flex:1;
  display:flex;
  flex-direction:column;
}

/* Day Programme - alternative timeline/itinerary layout */
.em-day-timeline {
  position:relative;
  max-width:760px;
  margin:0 auto;
}
.em-day-item {
  display:grid;
  grid-template-columns:84px 24px 1fr;
  column-gap:1.5rem;
}
.em-day-time {
  text-align:right;
  padding-top:.15rem;
  color:#F2ECDB;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.3rem;
  font-weight:600;
  line-height:1.1;
}
.em-day-time span {
  display:block;
  margin-top:.15rem;
  font-family:'Poppins', sans-serif;
  font-size:.6rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:400;
  color:#C9A24C;
}
.em-day-rail {
  position:relative;
  display:flex;
  justify-content:center;
}
.em-day-rail::before {
  content:'';
  position:absolute;
  top:6px;
  bottom:-2.4rem;
  width:1px;
  background:rgba(237,231,216,.18);
}
.em-day-item-last .em-day-rail::before {
  display:none;
}
.em-day-dot {
  width:11px;
  height:11px;
  border-radius:50%;
  background:#20281a;
  border:2px solid #C9A24C;
  margin-top:.25rem;
  position:relative;
  z-index:1;
}
.em-day-content {
  padding-bottom:2.6rem;
}
.em-day-item-last .em-day-content {
  padding-bottom:0;
}
.em-day-title {
  color:#F2ECDB;
  font-size:1.35rem;
  font-weight:600;
  margin:0 0 .4rem;
}
.em-day-desc {
  color:rgba(237,231,216,.7);
  font-weight:300;
  font-size:.95rem;
  line-height:1.7;
  margin:0;
  max-width:34rem;
}
@media (max-width:575.98px) {
  .em-day-item {
    grid-template-columns:64px 20px 1fr;
    column-gap:1rem;
  }
  .em-day-time {
    font-size:1.05rem;
  }
}

.em-shop-1 {
  color:#F2ECDB;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin-top:.6rem;
}
.em-shop-2 {
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.em-shop-3 {
  padding:1.2rem;
}
.em-shop-4 {
  color:#F2ECDB;
  font-size:1.2rem;
  font-weight:600;
}
.em-shop-5 {
  color:rgba(237,231,216,.6);
  font-size:.82rem;
  margin:.2rem 0 0;
  font-weight:300;
}
.em-shop-6 {
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.em-shop-7 {
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.em-shop-8 {
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.em-news-1 {
  color:#8a744a;
}
.em-news-2 {
  color:#333D2C;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin-top:.6rem;
}
.em-news-3 {
  background:transparent;
  color:#333D2C;
  border:1px solid #333D2C;
}
.em-news-4 {
  background:#FFFDF7;
  border:1px solid rgba(51,61,44,.12);
  border-radius:5px;
  overflow:hidden;
  display:block;
}
.em-news-5 {
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.em-news-6 {
  padding:1.6rem;
}
.em-news-7 {
  color:#B4924E;
  gap:.5rem;
}
.em-news-8 {
  color:#333D2C;
  font-size:1.4rem;
  font-weight:600;
  margin:.6rem 0 .4rem;
}
.em-news-9 {
  color:#5a6150;
  font-size:.88rem;
  line-height:1.6;
  font-weight:300;
  margin:0;
}
.em-news-10 {
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.em-news-11 {
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.em-partners-1 {
  background:#20281a;
  padding:2rem 5vw;
}
.em-partners-2 {
  color:#F2ECDB;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin:.8rem 0 1rem;
}
.em-partners-3 {
  color:rgba(237,231,216,.72);
  font-weight:300;
  font-size:1.02rem;
  line-height:1.78;
  max-width:40rem;
  margin:0 auto 2.5rem;
}
.em-partners-4 {
  height:90px;
  /* border-radius:4px;
  background:#fff;
  padding:1rem 1.2rem; */
}
.em-partners-4 img {
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.em-partners-label {
  color:rgba(237,231,216,.6);
  font-size:.68rem;
  letter-spacing:.14em;
  margin-bottom:.7rem;
  text-align:center;
  display:block;
}
.em-register-1 {
  border:1px solid rgba(237,231,216,.16);
  border-radius:6px;
  overflow:hidden;
}
.em-register-2 {
  padding:clamp(2rem,4vw,3.5rem);
}
.em-register-3 {
  color:#F2ECDB;
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:1.05;
  font-weight:600;
  margin:0 0 1.8rem;
}
.em-register-4 {
  gap:.9rem;
  max-width:26rem;
}
.em-register-5 {
  background:transparent;
  border:0;
  border-bottom:1px solid rgba(237,231,216,.3);
  border-radius:0;
  color:#EDE7D8;
  padding:.7rem .2rem;
}
.em-register-5::placeholder {
  color:rgba(237,231,216,.5);
  opacity:1;
}
.em-register-5:focus {
  background:transparent;
  border-color:rgba(237,231,216,.3);
  color:#EDE7D8;
  outline:0;
  box-shadow:none;
}
.em-register-field {
  position:relative;
}
.em-register-field::after {
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:#C9A24C;
  transition:width .4s cubic-bezier(.16,.84,.44,1);
}
.em-register-field:focus-within::after {
  width:100%;
}
.em-register-6 {
  color:rgba(237,231,216,.7);
  align-items:center;
  gap:.6rem;
  margin:.8rem 0;
  letter-spacing:.08em;
  text-transform:none;
  font-size:.78rem;
}
.em-register-6 input[type="checkbox"] {
  appearance:none;
  -webkit-appearance:none;
  width:16px;
  height:16px;
  margin:0;
  flex-shrink:0;
  background:transparent;
  border:1px solid rgba(237,231,216,.3);
  border-radius:3px;
  cursor:pointer;
  position:relative;
}
.em-register-6 input[type="checkbox"]:checked {
  background:#C9A24C;
  border-color:#C9A24C;
}
.em-register-6 input[type="checkbox"]:checked::after {
  content:'';
  position:absolute;
  left:5px;
  top:2px;
  width:4px;
  height:8px;
  border:solid #20281a;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}
.em-register-6 input[type="checkbox"]:focus-visible {
  outline:2px solid rgba(201,162,76,.5);
  outline-offset:2px;
}
.em-register-7 {
  align-self:flex-start;
  border:0;
}
.em-register-8 {
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.em-register-9 {
  position:relative;
  overflow:hidden;
}
.em-site-footer-1 {
  background:#20281a;
  padding:4rem 5vw 0;
}
.em-site-footer-2 {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  border-radius:5px;
  max-width:320px;
  object-fit:cover;
}
.em-site-footer-3 {
  gap:.7rem;
}
.em-site-footer-4 {
  letter-spacing:.08em;
  text-transform:none;
  font-size:.9rem;
}
.em-site-footer-5 {
  color:rgba(237,231,216,.75);
  font-weight:300;
  font-size:.9rem;
  line-height:1.7;
  margin:0;
}
.em-site-footer-6 {
  gap:1rem;
  font-size:1.2rem;
}
.em-site-footer-7 {
  color:rgba(237,231,216,.08);
  font-size:clamp(3rem,14vw,13rem);
  font-weight:600;
  line-height:.8;
  text-align:center;
  overflow:hidden;
  white-space:nowrap;
  padding-bottom:1rem;
}
.cl-fmnav-1 {
  background:#1C332B;
  padding:.55rem 0;
}
.cl-fmnav-2 {
  line-height:1;
}
.cl-navbar-logo {
  height: 44px;
  width: auto;
}
.cl-fmnav-5 {
  box-shadow:none;
}
.cl-fmnav-6 {
  display:block;
  width:26px;
  height:2px;
  background:#EFE7D5;
  margin:5px 0;
}
.cl-fmmenu-1 {
  width:40px;
  height:40px;
  border:1px solid rgba(239,231,211,.35);
  border-radius:3px;
  color:#EFE7D5;
}
.cl-fmmenu-2 {
  font-size:1.1rem;
}
.cl-fmmenu-3 {
  top:-7px;
  right:-7px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  background:#B4924E;
  color:#16302A;
  border-radius:9px;
  font-size:.62rem;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cl-fmmenu-4 {
  background:#B4924E;
  color:#1C332B;
  border-radius:3px;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  padding:.6rem 1.3rem;
}
.cl-hero-1 {
  background:#FAF6EC;
  padding:5.5rem 0 4.5rem;
}
.cl-hero-2 {
  color:#B4924E;
}
.cl-hero-3 {
  color:#6c7669;
  margin-top:8px;
}
.cl-hero-4 {
  color:#1C332B;
  font-size:clamp(3rem,6vw,5rem);
  line-height:1.02;
  font-weight:600;
  margin:1.4rem 0 .6rem;
}
.cl-hero-5 {
  color:#B4924E;
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-style:italic;
  font-weight:500;
  margin-bottom:1.4rem;
}
.cl-hero-6 {
  color:#3f463c;
  font-size:1.02rem;
  line-height:1.75;
  max-width:34rem;
  font-weight:300;
}
.cl-hero-7 {
  background:#B4924E;
  color:#1C332B;
  border-radius:3px;
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  padding:.85rem 1.7rem;
}
.cl-hero-8 {
  background:transparent;
  color:#1C332B;
  border:1px solid #1C332B;
  border-radius:3px;
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:500;
  padding:.85rem 1.7rem;
}
.cl-hero-9 {
  width:100%;
  aspect-ratio:4/5;
  border-radius:4px;
  background-image:url('images/OT0A9755.JPG');
  background-size:cover;
  background-position:center;
}
.cl-facts-1 {
  background:#1C332B;
  padding:1.6rem 0;
}
.cl-facts-2 {
  gap:0;
}
.cl-facts-3 {
  color:#EFE7D5;
  padding:.4rem 1.6rem;
  gap:.6rem;
}
.cl-facts-4 {
  color:#B4924E;
  font-size:1.1rem;
}
.cl-facts-5 {
  width:1px;
  height:16px;
  background:#B4924E;
}
.cl-about-1 {
  padding:6rem 0;
}
.cl-about-2 {
  color:#1C332B;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:600;
  line-height:1.1;
  margin:1rem 0 1.4rem;
}
.cl-about-3 {
  color:#3f463c;
  font-size:1.05rem;
  line-height:1.8;
  font-weight:300;
}
.cl-featured-venue-1 {
  background:#F2ECDD;
  padding:6rem 0;
}
.cl-featured-venue-2 {
  width:100%;
  aspect-ratio:3/2;
  border-radius:4px;
  background-image:url('images/OT0A9761.JPG');
  background-size:cover;
  background-position:center;
}
.cl-featured-venue-3 {
  color:#1C332B;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  line-height:1.08;
  margin:.9rem 0 1.2rem;
}
.cl-featured-venue-4 {
  width:64px;
  margin:0 0 1.4rem;
}
.cl-featured-venue-5 {
  color:#3f463c;
  font-size:1.02rem;
  line-height:1.78;
  font-weight:300;
  max-width:34rem;
}
.cl-featured-venue-6 {
  max-width:30rem;
}
.cl-featured-venue-7 {
  color:#8a745a;
}
.cl-featured-venue-8 {
  color:#1C332B;
  font-size:1.6rem;
  font-weight:600;
}
.cl-featured-venue-9 {
  background:transparent;
  color:#1C332B;
  border:1px solid #1C332B;
  border-radius:3px;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:500;
  padding:.7rem 1.5rem;
}
.cl-tournament-experience-1 {
  color:#1C332B;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin-top:.8rem;
}
.cl-tournament-experience-2 {
  color:#B4924E;
  font-size:1.7rem;
}
.cl-tournament-experience-3 {
  color:#c9b784;
}
.cl-tournament-experience-4 {
  color:#1C332B;
  font-size:1.4rem;
  font-weight:600;
  margin:.8rem 0 .5rem;
}
.cl-tournament-experience-5 {
  color:#4a5147;
  font-size:.92rem;
  line-height:1.65;
  font-weight:300;
  margin:0;
}
.cl-next-championship-1 {
  background:#16302A;
  padding:6rem 0;
  color:#EFE7D5;
}
.cl-next-championship-2 {
  color:#F2E9D3;
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:600;
  margin:1rem 0 .4rem;
}
.cl-next-championship-3 {
  color:#c6c9bd;
  font-size:1.05rem;
  line-height:1.8;
  font-weight:300;
  max-width:38rem;
  margin:1rem auto 2rem;
}
.cl-next-championship-4 {
  background:#B4924E;
  color:#16302A;
  border-radius:3px;
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  padding:.85rem 1.8rem;
}
.cl-club-1 {
  width:100%;
  aspect-ratio:3/2;
  border-radius:4px;
  background-image:url('images/OT0A9766.JPG');
  background-size:cover;
  background-position:center;
}
.cl-club-2 {
  color:#1C332B;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  line-height:1.08;
  margin:.9rem 0 1rem;
}
.cl-shop-1 {
  color:#1C332B;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin-top:.6rem;
}
.cl-shop-2 {
  aspect-ratio:1;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9771.JPG');
  background-size:cover;
  background-position:center;
}
.cl-shop-3 {
  color:#1C332B;
  font-size:1.2rem;
  font-weight:600;
}
.cl-shop-4 {
  color:#6c7669;
  font-size:.82rem;
  margin:.2rem 0 0;
  font-weight:300;
}
.cl-shop-5 {
  aspect-ratio:1;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9938.JPG');
  background-size:cover;
  background-position:center;
}
.cl-shop-6 {
  aspect-ratio:1;
  border-radius:4px 4px 0 0;
  background-image:url('images/bag.png');
  background-size:cover;
  background-position:center;
}
.cl-shop-7 {
  aspect-ratio:1;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9949.JPG');
  background-size:cover;
  background-position:center;
}
.cl-news-1 {
  aspect-ratio:16/10;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9954.JPG');
  background-size:cover;
  background-position:center;
}
.cl-news-2 {
  color:#B4924E;
  gap:.5rem;
}
.cl-news-3 {
  color:#1C332B;
  font-size:1.4rem;
  font-weight:600;
  margin:.6rem 0 .4rem;
}
.cl-news-4 {
  color:#6c7669;
  font-size:.88rem;
  line-height:1.6;
  font-weight:300;
  margin:0;
}
.cl-news-5 {
  aspect-ratio:16/10;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9960.JPG');
  background-size:cover;
  background-position:center;
}
.cl-news-6 {
  aspect-ratio:16/10;
  border-radius:4px 4px 0 0;
  background-image:url('images/OT0A9965.JPG');
  background-size:cover;
  background-position:center;
}
.cl-partners-1 {
  color:#1C332B;
  font-size:clamp(2rem,3.6vw,2.8rem);
  font-weight:600;
  margin:.8rem 0 1rem;
}
.cl-partners-2 {
  color:#3f463c;
  font-size:1.02rem;
  line-height:1.78;
  font-weight:300;
  max-width:40rem;
  margin:0 auto 2.5rem;
}
.cl-partners-3 {
  height:80px;
  border-radius:4px;
}
.cl-partners-4 {
  color:#6c7669;
  background:none;
  border:0;
  position:static;
}
.cl-register-1 {
  background:#1C332B;
  padding:6.5rem 0;
  color:#EFE7D5;
}
.cl-register-2 {
  color:#F2E9D3;
  font-size:clamp(2.2rem,4.5vw,3.4rem);
  font-weight:600;
  line-height:1.1;
  margin:1.2rem auto 1rem;
  max-width:24rem;
}
.cl-register-3 {
  color:#c6c9bd;
  font-size:1.02rem;
  line-height:1.8;
  font-weight:300;
  max-width:34rem;
  margin:0 auto 2rem;
}
.cl-register-4 {
  max-width:34rem;
  margin:0 auto;
}
.cl-register-5 {
  background:#16302A;
  border:1px solid #3a544a;
  color:#EFE7D5;
  border-radius:3px;
  padding:.85rem 1rem;
}
.cl-register-6 {
  color:#7d8a79;
  margin-top:1.4rem;
  font-size:.62rem;
}
.cl-site-footer-1 {
  background:#122720;
  padding:3.5rem 0 2rem;
  color:#a9b1a4;
}
.cl-site-footer-2 {
  color:#F2E9D3;
  font-size:1.4rem;
  font-weight:600;
}
.cl-site-footer-3 {
  color:#B4924E;
  margin-top:.4rem;
}
.cl-site-footer-4 {
  color:#EFE7D5;
  margin-bottom:.8rem;
}
.cl-site-footer-5 {
  font-size:.88rem;
  font-weight:300;
}
.cl-site-footer-6 {
  color:#a9b1a4;
}
.cl-site-footer-7 {
  font-size:.88rem;
  line-height:1.7;
  font-weight:300;
}
.cl-site-footer-8 {
  border-color:#2a3f37;
  margin:2.5rem 0 1.5rem;
}
.cl-site-footer-9 {
  gap:1rem;
}
.cl-site-footer-10 {
  color:#6f7a6c;
  font-size:.62rem;
}
.cl-site-footer-11 {
  font-size:.62rem;
}
.cl-site-footer-12 {
  color:#6f7a6c;
}

/* ==========================================================================
   Hover interactions - image zoom + card lift
   ========================================================================== */
.e-ph,
.e-ph img,
.e-ph.em-featured-venue-2,
.e-ph.em-register-8,
.e-ph.em-site-footer-2,
.em-aboutalt-img {
  transition:transform .6s cubic-bezier(.16,.84,.44,1);
}

/* About stats / Day Programme / Shop cards (shared .em-about-6 wrapper) */
.em-about-6 {
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.em-about-6:hover {
  transform:translateY(-4px);
  border-color:rgba(201,162,76,.45);
  box-shadow:0 18px 40px -22px rgba(0,0,0,.5);
}
.em-about-6:hover img {
  transform:scale(1.07);
}

/* Featured Venue main image */
.em-featured-venue-2-wrap {
  overflow:hidden;
  border-radius:5px;
}
.em-featured-venue-2-wrap:hover .em-featured-venue-2 {
  transform:scale(1.05);
}

/* Retreat gallery swiper */
.em-retreat-slide {
  overflow:hidden;
  border-radius:5px;
}
.em-retreat-slide:hover .e-ph {
  transform:scale(1.08);
}

/* Why FairwayMasters image thumb-slider */
.em-whyimg-slide {
  overflow:hidden;
  border-radius:5px;
}
.em-whyimg-slide:hover img {
  transform:scale(1.05);
}

/* News cards */
.em-news-4 {
  transition:transform .35s ease, box-shadow .35s ease;
}
.em-news-4:hover {
  transform:translateY(-4px);
  box-shadow:0 18px 40px -22px rgba(28,51,43,.35);
}
.em-news-4:hover img {
  transform:scale(1.07);
}

/* Experience alt - overlay cards */
.em-aboutalt-card {
  transition:box-shadow .35s ease;
}
.em-aboutalt-card:hover {
  box-shadow:0 18px 40px -20px rgba(0,0,0,.55);
}
.em-aboutalt-card:hover .em-aboutalt-img {
  transform:scale(1.06);
}

/* Register image */
.em-register-9:hover .em-register-8 {
  transform:scale(1.05);
}

/* Footer image */
.em-site-footer-2-wrap {
  overflow:hidden;
  border-radius:5px;
}
.em-site-footer-2-wrap:hover .em-site-footer-2 {
  transform:scale(1.06);
}

@media (hover:none) {
  .em-about-6:hover,
  .em-news-4:hover {
    transform:none;
    box-shadow:none;
  }
  .em-about-6:hover img,
  .em-featured-venue-2-wrap:hover .em-featured-venue-2,
  .em-retreat-slide:hover .e-ph,
  .em-whyimg-slide:hover img,
  .em-news-4:hover img,
  .em-aboutalt-card:hover .em-aboutalt-img,
  .em-register-9:hover .em-register-8,
  .em-site-footer-2-wrap:hover .em-site-footer-2 {
    transform:none;
  }
}

/* ==========================================================================
   Entrance animations
   ========================================================================== */
[data-reveal] {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible {
  opacity:1;
  transform:translateY(0);
}

/* card grids: stagger the individual cards as the row reveals */
.row.g-3[data-reveal] > *,
.row.g-4[data-reveal] > *,
.em-day-timeline[data-reveal] > .em-day-item {
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.row.g-3[data-reveal].is-visible > *,
.row.g-4[data-reveal].is-visible > *,
.em-day-timeline[data-reveal].is-visible > .em-day-item {
  opacity:1;
  transform:translateY(0);
}
.row.g-3[data-reveal].is-visible > *:nth-child(1),
.row.g-4[data-reveal].is-visible > *:nth-child(1),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(1) { transition-delay:.05s; }
.row.g-3[data-reveal].is-visible > *:nth-child(2),
.row.g-4[data-reveal].is-visible > *:nth-child(2),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(2) { transition-delay:.14s; }
.row.g-3[data-reveal].is-visible > *:nth-child(3),
.row.g-4[data-reveal].is-visible > *:nth-child(3),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(3) { transition-delay:.23s; }
.row.g-3[data-reveal].is-visible > *:nth-child(4),
.row.g-4[data-reveal].is-visible > *:nth-child(4),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(4) { transition-delay:.32s; }
.row.g-3[data-reveal].is-visible > *:nth-child(5),
.row.g-4[data-reveal].is-visible > *:nth-child(5),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(5) { transition-delay:.41s; }
.row.g-3[data-reveal].is-visible > *:nth-child(6),
.row.g-4[data-reveal].is-visible > *:nth-child(6),
.em-day-timeline[data-reveal].is-visible > .em-day-item:nth-child(6) { transition-delay:.5s; }

@media (prefers-reduced-motion:reduce) {
  [data-reveal],
  [data-reveal] > *,
  .em-day-timeline[data-reveal] > .em-day-item {
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* hero: staggered entrance on load */
.em-hero-2 {
  animation:em-hero-bg-in 1.8s ease-out both;
}
.em-hero-4 {
  animation:em-hero-fade-in .8s ease-out both;
  animation-delay:.1s;
}
.em-hero-13 > * {
  opacity:0;
  transform:translateY(24px);
  animation:em-hero-item-in .9s cubic-bezier(.16,.84,.44,1) forwards;
}
.em-hero-13 > *:nth-child(1) { animation-delay:.25s; }
.em-hero-13 > *:nth-child(2) { animation-delay:.4s; }
.em-hero-13 > *:nth-child(3) { animation-delay:.55s; }
.em-hero-13 > *:nth-child(4) { animation-delay:.7s; }

@keyframes em-hero-bg-in {
  from { opacity:0; transform:scale(1.08); }
  to { opacity:1; transform:scale(1); }
}
@keyframes em-hero-fade-in {
  from { opacity:0; }
  to { opacity:1; }
}
@keyframes em-hero-item-in {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}

@media (prefers-reduced-motion:reduce) {
  .em-hero-2,
  .em-hero-4,
  .em-hero-13 > * {
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}