.lgl-homepage,
.lgl-homepage * {
  box-sizing: border-box;
}

.lgl-homepage {
  --lgl-green: #3f5b46;
  --lgl-green-dark: #24352f;
  --lgl-cream: #f3eee7;
  --lgl-cream-2: #f7f3ed;
  --lgl-text: #1f1f1b;
  --lgl-muted: #5b5b55;
  --lgl-white: #ffffff;
  --lgl-border: rgba(36, 53, 47, 0.12);
  --lgl-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  --lgl-max: 1200px;
  width: 100%;
  color: var(--lgl-text);
  font-family: Arial, Helvetica, sans-serif;
}

.lgl-homepage h1,
.lgl-homepage h2,
.lgl-homepage h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.lgl-homepage p {
  margin: 0;
}

.lgl-homepage a {
  text-decoration: none;
}

.lgl-wrap {
  width: 100%;
  max-width: var(--lgl-max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.lgl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}

.lgl-btn:hover {
  opacity: 0.94;
}

.lgl-btn-light {
  background: var(--lgl-cream);
  color: var(--lgl-green-dark);
}

.lgl-btn-green {
  background: var(--lgl-green);
  color: var(--lgl-white);
}

.lgl-btn-outline {
  background: transparent;
  color: var(--lgl-white);
  border: 1px solid rgba(255,255,255,0.24);
}

/* HERO */
.lgl-hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)),
    url("https://loadinggolf.com.au/wp-content/uploads/2026/03/DSC07093.jpg") center center / cover no-repeat;
  color: var(--lgl-white);
}

.lgl-hero-inner {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.lgl-hero-copy {
  max-width: 620px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lgl-hero-title {
  font-size: 60px;
  line-height: 0.96;
  color: var(--lgl-cream);
  margin-bottom: 28px;
}

.lgl-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BOOKING */
.lgl-booking {
  background: var(--lgl-green);
  color: var(--lgl-white);
  padding: 70px 0;
}

.lgl-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.lgl-booking-copy {
  max-width: 520px;
}

.lgl-booking-title {
  font-size: 56px;
  line-height: 0.98;
  color: var(--lgl-cream);
  margin-bottom: 16px;
}

.lgl-booking-text {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 26px;
}

.lgl-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lgl-card {
  min-height: 300px;
  border-radius: 12px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lgl-card-light {
  background: var(--lgl-cream);
  color: var(--lgl-green-dark);
  box-shadow: var(--lgl-shadow);
}

.lgl-card-dark {
  background: rgba(36,53,47,0.36);
  color: var(--lgl-white);
  border: 1px solid rgba(255,255,255,0.10);
}

.lgl-card h3 {
  font-size: 28px;
  line-height: 1.04;
  margin-bottom: 10px;
}

.lgl-price {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}

.lgl-card ul {
  margin: 0;
  padding-left: 18px;
}

.lgl-card li {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.lgl-card .lgl-btn {
  align-self: flex-start;
  min-width: 160px;
  border-radius: 8px;
}

/* STATS */
.lgl-stats {
  background: var(--lgl-cream);
  border-top: 1px solid var(--lgl-border);
  border-bottom: 1px solid var(--lgl-border);
}

.lgl-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lgl-stat {
  text-align: center;
  padding: 22px 12px;
  font-size: 22px;
  color: var(--lgl-green-dark);
}

.lgl-stat + .lgl-stat {
  border-left: 1px solid var(--lgl-border);
}

/* EXPERIENCE */
.lgl-experience {
  background: var(--lgl-cream-2);
  padding: 74px 0;
}

.lgl-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.lgl-experience-copy {
  max-width: 520px;
}

.lgl-experience-title {
  font-size: 56px;
  line-height: 0.98;
  color: var(--lgl-green-dark);
  margin-bottom: 30px;
}

.lgl-feature-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 16px;
  line-height: 1.8;
}
}

.lgl-feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.45;
  color: #23231f;
}

.lgl-feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--lgl-green-dark);
}

.lgl-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* MOBILE */
@media (max-width: 991px) {
  .lgl-hero {
    min-height: 520px;
  }

  .lgl-hero-inner {
    min-height: 520px;
  }

  .lgl-hero-title {
    font-size: 46px;
    line-height: 1;
  }

  .lgl-booking,
  .lgl-experience {
    padding: 56px 0;
  }

  .lgl-booking-grid,
  .lgl-pricing,
  .lgl-stats-grid,
  .lgl-experience-grid {
    grid-template-columns: 1fr;
  }

  .lgl-stat + .lgl-stat {
    border-left: none;
    border-top: 1px solid var(--lgl-border);
  }

  .lgl-experience-image img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .lgl-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lgl-hero {
    min-height: 460px;
  }

  .lgl-hero-inner {
    min-height: 460px;
    align-items: flex-end;
  }

  .lgl-hero-copy {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 34px;
  }

  .lgl-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .lgl-booking-title,
  .lgl-experience-title {
    font-size: 38px;
  }

  .lgl-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .lgl-hero-buttons .lgl-btn,
  .lgl-booking-copy .lgl-btn,
  .lgl-card .lgl-btn {
    width: 100%;
  }

  .lgl-stat {
    font-size: 20px;
  }
}


}


}