/* ============================================================
   Lanaken Chalet — Component Stylesheet
   Depends on: design-tokens.css (loaded before this file)
   ============================================================ */

/* ---- Base ------------------------------------------------- */
body {
  font-family: var(--lc-font-body);
  color: var(--lc-ink);
  background: var(--lc-cream-50);
}

/* ---- Layout helpers --------------------------------------- */
.lc-container {
  width: min(var(--lc-container), calc(100% - 40px));
  margin-inline: auto;
}

.lc-section {
  padding-block: var(--lc-section-y);
}

.lc-section--dark {
  background: var(--lc-green-950);
  color: var(--lc-white);
}

.lc-section--cream {
  background: var(--lc-cream-100);
}

.lc-section--sand {
  background: var(--lc-sand-100);
}

/* ---- Typography ------------------------------------------- */
.lc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lc-green-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lc-eyebrow--light {
  color: var(--lc-sand-200);
}

.lc-heading-xl,
.lc-heading-lg,
.lc-heading-md,
.lc-heading-sm {
  font-family: var(--lc-font-heading);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--lc-ink);
  margin: 0;
}

.lc-heading-xl { font-size: var(--lc-h1); }
.lc-heading-lg { font-size: var(--lc-h2); }
.lc-heading-md { font-size: var(--lc-h3); }
.lc-heading-sm { font-size: clamp(20px, 2.4vw, 28px); }

.lc-heading--light { color: var(--lc-white); }

.lc-text {
  color: var(--lc-muted);
  line-height: 1.75;
  font-size: var(--lc-body);
}

.lc-text--light { color: rgba(255,255,255,.72); }

.lc-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--lc-muted);
  line-height: 1.65;
}

/* ---- Header ---------------------------------------------- */
.lc-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--lc-container), calc(100% - 32px));
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--lc-radius-lg);
  box-shadow: var(--lc-shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lc-green-950);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.2;
}

.lc-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.lc-nav a {
  color: var(--lc-ink);
  text-decoration: none;
  transition: color .2s;
}

.lc-nav a:hover,
.lc-nav a.is-active {
  color: var(--lc-green-700);
}

/* ---- Buttons --------------------------------------------- */
.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--lc-font-body);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  line-height: 1;
  white-space: nowrap;
}

.lc-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.lc-btn-primary {
  background: linear-gradient(135deg, var(--lc-green-800), var(--lc-green-600));
  color: var(--lc-white) !important;
  box-shadow: 0 12px 28px rgba(63, 101, 52, .28);
}

.lc-btn-primary:hover {
  box-shadow: 0 16px 36px rgba(63, 101, 52, .38);
  color: var(--lc-white) !important;
}

.lc-btn-light {
  background: var(--lc-cream-50);
  color: var(--lc-green-900) !important;
  border-color: var(--lc-line);
}

.lc-btn-outline {
  background: transparent;
  color: var(--lc-white) !important;
  border-color: rgba(255,255,255,.5);
}

.lc-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--lc-white);
}

.lc-btn-lg {
  min-height: 56px;
  padding: 0 32px;
  font-size: 15px;
}

/* ---- Hero ------------------------------------------------- */
.lc-hero {
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lc-green-950);
}

.lc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,18,9,.85) 0%,
    rgba(10,18,9,.55) 48%,
    rgba(10,18,9,.20) 100%
  );
  z-index: 1;
}

.lc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lc-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.lc-hero .lc-heading-xl,
.lc-hero .lc-text {
  color: var(--lc-white);
}

.lc-hero-copy {
  max-width: 640px;
}

.lc-hero-copy .lc-text {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255,255,255,.82);
}

/* ---- Facts bar ------------------------------------------- */
.lc-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 32px;
}

.lc-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lc-white);
  font-weight: 600;
  font-size: 14px;
}

.lc-fact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.lc-fact-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* ---- Booking card ---------------------------------------- */
.lc-booking-card {
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--lc-radius-lg);
  box-shadow: var(--lc-shadow-lg);
  padding: 32px 28px;
}

