/* villatel-village-body.css — page body styles
   Chrome styles: ../hbv/hbv-chrome.css
*/

:root{
  color-scheme: light;
  --deep-teal:    #153442;
  --mist-blue:    #98C1D8;
  --stone-taupe:  #AFA085;
  --soft-ivory:   #FFFFFF;
  --seafoam:      #D1DBD6;

  --taupe-light:  #C9BFA9;
  --taupe-deep:   #8A7C66;
  --ivory-warm:   #F5EFE0;
  --ivory-warmer: #EDE6D2;
  --teal-deep:    #061B29;
  --ink:          #2A2A28;
  --ink-muted:    #6B6862;
  --hairline:        rgba(42, 42, 40, 0.12);
  --hairline-light:  rgba(255, 255, 255, 0.22);

  --font-display: 'Archivo Expanded', 'Archivo', 'Archivo Fallback', 'Helvetica Neue', sans-serif;
  --font-body: 'Outfit', 'Outfit Fallback', 'Helvetica Neue', sans-serif;
  --font-script:  'Sacramento', 'Lucida Handwriting', cursive;

  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3rem, 6vw, 5rem);

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
html, body{ overflow-x: clip; }
body{
  margin: 0;
  background: var(--soft-ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select{ font-family: inherit; }
::selection{ background: var(--deep-teal); color: var(--soft-ivory); }
.eyebrow{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.706rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}
.eyebrow--light{ color: rgba(255, 255, 255, 0.78); }
.ornament{
  display: inline-block;
  width: 56px;
  height: 1px;
  vertical-align: middle;
  margin-right: 0.6rem;
  background: linear-gradient(90deg, transparent, var(--taupe-deep) 30%, var(--taupe-deep) 70%, transparent);
  opacity: 0.65;
}
.ornament--light{
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.78) 30%, rgba(255,255,255,0.78) 70%, transparent);
}
.script{
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 0.18em;
  vertical-align: baseline;
}
.wrap{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  min-height: 44px;
}
.btn--primary{
  background: var(--deep-teal);
  color: var(--soft-ivory);
  border-color: var(--deep-teal);
}
.btn--primary:hover{ background: var(--teal-deep); }
.btn--ivory{
  background: var(--soft-ivory);
  color: var(--ink);
  border-color: var(--soft-ivory);
}
.btn--ivory:hover{
  background: transparent;
  color: var(--soft-ivory);
}
.btn--ghost-light{
  background: transparent;
  color: var(--soft-ivory);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover{
  background: var(--soft-ivory);
  color: var(--ink);
  border-color: var(--soft-ivory);
}
.btn--ghost-dark{
  background: transparent;
  color: var(--deep-teal);
  border-color: var(--deep-teal);
}
.btn--ghost-dark:hover{
  background: var(--deep-teal);
  color: var(--soft-ivory);
}
.btn .arrow{ transition: transform 0.25s ease; }
.btn:hover .arrow{ transform: translateX(4px); }
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--soft-ivory);
  overflow: visible;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);

  background: var(--soft-ivory);
}
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.55) 12%,
    rgba(0,0,0,0.25) 28%,
    rgba(0,0,0,0.10) 45%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.50) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__media{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__media--mobile{ display: none; }
@media (max-width: 768px){.hero__media--desktop{ display: none; }
.hero__media--mobile{ display: block; }}
.hero__overlay-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: clamp(380px, 45vw, 620px);
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.4));
}
@media (max-width: 640px){.hero__overlay-logo{
    width: clamp(240px, 72vw, 360px);
    top: 42%;
  }}
