/* ============================================================
   Lakeview Fishery — Main Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --lv-green:       #1a3a2a;
  --lv-green-mid:   #2d5a3d;
  --lv-green-light: #3d7a52;
  --lv-navy:        #0f1f2e;
  --lv-charcoal:    #1c2b39;
  --lv-gold:        #c9a84c;
  --lv-gold-light:  #e0c06a;
  --lv-cream:       #f5f0e8;
  --lv-cream-dark:  #ede6d8;
  --lv-white:       #ffffff;
  --lv-text:        #2c2c2c;
  --lv-text-light:  #5a6a5f;
  --lv-border:      rgba(201,168,76,0.25);

  --lv-font-head:   'Georgia', 'Times New Roman', serif;
  --lv-font-body:   'Segoe UI', system-ui, -apple-system, sans-serif;

  --lv-radius:      12px;
  --lv-radius-lg:   20px;
  --lv-shadow:      0 4px 24px rgba(0,0,0,0.12);
  --lv-shadow-lg:   0 12px 48px rgba(0,0,0,0.2);

  --lv-transition:  0.3s ease;
  --lv-header-h:    80px;
}

/* ── Base ───────────────────────────────────────────────────── */
html { font-size: 16px; }

body {
  font-family: var(--lv-font-body);
  color: var(--lv-text);
  background: var(--lv-white);
  line-height: 1.65;
}

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

a { color: var(--lv-green-mid); transition: color var(--lv-transition); }
a:hover { color: var(--lv-gold); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--lv-font-head);
  line-height: 1.25;
  color: var(--lv-green);
}

/* ── Container ──────────────────────────────────────────────── */
.lv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.lv-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--lv-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--lv-transition);
  letter-spacing: 0.02em;
}
.lv-btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.lv-btn--sm { padding: 8px 18px; font-size: 0.85rem; }

.lv-btn--gold {
  background: var(--lv-gold);
  color: var(--lv-navy);
  border-color: var(--lv-gold);
}
.lv-btn--gold:hover {
  background: var(--lv-gold-light);
  border-color: var(--lv-gold-light);
  color: var(--lv-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.lv-btn--green {
  background: var(--lv-green-mid);
  color: var(--lv-white);
  border-color: var(--lv-green-mid);
}
.lv-btn--green:hover {
  background: var(--lv-green-light);
  border-color: var(--lv-green-light);
  color: var(--lv-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,61,0.35);
}

.lv-btn--outline {
  background: transparent;
  color: var(--lv-white);
  border-color: rgba(255,255,255,0.7);
}
.lv-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--lv-white);
  color: var(--lv-white);
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.lv-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lv-gold);
  margin-bottom: 10px;
}
.lv-eyebrow--light { color: var(--lv-gold-light); }

/* ── Section shared ─────────────────────────────────────────── */
.lv-section { padding: 90px 0; }
.lv-section--dark {
  background: var(--lv-charcoal);
  color: var(--lv-cream);
}
.lv-section--dark h2,
.lv-section--dark h3 { color: var(--lv-cream); }
.lv-section--cream { background: var(--lv-cream); }

.lv-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.lv-section__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.lv-section__header p { color: var(--lv-text-light); font-size: 1.05rem; }
.lv-section--dark .lv-section__header p { color: rgba(245,240,232,0.7); }

.lv-section__footer { text-align: center; margin-top: 50px; }

/* ── Header ─────────────────────────────────────────────────── */
.lv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--lv-header-h);
  background: rgba(15, 31, 46, 0.97);
  transition: background var(--lv-transition), box-shadow var(--lv-transition), height var(--lv-transition);
}

/* Transparent on front page and inner hero pages before scrolling */
.home .lv-header:not(.is-scrolled),
.lv-inner-hero .lv-header:not(.is-scrolled) {
  background: transparent;
}
.lv-header.is-scrolled {
  background: rgba(15, 31, 46, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 64px;
}
.lv-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.lv-header__brand a,
.lv-header__site-name {
  text-decoration: none;
  font-family: var(--lv-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lv-white);
  letter-spacing: 0.02em;
}
.lv-header__brand img { height: 50px; width: auto; }
.lv-header.is-scrolled .lv-header__brand img { height: 40px; }

/* Nav */
.lv-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lv-menu li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--lv-transition), background var(--lv-transition);
}
.lv-menu li a:hover,
.lv-menu li.current-menu-item > a,
.lv-menu li.current_page_item > a {
  color: var(--lv-gold);
  background: rgba(201,168,76,0.1);
}

/* Dropdown */
.lv-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--lv-navy);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--lv-transition);
  list-style: none;
  box-shadow: var(--lv-shadow);
}
.lv-menu li { position: relative; }
.lv-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lv-menu .sub-menu li a {
  padding: 10px 18px;
  border-radius: 0;
  color: rgba(255,255,255,0.85);
}

.lv-nav__cta { margin-left: 12px; }

/* Mobile toggle */
.lv-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.lv-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--lv-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.lv-nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.lv-nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lv-nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.lv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-navy);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.lv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,15,0.75) 0%,
    rgba(15,31,46,0.6) 100%
  );
  z-index: 1;
}
.lv-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.08) 0%, transparent 70%);
  z-index: 2;
}
.lv-hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 120px 24px 80px;
}
.lv-hero__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--lv-gold);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-gold);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.lv-hero__title {
  font-family: var(--lv-font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--lv-white);
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.lv-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.lv-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lv-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.lv-hero__scroll span {
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  position: relative;
}
.lv-hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: lv-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes lv-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ── Intro section ──────────────────────────────────────────── */
.lv-intro { padding: 100px 0; }
.lv-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lv-intro__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.lv-intro__text p {
  color: var(--lv-text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.lv-intro__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lv-feature-card {
  background: var(--lv-cream);
  border: 1px solid var(--lv-cream-dark);
  border-radius: var(--lv-radius);
  padding: 24px 20px;
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lv-shadow);
}
.lv-feature-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.lv-feature-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--lv-green); }
.lv-feature-card p { font-size: 0.88rem; color: var(--lv-text-light); margin: 0; line-height: 1.55; }