.lc-booking-card-title {
  font-family: var(--lc-font-heading);
  font-size: 28px;
  color: var(--lc-ink);
  margin: 0 0 6px;
  letter-spacing: -.02em;
}

.lc-booking-card-sub {
  font-size: 13px;
  color: var(--lc-muted);
  margin-bottom: 20px;
}

.lc-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.lc-field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--lc-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lc-input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--lc-line);
  background: var(--lc-white);
  padding: 0 14px;
  color: var(--lc-ink);
  font-family: var(--lc-font-body);
  font-size: 14px;
  transition: border-color .2s;
  box-sizing: border-box;
}

.lc-input:focus {
  outline: none;
  border-color: var(--lc-green-600);
}

.lc-booking-card .lc-btn {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

/* ---- Trust bar ------------------------------------------- */
.lc-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: linear-gradient(135deg, rgba(243,234,217,.9), rgba(255,253,248,.95));
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  padding: 28px 24px;
}

.lc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lc-trust-icon {
  width: 44px;
  height: 44px;
  background: var(--lc-white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: var(--lc-shadow-sm);
}

.lc-trust-icon img {
  width: 22px;
  height: 22px;
}

.lc-trust-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--lc-ink);
}

/* ---- Card grid ------------------------------------------- */
.lc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

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

.lc-card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ---- Image card ------------------------------------------ */
.lc-image-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-sm);
  background: var(--lc-green-900);
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.lc-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lc-image-card:hover img {
  transform: scale(1.06);
}

.lc-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.72) 100%);
}

.lc-image-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 20px 20px 20px;
  color: var(--lc-white);
}

.lc-image-card-content h3 {
  font-family: var(--lc-font-heading);
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--lc-white);
  line-height: 1.1;
}

.lc-image-card-content p {
  font-size: 13px;
  color: rgba(255,255,255,.80);
  margin: 0;
  line-height: 1.5;
}

.lc-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,253,248,.92);
  box-shadow: var(--lc-shadow-sm);
  margin-bottom: 14px;
}

.lc-icon-badge img {
  width: 22px;
  height: 22px;
}

/* ---- Gallery --------------------------------------------- */
.lc-gallery {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: repeat(2, 230px);
  gap: 16px;
}

.lc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--lc-radius-md);
  background: var(--lc-green-900);
}

.lc-gallery-item:first-child {
  grid-row: span 2;
}

.lc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lc-gallery-item:hover img {
  transform: scale(1.04);
}

.lc-gallery-cta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

/* ---- Section header (centered) --------------------------- */
.lc-section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.lc-section-header .lc-text {
  margin-top: 14px;
  max-width: 520px;
  margin-inline: auto;
}

/* ---- Seasons grid ---------------------------------------- */
.lc-seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lc-season-card {
  position: relative;
  height: 340px;
  border-radius: var(--lc-radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lc-season-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lc-season-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100%);
}

.lc-season-card:hover img {
  transform: scale(1.05);
}

.lc-season-card-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--lc-white);
}

.lc-season-card-body h3 {
  font-family: var(--lc-font-heading);
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--lc-white);
}

.lc-season-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,.80);
  margin: 0;
}

/* ---- Reviews --------------------------------------------- */
.lc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lc-review-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  padding: 28px;
  box-shadow: var(--lc-shadow-sm);
}

.lc-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 16px;
}

.lc-review-text {
  font-size: 15px;
  color: var(--lc-ink);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.lc-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lc-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lc-sand-200);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--lc-brown-700);
  flex-shrink: 0;
}

.lc-review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--lc-ink);
}

.lc-review-date {
  font-size: 12px;
  color: var(--lc-muted);
}

/* ---- Timeline -------------------------------------------- */
.lc-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
  padding-top: 20px;
}

.lc-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--lc-green-700), var(--lc-sand-200));
}

.lc-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 12px;
}

.lc-timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lc-white);
  border: 2px solid var(--lc-green-700);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--lc-shadow-sm);
}

.lc-timeline-dot img {
  width: 20px;
  height: 20px;
}

.lc-timeline-dot--active {
  background: var(--lc-green-700);
}

