/* TeeTime landing v2 — morning clubhouse
   Photography-led, deep highland green, pill CTAs, calm motion.
   Not a yardage-book illustration. Not cream + serif + lime. */

:root {
  --ink: #0a1f18;
  --green: #0c3326;
  --green-mid: #145238;
  --fairway: #1b5e45;
  --gold: #dbb009;
  --mist: #fafbfa;
  --stone: #f2f4f1;
  --stone-2: #e8ebe7;
  --line: rgba(10, 31, 24, 0.1);
  --line-on-dark: rgba(250, 251, 250, 0.16);
  --soft: rgba(10, 31, 24, 0.62);

  --t-display: "Poppins", system-ui, sans-serif;
  --t-ui: "Poppins", system-ui, sans-serif;

  --shell: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --r-card: 18px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.85, 0.28, 1);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + var(--safe-t));
  -webkit-text-size-adjust: 100%;
  background-color: var(--green);
}

body.lp2 {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--t-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--fairway);
  color: #fff;
}

:focus-visible {
  outline: 2.5px solid var(--fairway);
  outline-offset: 3px;
  border-radius: 6px;
}

.lp2-shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.lp2-band {
  padding-block: clamp(64px, 9vw, 112px);
}

.lp2-band--stone {
  background: var(--stone);
}

h1,
h2,
h3 {
  font-family: var(--t-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 650;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lp2-lede {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  max-width: 38rem;
  color: var(--soft);
}

.lp2-on-dark .lp2-lede {
  color: rgba(250, 251, 250, 0.78);
}

/* ---------- buttons & links ---------- */
.lp2-btn {
  --bg: var(--green);
  --fg: #fafbfa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 52px;
  padding: 0 1.55rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font: 600 0.95rem/1 var(--t-ui);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s, color 0.3s;
}

.lp2-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10, 31, 24, 0.45);
  background: var(--fairway);
}

.lp2-btn:active {
  transform: translateY(0);
}

.lp2-btn--white {
  --bg: #fff;
  --fg: var(--green);
}

.lp2-btn--white:hover {
  background: var(--stone);
  box-shadow: 0 14px 30px -14px rgba(10, 31, 24, 0.35);
}

.lp2-btn--ghost {
  --bg: transparent;
  --fg: #fafbfa;
  border: 1.5px solid rgba(250, 251, 250, 0.42);
  backdrop-filter: blur(6px);
}

.lp2-btn--ghost:hover {
  background: rgba(250, 251, 250, 0.12);
  box-shadow: none;
}

.lp2-btn--ghost-dark {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--line);
}

.lp2-btn--ghost-dark:hover {
  background: rgba(10, 31, 24, 0.05);
  box-shadow: none;
}

.lp2-btn--wide {
  width: 100%;
}

.lp2-btn--tiny {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.8rem;
}

/*
  Liquid glass lens — adapted from FreeFrontend CSS Liquid Glass
  https://freefrontend.com/css-liquid-glass/
  thinner bevel + light label for dark photography
*/
.lp2-fx {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  filter: contrast(1.85);
}

.lp2-lens {
  --h: 52px;
  --r: 9999px;
  --tr: 22%;
  z-index: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: var(--h);
  min-width: 9.5rem;
  padding: 0 1.35rem;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fafbfa;
  text-decoration: none;
  font: 650 0.92rem/1 var(--t-ui);
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: brightness(0.95);
  box-shadow:
    inset 1px -1px 0.5px -0.5px rgba(255, 255, 255, 0.8),
    inset -1px 1px 0.5px -0.5px rgba(255, 255, 255, 0.8),
    inset 3px -3px 1px -3px rgba(255, 255, 255, 0.42),
    inset -3px 3px 1px -3px rgba(255, 255, 255, 0.42),
    inset 0 0 1px rgba(0, 0, 0, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease), background 0.25s, filter 0.25s;
}

.lp2-lens-label {
  position: relative;
  z-index: 4;
  color: inherit;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  filter: none;
  white-space: nowrap;
}

.lp2-lens::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.55);
  filter: blur(4px);
  pointer-events: none;
}

.lp2-lens::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: var(--r);
  pointer-events: none;
  filter: blur(4px);
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.55) 0%,
    transparent var(--tr),
    transparent calc(100% - var(--tr)),
    rgba(255, 255, 255, 0.55) 100%
  );
}

.lp2-lens-rim {
  position: absolute;
  z-index: 2;
  inset: 2.5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  filter: blur(0.6px);
  pointer-events: none;
}

.lp2-lens:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.lp2-lens:active {
  transform: scale(0.97);
}

.lp2-lens--sm {
  --h: 40px;
  min-width: 0;
  padding: 0 1rem;
  font-size: 0.82rem;
}

.lp2-lens--play {
  --h: 40px;
  min-width: 0;
  padding: 0 1rem 0 0.4rem;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.lp2-lens-icon {
  position: relative;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: #0a1f18;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease);
}

.lp2-lens-icon svg {
  display: block;
  fill: #0a1f18;
  color: #0a1f18;
}

.lp2-lens--play:hover .lp2-lens-icon {
  transform: scale(1.06);
}

.lp2-hdr-cta .lp2-fx .lp2-lens--sm {
  --h: 42px;
}

@media (prefers-reduced-transparency: reduce), (prefers-reduced-motion: reduce) {
  .lp2-fx {
    filter: none;
  }

  .lp2-lens {
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 51, 38, 0.88);
    color: #fafbfa;
    box-shadow: 0 8px 22px -14px rgba(8, 28, 20, 0.4);
  }

  .lp2-lens::before,
  .lp2-lens::after,
  .lp2-lens-rim {
    display: none;
  }

  .lp2-lens-label {
    filter: none;
    text-shadow: none;
  }
}

.lp2-ulink {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--green);
}

.lp2-ulink .arw {
  transition: transform 0.35s var(--ease);
}

.lp2-ulink:hover .arw {
  transform: translateX(4px);
}

/* ---------- header ---------- */
.lp2-hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding-top: calc(16px + var(--safe-t));
  padding-bottom: 16px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}

.lp2-hdr.is-stuck {
  background: rgba(12, 51, 38, 0.96);
  backdrop-filter: saturate(1.3) blur(16px);
  border-bottom-color: var(--line-on-dark);
  padding-top: calc(10px + var(--safe-t));
  padding-bottom: 10px;
}

.lp2-hdr--bar {
  background: rgba(12, 51, 38, 0.96);
  backdrop-filter: saturate(1.3) blur(16px);
  -webkit-backdrop-filter: saturate(1.3) blur(16px);
  border-bottom-color: var(--line-on-dark);
}

.lp2-hdr--light {
  background: rgba(250, 251, 250, 0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom-color: rgba(10, 31, 24, 0.08);
}

.lp2-hdr--light.is-stuck {
  background: rgba(250, 251, 250, 0.97);
  border-bottom-color: rgba(10, 31, 24, 0.1);
}

.lp2-hdr--light .lp2-brand {
  color: var(--green);
}

.lp2-hdr--light .lp2-nav a {
  color: rgba(10, 31, 24, 0.72);
}

.lp2-hdr--light .lp2-nav a:hover,
.lp2-hdr--light .lp2-nav a.is-active {
  color: var(--green);
}

.lp2-hdr--light .lp2-burger {
  border-color: rgba(10, 31, 24, 0.16);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.55) 100%
    ),
    rgba(12, 51, 38, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 20px -14px rgba(8, 28, 20, 0.25);
}

.lp2-hdr--light .lp2-burger span,
.lp2-hdr--light .lp2-burger span::before,
.lp2-hdr--light .lp2-burger span::after {
  background: var(--green);
}

.lp2-lens--ink {
  color: var(--green);
  border-color: rgba(12, 51, 38, 0.14);
  background: rgba(12, 51, 38, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
  box-shadow: none;
}

.lp2-lens--ink .lp2-lens-label {
  text-shadow: none;
}

.lp2-lens--ink .lp2-lens-rim {
  border-color: rgba(12, 51, 38, 0.22);
}

.lp2-lens--ink:hover {
  background: rgba(12, 51, 38, 0.08);
  filter: none;
}

.lp2-lens--ink:hover .lp2-lens-rim {
  border-color: rgba(12, 51, 38, 0.45);
}

.lp2-hdr .inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lp2-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fafbfa;
  font-family: var(--t-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.lp2-brand-logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: min(180px, 52vw);
}

.lp2-brand-logo--foot {
  height: 36px;
  max-width: min(240px, 72vw);
}

.lp2-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.lp2-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.lp2-nav a {
  color: rgba(250, 251, 250, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 550;
  padding-block: 6px;
  transition: color 0.25s;
}

.lp2-nav a:hover {
  color: #fff;
}

.lp2-nav a.is-active {
  color: #fff;
  box-shadow: inset 0 -2px 0 #c9a227;
}

.lp2-hdr-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lp2-hdr-cta .lp2-btn {
  min-height: 42px;
  font-size: 0.88rem;
  padding-inline: 1.15rem;
}

.lp2-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--r-pill);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.08) 55%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 20px -12px rgba(8, 28, 20, 0.4);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.lp2-burger span,
.lp2-burger span::before,
.lp2-burger span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fafbfa;
  position: relative;
}