/* ── Cards grid ─────────────────────────────────────────────── */
.lv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lv-card {
  background: var(--lv-charcoal);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lv-shadow-lg);
}
.lv-card__img { position: relative; height: 220px; overflow: hidden; background: var(--lv-green); }
.lv-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lv-card:hover .lv-card__img img { transform: scale(1.05); }
.lv-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-green);
}
.lv-card__img--placeholder span { font-size: 3rem; opacity: 0.4; }
.lv-card__body { padding: 24px; }
.lv-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,168,76,0.15);
  color: var(--lv-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.lv-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--lv-cream); }
.lv-card__body h3 a { color: inherit; text-decoration: none; }
.lv-card__body h3 a:hover { color: var(--lv-gold); }
.lv-card__meta { font-size: 0.82rem; color: var(--lv-gold); margin-bottom: 10px; }
.lv-card__body p { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.6; margin-bottom: 16px; }
.lv-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lv-gold);
  text-decoration: none;
  transition: letter-spacing var(--lv-transition);
}
.lv-card__link:hover { letter-spacing: 0.04em; color: var(--lv-gold-light); }

/* ── Stats ──────────────────────────────────────────────────── */
.lv-stats {
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-navy) 100%);
  padding: 80px 0;
}
.lv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.lv-stat__number {
  display: block;
  font-family: var(--lv-font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--lv-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lv-stat__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Events list ────────────────────────────────────────────── */
.lv-events-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.lv-event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--lv-white);
  border: 1px solid var(--lv-cream-dark);
  border-radius: var(--lv-radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--lv-transition), transform var(--lv-transition);
}
.lv-event-row:hover { box-shadow: var(--lv-shadow); transform: translateY(-2px); }
.lv-event-row__date {
  min-width: 60px;
  text-align: center;
  background: var(--lv-green);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--lv-white);
}
.lv-event-row__day { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--lv-gold); }
.lv-event-row__month { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.lv-event-row__info { flex: 1; }
.lv-event-row__info h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--lv-green); }
.lv-event-row__info h3 a { text-decoration: none; color: inherit; }
.lv-event-row__info h3 a:hover { color: var(--lv-gold); }
.lv-event-row__meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--lv-text-light); flex-wrap: wrap; }

/* ── Gallery strip ──────────────────────────────────────────── */
.lv-gallery-preview { background: var(--lv-navy); padding-bottom: 0; }
.lv-gallery-preview .lv-section__header h2 { color: var(--lv-cream); }
.lv-gallery-preview .lv-container { padding-bottom: 0; }

/* ── Carousel wrapper ───────────────────────────────────────── */
.lv-gallery-carousel-wrap {
  position: relative;
  margin-top: 40px;
  user-select: none;
}

.lv-gallery-carousel {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px 4px;
}
.lv-gallery-carousel::-webkit-scrollbar { display: none; }
.lv-gallery-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.lv-gallery-carousel__item {
  position: relative;
  flex: 0 0 300px;
  height: 240px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 4px;
}
.lv-gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.lv-gallery-carousel__item:hover img { transform: scale(1.06); }

.lv-gallery-carousel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,31,46,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--lv-transition);
  border-radius: 4px;
}
.lv-gallery-carousel__item:hover .lv-gallery-carousel__overlay { opacity: 1; }
.lv-gallery-carousel__overlay span { color: var(--lv-white); font-size: 2.2rem; line-height: 1; }

.lv-gallery-carousel__item--placeholder {
  background: var(--lv-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lv-gallery-carousel__placeholder-inner { font-size: 2rem; opacity: 0.3; }

/* ── Arrow buttons ──────────────────────────────────────────── */
.lv-gallery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(15,31,46,0.75);
  color: var(--lv-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--lv-transition), transform var(--lv-transition);
  backdrop-filter: blur(4px);
}
.lv-gallery-carousel-btn:hover { background: var(--lv-green); transform: translateY(-50%) scale(1.08); }
.lv-gallery-carousel-btn--prev { left: 12px; }
.lv-gallery-carousel-btn--next { right: 12px; }
.lv-gallery-carousel-btn.is-hidden { opacity: 0; pointer-events: none; }

.lv-gallery-preview .lv-section__footer { padding: 40px 0; }

/* ── Team grid ──────────────────────────────────────────────── */
.lv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lv-team-card {
  text-align: center;
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lv-cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-team-card:hover { transform: translateY(-5px); box-shadow: var(--lv-shadow); }
.lv-team-card__photo { height: 200px; overflow: hidden; background: var(--lv-green); }
.lv-team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lv-team-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-green-mid) 100%);
}
.lv-team-card__photo-placeholder span {
  font-size: 3rem;
  font-family: var(--lv-font-head);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.lv-team-card__info { padding: 20px 16px; }
.lv-team-card__info h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--lv-green); }
.lv-team-card__role {
  display: block;
  font-size: 0.8rem;
  color: var(--lv-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.lv-team-card__info p { font-size: 0.88rem; color: var(--lv-text-light); line-height: 1.55; margin: 0; }

/* ── Reviews ────────────────────────────────────────────────── */
.lv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lv-review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--lv-radius-lg);
  padding: 32px 28px;
  transition: transform var(--lv-transition), background var(--lv-transition);
}
.lv-review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.lv-review-card__stars { margin-bottom: 16px; font-size: 1.1rem; }
.lv-star--filled { color: var(--lv-gold); }
.lv-star--empty { color: rgba(201,168,76,0.3); }
.lv-review-card blockquote {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.lv-review-card cite {
  font-size: 0.85rem;
  color: var(--lv-gold);
  font-style: normal;
  font-weight: 600;
}

/* ── Reviews page (light background) ───────────────────────── */
.lv-reviews-page { padding: 70px 0; }

.lv-reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lv-review-card-light {
  background: var(--lv-white);
  border: 1px solid var(--lv-cream);
  border-radius: var(--lv-radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-review-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
}
.lv-review-card-light .lv-review-card__stars { margin-bottom: 16px; font-size: 1.1rem; }
.lv-review-card-light blockquote {
  font-size: 0.97rem;
  color: var(--lv-text);
  line-height: 1.7;
  margin: 0 0 16px;
  font-style: italic;
}
.lv-review-card-light cite {
  font-size: 0.85rem;
  color: var(--lv-green);
  font-style: normal;
  font-weight: 600;
}

.lv-review-card-light__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.lv-review-card-light__date {
  font-size: 0.78rem;
  color: var(--lv-text-light);
}

.lv-reviews-google-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: var(--lv-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.lv-reviews-google-logo {
  height: 22px;
  width: auto;
  display: block;
}

.lv-review-hidden {
  display: none;
}

.lv-reviews-more {
  text-align: center;
  margin-top: 40px;
}

.lv-reviews-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--lv-text-light);
}
.lv-reviews-empty h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--lv-navy); }
.lv-reviews-empty p { margin-bottom: 28px; }

