/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/


/* EVO typography */
@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueRoman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* EVO theme foundation: light-first tokens with dark overrides */
:root {
  /* Brand tokens */
  --ink: #05030a;
  --white: #ffffff;
  --smoke: #babac4;
  --gold: #ffc94a;
  --violet: #70579c;
  --gold-ink: #8a6400;

  /* Semantic tokens */
  --bg: var(--white);
  --surface: #f7f7fa;
  --text: #111018;
  --text-muted: #5d5b66;
  --border: #d8d8e2;
  --primary-bg: var(--ink);
  --primary-text: var(--white);
  --accent-text: var(--gold-ink);
  --accent-ui: var(--violet);
  --focus: var(--gold);
  --transition-base: 0.75s;

  --radius-sm: 0;
  --radius-md: 0;
  --radius-xl: 40px;
  --control-height: 56px;
  --section-space-mobile: 72px;
  --section-space-desktop: 96px;
  /* Section vertical padding (Bootstrap-like py-10 ≈ 5rem on large screens) */
  --section-py: 5rem;
  --section-py-mobile: 3.25rem;
}

[data-theme="dark"] {
  --bg: var(--ink);
  --surface: #12101a;
  --text: var(--white);
  --text-muted: #c8c7d1;
  --border: #3a3745;
  --primary-bg: var(--white);
  --primary-text: var(--ink);
  --accent-text: var(--gold);
  --accent-ui: var(--violet);
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 5.5rem;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

h1 {
  font-weight: 700;
}

button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Simple color utility classes */
.text-ink { color: var(--ink) !important; }
.text-white { color: var(--white) !important; }
.text-smoke { color: var(--smoke) !important; }
/* Metallic gold text — tuned to brand --gold, softer satin (less chrome) */
.text-gold {
  background: linear-gradient(135deg, #ffc94a 0%, #FFED4E 25%, #C5A028 50%, #FFD700 75%, #ffc94a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  /* text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.28),
    0 3px 10px rgba(0, 0, 0, 0.18); */
}

/* Eyebrow: flat gold (readable small caps), not full metallic */
.evo-hero__eyebrow.text-gold {
  background: none !important;
  -webkit-text-fill-color: unset;
  color: #ffd870 !important;
  color: color-mix(in srgb, var(--gold) 88%, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

@supports not (background-clip: text) {
  .text-gold {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--gold) !important;
    text-shadow: none;
  }

  .evo-hero__eyebrow.text-gold {
    color: var(--gold) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-gold {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--gold) !important;
    text-shadow: none;
  }

  .evo-hero__eyebrow.text-gold {
    color: var(--gold) !important;
  }
}

.text-violet {
	color: var(--violet) !important;
}
.bg-ink {
	background-color: var(--ink) !important;
}

.bg-white {
	background-color: var(--white) !important;
}

.bg-gold {
	background-color: var(--gold) !important;
}

.bg-violet {
	background-color: var(--violet) !important;
}

.rounded-20 {
	border-radius: var(--radius-xl) !important;
}

.rounded-20-clip {
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
}

.mobile {
	display: none !important;
}

/* Section spacing — use on <section> instead of py-5 when you need more air */
.evo-section-py {
  padding-top: var(--section-py-mobile) !important;
  padding-bottom: var(--section-py-mobile) !important;
}

.evo-section-pt {
  padding-top: var(--section-py-mobile) !important;
}

.evo-section-pb {
  padding-bottom: var(--section-py-mobile) !important;
}

@media (min-width: 992px) {
  .evo-section-py {
    padding-top: var(--section-py) !important;
    padding-bottom: var(--section-py) !important;
  }

  .evo-section-pt {
    padding-top: var(--section-py) !important;
  }

  .evo-section-pb {
    padding-bottom: var(--section-py) !important;
  }
}

/* Fixed 5rem vertical padding (matches typical py-10 override) */
.py-ev-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Dev-only toggle UI */
.evo-theme-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.evo-theme-toggle:hover,
.evo-theme-toggle:focus-visible {
  outline: none;
  border-color: var(--focus);
}

/* Homepage hero */
.evo-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  width: 100%;
  padding: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.evo-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 10, 0.42);
}

.evo-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  color: var(--white);
}

.evo-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ui);
}