.lp2-burger span::before,
.lp2-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.lp2-burger span::before {
  top: -5px;
}

.lp2-burger span::after {
  top: 5px;
}

/* mobile sheet */
.lp2-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--green);
  transform: translateY(-105%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(20px + var(--safe-t)) var(--gut) calc(24px + var(--safe-b));
  visibility: hidden;
}

.lp2-sheet.is-open {
  transform: translateY(0);
  visibility: visible;
}

.lp2-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.lp2-sheet nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp2-sheet nav a {
  color: #fafbfa;
  text-decoration: none;
  font-family: var(--t-display);
  font-size: clamp(1.6rem, 6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.lp2-sheet nav a.is-active {
  color: #c9a227;
}

.lp2-sheet-foot {
  margin-top: auto;
  display: grid;
  gap: 0.65rem;
  padding-top: 1.5rem;
}

.lp2-x {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(250, 251, 250, 0.35);
  background: transparent;
  color: #fafbfa;
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- hero ---------- */
.lp2-hero {
  position: relative;
  z-index: 3;
  min-height: min(92dvh, 820px);
  color: #fafbfa;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(110px + var(--safe-t)) 0 clamp(24px, 3.5vw, 36px);
  isolation: isolate;
  overflow: visible;
}

.lp2-hero-back {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.lp2-hero-media {
  position: absolute;
  inset: 0;
  background-color: #0c3326;
  background-position: center 45%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: lp2-hero-in 1.8s var(--ease) both;
}

.lp2-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 20, 0.82) 0%, rgba(8, 28, 20, 0.48) 46%, rgba(8, 28, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 28, 20, 0.72) 0%, transparent 48%);
}

@keyframes lp2-hero-in {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.04);
  }
}

.lp2-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy float"
    "book book";
  gap: clamp(18px, 3vw, 28px);
  align-items: end;
}

.lp2-hero-copy {
  grid-area: copy;
  max-width: min(100%, 40rem);
}

.lp2-hero-copy h1 {
  margin-bottom: 0.85rem;
  max-width: 18ch;
  font-weight: 500;
  font-size: clamp(2.45rem, 5.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.lp2-hero-copy .lp2-lede {
  max-width: 38ch;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 450;
  line-height: 1.5;
  color: rgba(250, 251, 250, 0.82);
}

.lp2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.lp2-hero-aside {
  grid-area: float;
  justify-self: end;
  align-self: end;
  width: fit-content;
  max-width: min(100%, 520px);
}

.lp2-hero-float {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.9rem;
  width: max-content;
  max-width: 100%;
  min-width: min(100%, 420px);
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(250, 251, 250, 0.14);
  border: 1px solid rgba(250, 251, 250, 0.28);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 20px 44px -26px rgba(8, 28, 20, 0.55);
}

.lp2-hero-float-thumb {
  flex: 0 0 clamp(148px, 34%, 188px);
  width: clamp(148px, 34%, 188px);
  min-width: 148px;
  min-height: 148px;
  align-self: stretch;
  border-radius: 14px;
  background: center / cover no-repeat;
  box-shadow: 0 10px 24px -14px rgba(8, 28, 20, 0.55);
}

.lp2-hero-float-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 18rem;
  padding: 0.35rem 0.2rem 0.35rem 0.45rem;
}

.lp2-hero-float-copy strong {
  font-family: var(--t-display);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}

.lp2-hero-float-copy span {
  font-size: 0.76rem;
  line-height: 1.4;
  color: rgba(250, 251, 250, 0.72);
  max-width: 28ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp2-hero-float-acts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
  width: 100%;
}

.lp2-hero-float-acts.lp2-fx {
  filter: contrast(1.85);
}

.lp2-hero-float-acts .lp2-lens {
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
}

.lp2-hero-float-acts .lp2-lens--sm {
  --h: 40px;
  padding-inline: 1.1rem;
}

.lp2-hero-float-acts .lp2-lens--play {
  --h: 40px;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0 1.25rem 0 0.4rem;
  gap: 0.5rem;
  justify-content: flex-start;
}

.lp2-booking {
  grid-area: book;
  position: relative;
  z-index: 4;
  background: #fafbfa;
  color: var(--ink);
  border-radius: calc(var(--r-card) + 4px);
  padding: 12px;
  box-shadow: 0 24px 50px -28px rgba(8, 28, 20, 0.55);
  overflow: visible;
}

.lp2-booking-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.75fr auto;
  gap: 8px;
  align-items: end;
}

.lp2-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--stone);
  border-radius: 14px;
  padding: 10px 14px;
  min-height: 62px;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.lp2-field:focus-within,
.lp2-field.is-open {
  border-color: var(--fairway);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 94, 69, 0.12);
}

.lp2-picker {
  position: relative;
}

.lp2-picker-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fairway);
}

.lp2-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 650 0.94rem/1.2 var(--t-ui);
  text-align: left;
  cursor: pointer;
}

.lp2-picker-trigger:focus {
  outline: none;
}

.lp2-picker-value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp2-picker-caret,
.lp2-picker-cal {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lp2-picker-caret {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%230c3326' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.2s var(--ease);
}

.lp2-field.is-open .lp2-picker-caret {
  transform: rotate(180deg);
}

.lp2-picker-cal {
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Crect x='1.5' y='2.5' width='13' height='12' rx='2' stroke='%230c3326' stroke-width='1.4'/%3E%3Cpath d='M1.5 6.5h13M5 1v3M11 1v3' stroke='%230c3326' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp2-picker-panel {
  position: fixed;
  z-index: 50;
  max-height: min(280px, 55vh);
  overflow: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  box-shadow:
    0 18px 40px -18px rgba(8, 28, 20, 0.58),
    0 6px 16px -8px rgba(8, 28, 20, 0.22);
  transform-origin: top center;
  animation: lp2-picker-in 0.18s var(--ease) both;
}

.lp2-picker-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  z-index: -1;
  pointer-events: none;
}

.lp2-picker-panel.is-above {
  transform-origin: bottom center;
  animation-name: lp2-picker-in-up;
}

.lp2-picker-panel--compact {
  min-width: 5.5rem;
  width: max-content;
}

.lp2-cal {
  width: min(292px, calc(100vw - 48px));
  max-height: none;
  overflow: visible;
  padding: 12px;
  background: #ffffff;
  background-color: #ffffff;
}

.lp2-picker-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  font: 550 0.9rem/1.25 var(--t-ui);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lp2-picker-option:hover,
.lp2-picker-option:focus-visible {
  background: var(--stone);
  outline: none;
}

.lp2-picker-option.is-selected {
  background: rgba(27, 94, 69, 0.1);
  color: var(--fairway);
  font-weight: 650;
}

.lp2-picker-check {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath d='M2.5 7.2 5.6 10.3 11.5 3.7' stroke='%231b5e45' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lp2-picker-option.is-selected .lp2-picker-check {
  opacity: 1;
}

.lp2-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 10px;
}

.lp2-cal-title {
  margin: 0;
  font: 650 0.92rem/1.2 var(--t-ui);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.lp2-cal-nav {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--stone);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lp2-cal-nav:hover,
.lp2-cal-nav:focus-visible {
  background: #fff;
  border-color: var(--fairway);
  outline: none;
}

.lp2-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.lp2-cal-dow span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
  padding-block: 4px;
}

.lp2-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.lp2-cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: 550 0.82rem/1 var(--t-ui);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lp2-cal-day:hover:not(:disabled),
.lp2-cal-day:focus-visible:not(:disabled) {
  background: var(--stone);
  outline: none;
}

.lp2-cal-day.is-muted {
  color: rgba(10, 31, 24, 0.28);
}

.lp2-cal-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1.5px var(--fairway);
  color: var(--fairway);
  font-weight: 650;
}

.lp2-cal-day.is-selected {
  background: var(--fairway);
  color: #fff;
  font-weight: 650;
}