/* ── Google Reviews widget overrides (dark section) ─────────── */

/* Card background → dark transparent */
.lv-reviews-widget-hp .grw-backgnd {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  box-shadow: none !important;
}


/* Nav arrows */
.lv-reviews-widget-hp .grw-prev,
.lv-reviews-widget-hp .grw-next {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: var(--lv-white) !important;
}
.lv-reviews-widget-hp .grw-prev:hover,
.lv-reviews-widget-hp .grw-next:hover {
  background: var(--lv-green) !important;
}

/* Pagination dots */
.lv-reviews-widget-hp .grw-dot {
  background: rgba(255,255,255,0.25) !important;
}
.lv-reviews-widget-hp .grw-dot.grw-active {
  background: var(--lv-gold) !important;
}

@media ( max-width: 1024px ) {
  .lv-reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media ( max-width: 640px ) {
  .lv-reviews-page-grid { grid-template-columns: 1fr; }
}

/* ── CTA ────────────────────────────────────────────────────── */
.lv-cta {
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-navy) 100%);
  text-align: center;
}
.lv-cta__inner { max-width: 640px; margin: 0 auto; }
.lv-cta__inner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--lv-white); margin-bottom: 16px; }
.lv-cta__inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.lv-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.lv-footer {
  background: var(--lv-navy);
  color: rgba(245,240,232,0.75);
}
.lv-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}
.lv-footer__logo {
  display: block;
  font-family: var(--lv-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lv-white);
  text-decoration: none;
  margin-bottom: 12px;
}
.lv-footer__tagline { font-size: 0.9rem; opacity: 0.7; margin-bottom: 20px; }
.lv-footer__social { display: flex; gap: 12px; }
.lv-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--lv-white);
  transition: background var(--lv-transition), color var(--lv-transition);
}
.lv-footer__social a:hover { background: var(--lv-gold); color: var(--lv-navy); }
.lv-footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lv-gold);
  margin-bottom: 20px;
}
.lv-footer__menu { list-style: none; padding: 0; margin: 0; }
.lv-footer__menu li { margin-bottom: 10px; }
.lv-footer__menu a { color: rgba(245,240,232,0.7); text-decoration: none; font-size: 0.9rem; transition: color var(--lv-transition); }
.lv-footer__menu a:hover { color: var(--lv-gold); }
.lv-footer__contact ul { list-style: none; padding: 0; margin: 0; }
.lv-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(245,240,232,0.75);
}
.lv-footer__contact li svg { flex-shrink: 0; margin-top: 1px; color: var(--lv-gold); }
.lv-footer__contact a { color: rgba(245,240,232,0.75); text-decoration: none; }
.lv-footer__contact a:hover { color: var(--lv-gold); }
.lv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
}

/* ── Empty states ───────────────────────────────────────────── */
.lv-empty-state {
  text-align: center;
  padding: 40px;
  grid-column: 1 / -1;
  color: var(--lv-text-light);
}
.lv-empty-state a { color: var(--lv-gold); }

/* ── Reveal animation ───────────────────────────────────────── */
.lv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Wrapper / page body offset ─────────────────────────────── */
#wrapper { padding-top: var(--lv-header-h); }
/* Pages with a full-width hero extend behind the fixed header */
.home #wrapper,
.page-template-front-page #wrapper,
.lv-inner-hero #wrapper { padding-top: 0; }

/* ── Standard page / single ────────────────────────────────── */
.lv-page-wrap {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
}

/* ── Gutenberg native block overrides ───────────────────────── */
.lv-page-content .wp-block-columns {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 24px;
  gap: 60px;
  align-items: center;
}
.lv-page-content .wp-block-column p { color: var(--lv-text-light); line-height: 1.8; }
.lv-page-content .wp-block-column h2 { font-family: var(--lv-font-head); color: var(--lv-green); font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 16px; }
.lv-page-content .wp-block-column h3 { font-family: var(--lv-font-head); color: var(--lv-green); font-size: 1.15rem; margin-bottom: 10px; }
.lv-page-content .wp-block-image img { border-radius: var(--lv-radius-lg); box-shadow: var(--lv-shadow-lg); }
.lv-page-content .wp-block-image figcaption { font-size: 0.82rem; color: var(--lv-text-light); text-align: center; margin-top: 8px; }

/* Section group backgrounds */
.lv-page-content .wp-block-group.is-style-cream { background: var(--lv-cream); }
.lv-page-content .wp-block-group.is-style-dark {
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-navy) 100%);
}
.lv-page-content .wp-block-group.is-style-dark h2,
.lv-page-content .wp-block-group.is-style-dark p { color: rgba(255,255,255,0.9); }
.lv-page-content .wp-block-group.is-style-dark .wp-block-columns { padding: 80px 24px; }

/* Eyebrow label */
.lv-page-content p.lv-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lv-gold);
  margin-bottom: 10px;
}