.lc-timeline-dot--active img {
  filter: brightness(0) invert(1);
}

.lc-timeline-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--lc-ink);
  line-height: 1.3;
}

/* ---- Facilities grid ------------------------------------- */
.lc-facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lc-facility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-sm);
}

.lc-facility-icon {
  width: 44px;
  height: 44px;
  background: var(--lc-cream-100);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lc-facility-icon img {
  width: 22px;
  height: 22px;
}

.lc-facility-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--lc-ink);
}

/* ---- Info card ------------------------------------------- */
.lc-info-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  padding: 24px;
  box-shadow: var(--lc-shadow-sm);
}

.lc-info-card-title {
  font-family: var(--lc-font-heading);
  font-size: 22px;
  color: var(--lc-ink);
  margin: 0 0 14px;
}

.lc-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lc-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--lc-line);
  font-size: 14px;
  color: var(--lc-ink);
  line-height: 1.5;
}

.lc-info-card li:last-child {
  border-bottom: none;
}

.lc-info-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lc-green-600);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---- Rules card ------------------------------------------ */
.lc-rules-card {
  background: linear-gradient(135deg, var(--lc-cream-100), var(--lc-cream-50));
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  padding: 32px;
}

.lc-rules-card h3 {
  font-family: var(--lc-font-heading);
  font-size: 28px;
  color: var(--lc-ink);
  margin: 0 0 20px;
}

.lc-rules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-rules-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lc-ink);
  font-weight: 600;
}

.lc-rules-list li::before {
  content: "—";
  color: var(--lc-green-600);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- CTA band -------------------------------------------- */
.lc-cta-band {
  background: linear-gradient(135deg, var(--lc-green-900), var(--lc-green-700));
  border-radius: var(--lc-radius-lg);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lc-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lc-cta-band h2 {
  font-family: var(--lc-font-heading);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--lc-white);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.lc-cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin: 0 0 28px;
}

/* ---- FAQ ------------------------------------------------- */
.lc-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-inline: auto;
}

.lc-faq-item {
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  overflow: hidden;
  box-shadow: var(--lc-shadow-sm);
}

.lc-faq-item summary,
.lc-faq-question {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 20px 24px;
  color: var(--lc-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
  font-family: var(--lc-font-body);
}

.lc-faq-item summary:hover,
.lc-faq-question:hover {
  background: var(--lc-cream-100);
}

.lc-faq-item summary::after,
.lc-faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--lc-green-700);
  flex-shrink: 0;
  transition: transform .2s;
}

.lc-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.lc-faq-answer {
  padding: 0 24px 20px;
  color: var(--lc-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ---- Practical info grid --------------------------------- */
.lc-practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lc-practical-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  padding: 22px;
  box-shadow: var(--lc-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-practical-card-icon {
  width: 48px;
  height: 48px;
  background: var(--lc-cream-100);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.lc-practical-card-icon img {
  width: 24px;
  height: 24px;
}

.lc-practical-card h3 {
  font-family: var(--lc-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--lc-ink);
  margin: 0;
}

.lc-practical-card p {
  font-size: 13px;
  color: var(--lc-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---- Contact --------------------------------------------- */
.lc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lc-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--lc-ink);
}

.lc-contact-row-icon {
  width: 40px;
  height: 40px;
  background: var(--lc-cream-100);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lc-contact-row-icon img {
  width: 20px;
  height: 20px;
}

.lc-contact-row-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--lc-muted);
  margin-bottom: 2px;
}

.lc-contact-row-value a {
  color: var(--lc-green-700);
  text-decoration: none;
  font-weight: 600;
}

/* ---- Map ------------------------------------------------- */
.lc-map-wrapper {
  border-radius: var(--lc-radius-md);
  overflow: hidden;
  box-shadow: var(--lc-shadow-md);
  line-height: 0;
}

.lc-map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ---- Mobile sticky CTA ----------------------------------- */
.lc-mobile-sticky-cta {
  display: none;
}

/* ---- Environment tabs ------------------------------------ */
.lc-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lc-tab {
  border-radius: 999px;
  border: 1.5px solid var(--lc-line);
  background: var(--lc-cream-50);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  color: var(--lc-ink);
}

.lc-tab:hover,
.lc-tab.is-active {
  background: var(--lc-green-700);
  color: var(--lc-white);
  border-color: var(--lc-green-700);
}

/* ---- Environment card ------------------------------------ */
.lc-env-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  overflow: hidden;
  box-shadow: var(--lc-shadow-sm);
  display: flex;
  flex-direction: column;
}

.lc-env-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--lc-green-900);
}