.lp2-cal-day:disabled {
  color: rgba(10, 31, 24, 0.22);
  cursor: not-allowed;
}

@keyframes lp2-picker-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lp2-picker-in-up {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp2-picker-panel {
    animation: none;
  }

  .lp2-picker-caret {
    transition: none;
  }
}

.lp2-booking .lp2-btn {
  min-height: 62px;
  padding-inline: 1.5rem;
  white-space: nowrap;
}

/* ---------- partners + tee sheet (one continuous band) ---------- */
.lp2-after-hero {
  position: relative;
  z-index: 1;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
}

.lp2-partners {
  padding-block: clamp(32px, 4.5vw, 48px);
  overflow: hidden;
}

.lp2-partners-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.lp2-partners-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: lp2-partners-marquee 42s linear infinite;
}

.lp2-partners-track:hover {
  animation-play-state: paused;
}

.lp2-partners-rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.25rem);
  padding-inline: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: 4px;
}

.lp2-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(10, 31, 24, 0.45);
  font-family: var(--t-display);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.lp2-partner-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  opacity: 0.92;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10, 31, 24, 0.08);
}

.lp2-partner-name {
  opacity: 0.9;
}

@keyframes lp2-partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp2-partners-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gut);
  }

  .lp2-partners-rail[aria-hidden="true"] {
    display: none;
  }

  .lp2-partners-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.lp2-teesheet {
  color: var(--ink);
  padding-bottom: clamp(40px, 5.5vw, 56px);
}

.lp2-teesheet .lp2-sec-head {
  margin-bottom: 1.15rem;
}

.lp2-teesheet h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: var(--ink);
}

.lp2-teesheet .note {
  font-size: 0.9rem;
  color: var(--soft);
  margin-top: 0.35rem;
}

.lp2-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 4px 2px;
  /* Keep first card aligned with the section title; only bleed on the right for peek */
  margin-inline: 0 calc(var(--gut) * -1);
  padding-inline: 0 var(--gut);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lp2-rail::-webkit-scrollbar {
  display: none;
}

.lp2-slot {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 168px;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  box-shadow: 0 10px 28px -22px rgba(10, 31, 24, 0.35);
  transition: background 0.3s, transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.lp2-slot:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 94, 69, 0.28);
  box-shadow: 0 16px 32px -20px rgba(10, 31, 24, 0.4);
}

.lp2-slot .time {
  font-family: var(--t-display);
  font-size: 1.7rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  color: var(--green);
}

.lp2-slot .where {
  display: block;
  font-size: 0.82rem;
  color: var(--soft);
  margin-top: 0.55rem;
}

.lp2-slot .left {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fairway);
  margin-top: 0.55rem;
}

.lp2-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fd4b5;
  flex: none;
}

/* ---------- section heads ---------- */
.lp2-sec-head {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.lp2-sec-head p {
  margin-top: 0.75rem;
}

.lp2-sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.lp2-sec-head--offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.lp2-sec-head--offer .lp2-lede {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
}

/* ---------- offers ---------- */
.lp2-offers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp2-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 260px;
  padding: 1.75rem 1.35rem 1.55rem;
  border-radius: var(--r-card);
  background: var(--stone);
  text-decoration: none;
  text-align: center;
  color: var(--ink);
  transition: transform 0.4s var(--ease), background 0.35s, color 0.35s, box-shadow 0.4s;
}

.lp2-offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.35);
  background: var(--green);
  color: #fafbfa;
}

.lp2-offer.is-hot {
  background: var(--green);
  color: #fafbfa;
}

.lp2-offer .ic {
  width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 0;
  display: block;
  flex: none;
  background-color: currentColor;
  -webkit-mask: var(--ic) center / contain no-repeat;
  mask: var(--ic) center / contain no-repeat;
}

.lp2-offer .ic--access {
  --ic: url("/images/icons/golf/offer-access.png");
}

.lp2-offer .ic--grounds {
  --ic: url("/images/icons/golf/offer-grounds.png");
}

.lp2-offer .ic--coaching {
  --ic: url("/images/icons/golf/offer-coaching.png");
}

.lp2-offer .ic--caddies {
  --ic: url("/images/icons/golf/offer-caddies.png");
}

.lp2-offer h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-offer .circ {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-top: auto;
  flex: none;
  box-shadow: 0 1px 0 rgba(10, 31, 24, 0.04);
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}

.lp2-offer.is-hot .circ,
.lp2-offer:hover .circ {
  background: #fff;
  color: var(--ink);
}

.lp2-offer:hover .circ {
  transform: translateX(3px);
}

/* ---------- courses ---------- */
.lp2-courses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp2-course {
  position: relative;
  min-height: clamp(320px, 38vw, 420px);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  color: #fafbfa;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  isolation: isolate;
  background: var(--green);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.lp2-course:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -26px rgba(10, 31, 24, 0.5);
}

.lp2-course .lp2-shots {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.lp2-course .shot {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s var(--ease), transform 1s var(--ease);
}

.lp2-course .shot.is-on {
  opacity: 1;
  z-index: 1;
  transform: none;
}

.lp2-course:hover .shot.is-on {
  transform: scale(1.06);
}

.lp2-shot-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  gap: 5px;
  padding: 6px 8px;
  border-radius: var(--r-pill);
  background: rgba(8, 28, 20, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp2-shot-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 251, 250, 0.4);
  transition: background 0.3s, transform 0.3s;
}

.lp2-shot-dots .dot.is-on {
  background: #fff;
  transform: scale(1.15);
}

.lp2-course::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 28, 20, 0.88) 100%);
}

.lp2-course .loc {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 251, 250, 0.72);
  margin-bottom: 0.35rem;
}

.lp2-course h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.lp2-course .go {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ecd6;
}

.lp2-course .go .circ {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
  margin-left: auto;
  transition: transform 0.35s var(--ease);
}

.lp2-course:hover .go .circ {
  transform: translateX(3px);
}

.lp2-course .go {
  width: 100%;
}

.lp2-course .meta {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(250, 251, 250, 0.78);
}

/* ---------- courses catalog page ---------- */
.lp2-courses-page {
  background: var(--stone);
}

.lp2-courses-page .lp2-shell {
  max-width: 1440px;
}

.lp2-clubs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.15rem;
}

.lp2-clubs .lp2-course {
  grid-column: span 3;
  min-height: 210px;
  padding: 1rem;
}

.lp2-clubs .lp2-course h3 {
  font-size: 1.15rem;
}

.lp2-clubs .lp2-course .go {
  margin-top: 0.55rem;
}

.lp2-clubs.is-pair .lp2-course {
  grid-column: span 6;
  min-height: 240px;
}

.lp2-clubs.is-solo {
  grid-template-columns: minmax(0, 28rem);
}

.lp2-clubs.is-solo .lp2-course {
  grid-column: auto;
  min-height: 240px;
}

.lp2-courses-page .lp2-services-round {
  margin-top: 1.75rem;
  background: #fff;
}

/* ---------- how ---------- */
.lp2-how {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.lp2-steps {
  display: grid;
  gap: 0;
}

.lp2-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.lp2-step:first-child {
  border-top: 1px solid var(--line);
}

.lp2-step .n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--stone);
  display: grid;
  place-items: center;
  font-family: var(--t-display);
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--green);
}

.lp2-step h3 {
  margin-bottom: 0.35rem;
}

.lp2-step p {
  font-size: 0.92rem;
  color: var(--soft);
  max-width: 36ch;
}

/* ---------- trainers ---------- */
.lp2-pros {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp2-pro {
  border-radius: var(--r-card);
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;
}

.lp2-pro:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 94, 69, 0.35);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.35);
}

.lp2-pro .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fafbfa;
  display: grid;
  place-items: center;
  margin-bottom: 0.45rem;
}

.lp2-pro .av-ic {
  width: 28px;
  height: 28px;
  background-color: currentColor;
  -webkit-mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
  mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
}

.lp2-pro .spec {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fairway);
}

.lp2-pro p {
  font-size: 0.88rem;
  color: var(--soft);
}