/* Buttons */
.lv-page-content .wp-block-button__link {
  background: var(--lv-green-mid);
  color: var(--lv-white);
  border-radius: 50px;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--lv-transition);
  border: 2px solid var(--lv-green-mid);
}
.lv-page-content .wp-block-button__link:hover {
  background: var(--lv-green-light);
  border-color: var(--lv-green-light);
  transform: translateY(-2px);
}
.lv-page-content .wp-block-button.is-style-gold .wp-block-button__link {
  background: var(--lv-gold);
  border-color: var(--lv-gold);
  color: var(--lv-navy);
}
.lv-page-content .wp-block-button.is-style-gold .wp-block-button__link:hover {
  background: var(--lv-gold-light);
  border-color: var(--lv-gold-light);
}
.lv-page-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--lv-white);
}

/* Value cards (3-col icon blocks) */
.lv-page-content .lv-value-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
  height: 100%;
}
.lv-page-content .lv-value-card:hover { transform: translateY(-5px); box-shadow: var(--lv-shadow); }
.lv-page-content .lv-value-card .lv-value-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.lv-page-content .wp-block-group.is-style-cream .wp-block-columns { padding: 80px 24px; }

/* Separators */
.lv-page-content .wp-block-separator {
  border: none;
  height: 3px;
  width: 60px;
  background: var(--lv-gold);
  margin: 10px auto 10px;
  opacity: 1;
}

/* Responsive */
@media ( max-width: 768px ) {
  .lv-page-content .wp-block-columns { flex-direction: column; padding: 50px 20px; }
}

/* ── Page content (Gutenberg output) ────────────────────────── */
.lv-page-content { width: 100%; padding-bottom: 80px; }

.lv-page-content .lv-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}
.lv-page-content .lv-about-intro img {
  width: 100%;
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-lg);
}
.lv-page-content .lv-about-intro__text .lv-eyebrow { display: block; margin-bottom: 10px; }
.lv-page-content .lv-about-intro__text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.lv-page-content .lv-about-intro__text p { color: var(--lv-text-light); line-height: 1.8; margin-bottom: 16px; }

.lv-page-content .lv-about-values {
  background: var(--lv-cream);
  padding: 90px 24px;
  text-align: center;
}
.lv-page-content .lv-about-values__header { max-width: 600px; margin: 0 auto 50px; }
.lv-page-content .lv-about-values__header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.lv-page-content .lv-about-values__header p { color: var(--lv-text-light); }
.lv-page-content .lv-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.lv-page-content .lv-value-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-page-content .lv-value-card:hover { transform: translateY(-5px); box-shadow: var(--lv-shadow); }
.lv-page-content .lv-value-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.lv-page-content .lv-value-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--lv-green); }
.lv-page-content .lv-value-card p { font-size: 0.92rem; color: var(--lv-text-light); line-height: 1.6; margin: 0; }

.lv-page-content .lv-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}
.lv-page-content .lv-about-story img {
  width: 100%;
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-lg);
}
.lv-page-content .lv-about-story__text .lv-eyebrow { display: block; margin-bottom: 10px; }
.lv-page-content .lv-about-story__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.lv-page-content .lv-about-story__text p { color: var(--lv-text-light); line-height: 1.8; margin-bottom: 16px; }

.lv-page-content .lv-about-cta {
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-navy) 100%);
  padding: 90px 24px;
  text-align: center;
}
.lv-page-content .lv-about-cta h2 { color: var(--lv-white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.lv-page-content .lv-about-cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.lv-page-content .lv-about-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media ( max-width: 768px ) {
  .lv-page-content .lv-about-intro,
  .lv-page-content .lv-about-story { grid-template-columns: 1fr; gap: 40px; }
  .lv-page-content .lv-about-story { direction: ltr; }
  .lv-page-content .lv-about-values__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   Meet The Team Page
   ══════════════════════════════════════════════════════════════ */

.lv-team-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px;
}

.lv-team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.lv-team-member__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lv-green);
  box-shadow: var(--lv-shadow);
  border: 4px solid var(--lv-cream-dark);
}
.lv-team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.lv-team-member__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lv-font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-navy) 100%);
}

.lv-team-member__info { padding-top: 16px; }
.lv-team-member__info h2 { font-size: 1.4rem; color: var(--lv-green); margin-bottom: 6px; }
.lv-team-member__role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-gold);
  margin-bottom: 14px;
}
.lv-team-member__info p {
  font-size: 0.97rem;
  color: var(--lv-text-light);
  line-height: 1.75;
  margin: 0;
}

.lv-team-empty { text-align: center; padding: 60px; color: var(--lv-text-light); }