.lc-env-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lc-env-card:hover .lc-env-card-img img {
  transform: scale(1.06);
}

.lc-env-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-env-card-body h3 {
  font-family: var(--lc-font-heading);
  font-size: 22px;
  color: var(--lc-ink);
  margin: 0;
}

.lc-env-card-body p {
  font-size: 14px;
  color: var(--lc-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.lc-env-distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lc-green-700);
  padding: 4px 10px;
  background: var(--lc-cream-100);
  border-radius: 999px;
  align-self: flex-start;
}

/* ---- Split section (text + image) ------------------------ */
.lc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.lc-split--reverse { direction: rtl; }
.lc-split--reverse > * { direction: ltr; }

.lc-split-img {
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Breadcrumb ------------------------------------------ */
.lc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--lc-muted);
  margin-bottom: 12px;
}

.lc-breadcrumb a {
  color: var(--lc-muted);
  text-decoration: none;
}

.lc-breadcrumb a:hover { color: var(--lc-green-700); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .lc-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .lc-seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .lc-facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .lc-practical-grid { grid-template-columns: repeat(2, 1fr); }
  .lc-timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lc-timeline::before { display: none; }
}

@media (max-width: 900px) {
  .lc-card-grid { grid-template-columns: 1fr 1fr; }
  .lc-card-grid--3 { grid-template-columns: 1fr 1fr; }
  .lc-reviews-grid { grid-template-columns: 1fr 1fr; }
  .lc-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lc-gallery-item,
  .lc-gallery-item:first-child { grid-row: auto; height: 260px; }
  .lc-trust-bar { grid-template-columns: 1fr 1fr; }
  .lc-contact-grid { grid-template-columns: 1fr; }
  .lc-split { grid-template-columns: 1fr; }
  .lc-split--reverse { direction: ltr; }
  .lc-rules-list { grid-template-columns: 1fr; }

  .lc-mobile-sticky-cta {
    position: fixed;
    z-index: 100;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 253, 248, .97);
    border: 1px solid var(--lc-line);
    border-radius: 18px;
    box-shadow: var(--lc-shadow-lg);
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .lc-mobile-sticky-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--lc-ink);
  }
}

@media (max-width: 640px) {
  .lc-container { width: min(100% - 24px, var(--lc-container)); }
  .lc-card-grid { grid-template-columns: 1fr; }
  .lc-card-grid--2 { grid-template-columns: 1fr; }
  .lc-seasons-grid { grid-template-columns: 1fr; }
  .lc-facilities-grid { grid-template-columns: 1fr 1fr; }
  .lc-practical-grid { grid-template-columns: 1fr 1fr; }
  .lc-trust-bar { grid-template-columns: 1fr 1fr; }
  .lc-reviews-grid { grid-template-columns: 1fr; }
  .lc-timeline { grid-template-columns: 1fr 1fr; }
  .lc-facts { grid-template-columns: 1fr; }
  .lc-booking-card { padding: 22px 20px; }
}

@media (max-width: 420px) {
  .lc-facilities-grid { grid-template-columns: 1fr; }
  .lc-practical-grid { grid-template-columns: 1fr; }
  .lc-trust-bar { grid-template-columns: 1fr; }
  .lc-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   Onze Chalets — pagina-specifieke componenten
   ============================================================ */

/* ---- Button icon helpers ---------------------------------- */
.lc-btn-primary img {
  filter: brightness(0) invert(1);
}

.lc-btn-outline img {
  filter: brightness(0) invert(1);
}

/* ---- Spacing utility -------------------------------------- */
.lc-mt-16 { margin-top: 16px; }
.lc-mt-28 { margin-top: 28px; }
.lc-mt-32 { margin-top: 32px; }

/* ---- Booking card footer ---------------------------------- */
.lc-booking-footer {
  font-size: 12px;
  color: var(--lc-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ---- Chalets hero specs grid ------------------------------ */
.lc-chalets-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 28px;
}

.lc-chalets-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--lc-ink);
}