.lp2-pro-slot {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.lp2-pro-slot.is-open {
  background: rgba(27, 94, 69, 0.1);
  color: var(--fairway);
}

.lp2-pro-slot.is-busy {
  background: rgba(180, 83, 9, 0.12);
  color: #9a3412;
}

.lp2-pro-slot.is-muted {
  background: var(--stone);
  color: var(--soft);
}

.lp2-pro .go {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

/* ---------- kit ---------- */
.lp2-kit {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}

.lp2-kit-main,
.lp2-kit-stack a {
  border-radius: var(--r-card);
  background: var(--stone);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.lp2-kit-main:hover,
.lp2-kit-stack a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.3);
}

.lp2-kit-main {
  min-height: 340px;
  display: grid;
  grid-template-rows: 1fr auto;
}

.lp2-kit-main .media {
  background: center / cover no-repeat;
  min-height: 220px;
}

.lp2-kit-main .body,
.lp2-kit-stack .body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.lp2-kit-main .amt,
.lp2-kit-stack .amt {
  font-family: var(--t-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}

.lp2-kit-main p,
.lp2-kit-stack p {
  font-size: 0.88rem;
  color: var(--soft);
  margin-top: 0.35rem;
}

.lp2-kit-stack {
  display: grid;
  gap: 14px;
}

.lp2-kit-stack a {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 160px;
}

.lp2-kit-stack .media {
  background: center / cover no-repeat;
}

/* ---------- join / newsletter + trainer band ---------- */
.lp2-join {
  position: relative;
  color: #fafbfa;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(28px, 4vw, 44px);
  background: #0c3326;
}

.lp2-join-flank {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(26vw, 280px);
  height: min(100%, 220px);
  z-index: 0;
  background: center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  border-radius: 0;
}

.lp2-join-flank--left {
  left: 0;
  mask-image: linear-gradient(90deg, #000 20%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 20%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.lp2-join-flank--right {
  right: 0;
  mask-image: linear-gradient(270deg, #000 20%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, #000 20%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.lp2-join-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(12, 51, 38, 0.35) 0%,
    rgba(12, 51, 38, 0.92) 28%,
    rgba(12, 51, 38, 0.96) 50%,
    rgba(12, 51, 38, 0.92) 72%,
    rgba(12, 51, 38, 0.35) 100%
  );
}

.lp2-join .lp2-shell {
  position: relative;
  z-index: 2;
}

.lp2-join-in {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
}

.lp2-join-in h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.lp2-join-in .lp2-lede {
  margin-inline: auto;
  max-width: 40ch;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(250, 251, 250, 0.72);
}

.lp2-join-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.55rem 0.85rem;
  margin-top: 0.95rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(250, 251, 250, 0.35);
}

.lp2-join-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.lp2-join-ico {
  display: inline-flex;
  color: rgba(250, 251, 250, 0.72);
  flex: 0 0 auto;
}

.lp2-join-field input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fafbfa;
  font: 500 0.9rem/1.35 var(--t-ui);
  padding: 0.4rem 0;
}

.lp2-join-field input::placeholder {
  color: rgba(250, 251, 250, 0.5);
}

.lp2-join-submit {
  border: 0;
  background: transparent;
  color: #fafbfa;
  font: 700 0.88rem/1 var(--t-ui);
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.4rem 0.15rem;
  transition: opacity 0.2s;
}

.lp2-join-submit:hover {
  opacity: 0.75;
}

.lp2-join-error,
.lp2-join-status {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.lp2-join-error {
  color: #ffb4a8;
}

.lp2-join-status {
  color: #9fd4b5;
}

.lp2-join-coach {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(250, 251, 250, 0.14);
}

.lp2-join-coach-copy {
  text-align: left;
  min-width: min(100%, 18rem);
}

.lp2-join-coach-copy p {
  margin: 0 0 0.2rem;
  font: 700 0.68rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lp2-join-coach-copy span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(250, 251, 250, 0.7);
  max-width: 34ch;
}

.lp2-join-coach .acts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

/* ---------- footer ---------- */
.lp2-foot {
  background: var(--ink);
  color: rgba(250, 251, 250, 0.7);
  padding-block: clamp(40px, 6vw, 72px) 0;
}

.lp2-foot-in {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.lp2-foot-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.lp2-foot h4 {
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9fd4b5;
  margin: 0 0 0.75rem;
}

.lp2-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.lp2-foot a {
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.lp2-foot a:hover {
  color: #fff;
}

.lp2-foot .lp2-brand {
  margin-bottom: 0.55rem;
}

.lp2-foot .blurb {
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 30ch;
  color: rgba(250, 251, 250, 0.58);
}

.lp2-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.lp2-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(250, 251, 250, 0.78);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.lp2-social a:hover {
  color: #fff;
  background: rgba(250, 251, 250, 0.1);
  transform: translateY(-1px);
}

.lp2-foot-base {
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line-on-dark);
  padding-block: 16px calc(16px + var(--safe-b));
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.lp2-pay {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.lp2-pay img {
  display: block;
  height: 28px;
  width: auto;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(250, 251, 250, 0.1);
}

/* ---------- mobile dock (hero glass float language) ---------- */
.lp2-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  padding: 0 var(--gut) calc(14px + var(--safe-b));
  background: transparent;
  border: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: transform 0.5s var(--ease);
}

.lp2-dock.is-up {
  transform: translateY(0);
}

.lp2-dock-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  padding: 7px 7px 7px 7px;
  border-radius: 999px;
  background: rgba(12, 51, 38, 0.72);
  border: 1px solid rgba(250, 251, 250, 0.26);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 18px 40px -18px rgba(8, 28, 20, 0.65),
    inset 0 1px 0 rgba(250, 251, 250, 0.12);
}

.lp2-dock-book {
  flex: 1;
  min-height: 46px;
  padding-inline: 1.25rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px -14px rgba(8, 28, 20, 0.45);
}

.lp2-dock-book:hover {
  transform: translateY(-1px);
}

.lp2-dock-coach {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 0.95rem 0 0.3rem;
  color: #fafbfa;
  text-decoration: none;
  font: 650 0.88rem/1 var(--t-ui);
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.35s var(--ease);
}

.lp2-dock-coach:hover {
  background: rgba(250, 251, 250, 0.08);
}

.lp2-dock-coach-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 251, 250, 0.42);
  display: grid;
  place-items: center;
  background: rgba(250, 251, 250, 0.1);
  backdrop-filter: blur(8px);
  color: #fafbfa;
}

.lp2-dock-coach-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
  mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
}

/* ---------- scroll reveal ---------- */
.lp2-rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.lp2-rise.in {
  opacity: 1;
  transform: none;
}

.lp2-rise[data-d="1"] {
  transition-delay: 0.08s;
}

.lp2-rise[data-d="2"] {
  transition-delay: 0.16s;
}