.evo-hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
}

.evo-hero__subheadline {
  max-width: 720px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.5;
}

.evo-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 0 24px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition:
    border-color var(--transition-base) ease,
    background-color var(--transition-base) ease,
    color var(--transition-base) ease;
}

.evo-hero__cta:hover,
.evo-hero__cta:focus-visible {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Sticky landing header */
.evo-site-header {
  z-index: 1030;
  padding: 0 clamp(10px, 2vw, 20px);
  background: transparent;
  box-shadow: none;
  position: fixed;
  width: 100%;
  top: 20px;
}

.evo-site-header .navbar {
  --bs-navbar-padding-y: 0;
}

.evo-header {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 6px 28px rgba(5, 3, 10, 0.07);
  border-radius: 40px;
  padding: 10px;
}

.evo-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.evo-header__brand {
  margin-right: auto;
}

.evo-header__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(46vw, 200px);
  object-fit: contain;
  filter: invert(1);
}

.evo-header__toggler {
  padding: 0.35rem 0.5rem;
}

.evo-header__collapse {
  flex-basis: 100%;
  flex-grow: 1;
}

/*
 * Desktop: nav links centered on the full header bar.
 * minmax(0,1fr) | auto | minmax(0,1fr) => equal side columns so the middle column’s
 * midpoint matches the bar’s midpoint (logo and CTA can differ in width).
 */
@media (min-width: 992px) {
  .evo-header__nav.navbar.navbar-expand-lg {
    display: grid !important;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(0.75rem, 2vw, 1.5rem);
    flex-wrap: nowrap;
  }

  .evo-header__nav .evo-header__brand.navbar-brand {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    margin-right: 0 !important;
    min-width: 0;
  }

  .evo-header__nav .navbar-toggler {
    display: none !important;
  }

  .evo-header__nav.navbar-expand-lg .navbar-collapse.evo-header__collapse {
    display: contents !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    width: auto !important;
  }

  .evo-header__nav #evo-header-section-nav.evo-header__links {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-direction: row;
    width: max-content;
    max-width: 100%;
  }

  .evo-header__nav .evo-header__cta {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    margin-top: 0 !important;
    margin-left: 0 !important;
    width: auto;
    max-width: none;
    min-width: 0;
  }
}

.evo-header__links .nav-item {
  text-align: center;
}

@media (min-width: 992px) {
  .evo-header__links .nav-item {
    text-align: left;
  }

  .evo-header__links {
    gap: 0.25rem !important;
  }
}

.evo-header__link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.evo-header__link:hover,
.evo-header__link:focus-visible {
  color: var(--ink) !important;
}

.evo-header__link--active {
  color: var(--ink) !important;
  border-bottom-color: #c5a028;
}

.evo-header__cta {
  flex-shrink: 0;
  padding: 0.65rem 1.1rem;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffc94a 0%, #ffed4e 32%, #d4a832 72%, #ffc94a 100%);
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all .75s;
}

.evo-header__cta:hover {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transition: all .75s;
}

@media (max-width: 991.98px) {
  .evo-header__cta {
    width: 100%;
    max-width: 100%;
  }
}

.evo-founding-modal__content {
  border: none;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(5, 3, 10, 0.18);
}

#experience,
#locations,
#faq {
  scroll-margin-top: 6.5rem;
}

@media (min-width: 992px) {
  #experience,
  #locations,
  #faq {
    scroll-margin-top: 5.5rem;
  }
}

/* Global section H2 style */
.evo-h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.evo-section-body {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-muted);
}

section.evo-video-ev.py-ev-10.py-lg-6 {
  padding-top: 0 !important;
}

/* Featured video — poster + full-area tap to play */
.evo-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin-left: auto;
  margin-right: auto;
  background: var(--ink);
}

.evo-video-frame__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evo-video-frame__chrome {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(5, 3, 10, 0.82) 0%,
    rgba(5, 3, 10, 0.25) 42%,
    transparent 68%
  );
}

.evo-video-frame__chrome-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 2rem);
}

.evo-video-frame__title {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 72%;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  text-shadow: 0 2px 24px rgba(5, 3, 10, 0.65);
}

