:root {
  --lip-byt-navy: #071b33;
  --lip-byt-blue: #0d3154;
  --lip-byt-gold: #b78b3f;
  --lip-byt-gold-light: #e7d5ae;
  --lip-byt-ink: #17202a;
  --lip-byt-muted: #627080;
  --lip-byt-line: #dfe5eb;
  --lip-byt-soft: #f5f7f8;
  --lip-byt-white: #fff;
  --lip-byt-shadow: 0 1.25rem 3.6rem rgb(7 27 51 / 10%);
  --lip-byt-radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body.lip-byt-site {
  background: var(--lip-byt-white);
  color: var(--lip-byt-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

body.lip-byt-site * {
  box-sizing: border-box;
}

body.lip-byt-site img {
  height: auto;
  max-width: 100%;
}

body.lip-byt-site a {
  color: var(--lip-byt-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body.lip-byt-site a:focus-visible,
body.lip-byt-site button:focus-visible,
body.lip-byt-site input:focus-visible,
body.lip-byt-site select:focus-visible,
body.lip-byt-site summary:focus-visible {
  outline: 3px solid #3978e6;
  outline-offset: 3px;
}

body.lip-byt-site h1,
body.lip-byt-site h2,
body.lip-byt-site h3,
body.lip-byt-site h4 {
  color: var(--lip-byt-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.7em;
}

body.lip-byt-site h1 {
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

body.lip-byt-site h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

body.lip-byt-site h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.lip-byt-app {
  min-height: 100vh;
  overflow: clip;
}

.lip-byt-shell {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.lip-byt-shell--narrow {
  max-width: 860px;
}

.lip-byt-skip-link {
  background: var(--lip-byt-white);
  border: 1px solid var(--lip-byt-line);
  color: var(--lip-byt-navy);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -10rem;
  z-index: 100000;
}

.lip-byt-skip-link:focus {
  top: 1rem;
}

.lip-byt-header {
  backdrop-filter: blur(18px);
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid rgb(7 27 51 / 7%);
  position: sticky;
  top: 0;
  transition: box-shadow 180ms ease;
  z-index: 1000;
}

.admin-bar .lip-byt-header {
  top: 32px;
}

.lip-byt-header.is-scrolled {
  box-shadow: 0 0.7rem 2rem rgb(7 27 51 / 8%);
}

.lip-byt-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 5rem;
}

.lip-byt-brand .custom-logo-link,
.lip-byt-wordmark {
  align-items: center;
  color: var(--lip-byt-navy);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.lip-byt-brand .custom-logo {
  max-height: 3.2rem;
  width: auto;
}

.lip-byt-wordmark__mark {
  align-items: center;
  background: var(--lip-byt-gold);
  border-radius: 50%;
  color: var(--lip-byt-navy);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 0.65em;
  height: 1.9rem;
  justify-content: center;
  width: 1.9rem;
}

.lip-byt-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.lip-byt-menu {
  align-items: center;
  display: flex;
  gap: clamp(0.7rem, 1.7vw, 1.3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lip-byt-menu li {
  margin: 0;
  position: relative;
}

.lip-byt-menu a {
  color: var(--lip-byt-navy);
  display: block;
  font-size: 0.91rem;
  font-weight: 680;
  padding-block: 0.6rem;
  text-decoration: none;
}

.lip-byt-menu a:hover,
.lip-byt-menu .current-menu-item > a {
  color: var(--lip-byt-gold);
}

.lip-byt-menu .sub-menu {
  background: var(--lip-byt-white);
  border: 1px solid var(--lip-byt-line);
  border-radius: 0.8rem;
  box-shadow: var(--lip-byt-shadow);
  display: none;
  left: -1rem;
  list-style: none;
  min-width: 14rem;
  padding: 0.6rem 1rem;
  position: absolute;
  top: 100%;
}

.lip-byt-menu li:hover > .sub-menu,
.lip-byt-menu li:focus-within > .sub-menu {
  display: block;
}

.lip-byt-menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 0.6rem;
}

.lip-byt-menu-toggle > span:not(.screen-reader-text) {
  background: var(--lip-byt-navy);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1.55rem;
}

.lip-byt-button {
  align-items: center;
  background: var(--lip-byt-gold);
  border: 1px solid var(--lip-byt-gold);
  border-radius: 999px;
  color: var(--lip-byt-navy) !important;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 3.3rem;
  padding: 0.85rem 1.45rem;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lip-byt-button:hover {
  background: #c99f57;
  box-shadow: 0 0.8rem 1.5rem rgb(183 139 63 / 25%);
  transform: translateY(-2px);
}

.lip-byt-button--small {
  min-height: 2.8rem;
  padding: 0.68rem 1.15rem;
}

.lip-byt-button--light {
  background: var(--lip-byt-white);
  border-color: var(--lip-byt-white);
}

.lip-byt-text-link {
  color: var(--lip-byt-navy) !important;
  font-weight: 760;
  text-decoration: none !important;
}

.lip-byt-text-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.lip-byt-text-link:hover span {
  transform: translateX(0.25rem);
}

.lip-byt-eyebrow {
  color: var(--lip-byt-gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.lip-byt-hero {
  background: var(--lip-byt-white);
  min-height: auto;
  padding-block: clamp(3.5rem, 6vw, 5.75rem);
  position: relative;
}

.lip-byt-hero::before {
  background: radial-gradient(circle, rgb(231 213 174 / 32%) 0, rgb(255 255 255 / 0%) 68%);
  content: "";
  height: 42rem;
  left: -18rem;
  pointer-events: none;
  position: absolute;
  top: -15rem;
  width: 42rem;
}

.lip-byt-hero__grid {
  align-items: start;
  display: grid;
  column-gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  row-gap: clamp(2rem, 4vw, 3rem);
}

.lip-byt-hero__headline {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
}

.lip-byt-site .lip-byt-hero__headline h1 {
  font-size: clamp(3rem, 4.5vw, 3.75rem);
  margin-bottom: 0;
  max-width: none;
  white-space: nowrap;
}

.lip-byt-hero__copy {
  position: relative;
  z-index: 2;
}

.lip-byt-hero__lead {
  color: var(--lip-byt-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-top: 0;
  max-width: 39rem;
}

.lip-byt-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.lip-byt-hero__proof {
  border-top: 1px solid var(--lip-byt-line);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 1.4rem 0 0;
}

.lip-byt-hero__proof li {
  margin: 0;
}

.lip-byt-hero__proof strong,
.lip-byt-hero__proof span {
  display: block;
}

.lip-byt-hero__proof strong {
  color: var(--lip-byt-navy);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.lip-byt-hero__proof span {
  color: var(--lip-byt-muted);
  font-size: 0.78rem;
}

.lip-byt-hero__visual {
  align-self: start;
  aspect-ratio: 16 / 10;
  display: flex;
  justify-content: center;
  min-height: 0;
  position: relative;
  width: 100%;
}

.lip-byt-hero__visual > img {
  border-radius: var(--lip-byt-radius);
  box-shadow: var(--lip-byt-shadow);
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.lip-byt-hero__halo {
  display: none;
}

.lip-byt-hero__card {
  align-items: center;
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(7 27 51 / 8%);
  border-radius: 1rem;
  bottom: -1.25rem;
  box-shadow: var(--lip-byt-shadow);
  display: flex;
  gap: 0.85rem;
  left: 1.25rem;
  max-width: 20rem;
  padding: 1rem 1.15rem;
  position: absolute;
  z-index: 3;
}

.lip-byt-hero__card > span {
  align-items: center;
  background: #e8f5ec;
  border-radius: 50%;
  color: #23733d;
  display: flex;
  flex: 0 0 2.4rem;
  font-weight: 900;
  height: 2.4rem;
  justify-content: center;
}

.lip-byt-hero__card p {
  color: var(--lip-byt-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.lip-byt-hero__card strong {
  color: var(--lip-byt-navy);
  font-size: 0.9rem;
}

.lip-byt-search-band {
  background: var(--lip-byt-navy);
  color: var(--lip-byt-white);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.lip-byt-search-band h2,
.lip-byt-section-heading--light h2 {
  color: var(--lip-byt-white);
}

.lip-byt-search-band .lip-search {
  margin-top: 2rem;
}

.lip-byt-search-band .lip-search__panel {
  border: 0;
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 22%);
}

.lip-byt-search-band .lip-search__title {
  color: var(--lip-byt-navy);
  font-family: Georgia, serif;
}

.lip-byt-section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.lip-byt-section--soft {
  background: var(--lip-byt-soft);
}

.lip-byt-section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.lip-byt-section-heading h2 {
  margin-bottom: 0;
}

.lip-byt-section-heading--split {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.lip-byt-section-heading--center {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

.lip-byt-lounge-grid {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lip-byt-lounge-card {
  background: var(--lip-byt-white);
  border: 1px solid var(--lip-byt-line);
  border-radius: var(--lip-byt-radius);
  box-shadow: 0 0.6rem 1.8rem rgb(7 27 51 / 5%);
  margin: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lip-byt-lounge-card:hover {
  box-shadow: var(--lip-byt-shadow);
  transform: translateY(-5px);
}

.lip-byt-lounge-card__media {
  aspect-ratio: 16 / 10;
  background: #dfe8ed;
  display: block;
  overflow: hidden;
}

.lip-byt-lounge-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.lip-byt-lounge-card:hover .lip-byt-lounge-card__media img {
  transform: scale(1.035);
}

.lip-byt-lounge-card__media--fallback {
  align-items: center;
  background: linear-gradient(145deg, var(--lip-byt-blue), var(--lip-byt-navy));
  display: flex;
  justify-content: center;
}

.lip-byt-lounge-card__media--fallback span {
  color: rgb(255 255 255 / 50%);
  font-family: Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
}

.lip-byt-lounge-card__body {
  padding: 1.45rem;
}

.lip-byt-lounge-card__body h3 {
  margin-bottom: 1.2rem;
}

.lip-byt-lounge-card__body h3 a {
  color: var(--lip-byt-navy);
  text-decoration: none;
}

.lip-byt-lounge-card__meta {
  color: var(--lip-byt-gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

/* Product-style destination cards with a consistent image crop. */
.lip-destinations > h2 {
  margin: 0.25rem auto 0;
  max-width: 24ch;
  text-align: center;
}

.lip-destinations > .lip-eyebrow {
  color: var(--lip-byt-gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
  text-align: center;
  text-transform: uppercase;
}

.lip-destinations__grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}

.lip-destinations__grid > br {
  display: none;
}

.lip-destination-card {
  background: var(--lip-byt-white);
  border: 1px solid var(--lip-byt-line);
  border-radius: var(--lip-byt-radius);
  box-shadow: 0 0.6rem 1.8rem rgb(7 27 51 / 7%);
  color: var(--lip-byt-navy) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lip-destination-card__media {
  aspect-ratio: 16 / 10;
  background: #e8edf0;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  width: 100%;
}

.lip-destination-card__media img {
  display: block;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100% !important;
}

.lip-destination-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 1.25rem 1.35rem 1.4rem;
}

.lip-destination-card br {
  display: none;
}

.lip-destination-card__body strong {
  color: var(--lip-byt-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.2;
}

.lip-destination-card__body small {
  color: var(--lip-byt-muted);
  font-size: 0.82rem;
  margin-top: 0.45rem;
}

.lip-destination-card--no-image {
  background: linear-gradient(145deg, #fffaf0, #f2e7cf);
  min-height: 15rem;
  justify-content: flex-end;
}

.lip-destination-card:hover {
  box-shadow: var(--lip-byt-shadow);
  transform: translateY(-5px);
}

.lip-destination-card:hover .lip-destination-card__media img {
  transform: scale(1.035);
}

.lip-byt-steps {
  counter-reset: steps;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.lip-byt-steps article {
  background: var(--lip-byt-white);
  border: 1px solid var(--lip-byt-line);
  border-radius: var(--lip-byt-radius);
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.lip-byt-steps article > span {
  color: var(--lip-byt-gold);
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.lip-byt-steps p {
  color: var(--lip-byt-muted);
  margin-bottom: 0;
}

.lip-byt-faq__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.lip-byt-faq__grid > div:first-child > p:not(.lip-byt-eyebrow) {
  color: var(--lip-byt-muted);
  font-size: 1.06rem;
}

.lip-byt-accordion details {
  border-bottom: 1px solid var(--lip-byt-line);
  padding: 0;
}

.lip-byt-accordion summary {
  color: var(--lip-byt-navy);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.22rem;
  font-weight: 650;
  list-style: none;
  padding: 1.35rem 2.25rem 1.35rem 0;
  position: relative;
}

.lip-byt-accordion summary::-webkit-details-marker {
  display: none;
}

.lip-byt-accordion summary::after {
  color: var(--lip-byt-gold);
  content: "+";
  font-family: sans-serif;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 1.15rem;
}

.lip-byt-accordion details[open] summary::after {
  content: "−";
}

.lip-byt-accordion details p {
  color: var(--lip-byt-muted);
  margin-top: 0;
  max-width: 42rem;
  padding-bottom: 1.35rem;
}

.lip-byt-cta {
  align-items: center;
  background: var(--lip-byt-blue);
  border-radius: 1.6rem;
  color: var(--lip-byt-white);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: clamp(4.5rem, 9vw, 7.5rem);
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  position: relative;
}

.lip-byt-cta::after {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
  height: 18rem;
  position: absolute;
  right: 10%;
  top: -11rem;
  width: 18rem;
}

.lip-byt-cta h2 {
  color: var(--lip-byt-white);
  margin: 0;
}

.lip-byt-cta > * {
  position: relative;
  z-index: 1;
}

.lip-byt-page-hero {
  background: linear-gradient(180deg, #f8fafb, #fff);
  border-bottom: 1px solid var(--lip-byt-line);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.lip-byt-page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 16ch;
}

.lip-byt-page-hero p:not(.lip-byt-eyebrow) {
  color: var(--lip-byt-muted);
  font-size: 1.13rem;
  max-width: 48rem;
}

.lip-byt-page-hero--directory {
  background: linear-gradient(135deg, #f7f4ed, #eef5f7);
}

.lip-byt-directory > .lip-byt-shell > .lip-search {
  margin-top: -7rem;
  position: relative;
  z-index: 2;
}

.lip-byt-directory .lip-search__panel {
  box-shadow: var(--lip-byt-shadow);
}

.lip-byt-lounge-hero {
  background: linear-gradient(180deg, #f8fafb, #fff);
  padding-block: clamp(2.5rem, 6vw, 5rem) 0;
}

.lip-byt-lounge-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 18ch;
}

.lip-byt-breadcrumb {
  align-items: center;
  color: var(--lip-byt-muted);
  display: flex;
  font-size: 0.8rem;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.lip-byt-breadcrumb a {
  color: var(--lip-byt-muted);
}

.lip-byt-lounge-hero__meta {
  color: var(--lip-byt-muted);
  font-weight: 650;
}

.lip-byt-lounge-hero__image {
  aspect-ratio: 16 / 7;
  background: var(--lip-byt-soft);
  border-radius: 1.35rem;
  box-shadow: var(--lip-byt-shadow);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  overflow: hidden;
}

.lip-byt-lounge-hero__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lip-byt-lounge-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.lip-byt-booking-aside {
  position: sticky;
  top: 7rem;
}

.admin-bar .lip-byt-booking-aside {
  top: 9rem;
}

.lip-byt-entry-content {
  color: #303942;
  font-size: 1.03rem;
}

.lip-byt-entry-content > * + * {
  margin-top: 1.35em;
}

.lip-byt-entry-content h2,
.lip-byt-entry-content h3 {
  margin-top: 1.8em;
}

.lip-byt-entry-content ul,
.lip-byt-entry-content ol {
  padding-left: 1.4rem;
}

.lip-byt-entry-content blockquote {
  border-left: 4px solid var(--lip-byt-gold);
  color: var(--lip-byt-muted);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  margin-left: 0;
  padding-left: 1.4rem;
}

.lip-byt-page__content {
  min-height: 24rem;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.lip-byt-post-image {
  border-radius: var(--lip-byt-radius);
  margin: 2rem 0;
  overflow: hidden;
}

.lip-byt-post-list article {
  border-bottom: 1px solid var(--lip-byt-line);
  padding-block: 2rem;
}

.lip-byt-post-list h2 a {
  color: var(--lip-byt-navy);
  text-decoration: none;
}

.lip-byt-empty-state {
  background: var(--lip-byt-soft);
  border: 1px solid var(--lip-byt-line);
  border-radius: var(--lip-byt-radius);
  padding: 2rem;
  text-align: center;
}

.lip-byt-not-found {
  align-items: center;
  display: flex;
  min-height: 65vh;
  padding-block: 5rem;
  text-align: center;
}

.lip-byt-not-found .lip-byt-hero__actions {
  justify-content: center;
}

.lip-byt-footer {
  background: var(--lip-byt-navy);
  color: rgb(255 255 255 / 72%);
  padding-block: clamp(4rem, 8vw, 6rem) 1.5rem;
}

.lip-byt-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

.lip-byt-wordmark--footer {
  color: var(--lip-byt-white) !important;
}

.lip-byt-footer__intro p {
  max-width: 28rem;
}

.lip-byt-footer h2 {
  color: var(--lip-byt-white);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.lip-byt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lip-byt-footer li {
  margin: 0 0 0.65rem;
}

.lip-byt-footer a {
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
}

.lip-byt-footer a:hover {
  color: var(--lip-byt-white);
}

.lip-byt-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
}

/* Lounge iPass plugin integration. */
.lip-byt-site .lip-search,
.lip-byt-site .lip-lounge-details,
.lip-byt-site .lip-booking-options,
.lip-byt-site .lip-destinations {
  font-family: inherit;
}

.lip-byt-site .lip-search__panel,
.lip-byt-site .lip-booking-options,
.lip-byt-site .lip-lounge-details__summary,
.lip-byt-site .lip-lounge-details__section {
  border-radius: var(--lip-byt-radius);
}

.lip-byt-site .lip-search__submit,
.lip-byt-site .lip-booking-options button,
.lip-byt-site .lip-booking-options__request {
  background: var(--lip-byt-gold);
  border-color: var(--lip-byt-gold);
  color: var(--lip-byt-navy);
  font-weight: 800;
}

.lip-byt-site .lip-destinations h2,
.lip-byt-site .lip-lounge-details h2,
.lip-byt-site .lip-booking-options h2 {
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 1080px) {
  .lip-byt-hero__grid {
    gap: 2rem;
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  }

  .lip-byt-menu {
    gap: 0.75rem;
  }

  .lip-byt-menu a {
    font-size: 0.83rem;
  }
}

@media (max-width: 960px) {
  .admin-bar .lip-byt-header {
    top: 46px;
  }

  .lip-byt-menu-toggle {
    display: block;
  }

  .lip-byt-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .lip-byt-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .lip-byt-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .lip-byt-nav {
    align-items: stretch;
    background: var(--lip-byt-white);
    border-top: 1px solid var(--lip-byt-line);
    box-shadow: 0 1.5rem 2rem rgb(7 27 51 / 10%);
    display: none;
    flex-direction: column;
    gap: 1rem;
    left: 0;
    padding: 1rem max(1rem, calc((100vw - 1240px) / 2 + 2rem)) 1.5rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .lip-byt-nav.is-open {
    display: flex;
  }

  .lip-byt-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .lip-byt-menu a {
    border-bottom: 1px solid var(--lip-byt-line);
    font-size: 1rem;
    padding: 0.85rem 0;
  }

  .lip-byt-menu .sub-menu {
    border: 0;
    box-shadow: none;
    display: block;
    padding-left: 1rem;
    position: static;
  }

  .lip-byt-hero {
    min-height: auto;
  }

  .lip-byt-hero__grid,
  .lip-byt-faq__grid {
    grid-template-columns: 1fr;
  }

  .lip-byt-site .lip-byt-hero__headline h1 {
    font-size: clamp(2.8rem, 7vw, 3.75rem);
    max-width: 18ch;
    white-space: normal;
  }

  .lip-byt-hero__visual {
    aspect-ratio: 16 / 8;
  }

  .lip-byt-lounge-grid,
  .lip-byt-steps,
  .lip-destinations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lip-byt-lounge-layout {
    grid-template-columns: 1fr;
  }

  .lip-byt-booking-aside {
    position: static;
  }

  .lip-byt-footer__grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .lip-byt-footer__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.lip-byt-menu-open {
    overflow: hidden;
  }

  .lip-byt-hero {
    padding-top: 3rem;
  }

  .lip-byt-site .lip-byt-hero__headline h1 {
    font-size: clamp(2.6rem, 11vw, 3.1rem);
    max-width: 12ch;
  }

  .lip-byt-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .lip-byt-hero__visual {
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  .lip-byt-hero__visual > img {
    object-position: center;
  }

  .lip-byt-hero__card {
    bottom: -1rem;
    left: 0.75rem;
  }

  .lip-byt-hero__proof {
    gap: 0.75rem;
  }

  .lip-byt-hero__proof strong {
    font-size: 1rem;
  }

  .lip-byt-hero__proof span {
    font-size: 0.68rem;
  }

  .lip-byt-section-heading--split,
  .lip-byt-cta,
  .lip-byt-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lip-byt-lounge-grid,
  .lip-byt-steps,
  .lip-destinations__grid,
  .lip-byt-footer__grid {
    grid-template-columns: 1fr;
  }

  .lip-byt-footer__intro {
    grid-column: auto;
  }

  .lip-byt-directory > .lip-byt-shell > .lip-search {
    margin-top: -5rem;
  }

  .lip-byt-lounge-hero__image {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .lip-byt-header,
  .lip-byt-footer,
  .lip-byt-booking-aside,
  .lip-byt-menu-toggle {
    display: none !important;
  }

  .lip-byt-lounge-layout {
    display: block;
  }
}