.lp2-rise[data-d="3"] {
  transition-delay: 0.24s;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .lp2-hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "float"
      "book";
  }

  .lp2-hero-aside {
    justify-self: start;
    width: fit-content;
    max-width: min(100%, 520px);
  }

  .lp2-hero-float {
    min-width: 0;
    width: 100%;
  }

  .lp2-hero-float-thumb {
    flex-basis: 140px;
    width: 140px;
    min-width: 132px;
    min-height: 132px;
  }

  .lp2-sec-head--offer {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .lp2-courses {
    grid-template-columns: 1fr 1fr;
  }

  .lp2-how {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp2-kit {
    grid-template-columns: 1fr;
  }

  .lp2-join-flank {
    width: min(24vw, 200px);
    height: 180px;
    opacity: 0.9;
  }

  .lp2-join-shade {
    background: linear-gradient(
      90deg,
      rgba(12, 51, 38, 0.45) 0%,
      rgba(12, 51, 38, 0.94) 24%,
      rgba(12, 51, 38, 0.97) 50%,
      rgba(12, 51, 38, 0.94) 76%,
      rgba(12, 51, 38, 0.45) 100%
    );
  }

  .lp2-foot-in {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .lp2-foot-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp2-booking-row {
    grid-template-columns: 1fr 1fr;
  }

  .lp2-booking-row .lp2-field:first-child {
    grid-column: 1 / -1;
  }

  .lp2-booking-row .lp2-btn {
    grid-column: 1 / -1;
    min-height: 52px;
  }
}

@media (max-width: 820px) {
  .lp2-nav,
  .lp2-hdr-cta .lp2-btn {
    display: none;
  }

  .lp2-join-flank {
    display: none;
  }

  .lp2-join {
    padding-block: clamp(22px, 5vw, 32px);
  }

  .lp2-join-form {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .lp2-join-submit {
    justify-self: end;
  }

  .lp2-join-coach {
    flex-direction: column;
  }

  .lp2-join-coach-copy {
    text-align: center;
  }

  .lp2-join-coach-copy span {
    margin-inline: auto;
  }

  .lp2-hdr {
    padding-top: calc(10px + var(--safe-t));
    padding-bottom: 10px;
    background: var(--green);
    border-bottom-color: transparent;
  }

  .lp2-hdr.is-stuck {
    padding-top: calc(8px + var(--safe-t));
    padding-bottom: 8px;
    background: var(--green);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .lp2-hdr .inner {
    gap: 0.75rem;
    min-height: 44px;
    justify-content: space-between;
  }

  .lp2-brand {
    font-size: 1.15rem;
  }

  .lp2-brand-mark {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .lp2-hdr-cta {
    margin-left: auto;
    gap: 0.55rem;
  }

  .lp2-hdr-cta .lp2-fx .lp2-lens--sm {
    --h: 40px;
    min-width: 0;
    padding-inline: 0.95rem;
  }

  .lp2-burger {
    display: inline-flex;
    margin-left: 0;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .lp2-dock {
    display: block;
  }

  body.lp2 {
    padding-bottom: calc(86px + var(--safe-b));
  }

  .lp2-hero {
    min-height: auto;
    padding-top: calc(88px + var(--safe-t));
    padding-bottom: 20px;
    justify-content: flex-end;
  }

  .lp2-hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "book";
    gap: 1.35rem;
  }

  .lp2-hero-media {
    background-position: center 42%;
  }

  .lp2-hero-copy h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.4rem);
    max-width: 13ch;
    line-height: 1.1;
    margin-bottom: 0.65rem;
  }

  .lp2-hero-copy .lp2-lede {
    font-size: 0.9rem;
    max-width: 30ch;
    line-height: 1.45;
  }

  .lp2-hero-actions {
    display: none;
  }

  .lp2-hero-aside {
    display: none;
  }

  .lp2-booking {
    padding: 10px;
  }

  .lp2-field {
    min-height: 56px;
    padding: 9px 12px;
  }

  .lp2-booking .lp2-btn {
    min-height: 52px;
  }

  .lp2-sec-head--split,
  .lp2-sec-head--offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .lp2-pros {
    grid-template-columns: 1fr;
  }

  .lp2-kit-stack a {
    grid-template-columns: 100px 1fr;
  }

  .lp2-foot {
    padding-block: 36px 0;
  }

  .lp2-foot-in {
    gap: 1.35rem;
  }

  .lp2-foot-brand .lp2-brand {
    font-size: 1.15rem;
  }

  .lp2-foot .blurb {
    font-size: 0.82rem;
    max-width: none;
  }

  .lp2-foot-links {
    gap: 0.85rem 1rem;
  }

  .lp2-foot h4 {
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
  }

  .lp2-foot ul {
    gap: 0.32rem;
  }

  .lp2-foot a {
    font-size: 0.84rem;
  }

  .lp2-foot-base {
    margin-top: 1.35rem;
    padding-block: 14px calc(14px + var(--safe-b) + 64px);
    gap: 0.65rem;
  }
}

@media (max-width: 560px) {
  .lp2-offers,
  .lp2-courses {
    grid-template-columns: 1fr;
  }

  .lp2-foot-links {
    grid-template-columns: 1fr 1fr;
  }

  .lp2-foot-links > div:last-child {
    grid-column: 1 / -1;
  }

  .lp2-foot-links > div:last-child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .lp2-booking-row {
    grid-template-columns: 1fr;
  }

  .lp2-booking-row .lp2-field:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }

  .lp2-rise {
    opacity: 1;
    transform: none;
  }

  .lp2-hero-media {
    transform: scale(1.02);
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- about / contact pages ---------- */
.lp2-page {
  background: var(--mist);
}

.lp2-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
  color: #fafbfa;
  padding: calc(96px + var(--safe-t)) 0 clamp(48px, 7vw, 72px);
}

.lp2-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat;
  transform: scale(1.04);
}

.lp2-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 28, 20, 0.88) 0%, rgba(8, 28, 20, 0.62) 48%, rgba(8, 28, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 28, 20, 0.35) 0%, rgba(8, 28, 20, 0.55) 100%);
}

.lp2-page-hero .lp2-shell {
  position: relative;
  z-index: 1;
}

.lp2-page-kicker {
  margin: 0 0 0.75rem;
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lp2-page-hero h1 {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
  color: #fafbfa;
}

.lp2-page-hero .lp2-lede {
  max-width: 46ch;
  margin: 0;
  color: rgba(250, 251, 250, 0.78);
}

.lp2-page-body {
  padding-block: clamp(40px, 6vw, 72px);
}

.lp2-page-band {
  padding-block: clamp(40px, 6vw, 72px);
  background: var(--stone);
}

.lp2-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.lp2-prose h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.lp2-prose p {
  margin: 0 0 1rem;
  color: var(--soft);
  max-width: 62ch;
}

.lp2-page-aside {
  background: var(--green);
  color: #fafbfa;
  border-radius: var(--r-card);
  padding: 1.35rem 1.4rem 1.5rem;
}

.lp2-page-aside-label {
  margin: 0 0 0.45rem;
  font: 700 0.68rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lp2-page-aside p {
  margin: 0 0 1.1rem;
  color: rgba(250, 251, 250, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lp2-capability-grid,
.lp2-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.5rem;
}

.lp2-capability-grid article,
.lp2-trust-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.15rem 1.2rem 1.25rem;
}

.lp2-capability-grid h3,
.lp2-trust-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.lp2-capability-grid p,
.lp2-trust-grid p {
  margin: 0;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lp2-capability-grid article:last-child {
  grid-column: 1 / -1;
}

.lp2-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.lp2-page-cta .lp2-btn--ghost-dark {
  background: transparent;
}

.lp2-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.lp2-contact-desk {
  position: sticky;
  top: calc(88px + var(--safe-t));
}

.lp2-contact-desk h2,
.lp2-contact-form-wrap h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.lp2-contact-desk-lede,
.lp2-contact-form-head p {
  margin: 0 0 1.25rem;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 36ch;
}

.lp2-contact-form-head {
  margin-bottom: 1.15rem;
}

.lp2-contact-desk dl {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.lp2-contact-desk dl > div {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.lp2-contact-desk dt {
  font: 700 0.68rem/1 var(--t-ui);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(10, 31, 24, 0.48);
  margin-bottom: 0.35rem;
}

.lp2-contact-desk dd {
  margin: 0;
  color: var(--ink);
  font-weight: 550;
  font-size: 0.95rem;
}

.lp2-contact-desk a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.lp2-contact-desk a:hover {
  color: var(--fairway);
  border-bottom-color: rgba(27, 94, 69, 0.35);
}

.lp2-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.lp2-contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line) !important;
  background: #fff;
  color: var(--ink) !important;
  font: 650 0.78rem/1 var(--t-ui);
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lp2-contact-chip:hover {
  background: var(--green);
  border-color: var(--green) !important;
  color: #fff !important;
}

.lp2-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--r-card) + 4px);
  padding: clamp(1.25rem, 2.8vw, 1.75rem);
  box-shadow: 0 18px 40px -28px rgba(10, 31, 24, 0.35);
}

.lp2-form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(27, 94, 69, 0.08);
  color: var(--fairway);
  font-size: 0.9rem;
}

.lp2-contact-form {
  display: grid;
  gap: 0.95rem;
}

.lp2-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.lp2-contact-form label {
  display: grid;
  gap: 0.4rem;
}

.lp2-contact-form label > span {
  font: 650 0.78rem/1 var(--t-ui);
  letter-spacing: 0.02em;
  color: var(--ink);
}

.lp2-contact-form input,
.lp2-contact-form select,
.lp2-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  color: var(--ink);
  font: 500 0.95rem/1.4 var(--t-ui);
  padding: 0.75rem 0.9rem;
}

.lp2-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a1f18' d='M1.1 1.2 6 6.1l4.9-4.9 1.1 1.1L6 8.3.0 2.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.lp2-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.lp2-contact-form input:focus,
.lp2-contact-form select:focus,
.lp2-contact-form textarea:focus {
  outline: 2px solid rgba(27, 94, 69, 0.35);
  outline-offset: 1px;
  border-color: rgba(27, 94, 69, 0.45);
  background: #fff;
}

.lp2-contact-form em {
  font-style: normal;
  font-size: 0.8rem;
  color: #b42318;
}

.lp2-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  grid-template-columns: none !important;
}

.lp2-check input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--fairway);
}

.lp2-check span {
  font: 450 0.86rem/1.45 var(--t-ui) !important;
  color: var(--soft);
}