.lc-chalets-spec-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--lc-cream-100);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.lc-chalets-spec-icon img {
  width: 16px;
  height: 16px;
}

.lc-chalets-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---- Chalet cards ----------------------------------------- */
.lc-chalet-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lc-chalet-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--lc-green-900);
}

.lc-chalet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lc-chalet-card:hover .lc-chalet-card-img img {
  transform: scale(1.04);
}

.lc-chalet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lc-white);
  color: var(--lc-green-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--lc-shadow-sm);
}

.lc-chalet-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lc-chalet-card-name {
  font-family: var(--lc-font-heading);
  font-size: 22px;
  color: var(--lc-ink);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.lc-chalet-card-desc {
  font-size: 14px;
  color: var(--lc-muted);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.lc-chalet-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.lc-chalet-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lc-ink);
}

.lc-chalet-feat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--lc-cream-100);
  border-radius: 7px;
  display: grid;
  place-items: center;
}

.lc-chalet-feat-icon img {
  width: 14px;
  height: 14px;
}

.lc-chalet-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.lc-chalet-btns .lc-btn {
  justify-content: center;
}

/* Equal-height card columns via SPPB column class */
.lc-chalet-col,
.lc-chalet-col .sppb-addon-text-block,
.lc-chalet-col .sppb-addon-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ---- Chalets sidebar -------------------------------------- */
.lc-chalets-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.lc-sidebar-box {
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  padding: 22px;
  box-shadow: var(--lc-shadow-sm);
}

.lc-sidebar-box-title {
  font-family: var(--lc-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--lc-ink);
  margin: 0 0 16px;
}

.lc-sidebar-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-sidebar-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lc-ink);
  line-height: 1.45;
}

.lc-sidebar-check-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--lc-cream-100);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--lc-green-700);
}

.lc-sidebar-promo {
  background: linear-gradient(135deg, var(--lc-green-900), var(--lc-green-700));
  border-radius: var(--lc-radius-md);
  padding: 24px;
  flex: 1;
}

.lc-sidebar-promo-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.lc-sidebar-promo-title {
  font-family: var(--lc-font-heading);
  font-size: 20px;
  color: var(--lc-white);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.lc-sidebar-promo-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ---- Onze chalets responsive ------------------------------ */
@media (max-width: 1024px) {
  .lc-chalets-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .lc-chalets-specs { grid-template-columns: 1fr; }
  .lc-chalet-feats { grid-template-columns: repeat(2, 1fr); }
  .lc-chalets-sidebar { margin-top: 24px; }
}

@media (max-width: 640px) {
  .lc-chalets-hero-btns { flex-direction: column; }
  .lc-chalet-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ---- Comparison grid -------------------------------------- */
.lc-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.lc-compare-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lc-compare-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-compare-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lc-ink);
  margin: 0;
}

.lc-compare-card-sub {
  font-size: 0.9rem;
  color: var(--lc-muted);
  margin: 0;
}

.lc-compare-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lc-compare-card-list li {
  font-size: 0.95rem;
  color: var(--lc-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lc-compare-check {
  color: var(--lc-green-600, var(--lc-green-950));
  font-weight: 700;
  flex-shrink: 0;
}

.lc-compare-card-cta {
  margin-top: auto;
}

@media (max-width: 768px) {
  .lc-compare-grid { grid-template-columns: 1fr; }
  .lc-compare-card { padding: 24px; }
}

/* ---- Logo — extra linker marge ----------------------------- */
#sp-logo {
  padding-left: 28px;
}

/* ---- Navigation main menu — hover sand kleur -------------- */
#sp-header #sp-menu .sp-megamenu-parent > li:hover > a,
#sp-header #sp-menu .sp-megamenu-parent > li.active > a {
  color: var(--lc-sand-100);
}

