/* ═══════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --pl-bg: #ffffff;
  --pl-surface: #f6f6f6;
  --pl-surface-dark: #0a0a0a;
  --pl-border: #d9d9d9;
  --pl-border-dark: #373839;

  --pl-gold: #111111;
  --pl-gold-light: #2a2a2a;
  --pl-gold-dim: #777777;

  --pl-text: #111111;
  --pl-text-muted: #666666;
  --pl-text-on-dark: #dbdbdb;

  --pl-accent: #111111;
  --pl-highlight-bg: #f1f1f1;

  --pl-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --pl-font-body: 'Jost', 'DM Sans', system-ui, sans-serif;

  --pl-radius: 12px;
  --pl-gap: clamp(1.5rem, 4vw, 3rem);

  --pl-container-wide: 1400px;
  --pl-container: 1140px;
  --pl-container-narrow: 980px;
  --pl-container-tight: 860px;

  --pl-section-pad: clamp(60px, 8vw, 120px) 0;
  --pl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════
   ASTRA FULL-WIDTH FIX
═══════════════════════════════════════════════════════ */
body:has(#lhs-main) {
  overflow-x: hidden;
}

body:has(#lhs-main) .site-content,
body:has(#lhs-main) .site-content .ast-container,
body:has(#lhs-main) .ast-container,
body:has(#lhs-main) .ast-container-fluid,
body:has(#lhs-main) .content-area,
body:has(#lhs-main) #primary,
body:has(#lhs-main) .site-main,
body:has(#lhs-main) article,
body:has(#lhs-main) .entry-content {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

body:has(#lhs-main) #primary {
  flex: 0 0 100% !important;
}

body:has(#lhs-main) #secondary {
  display: none !important;
}

body:has(#lhs-main) .lhs-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
.lhs-page *,
.lhs-page *::before,
.lhs-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lhs-page {
  font-family: var(--pl-font-body);
  font-weight: 300;
  color: var(--pl-text);
  background: var(--pl-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.lhs-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ═══════════════════════════════════════════════════════
   CONTAINERS
═══════════════════════════════════════════════════════ */
.lhs-container {
  width: 100%;
  max-width: var(--pl-container);
  margin-inline: auto;
  padding-inline: clamp(14px, 2vw, 28px);
}

.lhs-container--wide {
  max-width: var(--pl-container-wide);
}

.lhs-container--narrow {
  max-width: var(--pl-container-narrow);
}

.lhs-container--tight {
  max-width: var(--pl-container-tight);
}

.lhs-container--full {
  max-width: 100%;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════ */
.lhs-section {
  width: 100%;
  padding: var(--pl-section-pad);
  background: var(--pl-bg);
}

.lhs-section-alt {
  background: var(--pl-surface);
}

.lhs-section-dark {
  background: var(--pl-surface-dark);
  color: var(--pl-text-on-dark);
}

.lhs-section-title {
  font-family: var(--pl-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
  color: var(--pl-text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.lhs-section-dark .lhs-section-title {
  color: var(--pl-text-on-dark);
}

.lhs-section-sub {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: var(--pl-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}

.lhs-section-dark .lhs-section-sub {
  color: #a8a8a8;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.lhs-btn-primary,
.lhs-btn-outline {
  display: inline-block;
  font-family: var(--pl-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--pl-radius);
  transition: var(--pl-transition);
  cursor: pointer;
}

.lhs-btn-primary {
  background: var(--pl-accent);
  color: #fff;
  border: 1px solid var(--pl-accent);
}

.lhs-btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.lhs-btn-outline {
  background: transparent;
  color: var(--pl-text);
  border: 1px solid var(--pl-border-dark);
}

.lhs-btn-outline:hover {
  background: var(--pl-highlight-bg);
}

.lhs-section-dark .lhs-btn-outline,
.lhs-booking-section .lhs-btn-outline {
  color: var(--pl-text-on-dark);
  border-color: rgba(255, 255, 255, 0.35);
}

.lhs-section-dark .lhs-btn-outline:hover,
.lhs-booking-section .lhs-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#lhs-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lhs-slider-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lhs-slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.lhs-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lhs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
  filter: none;
}

.lhs-slide[aria-hidden="false"] img {
  transform: scale(1.04);
}

.lhs-slider-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.lhs-slider-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.lhs-prev,
.lhs-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  cursor: pointer;
  transition: var(--pl-transition);
  backdrop-filter: blur(6px);
}

.lhs-prev:hover,
.lhs-next:hover {
  background: #fff;
  border-color: #fff;
}

.lhs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lhs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: var(--pl-transition);
}

.lhs-dot.active,
.lhs-dot:hover {
  background: #fff;
  transform: scale(1.4);
}

.lhs-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 24px clamp(100px, 12vw, 160px);
  color: #fff;
}

.lhs-eyebrow {
  font-family: var(--pl-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
}

.lhs-hero-content h1 {
  font-family: var(--pl-font-display);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.lhs-hero-content h1 em {
  font-style: italic;
  color: #fff;
}

.lhs-hero-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 28px 32px;
}

/* ═══════════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════════ */
.lhs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.lhs-intro-text h2 {
  font-family: var(--pl-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--pl-text);
}

.lhs-intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pl-text-muted);
  margin-bottom: 24px;
}

.lhs-checklist {
  list-style: none;
}

.lhs-checklist li {
  font-size: 14px;
  color: var(--pl-text-muted);
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 0.5px solid var(--pl-border);
}

.lhs-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--pl-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.lhs-intro-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lhs-badge {
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--pl-transition);
}

.lhs-badge:hover {
  border-color: var(--pl-accent);
  transform: translateY(-2px);
}

.lhs-badge-num {
  display: block;
  font-family: var(--pl-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--pl-accent);
  line-height: 1;
}

.lhs-badge-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pl-text-muted);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════
   SHARED CARDS
═══════════════════════════════════════════════════════ */
.lhs-service-card,
.lhs-team-card,
.lhs-floor-card,
.lhs-amenity {
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.lhs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lhs-service-card {
  padding: 28px 24px;
  transition: var(--pl-transition);
  position: relative;
  overflow: hidden;
}

.lhs-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pl-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lhs-service-card:hover {
  border-color: var(--pl-accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.lhs-service-card:hover::before {
  transform: scaleX(1);
}

.lhs-service-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.lhs-service-card h3 {
  font-family: var(--pl-font-display);
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--pl-text);
}

.lhs-service-card > p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--pl-text-muted);
  margin-bottom: 16px;
}

.lhs-service-card ul {
  list-style: none;
  border-top: 0.5px solid var(--pl-border);
  padding-top: 14px;
}

.lhs-service-card ul li {
  font-size: 13px;
  color: var(--pl-text-muted);
  padding: 4px 0 4px 16px;
  position: relative;
}

.lhs-service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--pl-accent);
}

.lhs-service-price {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--pl-accent);
  border-top: 0.5px solid var(--pl-border);
  padding-top: 12px;
}

/* ═══════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════ */
.lhs-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lhs-team-card {
  padding: 28px 20px 24px;
  text-align: center;
  transition: var(--pl-transition);
}

.lhs-team-card:hover {
  border-color: var(--pl-accent);
  transform: translateY(-3px);
}

.lhs-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--pl-highlight-bg);
  border: 2px solid var(--pl-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lhs-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.lhs-team-avatar span {
  font-family: var(--pl-font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--pl-accent);
}

.lhs-team-card h4 {
  font-family: var(--pl-font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--pl-text);
}

.lhs-team-card > p {
  font-size: 13px;
  color: var(--pl-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.lhs-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 0.5px solid var(--pl-border);
}

.lhs-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-accent);
  background: var(--pl-highlight-bg);
  border: 1px solid var(--pl-border);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ═══════════════════════════════════════════════════════
   FLOORS
═══════════════════════════════════════════════════════ */
.lhs-floors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.lhs-floor-card {
  overflow: hidden;
  transition: var(--pl-transition);
}

.lhs-floor-card:hover {
  transform: translateY(-3px);
  border-color: var(--pl-accent);
}

.lhs-floor-featured {
  border: 1px solid var(--pl-accent);
}

.lhs-floor-img {
  height: 220px;
  overflow: hidden;
}

.lhs-floor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: none;
}

.lhs-floor-card:hover .lhs-floor-img img {
  transform: scale(1.04);
}

.lhs-floor-card > *:not(.lhs-floor-img) {
  padding-inline: 28px;
}

.lhs-floor-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pl-accent);
  background: var(--pl-highlight-bg);
  border: 1px solid var(--pl-border);
  border-radius: 999px;
  padding: 5px 12px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.lhs-floor-card h3 {
  font-family: var(--pl-font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--pl-text);
}

.lhs-floor-card > p {
  font-size: 14px;
  color: var(--pl-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.lhs-floor-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.lhs-floor-card ul li {
  font-size: 13px;
  color: var(--pl-text-muted);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 0.5px solid var(--pl-border);
}

.lhs-floor-card ul li:last-child {
  border-bottom: none;
}

.lhs-floor-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pl-accent);
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════════════ */
.lhs-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.lhs-amenity {
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--pl-transition);
}

.lhs-amenity:hover {
  border-color: var(--pl-accent);
  background: var(--pl-highlight-bg);
}

.lhs-amenity-icon {
  font-size: 22px;
  line-height: 1;
}

.lhs-amenity span:last-child {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--pl-text-muted);
}

/* ═══════════════════════════════════════════════════════
   BOOKING & CONTACT
═══════════════════════════════════════════════════════ */
.lhs-booking-section {
  background: var(--pl-surface-dark);
  color: var(--pl-text-on-dark);
  border-top: 1px solid var(--pl-border-dark);
}

.lhs-booking-cta {
  text-align: center;
  padding-bottom: clamp(40px, 6vw, 70px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(40px, 6vw, 70px);
}

.lhs-booking-section h2 {
  font-family: var(--pl-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--pl-text-on-dark);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.lhs-booking-section .lhs-booking-cta p {
  font-size: 15px;
  color: #a8a8a8;
  margin-bottom: 32px;
}

.lhs-booking-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lhs-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.lhs-contact-heading {
  font-family: var(--pl-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.lhs-contact-block address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  margin-bottom: 12px;
}

.lhs-link {
  display: block;
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.lhs-link:hover {
  color: #ffffff;
}

.lhs-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.lhs-hours-table td {
  padding: 7px 0;
  color: #bdbdbd;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.lhs-hours-table td:first-child {
  padding-right: 20px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
}

.lhs-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lhs-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #bdbdbd;
  transition: color 0.2s;
}

.lhs-social-link:hover {
  color: #ffffff;
}

.lhs-social-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lhs-social-link:hover svg {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.lhs-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lhs-reveal.lhs-visible {
  opacity: 1;
  transform: translateY(0);
}

.lhs-reveal-delay-1 {
  transition-delay: 0.1s;
}

.lhs-reveal-delay-2 {
  transition-delay: 0.2s;
}

.lhs-reveal-delay-3 {
  transition-delay: 0.3s;
}

.lhs-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .lhs-intro-grid {
    grid-template-columns: 1fr;
  }

  .lhs-services-grid,
  .lhs-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lhs-floors-grid {
    grid-template-columns: 1fr;
  }

  .lhs-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 680px) {
  .lhs-container {
    padding-inline: 16px;
  }

  .lhs-section {
    padding-block: 48px;
  }

  .lhs-service-card {
    padding: 24px 20px;
  }

  .lhs-intro-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .lhs-services-grid,
  .lhs-team-grid {
    grid-template-columns: 1fr;
  }

  .lhs-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lhs-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lhs-booking-actions {
    flex-direction: column;
  }

  .lhs-btn-primary,
  .lhs-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════ */
@media print {
  .lhs-slider-wrapper,
  .lhs-slider-controls,
  .lhs-booking-section,
  .lhs-btn-primary,
  .lhs-btn-outline {
    display: none;
  }

  .lhs-hero-content {
    position: static;
    background: none;
    color: #000;
    padding: 24px 0;
  }

  .lhs-section-alt {
    background: none;
  }
}