.lp2-check a {
  color: var(--fairway);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp2-check-error {
  display: block;
  margin-top: -0.35rem;
}

.lp2-contact-form .lp2-btn {
  --bg: var(--green);
  --fg: #fff;
  justify-self: start;
  margin-top: 0.25rem;
  min-width: 11rem;
}

/* ---------- cross-course tee sheet ---------- */
.lp2-sheet-page {
  padding-top: clamp(28px, 4vw, 40px);
}

.lp2-sheet-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 36px);
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: var(--r-card);
  box-shadow: 0 12px 32px -28px rgba(10, 31, 24, 0.45);
}

.lp2-sheet-field {
  display: grid;
  gap: 0.4rem;
}

.lp2-sheet-field span {
  font: 700 0.7rem/1 var(--t-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}

.lp2-sheet-field input,
.lp2-sheet-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(10, 31, 24, 0.12);
  border-radius: 12px;
  background: var(--mist);
  color: var(--ink);
  font: 500 0.95rem/1.2 var(--t-ui);
}

.lp2-sheet-field input:focus,
.lp2-sheet-field select:focus {
  outline: 2px solid rgba(27, 94, 69, 0.35);
  outline-offset: 1px;
  border-color: rgba(27, 94, 69, 0.4);
}

.lp2-sheet-filters .lp2-btn {
  --bg: var(--green);
  --fg: #fff;
  min-height: 48px;
  white-space: nowrap;
}

.lp2-sheet-filters.is-date {
  display: grid;
  grid-template-columns: minmax(14rem, 16rem) max-content;
  width: max-content;
  max-width: 100%;
  align-items: end;
}

.lp2-sheet-filters.is-date .lp2-sheet-field {
  width: min(100%, 16rem);
}

.lp2-sheet-filters.is-date .lp2-btn {
  min-width: 0;
  padding-inline: 1.25rem;
}

.lp2-book {
  padding-top: calc(96px + var(--safe-t));
  padding-bottom: clamp(48px, 7vw, 80px);
  background: var(--stone);
}

.lp2-book-split {
  display: grid;
  grid-template-columns: minmax(17rem, 22rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.lp2-book-summary {
  position: sticky;
  top: calc(88px + var(--safe-t));
  overflow: hidden;
  border-radius: calc(var(--r-card) + 4px);
  background: var(--green);
  color: #fafbfa;
}

.lp2-book-summary-media {
  height: 9.5rem;
  background: center / cover no-repeat;
}

.lp2-book-summary-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.lp2-book-summary .kicker {
  margin: 0;
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbb009;
}

.lp2-book-summary h1 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  color: #fafbfa;
}

.lp2-book-summary .when {
  margin: 0 0 1rem;
  color: rgba(250, 251, 250, 0.72);
  font-size: 0.92rem;
}

.lp2-book-fee {
  display: none;
}

.lp2-book-summary dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.lp2-book-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(250, 251, 250, 0.14);
}

.lp2-book-summary dt {
  color: rgba(250, 251, 250, 0.62);
  font-size: 0.82rem;
}

.lp2-book-summary dd {
  margin: 0;
  font-weight: 650;
  text-align: right;
}

.lp2-book-form {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--r-card) + 4px);
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  box-shadow: 0 18px 40px -28px rgba(10, 31, 24, 0.35);
}

.lp2-book-form .lp2-contact-form-head h2 {
  font-size: 1.4rem;
}

.lp2-book-form .lp2-contact-form-head p {
  margin-bottom: 0;
  max-width: none;
}

.lp2-book-form label.lp2-field {
  display: flex;
  gap: 5px;
}

.lp2-book-form label.lp2-field > .lp2-picker-label {
  font: 700 0.66rem/1 var(--t-ui);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fairway);
}

.lp2-book-form .lp2-field input {
  width: 100%;
  min-height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font: 650 0.94rem/1.2 var(--t-ui);
}

.lp2-book-form .lp2-field input:focus {
  outline: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lp2-book-form .lp2-field input::placeholder {
  color: rgba(10, 31, 24, 0.38);
  font-weight: 500;
}

.lp2-course-date {
  max-width: 18rem;
}

.lp2-course-panel .lp2-sheet-boards {
  margin-top: 1.15rem;
}

.lp2-course-panel .lp2-sheet-board {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.lp2-book-players {
  display: grid;
  gap: 0.75rem;
}

.lp2-book-player {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lp2-book-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--stone);
}

.lp2-book-total span {
  font-weight: 650;
}

.lp2-book-total strong {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lp2-book-submit {
  width: 100%;
}

.lp2-book-dock {
  display: none;
}

.lp2-service-form {
  margin-top: 1rem;
}

.lp2-service-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lp2-service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.lp2-service-includes li {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--stone);
  color: var(--ink);
  font: 650 0.78rem/1.2 var(--t-ui);
}

.lp2-time-picks {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.lp2-time-picks legend {
  margin-bottom: 0.55rem;
  padding: 0;
  font: 700 0.66rem/1 var(--t-ui);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fairway);
}

.lp2-time-picks > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.4rem, 1fr));
  gap: 8px;
}

.lp2-time-pick {
  position: relative;
  display: block;
}

.lp2-contact-form .lp2-time-pick input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

.lp2-contact-form .lp2-time-pick span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 12px;
  background: var(--mist);
  border: 1px solid rgba(10, 31, 24, 0.08);
  color: var(--ink);
  font: 650 0.92rem/1 var(--t-ui);
  letter-spacing: 0;
  cursor: pointer;
}

.lp2-time-pick input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fafbfa;
}

.lp2-time-pick input:focus-visible + span {
  outline: 2px solid var(--fairway);
  outline-offset: 2px;
}

.lp2-service-related {
  margin-top: 1.5rem;
}

.lp2-service-related h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.lp2-service-related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lp2-service-related-list a {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  min-height: 4.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.lp2-service-related-list .media {
  background: center / cover no-repeat;
}

.lp2-service-related-list .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.7rem 0.85rem;
}

.lp2-service-related-list .name {
  font-weight: 700;
  line-height: 1.2;
}

.lp2-service-related-list .price {
  color: var(--fairway);
  font: 650 0.82rem/1 var(--t-ui);
}

.lp2-flash ul {
  margin: 0;
  padding-left: 1.1rem;
}

.lp2-sheet-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.15rem;
}

.lp2-sheet-meta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.lp2-sheet-meta p {
  margin: 0.35rem 0 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.lp2-sheet-boards {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.lp2-sheet-board {
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: var(--r-card);
  box-shadow: 0 12px 32px -28px rgba(10, 31, 24, 0.45);
  overflow: hidden;
}

.lp2-sheet-board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(10, 31, 24, 0.08);
  background: rgba(12, 51, 38, 0.03);
}

.lp2-sheet-board-head h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.lp2-sheet-board-head p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--soft);
}

.lp2-sheet-sides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp2-sheet-side + .lp2-sheet-side {
  border-left: 1px solid rgba(10, 31, 24, 0.08);
}

.lp2-sheet-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.65rem;
}

.lp2-sheet-side-head h4 {
  margin: 0;
  font: 700 0.78rem/1 var(--t-ui);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.lp2-sheet-side-head span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--soft);
}

.lp2-sheet-side-empty {
  margin: 0;
  padding: 0.5rem 1rem 1.15rem;
  font-size: 0.85rem;
  color: var(--soft);
}

.lp2-sheet-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.6rem, 1fr));
  gap: 8px;
  padding: 0 1rem 1.1rem;
}

.lp2-sheet-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.6rem;
  padding: 0.55rem 0.35rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: 12px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.lp2-sheet-chip:hover {
  background: #fff;
  border-color: rgba(27, 94, 69, 0.35);
  transform: translateY(-1px);
}

.lp2-sheet-chip .time {
  font-family: var(--t-display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--green);
}

.lp2-sheet-chip .left {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fairway);
}

.lp2-sheet-chip.is-closed {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(10, 31, 24, 0.04);
}

.lp2-sheet-chip.is-closed .time {
  text-decoration: line-through;
  color: var(--soft);
}

.lp2-sheet-chip.is-closed .left {
  color: var(--soft);
}

.lp2-flash {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fde8e6;
  color: #7a221c;
  font-size: 0.92rem;
  font-weight: 600;
}

.lp2-sheet-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  background: #fff;
  border: 1px dashed rgba(10, 31, 24, 0.14);
  border-radius: var(--r-card);
}

.lp2-sheet-empty p {
  margin: 0 0 1.15rem;
  color: var(--soft);
}

.lp2-sheet-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- events calendar ---------- */
.lp2-page-hero--compact {
  padding-bottom: clamp(36px, 5vw, 52px);
}

.lp2-page-hero--compact h1 {
  max-width: 16ch;
}

.lp2-events-page {
  padding-top: clamp(28px, 4vw, 40px);
}