@media ( max-width: 1024px ) {
  .lv-team-page-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media ( max-width: 600px ) {
  .lv-team-member { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .lv-team-member__photo { width: 160px; height: 160px; }
  .lv-team-member__info { padding-top: 0; }
}

/* ══════════════════════════════════════════════════════════════
   Blog Archive & Single Post
   ══════════════════════════════════════════════════════════════ */

/* Blog grid */
.lv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}
.lv-blog-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lv-cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
  display: flex;
  flex-direction: column;
}
.lv-blog-card:hover { transform: translateY(-5px); box-shadow: var(--lv-shadow); }
.lv-blog-card__img-link { display: block; }
.lv-blog-card__img { height: 220px; overflow: hidden; background: var(--lv-green); }
.lv-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lv-blog-card:hover .lv-blog-card__img img { transform: scale(1.04); }
.lv-blog-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.3; }
.lv-blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.lv-blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--lv-text-light); margin-bottom: 10px; }
.lv-blog-card__cat a { color: var(--lv-gold); font-weight: 600; text-decoration: none; }
.lv-blog-card__body h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.lv-blog-card__body h2 a { color: var(--lv-green); text-decoration: none; }
.lv-blog-card__body h2 a:hover { color: var(--lv-gold); }
.lv-blog-card__body p { font-size: 0.9rem; color: var(--lv-text-light); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.lv-blog-card__read-more { font-size: 0.88rem; font-weight: 600; color: var(--lv-green-mid); text-decoration: none; transition: letter-spacing var(--lv-transition), color var(--lv-transition); }
.lv-blog-card__read-more:hover { color: var(--lv-gold); letter-spacing: 0.03em; }
.lv-blog-empty { text-align: center; padding: 80px 24px; }
.lv-blog-empty__icon { font-size: 3rem; margin-bottom: 16px; }
.lv-blog-empty h2 { color: var(--lv-green); margin-bottom: 10px; }
.lv-blog-empty p { color: var(--lv-text-light); margin-bottom: 28px; }

/* Single post hero */
.lv-post-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--lv-navy);
  background-size: cover;
  background-position: center;
}
.lv-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,15,0.9) 0%, rgba(10,20,15,0.3) 60%, transparent 100%);
}
.lv-post-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: calc(var(--lv-header-h) + 40px) 24px 50px;
  margin: 0 auto;
  width: 100%;
}
.lv-post-hero__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.lv-post-hero__cat { background: var(--lv-gold); color: var(--lv-navy); padding: 3px 12px; border-radius: 50px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; }
.lv-post-hero__content h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--lv-white); margin-bottom: 14px; line-height: 1.2; }
.lv-post-hero__author { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* Single post body */
.lv-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.lv-post-content { font-size: 1.05rem; line-height: 1.85; color: var(--lv-text); }
.lv-post-content h2 { font-size: 1.6rem; color: var(--lv-green); margin: 40px 0 16px; }
.lv-post-content h3 { font-size: 1.25rem; color: var(--lv-green); margin: 30px 0 12px; }
.lv-post-content p { margin-bottom: 20px; }
.lv-post-content img { border-radius: var(--lv-radius); margin: 20px 0; }
.lv-post-content ul, .lv-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.lv-post-content li { margin-bottom: 6px; }
.lv-post-content blockquote { border-left: 4px solid var(--lv-gold); padding: 16px 24px; margin: 28px 0; background: var(--lv-cream); border-radius: 0 var(--lv-radius) var(--lv-radius) 0; font-style: italic; color: var(--lv-text-light); }
.lv-post-content a { color: var(--lv-green-mid); }

/* Tags */
.lv-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0; }
.lv-post-tag { padding: 5px 14px; background: var(--lv-cream); border-radius: 50px; font-size: 0.82rem; color: var(--lv-text-light); text-decoration: none; transition: all var(--lv-transition); }
.lv-post-tag:hover { background: var(--lv-green); color: var(--lv-white); }

/* Post nav */
.lv-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--lv-cream-dark); border-bottom: 1px solid var(--lv-cream-dark); padding: 28px 0; margin: 36px 0; }
.lv-post-nav__prev, .lv-post-nav__next { display: flex; flex-direction: column; gap: 6px; }
.lv-post-nav__next { text-align: right; }
.lv-post-nav span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lv-gold); font-weight: 600; }
.lv-post-nav a { font-size: 0.92rem; color: var(--lv-green); text-decoration: none; font-weight: 500; line-height: 1.4; }
.lv-post-nav a:hover { color: var(--lv-gold); }
.lv-post-back { margin-top: 8px; }

/* Blog responsive */
@media ( max-width: 1024px ) { .lv-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media ( max-width: 600px ) {
  .lv-blog-grid { grid-template-columns: 1fr; }
  .lv-post-nav { grid-template-columns: 1fr; }
  .lv-post-nav__next { text-align: left; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media ( max-width: 1024px ) {
  .lv-intro__grid { grid-template-columns: 1fr; gap: 50px; }
  .lv-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .lv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-gallery-carousel__item { flex: 0 0 240px; height: 200px; }
  .lv-footer__inner { grid-template-columns: 1fr 1fr; }
  .lv-footer__brand { grid-column: 1 / -1; }
}

@media ( max-width: 768px ) {
  :root { --lv-header-h: 64px; }

  .lv-nav-toggle { display: flex; }

  .lv-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 20, 15, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .lv-nav.is-open { max-height: 100vh; }

  .lv-menu { flex-direction: column; gap: 0; }
  .lv-menu li a { padding: 14px 24px; border-radius: 0; font-size: 1rem; }
  .lv-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0;
  }
  .lv-menu .sub-menu li a { padding-left: 40px; font-size: 0.9rem; }

  .lv-nav__cta { padding: 16px 24px; }
  .lv-nav__cta .lv-btn { display: block; text-align: center; border-radius: var(--lv-radius); }

  .lv-section { padding: 60px 0; }
  .lv-cards-grid { grid-template-columns: 1fr; }
  .lv-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-reviews-grid { grid-template-columns: 1fr; }
  .lv-gallery-carousel__item { flex: 0 0 200px; height: 170px; }
  .lv-intro__features { grid-template-columns: 1fr; }
  .lv-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .lv-event-row { flex-wrap: wrap; gap: 14px; }
}

@media ( max-width: 480px ) {
  .lv-hero__title { font-size: 2.2rem; }
  .lv-hero__actions { flex-direction: column; align-items: center; }
  .lv-stats__grid { grid-template-columns: 1fr 1fr; }
  .lv-team-grid { grid-template-columns: 1fr; }
  .lv-gallery-carousel__item { flex: 0 0 200px; height: 170px; }
}

/* ══════════════════════════════════════════════════════════════
   Contact Page
   ══════════════════════════════════════════════════════════════ */

.lv-contact-cards {
  background: var(--lv-cream);
  padding: 60px 0;
}
.lv-contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lv-contact-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-contact-card:hover { transform: translateY(-4px); box-shadow: var(--lv-shadow); }
.lv-contact-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lv-green);
  color: var(--lv-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lv-contact-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lv-gold); margin-bottom: 8px; }
.lv-contact-card a { color: var(--lv-green); font-weight: 500; text-decoration: none; font-size: 0.95rem; }
.lv-contact-card a:hover { color: var(--lv-gold); }
.lv-contact-card address,
.lv-contact-card p { font-style: normal; font-size: 0.88rem; color: var(--lv-text-light); line-height: 1.6; margin: 0; }