.hero__content{
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.hero__crumb{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.hero__crumb a{ border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
.hero__crumb span{ margin: 0 0.5rem; opacity: 0.5; }
.hero__eyebrow{ margin-bottom: 0.8rem; }
.hero__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.hero__title .script{
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mist-blue);
}
.hero__sub{
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 52ch;
  opacity: 0.92;
  margin: 0 0 2rem;
  font-weight: 300;
}
.hero__ctas{
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
@media (max-width: 640px){.hero{ min-height: 88vh; }
.hero__title{ max-width: 100%; }
.hero__ctas .btn{ flex: 1 1 auto; justify-content: center; }}
.intro{
  padding: var(--section-y) 0;
  background: var(--soft-ivory);
  text-align: center;
}
.intro__inner{ max-width: 880px; margin: 0 auto; }
.intro__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
  color: var(--ink);
}
.intro__title .script{ font-size: 1.3em; color: var(--taupe-deep); }
.intro__lead{
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 64ch;
  margin: 0 auto;
}
.intro__media{
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16/9;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.nearby{padding:var(--section-y) 0;background:var(--ivory-warm);}
.nearby__head{max-width:760px;margin:0 auto clamp(2rem,4vw,3rem);text-align:center;}
.nearby__title{font-family:var(--font-display);font-weight:500;font-size:clamp(1.9rem,4vw,3rem);letter-spacing:0.02em;line-height:1.15;margin:0.6rem 0 1rem;color:var(--ink);}
.nearby__title .script{font-size:1.25em;color:var(--taupe-deep);}
.nearby__lead{font-size:1rem;line-height:1.65;color:var(--ink-muted);max-width:60ch;margin:0 auto;}
.nearby__inner{display:grid;grid-template-columns:340px 1fr;gap:clamp(1.25rem,2.5vw,2rem);align-items:stretch;}
.nearby__sidebar{display:flex;flex-direction:column;gap:1rem;min-height:600px;}
.nearby__list{background:var(--soft-ivory);border:1px solid var(--hairline);flex:1;overflow:visible;}
.nearby__item{position:relative;display:flex;flex-direction:column;border-bottom:1px solid var(--hairline);background:transparent;transition:background 0.2s ease;}
.nearby__item:last-child{border-bottom:0;}
.nearby__item:hover{background:var(--ivory-warmer);}
.nearby__item.is-active{background:var(--deep-teal);}
.nearby__item.is-active:hover{background:var(--deep-teal);}
.nearby__item.is-active{z-index:10;}
.nearby__item-trigger{width:100%;display:flex;align-items:center;gap:0.85rem;padding:1rem 1.25rem;border:0;background:transparent;text-align:left;cursor:pointer;font-family:var(--font-display);font-weight:500;font-size:0.78rem;letter-spacing:0.08em;text-transform:uppercase;color:var(--ink);transition:color 0.2s ease;min-height:54px;}
.nearby__item.is-active .nearby__item-trigger{color:var(--soft-ivory);}
.nearby__item.is-active .nearby__num{background:var(--mist-blue);color:var(--deep-teal);border-color:var(--mist-blue);}
.nearby__item-name{flex:1;min-width:0;}
.nearby__item-caret{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;color:var(--taupe-deep);transition:transform 0.3s var(--ease-out-expo),color 0.2s ease;}
.nearby__item.is-active .nearby__item-caret{transform:rotate(180deg);color:var(--soft-ivory);}
.nearby__item-body{position:absolute;top:100%;left:0;right:0;background:var(--ivory-warm);border-bottom:1px solid var(--hairline);box-shadow:0 8px 24px rgba(12,42,62,0.10);opacity:0;visibility:hidden;transform:translateY(-4px);transition:opacity 0.25s ease,transform 0.25s var(--ease-out-expo),visibility 0s linear 0.25s;}
.nearby__item.is-active .nearby__item-body{opacity:1;visibility:visible;transform:translateY(0);transition:opacity 0.25s ease,transform 0.25s var(--ease-out-expo),visibility 0s linear 0s;}
.nearby__item-body-inner p{margin:0;padding:0.75rem 1.25rem 1.25rem 3.1rem;font-family:var(--font-body);font-weight:400;font-size:0.88rem;line-height:1.6;color:var(--ink-muted);text-transform:none;letter-spacing:0;}
.nearby__num{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;border:1px solid var(--taupe-deep);background:transparent;color:var(--taupe-deep);font-family:var(--font-display);font-weight:600;font-size:0.706rem;letter-spacing:0;flex-shrink:0;transition:background 0.2s ease,color 0.2s ease,border-color 0.2s ease;}
.nearby__map-wrap{position:relative;background:linear-gradient(180deg,#FBF7EC 0%,#F5EFE0 100%);border:1px solid var(--hairline);min-height:600px;overflow:hidden;}
.nearby__map-svg{display:block;width:100%;height:100%;position:absolute;inset:0;}
.nearby-pin{cursor:pointer;transform-origin:center;transform-box:fill-box;}
.nearby-pin__shadow{fill:rgba(12,42,62,0.15);}
.nearby-pin__bg{fill:var(--soft-ivory);stroke:var(--deep-teal);stroke-width:1.4;transition:fill 0.25s ease,stroke 0.25s ease,stroke-width 0.25s ease;}
.nearby-pin__icon{color:var(--deep-teal);pointer-events:none;transition:color 0.25s ease;}
.nearby-pin__label{font-family:var(--font-display);font-weight:600;font-size:12px;letter-spacing:1.2px;text-transform:uppercase;fill:var(--ink);pointer-events:none;dominant-baseline:central;transition:fill 0.25s ease,font-weight 0.25s ease;}
.nearby-pin__tagline{font-family:var(--font-body);font-weight:400;font-size:12px;letter-spacing:0.2px;fill:var(--ink-muted);pointer-events:none;dominant-baseline:central;font-style:italic;transition:fill 0.25s ease;}
.nearby-pin:hover .nearby-pin__bg{fill:var(--ivory-warmer);}
.nearby-pin:hover .nearby-pin__label{fill:var(--deep-teal);}
.nearby-pin.is-active .nearby-pin__bg{fill:var(--deep-teal);stroke:var(--deep-teal);stroke-width:3;}
.nearby-pin.is-active .nearby-pin__icon{color:var(--soft-ivory);}
.nearby-pin.is-active .nearby-pin__label{fill:var(--deep-teal);font-weight:700;}
.nearby-pin--anchor .nearby-pin__bg{fill:var(--deep-teal);stroke:var(--deep-teal);stroke-width:2;}
.nearby-pin--anchor .nearby-pin__icon{color:var(--soft-ivory);}
.nearby-pin--anchor .nearby-pin__label{font-family:var(--font-script);font-weight:400;font-style:normal;font-size:14px;letter-spacing:0.5px;text-transform:none;fill:var(--deep-teal);}
.nearby-pin--anchor .nearby-pin__tagline{font-size:12px;fill:var(--taupe-deep);font-style:normal;letter-spacing:1.2px;text-transform:uppercase;}
.nearby-pin--anchor:hover .nearby-pin__bg{fill:var(--deep-teal);}
.nearby__detail{display:none !important;}
@media (max-width:900px){.nearby__inner{grid-template-columns:1fr;}
.nearby__map-wrap{min-height:460px;order:-1;}
.nearby__list{max-height:none;}}
.lifestyle{padding:var(--section-y) 0;background:var(--taupe-light);}
.lifestyle__inner{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center;}
.lifestyle__copy{text-align:center;}
.lifestyle__copy .eyebrow{justify-content:center;}
.lifestyle__copy .lifestyle__body{margin-left:auto;margin-right:auto;}
.lifestyle__copy .lifestyle__ctas{justify-content:center;}
.lifestyle__copy .lifestyle__bullets{text-align:left;display:inline-grid;}
.lifestyle__media{position:relative;aspect-ratio:4/5;background-size:cover;background-position:center;}
.lifestyle__title{font-family:var(--font-display);font-weight:500;font-size:clamp(1.9rem,4.2vw,3.1rem);letter-spacing:0.01em;line-height:1.12;margin:0.6rem 0 1.25rem;color:var(--ink);}
.lifestyle__title .script{font-size:1.3em;color:var(--taupe-deep);}
.lifestyle__body{font-size:1.02rem;line-height:1.75;color:var(--ink-muted);margin:0 0 1.5rem;max-width:52ch;}
.lifestyle__bullets{list-style:none;padding:0;margin:0 0 1.75rem;display:grid;gap:0.75rem;}
.lifestyle__bullets li{padding-left:1.5rem;position:relative;font-size:0.98rem;color:var(--ink);line-height:1.55;}
.lifestyle__bullets li::before{content:'';position:absolute;left:0;top:0.6rem;width:12px;height:1px;background:var(--deep-teal);}
@media (max-width:900px){.lifestyle__inner{grid-template-columns:1fr;}
.lifestyle__media{aspect-ratio:4/3;}}
.launch{padding:var(--section-y) 0;background:radial-gradient(ellipse at top,rgba(152,193,216,0.18),transparent 60%),var(--deep-teal);color:var(--soft-ivory);text-align:center;position:relative;overflow:hidden;}
.launch__bg{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(6,27,41,0.78) 0%,rgba(6,27,41,0.82) 100%);}
.launch__inner{max-width:760px;margin:0 auto;position:relative;z-index:2;}
.launch__title{font-family:var(--font-display);font-weight:500;font-size:clamp(2rem,4.2vw,3rem);letter-spacing:0.02em;line-height:1.15;margin:0.6rem 0 1.25rem;}
.launch__title .script{font-size:1.3em;color:var(--mist-blue);}
.launch__body{font-size:1.05rem;line-height:1.7;color:rgba(255,255,255,0.85);max-width:58ch;margin:0 auto 2rem;}
.launch__cta{display:inline-flex;gap:0.85rem;flex-wrap:wrap;justify-content:center;}
@media (max-width:540px){.launch__cta{display:flex;width:100%;}
.launch__cta .btn{flex:1 1 auto;justify-content:center;}}
.attractions{
  padding: var(--section-y) 0;
  background: var(--ivory-warm);
}
.attractions__head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.attractions__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem 0 0;
  color: var(--ink);
}
.attractions__title .script{ font-size: 1.25em; color: var(--taupe-deep); }
.attractions__lead{
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 44ch;
  margin: 0;
}
.attractions__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.att-card{
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--taupe-light);
}
.att-card__media{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out-expo);
}
.att-card:hover .att-card__media{ transform: scale(1.05); }
.att-card__media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,42,62,0) 35%, rgba(12,42,62,0.78) 100%);
}
.att-card__body{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.25rem 1.4rem;
  color: var(--soft-ivory);
  z-index: 2;
}
.att-card__kicker{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.att-card__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.att-card__meta{
  font-size: 0.85rem;
  opacity: 0.88;
  font-weight: 300;
}
@media (max-width: 1024px){.attractions__grid{ grid-template-columns: repeat(2, 1fr); }
.attractions__head{ grid-template-columns: 1fr; align-items: start; gap: 1rem; }}
@media (max-width: 540px){.att-card{ aspect-ratio: 4 / 3; }}
.amenities{
  padding: var(--section-y) 0;
  background: var(--soft-ivory);
}
.amenities__head{
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.amenities__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
  color: var(--ink);
}
.amenities__title .script{ font-size: 1.25em; color: var(--taupe-deep); }
.amenities__lead{
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto;
}
.amenities__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity{
  position: relative;
  background: var(--soft-ivory);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(12,42,62,0.10);
}
.amenity__photo{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--ivory-warm);
  position: relative;
}
.amenity__caption{
  padding: 1rem 1.25rem 1.25rem;
  border: 1px solid var(--hairline);
  border-top: 0;
}
.amenity__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.amenity__body{
  font-size: 0.88rem;
  line-height: 1.55;
  min-height: calc(0.88rem * 1.55 * 2.5);
  color: var(--ink-muted);
  margin: 0;
}
.amenity__banner{
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  padding: 0.45rem 0.7rem;
  background: rgba(12, 42, 62, 0.92);
  color: var(--soft-ivory);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.706rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  backdrop-filter: blur(4px);
}
.amenity__banner strong{ color: var(--mist-blue); font-weight: 600; }
.amenities__programming{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--ivory-warm);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.amenities__programming-media{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.amenities__programming-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.18;
  margin: 0.5rem 0 1rem;
  color: var(--ink);
}
.amenities__programming-title .script{ font-size: 1.3em; color: var(--taupe-deep); }
.amenities__programming-body{
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}
.amenities__programming-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.amenities__programming-list li{
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.amenities__programming-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 1px;
  background: var(--deep-teal);
}
@media (max-width: 1024px){.amenities__grid{ grid-template-columns: repeat(2, 1fr); }
.amenities__programming{ grid-template-columns: 1fr; }}
@media (max-width: 540px){.amenities__grid{ grid-template-columns: 1fr; gap: 0.85rem; }}
.accom{
  padding: var(--section-y) 0;
  background: var(--ivory-warm);
}
.accom__inner{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.accom__media{
  position: relative;
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
}
.accom__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
  color: var(--ink);
}
.accom__title .script{ font-size: 1.25em; color: var(--taupe-deep); }
.accom__body{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 1.75rem;
}
.accom__stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.accom__stat-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--deep-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.accom__stat-label{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  line-height: 1.5;
}
.accom__ctas{ display: flex; gap: 0.85rem; flex-wrap: wrap; }
@media (max-width: 900px){.accom__inner{ grid-template-columns: 1fr; }
.accom__media{ aspect-ratio: 4 / 3; order: -1; }}
.why{
  padding: var(--section-y) 0;
  background: var(--deep-teal);
  color: var(--soft-ivory);
}
.why__head{
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.why__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
  color: var(--soft-ivory);
}
.why__title .script{ font-size: 1.25em; color: var(--mist-blue); }
.why__lead{
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0 auto;
}
.why__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar{
  padding: 2rem 1.5rem;
  border: 1px solid var(--hairline-light);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.pillar:hover{
  background: rgba(255,255,255,0.04);
  border-color: var(--mist-blue);
}
.pillar__media{
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}
.pillar__num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--mist-blue);
  margin-bottom: 1rem;
}
.pillar__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft-ivory);
  margin: 0 0 0.65rem;
}
.pillar__body{
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
@media (max-width: 900px){.why__grid{ grid-template-columns: 1fr; gap: 1rem; }}
.faq{
  padding: var(--section-y) 0;
  background: var(--ivory-warm, #F5EFE0);
}
.faq__head{
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.6rem 0 0;
  line-height: 1.25;
}
.faq__list{ max-width: 880px; margin: 0 auto 2.5rem; }
.faq-item{ border-bottom: 1px solid var(--hairline); }
.faq-item:first-child{ border-top: 1px solid var(--hairline); }
.faq-item__question{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
  min-height: 44px;
}
.faq-item__question:hover{ color: var(--deep-teal); }
.faq-item__icon{
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item__icon::before,
.faq-item__icon::after{
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s ease;
}
.faq-item__icon::before{ top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-item__icon::after{ left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__answer{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__answer{ max-height: 600px; }
.faq-item__answer-inner{
  padding: 0 0 1.5rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 70ch;
}
.faq__cta-wrap{ text-align: center; }
.cta-band{ padding: var(--section-y) 0; background: var(--seafoam, #D1DBD6); color: var(--ink); text-align: center; }
.cta-band__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem auto 1.25rem;
  color: var(--ink);
  max-width: 22ch;
}
.cta-band__title .script{ font-size: 1.3em; color: var(--taupe-deep); }
.cta-band__lead{
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.cta-band__ctas{ display: inline-flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 540px){.cta-band__ctas{ display: flex; width: 100%; }
.cta-band__ctas .btn{ flex: 1 1 auto; justify-content: center; }}
}

@keyframes fadeUp{
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-reveal]{ opacity: 0; }
[data-reveal].is-revealed{
  opacity: 1;
  animation: fadeUp 0.9s var(--ease-out-expo) forwards;
}
@media (prefers-reduced-motion: reduce){[data-reveal]{ opacity: 1 !important; animation: none !important; }
*{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }}
@keyframes popIn{
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__ctas,
.search-bar{ opacity: 0; }
@keyframes searchBarFadeIn{
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 768px){.hero{ min-height: 92vh; min-height: 92dvh; }
.hero__title{ font-size: clamp(2rem, 8.5vw, 3.5rem); line-height: 1.05; }
.hero__sub{ font-size: 0.95rem; }
.hero__content{ padding-bottom: 1rem; }
.marquee__item{ padding: 1.1rem 1.25rem; gap: 1rem; font-size: 0.706rem; letter-spacing: 0.22em; }
.marquee__item .script{ font-size: 1.25rem; }
.marquee__tag{ font-size: 0.706rem; padding: 0.32rem 0.55rem; letter-spacing: 0.18em; }
.brand-dna__equation{ grid-template-columns: 1fr; gap: 1.25rem; }
.brand-dna__operator{ transform: rotate(90deg); margin: -0.5rem auto; }
.tiers{ grid-template-columns: 1fr !important; gap: 1.5rem; }
.destinations-map .dm__panel{ aspect-ratio: auto; min-height: 360px; }
.dm__dot-label{ font-size: 0.706rem; }
.dm__dot-state{ display: none; }
.owners__cta{ grid-template-columns: 1fr !important; }
.owners__cta-media{ aspect-ratio: 4/3; }
.final-cta__title{ font-size: clamp(1.8rem, 7vw, 3rem); }
.journal__grid{ grid-template-columns: 1fr !important; gap: 1.5rem; }
.btn, .icon-btn, .nav__cta{ min-height: 44px; }}
@media (max-width: 480px){.hero__eyebrow{ font-size: 0.706rem; }
.ornament{ display: none; }
.featured__head, .ugc__head, .services__head, .destinations-map .dm__head{
    grid-template-columns: 1fr;
    gap: 1rem;
  }}
@media (max-width: 560px){.brand-dna__contrib li{ padding: 0.55rem 0; font-size: 0.85rem; }
.brand-dna__contrib li strong{ font-size: 0.706rem; }}
@media (max-width: 380px){.wrap{ padding-left: 1rem; padding-right: 1rem; }
.hero__title{ font-size: clamp(1.7rem, 9vw, 2.4rem); }}
.featured{
  background: var(--seafoam);
  padding: var(--section-y) 0;

  overflow-x: clip;
}
.featured__head{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.featured__nav{
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.featured__arrow{
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(12, 42, 62, 0.25);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-quart),
    border-color 0.35s var(--ease-out-quart),
    color 0.35s var(--ease-out-quart),
    opacity 0.3s ease;
  user-select: none;
}
.featured__arrow:hover:not(:disabled){
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--soft-ivory);
}
.featured__arrow:disabled{
  opacity: 0.3;
  cursor: not-allowed;
}
.featured__arrow svg{ width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.featured__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.5rem 0 0;
  line-height: 1.2;
  max-width: 24ch;
}
.featured__title .script{
  text-transform: none;
  font-size: 1.2em;
  color: var(--taupe-deep);
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.05;
}
.featured__carousel-wrap{
  position: relative;
  width: 100%;

  overflow: hidden;
}
.featured__carousel{
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
  padding-left:  max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  padding-right: max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  scroll-padding-left: max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;

  justify-content: safe center;
}
.featured__carousel::-webkit-scrollbar{ display: none; }
.featured__carousel .home-card{

  flex: 0 0 calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 900px){.featured__carousel .home-card{ flex: 0 0 calc((100% - 3rem) / 3); }}
@media (max-width: 640px){.featured__carousel{
    padding-left:  1.5rem;
    padding-right: 1.5rem;
    scroll-padding-left: 1.5rem;
  }
.featured__carousel .home-card{
    flex: 0 0 calc(100% - 3rem);
    scroll-snap-align: center;
  }
  .featured__head{ flex-direction: column; align-items: center; }
  .featured__nav{ position: static; justify-content: center; margin-top: 1.25rem; }
}
.featured__progress{
  position: relative;
  height: 1px;
  background: rgba(12, 42, 62, 0.15);
  max-width: 360px;
  margin: 1.75rem auto 2.5rem;
}
.featured__progress-bar{
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  background: var(--deep-teal);
  width: 30%;
  transition: width 0.4s var(--ease-out-quart);
  min-width: 24px;
}
.featured__cta-wrap{ text-align: center; }
.home-card{
  background: var(--soft-ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-card__link{
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.home-card__link:hover{ text-decoration: none; }
.home-card__media{
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--seafoam);
}
.home-card__media[data-tone="warm"]{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%),
    url('https://assets.villatel.com/wp-content/uploads/2023/03/06203546/Reunion_resort_villa_rentals.jpg');
}
.home-card__media[data-tone="cool"]{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%),
    url('https://assets.villatel.com/wp-content/uploads/2024/09/07164635/Solterra.jpg');
}
.home-card__media[data-tone="ivory"]{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%),
    url('https://assets.villatel.com/wp-content/uploads/2024/09/07180219/HI_pool.jpg');
}
.home-card__media-label{
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-ivory);
  background: rgba(12, 42, 62, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.home-card__media-label::before{
  content: '';
  width: 4px; height: 4px;
  background: currentColor;
  display: inline-block;
}
.home-card__media-label[data-tier="premier"]{ background: rgba(12, 42, 62, 0.85); }
.home-card__media-label[data-tier="signature"]{
  background: rgba(152, 193, 216, 0.92);
  color: var(--deep-teal);
}
.home-card__media-label[data-tier="luxe"]{
  background: rgba(175, 160, 133, 0.95);
  color: var(--soft-ivory);
}
.home-card__heart{
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s ease;
}
.home-card__heart:hover{ background: var(--soft-ivory); color: var(--deep-teal); }
.home-card__heart svg{ width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.home-card__body{
  padding: 1.25rem 1.4rem 1.5rem;

  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-card__loc{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.28em;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 0.5rem;
}
.home-card__name{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.6rem 0;
  min-height: 2.6em;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
}
.home-card__meta{
  font-size: 0.84rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--hairline);
  padding-top: 0.75rem;
  margin-top: 0.75rem;

  min-height: 4.5em;
  flex: 1 0 auto;
  line-height: 1.45;
}
.home-card__price{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
}
.home-card__price-from{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}
.home-card__price-amt{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.home-card__price-amt span{
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-left: 0.2rem;
}
.tier__media,
.home-card__media,
.dest-card__media,
.brand-pillar__media,
.journal-card__media,
.owners__media{
  overflow: hidden;
}
.tier__media,
.home-card__media,
.dest-card__media,
.journal-card__media,
.owners__media,
.brand-pillar__media{
  transition: transform 0.8s var(--ease-out-quart);
}
.tier:hover .tier__media,
.home-card:hover .home-card__media,
.dest-card:hover .dest-card__media,
.journal-card:hover .journal-card__media{
  transform: scale(1.04);
}
.home-card{ transition: transform 0.55s var(--ease-out-expo); }
.home-card:hover{  }
.btn,
.tier__link,
.featured__link,
.promise__link,
.dest-card__link,
.nav__cta{
  position: relative;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    gap 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-quart);
}
.btn span[aria-hidden],
.tier__link span[aria-hidden],
.featured__link span[aria-hidden],
.promise__link span[aria-hidden],
.dest-card__link span[aria-hidden],
.nav__cta span[aria-hidden]{
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}
.btn:hover span[aria-hidden],
.tier__link:hover span[aria-hidden],
.featured__link:hover span[aria-hidden],
.promise__link:hover span[aria-hidden],
.dest-card__link:hover span[aria-hidden],
.nav__cta:hover span[aria-hidden]{
  transform: translateX(6px);
}
.home-card__view{
  font-family: var(--font-display);
  font-size: 0.706rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.3s var(--ease-out-quart);
}
.home-card:hover .home-card__view{ gap: 0.75rem; }
.hero--compact{ min-height: clamp(420px, 60vh, 620px); }
.hero--compact .hero__title{ font-size: clamp(2.1rem, 5.2vw, 4.4rem); }
.hero--compact .hero__sub{ max-width: 48ch; margin-bottom: 1.5rem; }
@media (max-width: 768px){.hero--compact{ min-height: clamp(380px, 68vh, 540px); }}
.collection.collection--slim{ padding: 4.5rem 0 4rem; background: var(--soft-ivory); }
.collection--slim
.collection__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.6rem 0 1rem 0;
  line-height: 1.25;
}
.collection__title .script{
  text-transform: none;
  font-size: 1.25em;
  color: var(--taupe-deep);
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.05;
}
.collection__intro{
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: 1.04rem;
}
.collection__head{ max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center; }
.collection--slim .eyebrow{ justify-content: center; }
.tiers--slim{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; align-items: stretch; }
.tier-slim{ border-radius: 0.6rem; padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.tier-slim__label{ font-family: var(--font-display); font-weight: 600; font-size: 0.706rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-deep); }
.tier-slim__name{ font-family: var(--font-script); font-weight: 400; font-size: 2.4rem; letter-spacing: 0; color: var(--deep-teal); margin: 0; line-height: 1; }
.tier-slim__name .script{ color: var(--deep-teal); }
.tier-slim__desc{ font-size: 0.92rem; line-height: 1.55; color: var(--ink-muted); margin: 0; }
.tier-slim--premier{ background: var(--ivory-warm, #F5EFE0); border: 1px solid var(--hairline); }
.tier-slim--signature{ background: var(--seafoam, #D1DBD6); border: 1px solid rgba(11, 59, 48, 0.08); }
.tier-slim--signature .tier-slim__label{ color: var(--deep-teal); opacity: 0.72; }
.tier-slim--luxe{ background: var(--deep-teal); color: var(--soft-ivory); border: 1px solid transparent; }
.tier-slim--luxe .tier-slim__label{ color: rgba(255,255,255,0.72); }
.tier-slim--luxe .tier-slim__name{ color: var(--soft-ivory); }
.tier-slim--luxe .tier-slim__name{ color: var(--mist-blue); }
.tier-slim--luxe .tier-slim__name .script{ color: var(--mist-blue); }
.tier-slim--luxe .tier-slim__desc{ color: rgba(255,255,255,0.85); }
@media (max-width: 880px){.tiers--slim{ grid-template-columns: 1fr; gap: 1rem; }}
.owned-op{ background: var(--ivory-warm, #F5EFE0); padding: 4rem 0; }
.owned-op__inner{ max-width: 720px; text-align: center; }
.owned-op__title{ font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.01em; line-height: 1.12; color: var(--ink); margin: 0.6rem 0 1rem; }
.owned-op__title .script{ font-family: var(--font-script); font-weight: 400; color: var(--deep-teal); font-size: 1.2em; }
.owned-op__body{ font-size: 1.02rem; line-height: 1.6; color: var(--ink-muted); max-width: 60ch; margin: 0 auto; }
.amenities__programming--labeled{ margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--hairline); }
.amenities__programming--labeled .amenities__programming-title{ font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.005em; line-height: 1.15; color: var(--ink); margin: 0.45rem 0 0.85rem; }
.amenities__programming--labeled .amenities__programming-title .script{ font-family: var(--font-script); font-weight: 400; color: var(--deep-teal); font-size: 1.18em; }
.faq-item--collapsed{ display: none; }
.faq__list.is-expanded .faq-item--collapsed{ display: block; }
.faq__toggle-wrap{ margin-top: 1.25rem; text-align: center; }
.faq__toggle{ background: none; border: 1px solid var(--hairline); border-radius: 999px; padding: 0.7rem 1.4rem; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep-teal); cursor: pointer; display: inline-flex; align-items: center; gap: 0.55rem; transition: background 0.18s ease, border-color 0.18s ease; }
.faq__toggle:hover{ background: var(--ivory-warm, #F5EFE0); border-color: var(--deep-teal); }
.faq__toggle[aria-expanded="true"] .faq__toggle-icon{ transform: rotate(180deg); }
.faq__toggle-icon{ transition: transform 0.2s ease; display: inline-block; }
/* .page-sub-nav + .city-sticky styles are owned by hbv/hbv-chrome.css (kit) */
.amenities__grid .amenity:nth-child(10):last-child{ grid-column: 2 / 3; }
@media (max-width: 880px){.amenities__grid .amenity:nth-child(10):last-child{ grid-column: auto; }}
.intro__lead + .intro__media{ margin-top: 3rem; }
.launch__bg-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; z-index: 0; }
img.hero__media-img{ position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; z-index: 0 !important; }
.hero__media-pill{ position: absolute; bottom: 1rem; right: 1rem; z-index: 4; font-family: var(--font-display); font-size: 0.706rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--soft-ivory); background: rgba(12, 42, 62, 0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 0.4rem 0.7rem; border: 1px solid rgba(255, 255, 255, 0.18); pointer-events: none; white-space: nowrap; }
.hero__media-pill--mobile{ display: none; }
@media (max-width: 768px){.hero__media-pill--desktop{ display: none; }
.hero__media-pill--mobile{ display: block; }}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible{ outline: 3px solid var(--mist-blue); outline-offset: 2px; border-radius: 2px; }
.skip-link{ position: absolute; left: 0.5rem; top: -3rem; z-index: 200; background: var(--deep-teal); color: #fff; padding: 0.6rem 1rem; border-radius: 0.4rem; font-family: var(--font-body); font-size: 1rem; text-decoration: none; transition: top 0.2s ease; }
.skip-link:focus{ top: 0.5rem; }
body{ padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }

/* --- hbv-v5-chrome --- */
@keyframes popIn{
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* body.has-modal-open is owned by hbv-chrome.css — not duplicated here */

.hero--photo::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 260px; background: linear-gradient(to bottom, rgba(21,52,66,0.58) 0%, rgba(21,52,66,0.22) 52%, rgba(21,52,66,0) 100%); z-index: 1; pointer-events: none; }
.intro__media{ display: none !important; }
html{ scroll-behavior: smooth; scroll-padding-top: 104px; }
@media (max-width: 1024px){html{ scroll-padding-top: 84px; }}
.intro__dek{ font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem); color: var(--ink-muted);
  letter-spacing: 0.01em; line-height: 1.25; margin: 0.65rem 0 0; }
.hero .hero__eyebrow, .hero .hero__title, .hero .hero__sub, .hero .search-bar{ opacity: 1; }
.brand-eq{ display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap;
  gap: clamp(0.55rem, 1.4vw, 1rem); margin: 0.4rem 0 0; }
.brand-eq__term{ font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: clamp(1rem, 1.9vw, 1.45rem); color: var(--soft-ivory);
  border: 1px solid rgba(255,255,255,0.38); border-radius: 3px; padding: 0.42em 0.9em; }
.brand-eq__op{ font-family: var(--font-display); font-weight: 300; font-size: clamp(1.05rem, 2vw, 1.6rem);
  color: rgba(255,255,255,0.62); }
.brand-eq__sum{ font-family: var(--font-script); font-weight: 400; font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--soft-ivory); line-height: 1; }
.brand-eq__cap{ font-family: var(--font-display); font-weight: 500; letter-spacing: 0.01em;
  font-size: clamp(0.9rem, 1.3vw, 1.08rem); color: rgba(255,255,255,0.82); margin: 1rem 0 0.2rem; }
.amenities__nav{ display: flex; justify-content: flex-end; gap: 0.75rem; margin: 0 0 1.25rem; }
.amenities__carousel{ display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 0.5rem; }
.amenities__carousel::-webkit-scrollbar{ display: none; }
.amenities__carousel .amenity{ flex: 0 0 clamp(260px, 31%, 340px); scroll-snap-align: start; display: flex; flex-direction: column; }
.amenities__carousel .amenity__caption{ flex: 1; }
@media (max-width: 720px){.amenities__carousel .amenity{ flex: 0 0 82%; }}
body{ overflow-x: clip; }
.hero--photo{ min-height: 72vh; min-height: 72dvh; display: flex; flex-direction: column;
  justify-content: flex-end; padding-top: clamp(18rem, 32vh, 24rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.hero--photo .hero__title{ font-size: clamp(1.9rem, 4.3vw, 3.7rem); line-height: 1.08; max-width: 28ch; }
.hero--photo .hero__sub{ max-width: 48ch; margin-bottom: 1.5rem; }
@media (max-width: 768px){.hero--photo{ min-height: 78vh; min-height: 78dvh; }}
.kosher{ padding: var(--section-y) 0; background: var(--ivory-warm); text-align: center; }
.kosher__inner{ max-width: 780px; margin: 0 auto; }
.kosher__title{ font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.12; letter-spacing: -0.01em; margin: 0.5rem 0 1.2rem; }
.kosher__title .script{ font-family: var(--font-script); font-weight: 400; font-size: 1.15em;
  color: var(--mist-blue); letter-spacing: 0; text-transform: none; }
.kosher__body{ color: var(--ink-muted); font-size: 1.02rem; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.kosher__cta{ margin-top: 1.6rem; }

@media (min-width: 721px){
  #featuredCarousel{ scroll-snap-type: x mandatory; }
}
@media (max-width: 720px){
  #featuredCarousel{ scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
}

.tiers:not(.tiers--slim){display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.75rem);}
.tier{background:var(--soft-ivory,#FDFAF5);position:relative;overflow:hidden;display:flex;flex-direction:column;}
.tier__media{aspect-ratio:4/3;position:relative;overflow:hidden;}
.tier__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s ease;}
.tier:hover .tier__media img{transform:scale(1.03);}
.tier__badge{position:absolute;top:1.25rem;left:1.25rem;z-index:3;font-family:var(--font-display, 'Archivo', sans-serif);font-size:0.706rem;letter-spacing:0.3em;text-transform:uppercase;color:#FFFFFF;background:rgba(21,52,66,0.85);backdrop-filter:blur(6px);padding:0.45rem 0.75rem;display:inline-flex;align-items:center;gap:0.4rem;}
.tier__badge::before{content:'';width:4px;height:4px;background:currentColor;display:inline-block;}
.tier__badge[data-tier="premier"]{background:rgba(21,52,66,0.85);color:#FFFFFF;}
.tier__badge[data-tier="signature"]{background:rgba(152,193,216,0.92);color:#153442;}
.tier__badge[data-tier="luxe"]{background:rgba(175,160,133,0.95);color:#FFFFFF;}
.tier__prev,.tier__next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.5);color:#fff;border:none;width:34px;height:34px;cursor:pointer;font-size:1.1rem;z-index:4;display:flex;align-items:center;justify-content:center;border-radius:3px;padding:0;}
.tier__prev{left:.6rem;}
.tier__next{right:.6rem;}
.tier__prev:hover,.tier__next:hover{background:rgba(0,0,0,.75);}
.tier__body{padding:2rem 1.75rem 2.25rem;flex:1;display:flex;flex-direction:column;position:relative;}
.tier__body::before{content:'';position:absolute;top:0;left:1.75rem;right:1.75rem;height:2px;}
.tier--premier .tier__body::before{background:var(--deep-teal,#0C2A3E);}
.tier--signature .tier__body::before{background:var(--mist-blue,#A8C5D4);}
.tier--luxe .tier__body::before{background:var(--taupe-deep,#8B7E62);}
.tier__name{font-family:var(--font-display,Archivo,sans-serif);font-weight:500;font-size:1.15rem;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-muted,#5C6A75);margin:1rem 0 .4rem;}
.tier__name .script{display:block;font-family:var(--font-script,'Sacramento',cursive);font-weight:400;font-size:2rem;letter-spacing:0;color:var(--ink,#1a1a1a);text-transform:none;margin-bottom:.1rem;line-height:1;}
.tier__desc{color:var(--ink-muted,#5C6A75);font-size:.96rem;line-height:1.65;margin:1rem 0 1.5rem;flex:1;}
.tier__features{list-style:none;padding:1.35rem 0 0;margin:0 0 1.75rem;display:flex;flex-direction:column;gap:.6rem;border-top:1px solid var(--hairline,rgba(12,42,62,.15));}
.tier__features li{font-size:.86rem;color:var(--ink-muted,#5C6A75);display:grid;grid-template-columns:20px 1fr;align-items:baseline;gap:.65rem;line-height:1.5;}
.tier__features li::before{content:'--';color:var(--taupe-deep,#8B7E62);font-size:.95rem;}
@media(max-width:768px){.tiers:not(.tiers--slim){grid-template-columns:1fr;}}

.hero .eyebrow,.hero .hero__eyebrow{font-size:1.4rem!important;letter-spacing:.18em;color:#FFFFFF!important;}
.hero__eyebrow::before{display:none!important;content:none!important;}
.hero__content{padding-left:clamp(1.25rem,3vw,2.5rem)!important;}
.hero--video{position:relative;overflow:hidden;}
video.hero__video-el{position:absolute!important;inset:0;width:100%!important;height:100%!important;object-fit:cover!important;z-index:0!important;}

.hero{ position: relative !important; }
.hero--video{
  min-height: 72vh !important;
  min-height: 72dvh !important;
  display: flex !important;
  align-items: flex-end !important;
  background: #0C2A3E;
}
.hero--video .hero__content{ position: relative; z-index: 10; width: 100%; }
video.hero__video-el{ position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover !important; z-index: 0 !important; }

/* --- village-city-sticky --- */
#navSticky { display: none !important; }
/* .city-sticky styles are owned by hbv/hbv-chrome.css (kit) */



/* =====================================================================
   THE COLLECTION — mobile fixes (Collection block audit, June 2026)
   1) On phones the three tier cards become a horizontal swipe carousel
      (snap per card, next card peeks in) instead of a stacked column.
   2) Tier image arrows meet the 44px touch-target minimum and are
      side-centered consistently on every page.
   ===================================================================== */
/* More air between the intro copy and the tier cards (desktop + mobile) */
.collection .collection__head { margin-bottom: clamp(3.5rem, 7vw, 5.5rem) !important; }
/* Card bottom rhythm: the bullet list is the card's LAST element, so its
   leftover 1.75rem bottom margin only stacked onto the body's 2.25rem
   padding (= 64px of dead space below the bullets). Drop the margin and
   close the card with 2rem padding, mirroring the body's 2rem top pad. */
.collection .tier__features { margin-bottom: 0 !important; }
.collection .tier__body { padding-bottom: 2rem !important; }
@media (max-width: 768px) {
  .tiers:not(.tiers--slim) {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tiers:not(.tiers--slim)::-webkit-scrollbar { display: none; }
  /* Cards size to their own content on mobile: kill the equal-height
     stretch + desc flex-fill that left dead space above the bullets */
  .tiers:not(.tiers--slim) { align-items: flex-start !important; }
  .tiers:not(.tiers--slim) .tier__desc { flex: 0 0 auto !important; }
  .tiers:not(.tiers--slim) > .tier {
    flex: 0 0 min(88%, 280px) !important;
    max-width: min(88%, 280px) !important;
    scroll-snap-align: center;
  }
  .tiers:not(.tiers--slim) .tier__prev,
  .tiers:not(.tiers--slim) .tier__next {
    width: 44px !important;
    height: 44px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
  .tiers:not(.tiers--slim) .tier__prev { left: 0.6rem !important; right: auto !important; }
  .tiers:not(.tiers--slim) .tier__next { right: 0.6rem !important; left: auto !important; }
}

/* =====================================================================
   HERO PARITY (June 2026) — match the orlando.html / space-coast.html
   "hero--video definitive layout" exactly, so the hero video height and
   the search bar position line up across the three pages.
   This page's hero carries .hero--photo; earlier rules sized it 72dvh.
   ===================================================================== */
.hero--photo {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  position: relative !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding-top: clamp(230px, 32vh, 360px) !important;
  padding-bottom: clamp(2rem, 4vh, 3.5rem) !important;
}
.hero--photo .hero__content {
  position: static !important;
  bottom: auto !important;
  width: 100% !important;
  z-index: 10 !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding-left: clamp(1.25rem, 3vw, 2.5rem) !important;
  padding-right: clamp(1.25rem, 3vw, 2.5rem) !important;
}
/* Match the standard hero title scale used on the video heroes */
.hero--photo .hero__title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem) !important;
  line-height: 1.02 !important;
  max-width: 18ch !important;
}
@media (max-width: 768px) {
  .hero--photo .hero__title { font-size: clamp(2rem, 8.5vw, 3.5rem) !important; line-height: 1.05 !important; max-width: 100% !important; }
}
@media (max-width: 380px) {
  .hero--photo .hero__title { font-size: clamp(1.7rem, 9vw, 2.4rem) !important; }
}