.evo-video-frame__play-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--control-height);
  height: var(--control-height);
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(5, 3, 10, 0.55);
  color: var(--gold);
  box-shadow: 0 8px 28px rgba(5, 3, 10, 0.45);
}

.evo-video-frame__play-icon {
  margin-left: 3px;
  font-size: 1.35rem;
}

.evo-video-frame__hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.evo-video-frame__hit:focus {
  outline: none;
}

.evo-video-frame__hit:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.evo-video-frame--playing .evo-video-frame__chrome,
.evo-video-frame--playing .evo-video-frame__hit {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.evo-video-frame--playing .evo-video-frame__media {
  cursor: default;
}

/* Premium experience amenities */
.evo-amenities-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.evo-amenity-highlight,
.evo-amenity-card {
  min-height: 168px;
  border-radius: var(--radius-xl);
  border-radius: 25px;
  overflow: hidden;
}

.evo-amenity-highlight {
  background-size: cover;
  color: var(--white);
}

.evo-amenity-highlight__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 22px;
}

.evo-amenity-highlight__title {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  line-height: 0.95;
  text-transform: none;
  color: var(--gold);
}

.evo-amenities-panel {
  --amenities-gap: 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

.evo-amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--amenities-gap);
  background: var(--white);
}

.evo-amenity-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  background-image: var(--amenity-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(216, 216, 226, 0.95);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.evo-amenity-card::before {
  	content: "";
  	position: absolute;
  	inset: 0;
  	background: linear-gradient(to top, rgba(5, 3, 10, 0.68) 0%, rgba(5, 3, 10, 0.28) 55%, rgba(5, 3, 10, 0.16) 100%);
	background: linear-gradient(
	  to top,
	  rgba(5, 3, 10, 0.72) 0%,
	  rgba(5, 3, 10, 0.52) 12%,
	  rgba(5, 3, 10, 0.18) 20%,
	  rgba(5, 3, 10, 0.00) 32%
	);
}

.evo-amenity-card > * {
  position: relative;
  z-index: 1;
}

.evo-amenity-icon {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.evo-amenity-card__title {
  margin: auto 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.1rem);
  line-height: 1.3;
  color: var(--white);
}

@media (min-width: 768px) {
  .evo-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .evo-amenities-layout {
    grid-template-columns: 1.1fr 3fr;
  }

  .evo-amenity-highlight {
    min-height: 100%;
  }

  .evo-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evo-amenity-card {
    min-height: 196px;
  }
}

/* Our clubs — Splide carousel (partial slide visible at viewport edge) */
.evo-clubs {
  background: var(--ink);
}

.evo-clubs .evo-h2 { color: var(--white); }

.evo-clubs-lead {
  max-width: 44rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--smoke);
}

.evo-clubs-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    border-color var(--transition-base) ease,
    color var(--transition-base) ease,
    background-color var(--transition-base) ease;
}

.evo-clubs-nav__btn:hover,
.evo-clubs-nav__btn:focus-visible {
  outline: none;
  border-color: var(--gold);
  color: var(--gold);
}

.evo-clubs-splide-outer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 1.25rem;
}

.evo-clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .evo-clubs-splide-outer {
    padding-left: max(1.25rem, calc((100vw - 540px) / 2 + 0.75rem));
  }
}

@media (min-width: 768px) {
  .evo-clubs-nav {
    display: none !important;
  }
}

.evo-clubs-splide .splide__list {
  align-items: stretch;
}

.evo-club-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  height: 100%;
/*   border: 5px solid var(--violet); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.evo-club-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 3, 10, 0.88) 0%, rgba(5, 3, 10, 0.2) 45%, transparent 100%);
}

.evo-club-card-badge {
	position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--ink);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    line-height: 11px;
	color: var(--white);
}

.evo-club-card-badge-featured {
	color: var(--gold);
}

.evo-club-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 1.75rem;
}

.evo-club-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
}

.evo-club-card__title span {
	border-bottom: 3px solid var(--violet);
}

.evo-club-card__meta {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--smoke);
  text-transform: lowercase;
}

@media (min-width: 992px) {
  .evo-club-card {
    min-height: 480px;
  }
}

/* FAQ — minimal flush accordion */

.evo-faq.accordion-flush {
  --evo-faq-border: var(--border);
}