/* Map */
.lv-contact-map-full { padding: 0 0 70px; }
.lv-contact-map-full iframe {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
  border: none;
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-lg);
}
.lv-contact-map-full__placeholder {
  max-width: 1200px;
  margin: 0 auto;
  height: 420px;
  background: var(--lv-cream);
  border: 2px dashed var(--lv-cream-dark);
  border-radius: var(--lv-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--lv-text-light);
}
.lv-contact-map-full__placeholder span { font-size: 2.5rem; }

/* Form section */
.lv-contact-form-section { padding: 80px 0; background: var(--lv-white); }
.lv-contact-form-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.lv-contact-form-header { text-align: center; margin-bottom: 40px; }
.lv-contact-form-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--lv-green); margin-bottom: 10px; }
.lv-contact-form-header p { color: var(--lv-text-light); }

/* CF7 form styling */
.lv-contact-form .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.lv-contact-form .wpcf7-form p { margin: 0; }
.lv-contact-form input[type="text"],
.lv-contact-form input[type="email"],
.lv-contact-form input[type="tel"],
.lv-contact-form textarea,
.lv-contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--lv-cream-dark);
  border-radius: var(--lv-radius);
  font-family: var(--lv-font-body);
  font-size: 0.95rem;
  color: var(--lv-text);
  background: var(--lv-white);
  transition: border-color var(--lv-transition);
  outline: none;
}
.lv-contact-form input:focus,
.lv-contact-form textarea:focus { border-color: var(--lv-green-mid); }
.lv-contact-form textarea { min-height: 140px; resize: vertical; }
.lv-contact-form input[type="submit"] {
  background: var(--lv-green-mid);
  color: var(--lv-white);
  border: 2px solid var(--lv-green-mid);
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--lv-transition);
  width: auto;
  align-self: flex-start;
}
.lv-contact-form input[type="submit"]:hover {
  background: var(--lv-green-light);
  border-color: var(--lv-green-light);
  transform: translateY(-2px);
}
.lv-contact-form .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.8rem; margin-top: 4px; display: block; }
.lv-contact-form .wpcf7-response-output {
  border-radius: var(--lv-radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Social */
.lv-contact-social { margin-top: 36px; text-align: center; }
.lv-contact-social h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lv-gold); margin-bottom: 12px; }
.lv-contact-social__links { display: flex; gap: 12px; justify-content: center; }
.lv-contact-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--lv-green);
  color: var(--lv-white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--lv-transition);
}
.lv-contact-social__btn:hover { background: var(--lv-green-mid); color: var(--lv-white); transform: translateY(-2px); }

@media ( max-width: 1024px ) {
  .lv-contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media ( max-width: 768px ) {
  .lv-contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .lv-contact-main__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media ( max-width: 480px ) {
  .lv-contact-cards__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   Rules & Prices Page
   ══════════════════════════════════════════════════════════════ */
.lv-rules-page .wp-block-columns { align-items: start; }

.lv-price-card {
  background: var(--lv-white);
  border: 2px solid var(--lv-cream-dark);
  border-radius: var(--lv-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--lv-transition), box-shadow var(--lv-transition), border-color var(--lv-transition);
}
.lv-price-card:hover { transform: translateY(-5px); box-shadow: var(--lv-shadow); border-color: var(--lv-gold); }
.lv-price-card.is-featured { background: var(--lv-green); border-color: var(--lv-green); }
.lv-price-card.is-featured h3,
.lv-price-card.is-featured p { color: rgba(255,255,255,0.9); }
.lv-price-card__icon { font-size: 2rem; margin-bottom: 14px; }
.lv-price-card h3 { font-size: 1.1rem; color: var(--lv-green); margin-bottom: 6px; }
.lv-price-card__price { font-family: var(--lv-font-head); font-size: 2.8rem; font-weight: 700; color: var(--lv-gold); line-height: 1; margin: 14px 0 4px; }
.lv-price-card.is-featured .lv-price-card__price { color: var(--lv-gold-light); }
.lv-price-card__unit { font-size: 0.82rem; color: var(--lv-text-light); margin-bottom: 16px; }
.lv-price-card.is-featured .lv-price-card__unit { color: rgba(255,255,255,0.6); }
.lv-price-card p { font-size: 0.88rem; color: var(--lv-text-light); line-height: 1.55; margin: 0; }

.lv-rules-list { list-style: none; padding: 0; margin: 0; }
.lv-rules-list li {
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--lv-cream-dark);
  font-size: 0.95rem;
  color: var(--lv-text);
  line-height: 1.6;
  position: relative;
}
.lv-rules-list li:last-child { border-bottom: none; }
.lv-rules-list li::before { content: '✓'; position: absolute; left: 0; top: 13px; color: var(--lv-gold); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   Gallery Page
   ══════════════════════════════════════════════════════════════ */

/* ── Page Hero (shared across inner pages) ──────────────────── */
.lv-page-hero {
  background: linear-gradient(to bottom, var(--lv-navy) 0%, var(--lv-green) 100%);
  padding: calc(var(--lv-header-h) + 70px) 24px 70px;
  text-align: center;
}
.lv-page-hero__inner { max-width: 700px; margin: 0 auto; }
.lv-page-hero__inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--lv-white);
  margin-bottom: 14px;
}
.lv-page-hero__inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Gallery grid (CSS Grid masonry — flows left to right) ──── */
.lv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 8px;
  gap: 0 12px;
}

.lv-gallery-item {
  display: block;
  border-radius: var(--lv-radius);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  margin-bottom: 12px;
}

.lv-gallery-item__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--lv-radius);
  background: var(--lv-green);
}

.lv-gallery-item__inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.lv-gallery-item:hover .lv-gallery-item__inner img {
  transform: scale(1.05);
}

.lv-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,15,0.85) 0%, rgba(10,20,15,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.lv-gallery-item:hover .lv-gallery-item__overlay {
  opacity: 1;
}

.lv-gallery-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lv-navy);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lv-gallery-item:hover .lv-gallery-item__icon {
  transform: scale(1);
}