/* ---- Navigation submenu — dark glass effect --------------- */
#sp-header .sp-has-child .sp-dropdown {
  background: rgba(22, 36, 20, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
  padding: 6px;
  top: 88px;
  margin-top: 0;
  min-width: 160px;
  overflow: visible;
}

/* Transparent bridge — cursor stays in hover zone when moving from nav item to dropdown */
#sp-header .sp-has-child .sp-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Reset Helix inner container (grey box + shadow + padding) */
#sp-header .sp-has-child .sp-dropdown .sp-dropdown-inner {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

#sp-header .sp-has-child .sp-dropdown li a {
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--lc-sand-100);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

#sp-header .sp-has-child .sp-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--lc-white);
  text-decoration: none;
}

/* ---- Chalet card image — fallback background -------------- */
.lc-chalet-card-img {
  background: linear-gradient(145deg, #d6e8d3 0%, #b5d4b0 100%);
}

.lc-env-card-img {
  background: linear-gradient(145deg, #d6e8d3 0%, #b5d4b0 100%);
}

/* ---- Jocomo featured env card ----------------------------- */
.lc-env-card--featured {
  grid-column: span 2;
}

.lc-env-card--featured .lc-env-card-img {
  aspect-ratio: 16/7;
}

@media (max-width: 768px) {
  .lc-env-card--featured { grid-column: span 1; }
  .lc-env-card--featured .lc-env-card-img { aspect-ratio: 16/9; }
}

/* %%NW-NATIVE-SPPB-START%% */
/* ============================================================
   Native SPPB addon styling — homepage conversion
   Targets SPPB HTML structure via column-level CSS classes
   ============================================================ */

/* ---- Hero section (native addons) ------------------------- */
.lc-hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 32px;
}

.lc-hero-left-col .sppb-addon-heading h1,
.lc-hero-left-col .sppb-addon-heading h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}