.evo-faq.accordion-flush .accordion-item {
  background: transparent;
  border-color: var(--evo-faq-border);
}

.evo-faq.accordion-flush .accordion-button {
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background-color: transparent;
  box-shadow: none;
}

.evo-faq.accordion-flush .accordion-button:not(.collapsed) {
  color: var(--text);
  background-color: transparent;
  box-shadow: none;
}

.evo-faq.accordion-flush .accordion-button::after {
  width: auto;
  height: auto;
  margin-left: auto;
  background-image: none;
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transform: none;
}

.evo-faq.accordion-flush .accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: none;
}

.evo-faq.accordion-flush .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.evo-faq.accordion-flush .accordion-body {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* FINAL CTA */

.evo-final-cta {
  position: relative;
  min-height: min(85vh, 720px);
  background: transparent;
}

.evo-final-cta__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.evo-final-cta__title {
  color: var(--white);
}

.evo-final-cta__body {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.evo-final-cta-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.evo-final-cta-fixed.is-active {
  opacity: 1;
}

.evo-final-cta-fixed__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.evo-final-cta-fixed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 10, 0.52);
}

/* Site footer — light bar (stays light even when body uses dark theme toggle) */
.evo-footer {
  --evo-footer-bg: #f2f2f5;
  --evo-footer-muted: #7a7885;
  --evo-footer-ink: #05030a;
  background: var(--evo-footer-bg);
  color: var(--evo-footer-ink);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  border-top: 1px solid rgba(5, 3, 10, 0.06);
}

.footer-logo img {
  max-width: 150px;
  filter: invert(1);
  margin-bottom: 10px;
}

.evo-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .evo-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.evo-footer__mark {
  display: inline-block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--evo-footer-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.evo-footer__mark:hover,
.evo-footer__mark:focus-visible {
  color: var(--evo-footer-ink);
  text-decoration: none;
  opacity: 0.82;
}

.evo-footer__legal {
  margin-top: 0.65rem;
  max-width: 22rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--evo-footer-muted);
}

.evo-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.evo-footer__links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--evo-footer-muted);
  white-space: nowrap;
  transition: all .75s;
}

.evo-footer__links a:hover,
.evo-footer__links a:focus-visible {
  color: var(--violet);
  transition: all .75s;
}

.evo-footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.top-button,
.top-button:hover,
.top-button:focus {
	background-color: var(--violet) !important;
    border: none;
}

.modal {
  z-index: 1060;
}

.modal-body {
	padding: 0 !important;
}

.modal-content {
	background-color: transparent !important;
}

.modal-dialog {
	max-width: 750px;
}

@media (max-width: 767px) {

	.modal-dialog {
		max-width: 92.5%;
		margin: 0 auto;
	}
	
}

.modal-header {
	display: none;
}

.modal-backdrop {
  z-index: 1055;
}

.modal-body iframe {
	height: 730px !important;
	background-color: var(--ink);
}

/* ***** PRIVACY POLICY ***** */

.evo-hero--internal {
  min-height: 52svh;
}

.evo-legal-page .evo-hero__content {
  width: min(100%, 760px);
}

.evo-legal-content {
  position: relative;
  z-index: 2;
}

.evo-legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(5, 3, 10, 0.06);
}

.evo-legal-card__inner {
  padding: clamp(24px, 4vw, 48px);
}

.evo-legal-card h2,
.evo-legal-card h3,
.evo-legal-card h4 {
  font-size: 20px;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.evo-legal-card h2:first-child,
.evo-legal-card h3:first-child,
.evo-legal-card h4:first-child {
  margin-top: 0;
}

.evo-legal-card p,
.evo-legal-card li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.evo-legal-card ul,
.evo-legal-card ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.evo-legal-card a {
  color: var(--violet);
  text-decoration: underline;
}

.evo-legal-card a:hover,
.evo-legal-card a:focus-visible {
  color: var(--ink);
}

.evo-legal-card strong {
  color: var(--ink);
}

/* ***** MEDIA QUERIES ***** */

@media (max-width: 992px) {
  .evo-hero--internal {
    min-height: 42svh;
  }
}

@media (max-width: 767px) {
	
	.mobile {
		display: block !important;
	}
	
	.evo-amenity-highlight {
		background-position: 50% 45%;
	}
	
}