.lv-gallery-item__caption {
  color: var(--lv-white);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.lv-gallery-item:hover .lv-gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Empty state ────────────────────────────────────────────── */
.lv-gallery-empty {
  text-align: center;
  padding: 80px 24px;
}
.lv-gallery-empty__icon { font-size: 3rem; margin-bottom: 20px; }
.lv-gallery-empty h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--lv-green); }
.lv-gallery-empty p { color: var(--lv-text-light); margin-bottom: 28px; }

/* ── Pagination ─────────────────────────────────────────────── */
.lv-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.lv-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lv-cream);
  color: var(--lv-green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--lv-transition);
  border: 2px solid transparent;
}
.lv-pagination .page-numbers:hover,
.lv-pagination .page-numbers.current {
  background: var(--lv-green);
  color: var(--lv-white);
}
.lv-pagination .prev,
.lv-pagination .next {
  width: auto;
  padding: 0 18px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* ── Gallery page responsive ────────────────────────────────── */
@media ( max-width: 1024px ) {
  .lv-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media ( max-width: 640px ) {
  .lv-gallery-grid { grid-template-columns: repeat(2, 1fr); column-gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════════════════════════════ */

.lv-events-page { padding: 70px 0; }

/* ── Section headers ─────────────────────────────────────────── */
.lv-events-section-header {
  margin-bottom: 40px;
}
.lv-events-section-header h2 {
  font-size: 2rem;
  color: var(--lv-green);
  margin: 6px 0 0;
}
.lv-events-section-header--past {
  margin-top: 70px;
}
.lv-events-section-header--past h2 {
  color: var(--lv-navy);
}

/* ── Upcoming events grid ───────────────────────────────────── */
.lv-events-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lv-event-card {
  background: var(--lv-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}

.lv-event-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.lv-event-card__body {
  display: flex;
  gap: 16px;
  padding: 22px 22px 24px;
  flex: 1;
}

.lv-event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--lv-green);
  color: var(--lv-white);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
  height: fit-content;
}
.lv-event-card__day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.lv-event-card__month {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
  opacity: 0.9;
}

.lv-event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lv-event-card__content h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--lv-navy);
  line-height: 1.3;
}
.lv-event-card__content h3 a {
  color: inherit;
  text-decoration: none;
}
.lv-event-card__content h3 a:hover { color: var(--lv-green); }

.lv-event-card__details {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lv-event-card__details li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--lv-text-light);
}
.lv-event-card__details li span {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lv-event-card__content p {
  font-size: 0.9rem;
  color: var(--lv-text-light);
  margin: 0 0 16px;
  flex: 1;
}

.lv-event-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── Past events list ───────────────────────────────────────── */
.lv-events-past-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--lv-cream);
  border-radius: 10px;
  overflow: hidden;
}

.lv-event-past {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-cream);
  transition: background var(--lv-transition);
}
.lv-event-past:last-child { border-bottom: none; }
.lv-event-past:hover { background: #f7f9f4; }

.lv-event-past__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lv-green);
  white-space: nowrap;
  min-width: 100px;
}

.lv-event-past__info {
  flex: 1;
}
.lv-event-past__info h4 {
  font-size: 1rem;
  margin: 0 0 2px;
  color: var(--lv-navy);
}
.lv-event-past__info h4 a {
  color: inherit;
  text-decoration: none;
}
.lv-event-past__info h4 a:hover { color: var(--lv-green); }
.lv-event-past__info span {
  font-size: 0.82rem;
  color: var(--lv-text-light);
}

.lv-event-past__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lv-gold);
  white-space: nowrap;
}

/* ── No events state ────────────────────────────────────────── */
.lv-events-none {
  text-align: center;
  padding: 80px 24px;
}
.lv-events-none__icon { font-size: 3rem; margin-bottom: 20px; }
.lv-events-none h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--lv-navy); }
.lv-events-none p { color: var(--lv-text-light); margin-bottom: 28px; }

/* ── Single event page ──────────────────────────────────────── */
.lv-event-single {
  padding: 60px 0;
}

.lv-event-single__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.lv-event-single__content h2 {
  font-size: 1.4rem;
  color: var(--lv-green);
  margin: 0 0 16px;
}
.lv-event-single__content .lv-event-single__body {
  color: var(--lv-text);
  line-height: 1.75;
}
.lv-event-single__content .lv-event-single__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

.lv-event-single__sidebar {
  position: sticky;
  top: calc(var(--lv-header-h) + 24px);
}

.lv-event-sidebar-card {
  background: var(--lv-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  overflow: hidden;
}

.lv-event-sidebar-card__date-banner {
  background: var(--lv-green);
  color: var(--lv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
}
.lv-event-sidebar-card__day {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.lv-event-sidebar-card__month-year {
  display: flex;
  flex-direction: column;
}
.lv-event-sidebar-card__month-year span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lv-event-sidebar-card__month-year span:last-child {
  font-size: 0.9rem;
  opacity: 0.8;
}

.lv-event-sidebar-card__details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lv-event-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--lv-text);
}
.lv-event-detail-row .lv-event-detail-icon {
  font-size: 1.1rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.lv-event-detail-row strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lv-text-light);
  margin-bottom: 1px;
}