.lp2-events-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.lp2-events-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--soft);
}

.lp2-events-posters {
  display: grid;
  gap: 14px;
}

.lp2-events-posters.is-solo {
  grid-template-columns: minmax(0, 40rem);
}

.lp2-events-posters.is-pair,
.lp2-events-posters.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp2-event-card {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  min-height: 9.5rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px -28px rgba(10, 31, 24, 0.45);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.lp2-event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 94, 69, 0.28);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.45);
}

.lp2-event-card .media {
  display: block;
  min-height: 100%;
  background: var(--green) center / cover no-repeat;
}

.lp2-event-card .body {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
}

.lp2-event-card time {
  margin: 0;
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8922a;
}

.lp2-event-card .name {
  font: 650 1.1rem/1.25 var(--t-ui);
  letter-spacing: -0.015em;
  color: var(--ink);
}

.lp2-event-card .lede {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp2-event-card .foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.35rem;
}

.lp2-event-card .price {
  font: 700 0.95rem/1 var(--t-ui);
  color: var(--green);
}

.lp2-event-card .go {
  font: 700 0.82rem/1 var(--t-ui);
  color: var(--fairway);
}

.lp2-events-admin-tip {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--soft);
}

.lp2-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.lp2-pager a,
.lp2-pager .is-disabled {
  font: 700 0.88rem/1 var(--t-ui);
  color: var(--fairway);
  text-decoration: none;
}

.lp2-pager .is-disabled {
  opacity: 0.35;
}

.lp2-pager-status {
  font-size: 0.85rem;
  color: var(--soft);
}

/* ---------- event detail ---------- */
.lp2-event-detail {
  padding-top: calc(96px + var(--safe-t));
}

.lp2-event-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
  font: 600 0.86rem/1 var(--t-ui);
  color: var(--fairway);
  text-decoration: none;
}

.lp2-event-back:hover {
  color: var(--green);
}

.lp2-page-kicker--ink {
  color: #b8922a;
}

.lp2-event-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.lp2-event-detail-copy h1 {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.lp2-event-detail-copy .lp2-lede {
  margin: 0;
  color: var(--soft);
}

.lp2-event-detail-media {
  min-height: 240px;
  border-radius: calc(var(--r-card) + 2px);
  background: var(--green) center / cover no-repeat;
  box-shadow: 0 18px 40px -28px rgba(10, 31, 24, 0.5);
}

.lp2-event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.lp2-event-facts span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 51, 38, 0.06);
  border: 1px solid rgba(10, 31, 24, 0.08);
  font: 600 0.8rem/1 var(--t-ui);
  color: var(--ink);
}

.lp2-event-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.lp2-share-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 650 0.86rem/1 var(--t-ui);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.lp2-share-btn:hover {
  transform: translateY(-1px);
}

.lp2-share-ico {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.lp2-share-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 22px -16px rgba(18, 140, 70, 0.8);
}

.lp2-share-btn--wa:hover {
  background: #1ebe57;
}

.lp2-share-btn--copy {
  background: #fff;
  color: var(--green);
  border-color: rgba(10, 31, 24, 0.14);
}

.lp2-share-btn--copy:hover {
  border-color: rgba(27, 94, 69, 0.35);
  background: rgba(12, 51, 38, 0.04);
}

.lp2-share-btn--copy.is-copied {
  color: var(--fairway);
  border-color: rgba(27, 94, 69, 0.35);
  background: rgba(27, 94, 69, 0.08);
}

.lp2-btn--wa {
  --bg: #25d366;
  --fg: #fff;
}

/* ---------- trainers directory ---------- */
.lp2-trainers-page {
  padding-top: clamp(28px, 4vw, 40px);
}

.lp2-trainers-list {
  display: grid;
  gap: 12px;
}

.lp2-trainers-list.is-solo {
  grid-template-columns: minmax(0, 40rem);
}

.lp2-trainers-list.is-pair,
.lp2-trainers-list.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp2-trainer-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px -28px rgba(10, 31, 24, 0.45);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.lp2-trainer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 94, 69, 0.28);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.45);
}

.lp2-trainer-card .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fafbfa;
  display: grid;
  place-items: center;
  flex: none;
}

.lp2-trainer-card .av-ic {
  width: 26px;
  height: 26px;
  background-color: currentColor;
  -webkit-mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
  mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
}

.lp2-trainer-card .body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.lp2-trainer-card .name {
  font: 650 1.05rem/1.25 var(--t-ui);
  letter-spacing: -0.015em;
}

.lp2-trainer-card .spec {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fairway);
}

.lp2-trainer-card .lede {
  font-size: 0.88rem;
  color: var(--soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp2-trainer-card .foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-top: 0.35rem;
}

.lp2-trainer-card .price {
  font: 700 0.92rem/1 var(--t-ui);
  color: var(--green);
}

.lp2-trainer-card .lp2-pro-slot {
  margin: 0;
}

.lp2-trainer-card .go {
  font: 700 0.82rem/1 var(--t-ui);
  color: var(--fairway);
  white-space: nowrap;
}

.lp2-trainer-detail {
  padding-top: calc(96px + var(--safe-t));
}

.lp2-trainer-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.7fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.lp2-trainer-detail-copy h1 {
  margin: 0 0 0.75rem;
  max-width: 16ch;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.lp2-trainer-detail-copy .lp2-lede {
  margin: 0;
  color: var(--soft);
}

.lp2-trainer-detail-aside {
  background: var(--green);
  color: #fafbfa;
  border-radius: var(--r-card);
  padding: 1.25rem 1.35rem 1.4rem;
}

.lp2-trainer-detail-aside .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #c9a227;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.lp2-trainer-detail-aside .av-ic {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
  mask: url("/images/icons/golf/offer-coaching.png") center / contain no-repeat;
}

.lp2-trainer-detail-aside .aside-label {
  margin: 0 0 0.4rem;
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lp2-trainer-detail-aside p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 251, 250, 0.78);
}

.lp2-trainer-day {
  margin-bottom: 14px;
}

.lp2-trainer-day .lp2-sheet-board-head {
  border-bottom: 0;
  padding-bottom: 0.35rem;
}

.lp2-trainer-chips {
  padding-top: 0.15rem;
}

.lp2-sheet-chip.is-next {
  border-color: rgba(27, 94, 69, 0.45);
  background: rgba(27, 94, 69, 0.08);
}

button.lp2-sheet-chip {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}

/* ---------- services catalog ---------- */
.lp2-services-page {
  padding-top: clamp(28px, 4vw, 40px);
}

.lp2-services-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.lp2-services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp2-services-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 31, 24, 0.1);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font: 650 0.86rem/1 var(--t-ui);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.lp2-services-tab em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--soft);
}

.lp2-services-tab:hover {
  border-color: rgba(27, 94, 69, 0.3);
}

.lp2-services-tab.is-on {
  background: var(--green);
  border-color: var(--green);
  color: #fafbfa;
}

.lp2-services-tab.is-on em {
  color: rgba(250, 251, 250, 0.7);
}

.lp2-services-search input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(10, 31, 24, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: 500 0.95rem/1.2 var(--t-ui);
}

.lp2-services-search input:focus {
  outline: 2px solid rgba(27, 94, 69, 0.35);
  outline-offset: 1px;
  border-color: rgba(27, 94, 69, 0.4);
}

.lp2-services-feature {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(240px, 32vw, 320px);
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: 1.5rem 1.5rem 1.6rem;
  overflow: hidden;
  text-decoration: none;
  color: #fafbfa;
  border-radius: calc(var(--r-card) + 4px);
  background: var(--green);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.lp2-services-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -28px rgba(10, 31, 24, 0.55);
}

.lp2-services-feature .media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}

.lp2-services-feature:hover .media {
  transform: scale(1.06);
}

.lp2-services-feature .shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 28, 20, 0.12) 0%, rgba(8, 28, 20, 0.45) 48%, rgba(8, 28, 20, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 28, 20, 0.5) 0%, transparent 60%);
}

.lp2-services-feature .body {
  display: grid;
  gap: 0.4rem;
  max-width: 34rem;
}