.lc-hero-left-col .sppb-addon-heading h6,
.lc-hero-left-col .lc-eyebrow {
  color: var(--lc-sand-100, #efe4d0);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.lc-hero-left-col .lc-hero-sub p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lc-hero-facts ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.lc-hero-facts li {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.lc-hero-facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lc-hero-accent, #c9a96e);
  font-weight: 700;
}

.lc-hero-cta .sppb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lc-hero-accent, #c9a96e);
  color: var(--lc-green-950, #162414);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s;
}

.lc-hero-cta .sppb-btn:hover {
  opacity: .9;
}

.lc-hero-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Trust bar (native feature addons) -------------------- */
.lc-trust-section > .sppb-row-container > .sppb-row {
  background: linear-gradient(135deg, rgba(243,234,217,.9), rgba(255,253,248,.95));
  border: 1px solid var(--lc-line, rgba(39,36,27,.14));
  border-radius: var(--lc-radius-lg, 16px);
  padding: 20px 12px;
  max-width: var(--lc-max-width, 1200px);
  margin: 0 auto;
}

.lc-trust-col .sppb-addon-content-align-before {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lc-trust-col .sppb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-trust-col .sppb-icon-container {
  width: 44px !important;
  height: 44px !important;
  background: var(--lc-white, #fff) !important;
  border-radius: 12px !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.08) !important;
  color: var(--lc-green-700, #2d5a27) !important;
  font-size: 18px !important;
  padding: 0 !important;
}

.lc-trust-col .sppb-icon-container i {
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
}

.lc-trust-col .sppb-feature-box-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--lc-green-950, #162414) !important;
  margin: 0 !important;
  font-family: var(--lc-font-body, 'Inter', sans-serif) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* ---- Section intros (eyebrow + h2 blocks) ----------------- */
.lc-eyebrow .sppb-addon-content,
.sppb-addon-heading.lc-eyebrow h6 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lc-green-700, #2d5a27);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lc-section-intro p {
  color: var(--lc-muted, #6b7280);
  font-size: 16px;
  max-width: 600px;
  margin-inline: auto;
}

/* ---- USP cards (native bgImageColumn) --------------------- */
.lc-usp-cards-section .sppb-row {
  gap: 0;
}

.lc-usp-card {
  overflow: hidden;
  border-radius: 16px;
}

.lc-usp-card .sppb-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 24px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.lc-usp-card .sppb-column-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lc-usp-card .sppb-column-addons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lc-usp-badge-wrap .sppb-addon-content {
  margin-bottom: 12px;
}

.lc-usp-card-title.sppb-addon-header .sppb-addon-title {
  font-family: var(--lc-font-heading, 'Playfair Display', serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 6px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.lc-usp-card .sppb-addon-text-block:last-child .sppb-addon-content p {
  font-size: 13px;
  color: rgba(255,255,255,.80);
  margin: 0;
  line-height: 1.5;
}

/* ---- Chalet cards (native SPPB columns) ------------------- */
.lc-chalet-col {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding-bottom: 24px;
}

.lc-chalet-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--lc-green-900, #1a3018);
}

.lc-chalet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.lc-chalet-col:hover .lc-chalet-img-wrap img {
  transform: scale(1.04);
}

.lc-chalet-col-img .sppb-addon-content {
  margin: 0;
  padding: 0;
}

.lc-chalet-col-img .sppb-img-container img,
.lc-chalet-col .sppb-addon-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.lc-chalet-col-name h3,
.lc-chalet-col .sppb-addon-heading h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lc-green-950, #162414);
  padding: 20px 24px 8px;
  margin: 0;
  font-family: var(--lc-font-heading, 'Playfair Display', serif);
  text-transform: none;
  letter-spacing: 0;
}

.lc-chalet-col .sppb-addon-text_block {
  padding: 0 24px;
  color: var(--lc-muted, #6b7280);
  font-size: 14px;
  line-height: 1.6;
}

.sppb-btn.lc-chalet-btn,
.sppb-btn.lc-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--lc-green-950, #162414) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 22px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  margin: 16px 0 0 24px !important;
  transition: background .2s !important;
  border: none !important;
}

.sppb-btn.lc-chalet-btn:hover,
.sppb-btn.lc-btn-primary:hover {
  background: #1e3820 !important;
  color: #fff !important;
}

.sppb-btn.lc-chalet-btn-light {
  display: inline-flex !important;
  align-items: center !important;
  background: transparent !important;
  color: var(--lc-green-950, #162414) !important;
  border: 1.5px solid rgba(22,36,20,.25) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 11px 22px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  margin: 8px 0 0 24px !important;
  transition: background .2s !important;
}

.sppb-btn.lc-chalet-btn-light:hover {
  background: rgba(22,36,20,.05) !important;
  color: var(--lc-green-950, #162414) !important;
}

/* ---- USP card columns (bg image + text overlay) ----------- */
.lc-usp-col,
.lc-season-col {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* inner .sppb-column carries the background image — must have explicit height */
.lc-season-col > .sppb-column {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.lc-usp-col .sppb-column-addons,
.lc-season-col .sppb-column-addons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
}

.lc-usp-title h3,
.lc-usp-col .sppb-addon-header h3,
.lc-usp-col .sppb-addon-title,
.lc-season-title h3,
.lc-season-col .sppb-addon-header h3,
.lc-season-col .sppb-addon-title {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lc-usp-text p,
.lc-usp-col .sppb-addon-text_block p,
.lc-season-text p,
.lc-season-col .sppb-addon-text_block p {
  color: rgba(255,255,255,.85) !important;
  font-size: 14px;
  margin: 0;
}

/* ---- Gallery section (native bgImageColumn) --------------- */
.lc-gallery-intro-right .sppb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--lc-green-950, #162414) !important;
  color: var(--lc-green-950, #162414) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  margin-top: 16px;
  transition: background .2s, color .2s;
}

.lc-gallery-intro-right .sppb-btn:hover {
  background: var(--lc-green-950, #162414) !important;
  color: #fff !important;
}

.lc-gallery-col {
  overflow: hidden;
  border-radius: var(--lc-radius-md, 12px);
}

.lc-gallery-col .sppb-column {
  border-radius: var(--lc-radius-md, 12px);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  position: relative;
}

.lc-gallery-col .sppb-column-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lc-gallery-col .sppb-column-addons {
  position: relative;
  z-index: 1;
}

.sppb-btn.lc-gallery-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255,255,255,.92) !important;
  color: var(--lc-green-950, #162414) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 9px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background .2s !important;
}

.sppb-btn.lc-gallery-cta-btn:hover {
  background: #fff !important;
}

/* ---- Gallery (native gallery addon) ----------------------- */
.lc-gallery-native .sppb-gallery-item img {
  border-radius: 8px;
}

/* ---- Reviews (native testimonial addons) ------------------ */
.lc-review-col .sppb-addon-testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.lc-review-col .sppb-addon-testimonial-review {
  color: var(--lc-ink, #1a2e1a);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.lc-review-col .sppb-addon-testimonial-client {
  font-weight: 700;
  color: var(--lc-green-950, #162414);
  font-size: 14px;
}

.lc-review-col .sppb-addon-testimonial-client-url {
  color: var(--lc-muted, #6b7280);
  font-size: 13px;
}

.lc-review-col .sppb-addon-testimonial-rating i {
  color: #c9a96e;
  font-size: 14px;
}

/* ---- CTA section (native heading + text + button) --------- */
.lc-cta-col {
  text-align: center;
}

.lc-cta-heading h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}

.lc-cta-sub p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin-bottom: 32px;
}

.lc-cta-btn .sppb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.lc-cta-btn .sppb-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ---- SPPB column addons wrapper — ensure full height for cards */
.sppb-col-md-3.lc-usp-col > .sppb-column-inner,
.sppb-col-md-3.lc-season-col > .sppb-column-inner {
  height: 100%;
}

/* ---- SPPB native: lc-hero on .sppb-section ----------------
   Override display:flex (incompatible with SPPB row layout).
   The ::before gradient overlay still works via position:relative. */
.sppb-section.lc-hero {
  display: block;
}

.sppb-section.lc-hero .sppb-row-container {
  position: relative;
  z-index: 2;
}

/* ---- SPPB button fixes ------------------------------------ */
/* SPPB puts the addon class on the <a> itself (same element as sppb-btn).
   Compound selectors + #sp-page-builder prefix to beat SPPB specificity. */

#sp-page-builder .sppb-btn.lc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lc-hero-accent, #c9a96e) !important;
  color: var(--lc-green-950, #162414) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

#sp-page-builder .sppb-btn.lc-hero-cta:hover {
  opacity: .88;
  text-decoration: none !important;
  color: var(--lc-green-950, #162414) !important;
}

#sp-page-builder .sppb-btn.lc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: 2px solid rgba(255,255,255,.7) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none !important;
  box-shadow: none !important;
}

#sp-page-builder .sppb-btn.lc-cta-btn:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: #fff !important;
  color: #fff !important;
  text-decoration: none !important;
}

#sp-page-builder .sppb-btn.lc-btn-light {
  background: var(--lc-cream-50, #fffdf8) !important;
  color: var(--lc-green-900, #1a3018) !important;
  border: 1px solid var(--lc-line, rgba(39,36,27,.14)) !important;
  text-decoration: none !important;
}

#sp-page-builder .sppb-btn.lc-btn-light:hover {
  color: var(--lc-green-900, #1a3018) !important;
  text-decoration: none !important;
}

/* ---- SPPB Timeline: replace default cyan with brand green ---- */
.sppb-addon-timeline .timeline-badge:before {
  border-color: var(--lc-green-700, #2d5a27) !important;
}

.sppb-addon-timeline .timeline-badge:after {
  background: var(--lc-green-700, #2d5a27) !important;
}

.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background: var(--lc-green-700, #2d5a27) !important;
  width: 2px !important;
}

.sppb-addon-timeline .timeline-panel {
  border-color: var(--lc-line, rgba(39,36,27,.14)) !important;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.sppb-addon-timeline .timeline-panel .title {
  color: var(--lc-green-950, #162414) !important;
  font-family: var(--lc-font-heading) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* %%NW-NATIVE-SPPB-END%% */