.lv-event-sidebar-card__actions {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lv-event-back {
  margin-top: 40px;
}

/* ── Events responsive ──────────────────────────────────────── */
@media ( max-width: 1024px ) {
  .lv-events-page-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-event-single__layout { grid-template-columns: 1fr; }
  .lv-event-single__sidebar { position: static; }
}
@media ( max-width: 640px ) {
  .lv-events-page-grid { grid-template-columns: 1fr; }
  .lv-event-past { flex-wrap: wrap; gap: 8px; }
  .lv-event-past__date { min-width: unset; }
}

/* ═══════════════════════════════════════════════════════════════
   LAKES ARCHIVE
═══════════════════════════════════════════════════════════════ */

.lv-lakes-page { padding: 70px 0; }

.lv-lakes-intro {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
  color: var(--lv-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lv-lakes-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.lv-lake-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.1);
  background: var(--lv-white);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-lake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 48px rgba(0,0,0,0.14);
}
.lv-lake-card:nth-child(even) {
  grid-template-columns: 1fr 480px;
}
.lv-lake-card:nth-child(even) .lv-lake-card__img-wrap {
  order: 2;
}
.lv-lake-card:nth-child(even) .lv-lake-card__body {
  order: 1;
}

.lv-lake-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.lv-lake-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  transition: transform 0.5s ease;
}
.lv-lake-card:hover .lv-lake-card__img {
  transform: scale(1.03);
}
.lv-lake-card__img-placeholder {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, var(--lv-green), var(--lv-navy));
}
.lv-lake-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(15,31,46,0.1));
  pointer-events: none;
}
.lv-lake-card:nth-child(even) .lv-lake-card__img-overlay {
  background: linear-gradient(to left, transparent 70%, rgba(15,31,46,0.1));
}

.lv-lake-card__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lv-lake-card__body h2 {
  font-size: 1.7rem;
  color: var(--lv-navy);
  margin: 0 0 12px;
}
.lv-lake-card__body h2 a {
  color: inherit;
  text-decoration: none;
}
.lv-lake-card__body h2 a:hover { color: var(--lv-green); }
.lv-lake-card__body > p {
  color: var(--lv-text-light);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.lv-lake-card__stats {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.lv-lake-card__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lv-lake-card__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lv-text-light);
}
.lv-lake-card__stat-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lv-navy);
}

.lv-lake-card__fish {
  font-size: 0.88rem;
  color: var(--lv-text-light);
  margin-bottom: 24px;
}
.lv-lake-card__fish-label {
  font-weight: 700;
  color: var(--lv-green);
  margin-right: 4px;
}

/* ── Lakes empty state ──────────────────────────────────────── */
.lv-lakes-empty {
  text-align: center;
  padding: 80px 24px;
}
.lv-lakes-empty__icon { font-size: 3rem; margin-bottom: 20px; }
.lv-lakes-empty h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--lv-green); }
.lv-lakes-empty p { color: var(--lv-text-light); margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════
   SINGLE LAKE PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Lake hero ──────────────────────────────────────────────── */
.lv-lake-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to bottom, var(--lv-navy), var(--lv-green));
  background-size: cover;
  background-position: center;
  padding: calc(var(--lv-header-h) + 60px) 24px 60px;
}
.lv-lake-hero--has-img .lv-lake-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,46,0.85) 0%, rgba(15,31,46,0.3) 60%, transparent 100%);
}
.lv-lake-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--lv-max-w);
  margin: 0 auto;
  width: 100%;
  color: var(--lv-white);
}
.lv-lake-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 8px 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.lv-lake-hero__content p {
  font-size: 1.1rem;
  max-width: 560px;
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  margin: 0;
}

/* ── Single layout ──────────────────────────────────────────── */
.lv-lake-single { padding: 60px 0; }

.lv-lake-single__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

.lv-lake-single__content { }

.lv-lake-single__body {
  color: var(--lv-text);
  line-height: 1.75;
  margin-bottom: 40px;
}
.lv-lake-single__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

/* ── Lake rules box ─────────────────────────────────────────── */
.lv-lake-rules {
  background: var(--lv-cream);
  border-left: 4px solid var(--lv-green);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.lv-lake-rules h3 {
  font-size: 1.1rem;
  color: var(--lv-green);
  margin: 0 0 14px;
}
.lv-lake-rules__body {
  font-size: 0.92rem;
  color: var(--lv-text);
  line-height: 1.7;
}
.lv-lake-rules__body p { margin: 0 0 8px; }
.lv-lake-rules__body p:last-child { margin: 0; }

.lv-lake-back { margin-top: 16px; }

/* ── Sidebar ────────────────────────────────────────────────── */
.lv-lake-single__sidebar {
  position: sticky;
  top: calc(var(--lv-header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lv-lake-info-card {
  background: var(--lv-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  overflow: hidden;
}
.lv-lake-info-card__title {
  background: var(--lv-navy);
  color: var(--lv-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 14px 22px;
}

.lv-lake-info-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.lv-lake-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--lv-cream);
  font-size: 0.92rem;
  color: var(--lv-text);
}
.lv-lake-info-row:last-child { border-bottom: none; }
.lv-lake-info-row__icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lv-lake-info-row strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lv-text-light);
  margin-bottom: 2px;
}

/* ── Price card ─────────────────────────────────────────────── */
.lv-lake-price-card {
  background: var(--lv-green);
  color: var(--lv-white);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.lv-lake-price-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 6px;
}
.lv-lake-price-card__price {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--lv-gold);
}
.lv-lake-price-card p {
  font-size: 0.82rem;
  opacity: 0.75;
  margin: 0 0 20px;
  line-height: 1.5;
}

/* ── Contact card ───────────────────────────────────────────── */
.lv-lake-contact-card {
  background: var(--lv-cream);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.lv-lake-contact-card h4 {
  font-size: 1rem;
  color: var(--lv-navy);
  margin: 0 0 8px;
}
.lv-lake-contact-card p {
  font-size: 0.85rem;
  color: var(--lv-text-light);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* ── Lakes responsive ───────────────────────────────────────── */
@media ( max-width: 1024px ) {
  .lv-lake-card,
  .lv-lake-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .lv-lake-card:nth-child(even) .lv-lake-card__img-wrap,
  .lv-lake-card:nth-child(even) .lv-lake-card__body {
    order: unset;
  }
  .lv-lake-card__img { min-height: 260px; }
  .lv-lake-single__layout { grid-template-columns: 1fr; }
  .lv-lake-single__sidebar { position: static; }
}
@media ( max-width: 640px ) {
  .lv-lake-card__body { padding: 28px 24px; }
  .lv-lake-card__stats { grid-template-columns: repeat(2, 1fr); }
  .lv-lake-hero { min-height: 360px; }
}