.lp2-services-feature .kicker,
.lp2-service-tile .kicker {
  font: 700 0.72rem/1 var(--t-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.lp2-services-feature .name {
  font-family: var(--t-display);
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.lp2-services-feature .lede {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(250, 251, 250, 0.78);
}

.lp2-services-feature .foot,
.lp2-service-tile .foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin-top: 0.45rem;
}

.lp2-services-feature .price {
  font: 700 1.05rem/1 var(--t-ui);
}

.lp2-services-feature .go {
  font: 700 0.88rem/1 var(--t-ui);
  color: #c9a227;
}

.lp2-services-band {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.lp2-services-band .lp2-sec-head {
  margin-bottom: 1.15rem;
}

.lp2-services-band .lp2-lede {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.lp2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp2-service-tile {
  display: grid;
  grid-template-rows: 11rem auto;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(10, 31, 24, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px -28px rgba(10, 31, 24, 0.45);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.lp2-service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 94, 69, 0.28);
  box-shadow: 0 18px 36px -24px rgba(10, 31, 24, 0.45);
}

.lp2-service-tile .media {
  display: block;
  background: var(--green) center / cover no-repeat;
}

.lp2-service-tile .body {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem 1.15rem;
}

.lp2-service-tile .name {
  font: 650 1.05rem/1.25 var(--t-ui);
  letter-spacing: -0.015em;
}

.lp2-service-tile .lede {
  font-size: 0.88rem;
  color: var(--soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp2-service-tile .price {
  font: 700 0.98rem/1 var(--t-ui);
  color: var(--green);
}

.lp2-service-tile .go {
  font: 700 0.82rem/1 var(--t-ui);
  color: var(--fairway);
}

.lp2-services-coach-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px dashed rgba(10, 31, 24, 0.14);
  border-radius: var(--r-card);
}

.lp2-services-coach-cta p {
  margin: 0;
  color: var(--soft);
  max-width: 42ch;
}

.lp2-services-round {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  background: var(--stone);
  border-radius: var(--r-card);
}

.lp2-services-round h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}

.lp2-services-round p {
  margin: 0;
  color: var(--soft);
  max-width: 42ch;
}

.lp2-services-round-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .lp2-page-grid,
  .lp2-contact-layout,
  .lp2-capability-grid,
  .lp2-trust-grid {
    grid-template-columns: 1fr;
  }

  .lp2-contact-desk {
    position: static;
  }

  .lp2-capability-grid article:last-child {
    grid-column: auto;
  }

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

  .lp2-services-toolbar {
    grid-template-columns: 1fr;
  }

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

  .lp2-clubs .lp2-course,
  .lp2-clubs.is-pair .lp2-course {
    grid-column: auto;
    min-height: 200px;
  }
}

@media (max-width: 820px) {
  .lp2-page-hero {
    padding-top: calc(88px + var(--safe-t));
  }

  .lp2-contact-row {
    grid-template-columns: 1fr;
  }

  .lp2-sheet-filters {
    grid-template-columns: 1fr;
  }

  .lp2-sheet-filters.is-date {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lp2-sheet-filters.is-date .lp2-sheet-field,
  .lp2-sheet-filters.is-date .lp2-btn {
    width: 100%;
  }

  .lp2-book {
    padding-top: calc(76px + var(--safe-t));
  }

  .lp2-book-split {
    grid-template-columns: 1fr;
  }

  .lp2-book-summary {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: stretch;
    position: static;
  }

  .lp2-book-summary-media {
    height: auto;
    min-height: 4.75rem;
  }

  .lp2-book-summary-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.7rem 0.9rem;
  }

  .lp2-book-summary h1 {
    margin: 0.2rem 0 0;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .lp2-book-summary .when {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
  }

  .lp2-book-summary dl {
    display: none;
  }

  .lp2-book-fee {
    display: inline;
  }

  .lp2-course-date {
    max-width: none;
  }

  .lp2-service-fields,
  .lp2-service-related-list {
    grid-template-columns: 1fr;
  }

  .lp2-book-player {
    grid-template-columns: 1fr;
  }

  .lp2-book-submit {
    display: none;
  }

  .lp2-book-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem calc(0.75rem + var(--safe-b));
    background: rgba(250, 251, 250, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .lp2-book-dock span {
    display: block;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--soft);
  }

  .lp2-book-dock strong {
    font-size: 1.05rem;
  }

  .lp2-book-dock .lp2-btn {
    min-height: 48px;
    padding-inline: 1.1rem;
  }

  .lp2-book + .lp2-foot {
    margin-bottom: calc(76px + var(--safe-b));
  }

  .lp2-sheet-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp2-sheet-sides {
    grid-template-columns: 1fr;
  }

  .lp2-sheet-side + .lp2-sheet-side {
    border-left: 0;
    border-top: 1px solid rgba(10, 31, 24, 0.08);
  }

  .lp2-sheet-board-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp2-sheet-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp2-events-posters.is-pair,
  .lp2-events-posters.is-grid,
  .lp2-events-posters.is-solo {
    grid-template-columns: 1fr;
  }

  .lp2-event-card {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    min-height: 6.5rem;
  }

  .lp2-event-detail {
    padding-top: calc(88px + var(--safe-t));
  }

  .lp2-event-detail-head {
    grid-template-columns: 1fr;
  }

  .lp2-event-detail-media {
    min-height: 200px;
    order: -1;
  }

  .lp2-trainers-list.is-pair,
  .lp2-trainers-list.is-grid,
  .lp2-trainers-list.is-solo {
    grid-template-columns: 1fr;
  }

  .lp2-trainer-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lp2-trainer-card .go {
    display: none;
  }

  .lp2-trainer-detail {
    padding-top: calc(88px + var(--safe-t));
  }

  .lp2-trainer-detail-head {
    grid-template-columns: 1fr;
  }

  .lp2-events-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp2-services-grid {
    grid-template-columns: 1fr;
  }

  .lp2-services-feature {
    min-height: 260px;
  }

  .lp2-clubs,
  .lp2-clubs.is-solo {
    grid-template-columns: 1fr;
  }

  .lp2-clubs .lp2-course,
  .lp2-clubs.is-pair .lp2-course,
  .lp2-clubs.is-solo .lp2-course {
    grid-column: auto;
    min-height: 200px;
  }
}

.lp2-field-error {
  margin: -0.35rem 0 0;
  color: #7a221c;
  font-size: 0.8rem;
}

.lp2-book-form textarea {
  width: 100%;
  min-height: 6.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font: 500 0.94rem/1.45 var(--t-ui);
  resize: vertical;
}

.lp2-book-form textarea:focus {
  outline: none;
}

.lp2-book-form .lp2-field input[type="file"] {
  font: 500 0.85rem/1.3 var(--t-ui);
}

.lp2-auth {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-top: calc(28px + var(--safe-t));
  padding-bottom: calc(28px + var(--safe-b));
}

.lp2-auth-shell {
  max-width: 32rem;
}

.lp2-auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.lp2-auth .lp2-book-submit {
  display: inline-flex;
}

.lp2-auth .lp2-book-form h1 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.lp2-auth-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(27, 94, 69, 0.08);
  color: var(--fairway);
  font-size: 0.9rem;
}

.lp2-auth-links,
.lp2-auth-switch,
.lp2-auth-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.lp2-auth-switch,
.lp2-auth-note {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  color: var(--soft);
}

.lp2-auth-links a,
.lp2-auth-switch a,
.lp2-auth-note a {
  color: var(--fairway);
  font-weight: 700;
  text-decoration: none;
}

.lp2-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
}

.lp2-legal {
  max-width: 46rem;
}

.lp2-legal h1 {
  margin: 0.4rem 0 0.35rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.lp2-legal-updated {
  margin: 0 0 1.5rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.lp2-legal-doc section {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.lp2-legal-doc h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lp2-legal-doc h3 {
  margin: 0.2rem 0 0;
  font-size: 1rem;
}

.lp2-legal-doc p,
.lp2-legal-doc li {
  margin: 0;
  color: var(--soft);
  max-width: 68ch;
}

.lp2-legal-doc ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.lp2-legal-doc a {
  color: var(--fairway);
  font-weight: 700;
}

.lp2-ticket-qr {
  width: 9.5rem;
  height: 9.5rem;
  padding: 0.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.lp2-ticket-qr.is-large {
  width: 13rem;
  height: 13rem;
}

.lp2-ticket-sheet {
  max-width: 40rem;
}

.lp2-ticket-sheet h1 {
  margin: 0.25rem 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.04em;
}

.lp2-ticket-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 0;
}

.lp2-ticket-facts dt {
  color: var(--soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp2-ticket-facts dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
}

.lp2-confirm-players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lp2-confirm-players div {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: var(--stone);
}

.lp2-confirm-players span,
.lp2-confirm-players em {
  color: var(--soft);
  font-style: normal;
  font-size: 0.78rem;
}

.lp2-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

@media (max-width: 820px) {
  .lp2-ticket-facts,
  .lp2-confirm-players {
    grid-template-columns: 1fr;
  }
}
