
  /* ---------- Tokens ---------- */
  :root {
    --green-900: #0d2818;
    --green-800: #14361f;
    --green-700: #1c4a2c;
    --green-600: #2a6e3f;
    --green-500: #4a8a5c;
    --green-50:  #eef3ec;

    --cream:     #f5f1e8;
    --cream-2:   #ede8db;
    --paper:     #faf7ef;
    --ink:       #0d1a12;
    --ink-2:     #2b3329;
    --muted:     #6b7066;
    --line:      #d9d2bf;

    --gold:      #c9a961;
    --gold-2:    #b3934a;

    --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --maxw: 1320px;
    --pad: clamp(20px, 4vw, 56px);
    --r: 4px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.5;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
  p { margin: 0; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

  /* ---------- Top utility bar ---------- */
  .util {
    background: var(--green-900);
    color: var(--cream);
    font-size: 12.5px;
    letter-spacing: 0.02em;
  }
  .util .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 24px;
  }
  .util-left { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
  .util-left span { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
  .util-left .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #6dd089; box-shadow: 0 0 0 3px rgba(109,208,137,.18);
  }
  .util-right { display: flex; gap: 18px; align-items: center; }
  .lang {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 3px;
  }
  .lang button {
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(245,241,232,.7);
    border-radius: 999px;
  }
  .lang button.on { background: var(--cream); color: var(--green-900); }

  /* ---------- Header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,247,239,.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(13,40,24,.08);
  }
  header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
  }
  .brand {
    display: flex; align-items: center; gap: 14px;
  }
  .brand-mark {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--cream);
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.03em;
    border: 1.5px solid var(--gold);
    outline: 3px solid var(--paper);
  }
  .brand-text { line-height: 1.05; }
  .brand-text .name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .brand-text .sub {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
  }
  nav.primary {
    display: flex; gap: 4px; align-items: center;
  }
  nav.primary a {
    font-size: 13.5px;
    color: var(--ink-2);
    padding: 10px 14px;
    border-radius: var(--r);
    font-weight: 500;
    transition: color .15s, background .15s;
  }
  nav.primary a:hover { color: var(--green-900); background: rgba(13,40,24,.05); }
  .header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-900);
    color: var(--cream);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .15s, transform .15s;
  }
  .header-cta:hover { background: var(--green-700); }
  .header-cta svg { width: 14px; height: 14px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background: var(--green-900);
    color: var(--cream);
    overflow: hidden;
  }
  .hero-inner {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
  }
  @media (max-width: 960px){
    .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  }
  .hero-text {
    padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(120px, 12vw, 160px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--gold);
  }
  h1.display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    color: var(--cream);
    margin-bottom: 28px;
  }
  h1.display em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .lede {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(245,241,232,.78);
    max-width: 46ch;
    margin-bottom: 40px;
  }
  .hero-meta {
    display: flex; gap: 36px; flex-wrap: wrap;
    border-top: 1px solid rgba(245,241,232,.14);
    padding-top: 28px;
    margin-top: auto;
  }
  .hero-meta .stat .n {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    line-height: 1;
  }
  .hero-meta .stat .l {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245,241,232,.55);
    margin-top: 6px;
  }

  .hero-visual {
    position: relative;
    background: linear-gradient(135deg, #1a4429 0%, #0d2818 100%);
    overflow: hidden;
  }
  /* Striped placeholder evoking aerial fairway */
  .hero-photo {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(201,169,97,.18), transparent 55%),
      radial-gradient(ellipse at 80% 70%, rgba(74,138,92,.4), transparent 60%),
      repeating-linear-gradient(115deg,
        rgba(255,255,255,.03) 0 14px,
        rgba(0,0,0,.06) 14px 28px),
      linear-gradient(160deg, #2a6e3f 0%, #14361f 60%, #0a1f15 100%);
  }
  .hero-photo::after {
    content: "course photo · aerial";
    position: absolute; left: 24px; bottom: 24px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245,241,232,.45);
    background: rgba(13,40,24,.5);
    padding: 6px 10px;
    border: 1px solid rgba(245,241,232,.12);
    border-radius: 2px;
  }
  /* Decorative pin */
  .pin {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245,241,232,.35);
    display: grid; place-items: center;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 11px;
    background: rgba(13,40,24,.4);
    backdrop-filter: blur(6px);
  }
  .pin.p1 { top: 18%; left: 22%; }
  .pin.p2 { top: 52%; left: 60%; }
  .pin.p3 { top: 76%; left: 30%; }

  /* Booking widget overlapping hero/next */
  .booking {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    max-width: 1180px;
    width: calc(100% - var(--pad)*2);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 30px 60px -30px rgba(13,40,24,.45);
    transform: translateY(-50%);
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr 1fr auto;
    gap: 0;
    align-items: stretch;
  }
  @media (max-width: 960px){
    .booking { grid-template-columns: 1fr 1fr; transform: translateY(-40px); }
  }
  .booking-label {
    display: flex; flex-direction: column; justify-content: center;
    padding-right: 22px;
    border-right: 1px solid var(--line);
  }
  .booking-label .k {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .booking-label .v {
    font-family: var(--serif);
    font-size: 22px;
    margin-top: 4px;
    color: var(--green-900);
  }
  @media (max-width: 960px){
    .booking-label { grid-column: 1 / -1; padding: 0 0 16px 0; border-right: 0; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
  }
  .field {
    padding: 6px 22px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 4px;
    min-width: 0;
  }
  @media (max-width: 960px){ .field { border-right: 0; padding: 8px 0; } }
  .field label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .field select, .field input {
    border: 0; background: transparent;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--green-900);
    padding: 2px 0;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
  }
  .field select:focus, .field input:focus { outline: 0; }
  .field-arrow { position: relative; }
  .field-arrow::after {
    content: ""; position: absolute;
    right: 22px; top: 50%; transform: translateY(-2px);
    width: 8px; height: 8px;
    border-right: 1.5px solid var(--green-900);
    border-bottom: 1.5px solid var(--green-900);
    transform: translateY(-4px) rotate(45deg);
    pointer-events: none;
  }
  .booking-cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    background: var(--green-900);
    color: var(--cream);
    border-radius: 4px;
    padding: 0 28px;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .02em;
    transition: background .15s;
    margin-left: 8px;
    min-height: 64px;
  }
  .booking-cta:hover { background: var(--green-700); }
  @media (max-width: 960px){ .booking-cta { grid-column: 1 / -1; margin: 8px 0 0; min-height: 52px; } }

  /* ---------- Section base ---------- */
  section { padding: clamp(64px, 9vw, 120px) 0; }
  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
  }
  .section-head .lhs { max-width: 720px; }
  .kicker {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green-700);
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 22px;
  }
  .kicker::before { content: ""; width: 28px; height: 1px; background: var(--green-700); }
  h2.section {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--green-900);
  }
  h2.section em { font-style: italic; color: var(--gold-2); font-weight: 300; }

  /* ---------- About / welcome ---------- */
  .welcome {
    background: var(--paper);
    padding-top: 80px;
  }
  .welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
  }
  @media (max-width: 900px){ .welcome-grid { grid-template-columns: 1fr; } }
  .welcome-photo {
    aspect-ratio: 4/5;
    background:
      repeating-linear-gradient(135deg, rgba(13,40,24,.06) 0 12px, rgba(13,40,24,.02) 12px 24px),
      linear-gradient(160deg, #d4cdb8 0%, #b9b099 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .welcome-photo::after {
    content: "clubhouse · golden hour";
    position: absolute; left: 16px; bottom: 16px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(13,40,24,.45);
  }
  .welcome p.body {
    font-size: 17.5px;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 50ch;
    margin-top: 22px;
  }
  .welcome p.body + p.body { margin-top: 18px; }
  .signature {
    margin-top: 36px;
    display: flex; align-items: center; gap: 18px;
  }
  .signature .sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: var(--green-900);
  }
  .signature .role {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ---------- Course details ---------- */
  .course {
    background: var(--green-900);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .course .kicker { color: var(--gold); }
  .course .kicker::before { background: var(--gold); }
  .course h2.section { color: var(--cream); }
  .course h2.section em { color: var(--gold); }
  .course .lede {
    color: rgba(245,241,232,.7);
    max-width: 56ch;
    font-size: 17px;
    line-height: 1.55;
  }

  .scorecard {
    margin-top: 64px;
    border-top: 1px solid rgba(245,241,232,.16);
    border-bottom: 1px solid rgba(245,241,232,.16);
    overflow-x: auto;
  }
  .scorecard table {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
  }
  .scorecard th, .scorecard td {
    padding: 18px 8px;
    text-align: center;
    font-size: 14px;
    border-right: 1px solid rgba(245,241,232,.08);
  }
  .scorecard th {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245,241,232,.55);
    font-weight: 400;
  }
  .scorecard td.label {
    text-align: left;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    padding-left: 0;
  }
  .scorecard tr.totals td {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--cream);
    border-top: 1px solid rgba(245,241,232,.16);
  }
  .scorecard tr.totals td.label { color: var(--gold); font-family: var(--mono); font-size: 10.5px; }

  .course-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(245,241,232,.16);
    margin-top: 56px;
    border: 1px solid rgba(245,241,232,.16);
  }
  @media (max-width: 720px){ .course-stats { grid-template-columns: repeat(2,1fr); } }
  .course-stats .cs {
    background: var(--green-900);
    padding: 28px;
  }
  .course-stats .n {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .course-stats .n .u {
    font-size: 16px;
    color: var(--gold);
    font-style: italic;
    margin-left: 4px;
  }
  .course-stats .l {
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245,241,232,.55);
  }

  /* ---------- Rates ---------- */
  .rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 900px){ .rates-grid { grid-template-columns: 1fr; } }
  .rate-card {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 32px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    position: relative;
  }
  .rate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(13,40,24,.2);
    border-color: var(--green-900);
  }
  .rate-card.featured {
    background: var(--green-900);
    color: var(--cream);
    border-color: var(--green-900);
  }
  .rate-card .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-700);
  }
  .rate-card.featured .tag { color: var(--gold); }
  .rate-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--green-900);
    font-weight: 400;
  }
  .rate-card.featured h3 { color: var(--cream); }
  .rate-card .price {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--green-900);
  }
  .rate-card.featured .price { color: var(--cream); }
  .rate-card .price sup {
    font-size: 22px;
    vertical-align: top;
    margin-right: 4px;
    color: var(--gold-2);
    font-style: italic;
  }
  .rate-card.featured .price sup { color: var(--gold); }
  .rate-card .price sub {
    font-size: 13px;
    font-family: var(--mono);
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
  }
  .rate-card.featured .price sub { color: rgba(245,241,232,.5); }
  .rate-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .rate-card.featured .rate-list { border-color: rgba(245,241,232,.16); }
  .rate-list li {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .rate-card.featured .rate-list li { color: rgba(245,241,232,.78); }
  .rate-list li b { font-weight: 500; color: var(--green-900); font-variant-numeric: tabular-nums;}
  .rate-card.featured .rate-list li b { color: var(--cream); }
  .rate-foot {
    font-size: 12px;
    color: var(--muted);
    border-top: 1px dashed var(--line);
    padding-top: 16px;
    line-height: 1.5;
  }
  .rate-card.featured .rate-foot { color: rgba(245,241,232,.5); border-color: rgba(245,241,232,.16); }

  .rates-note {
    margin-top: 32px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; gap: 24px; flex-wrap: wrap;
  }

  /* ---------- Amenities ---------- */
  .amen {
    background: var(--cream);
  }
  .amen-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  @media (max-width: 1100px){ .amen-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 640px){ .amen-grid { grid-template-columns: repeat(2, 1fr); } }
  .amen-card {
    grid-column: span 2;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
  }
  .amen-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(13,40,24,.18);}
  .amen-card.tall { grid-row: span 1; }
  .amen-card.wide { grid-column: span 3; }
  .amen-card.feature { grid-column: span 4; }
  @media (max-width: 1100px){
    .amen-card, .amen-card.wide, .amen-card.feature { grid-column: span 3; }
  }
  @media (max-width: 640px){
    .amen-card, .amen-card.wide, .amen-card.feature { grid-column: span 2; }
  }
  .amen-photo {
    aspect-ratio: 16/10;
    position: relative;
    background:
      repeating-linear-gradient(135deg, rgba(13,40,24,.05) 0 10px, rgba(13,40,24,.01) 10px 20px),
      linear-gradient(160deg, #c8c1ab 0%, #a59b80 100%);
  }
  .amen-photo.alt {
    background:
      repeating-linear-gradient(135deg, rgba(13,40,24,.06) 0 10px, rgba(13,40,24,.02) 10px 20px),
      linear-gradient(160deg, #1c4a2c 0%, #0d2818 100%);
  }
  .amen-photo.warm {
    background:
      repeating-linear-gradient(135deg, rgba(13,40,24,.05) 0 10px, rgba(13,40,24,.01) 10px 20px),
      linear-gradient(160deg, #d6c79e 0%, #a08a55 100%);
  }
  .amen-photo .ph-label {
    position: absolute; left: 14px; bottom: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(13,40,24,.5);
    background: rgba(255,255,255,.7);
    padding: 4px 8px;
    border-radius: 2px;
  }
  .amen-photo.alt .ph-label { color: rgba(245,241,232,.7); background: rgba(13,40,24,.4); }
  .amen-body {
    padding: 24px 24px 26px;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
  }
  .amen-body .num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--gold-2);
  }
  .amen-body h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--green-900);
    font-weight: 400;
    line-height: 1.1;
  }
  .amen-body p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
  }
  .amen-body .more {
    margin-top: auto;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--green-900);
    text-transform: uppercase;
    display: inline-flex; gap: 8px; align-items: center;
    padding-top: 14px;
  }
  .amen-body .more::after {
    content: "→";
    transition: transform .2s;
  }
  .amen-card:hover .amen-body .more::after { transform: translateX(4px); }

  /* ---------- Lessons / camps band ---------- */
  .band {
    background: var(--green-700);
    color: var(--cream);
    padding: clamp(56px, 7vw, 96px) 0;
  }
  .band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
  }
  @media (max-width: 900px){ .band-grid { grid-template-columns: 1fr; } }
  .band .kicker { color: var(--gold); }
  .band .kicker::before { background: var(--gold); }
  .band h2.section { color: var(--cream); font-size: clamp(32px, 3.6vw, 48px); }
  .band p {
    color: rgba(245,241,232,.78);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 18px;
    max-width: 50ch;
  }
  .band-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .band-cards .bc {
    background: rgba(245,241,232,.05);
    border: 1px solid rgba(245,241,232,.12);
    border-radius: 4px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    transition: background .2s, border-color .2s;
  }
  .band-cards .bc:hover { background: rgba(245,241,232,.08); border-color: var(--gold); }
  .band-cards .bc .t {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--cream);
  }
  .band-cards .bc .d {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
  }
  .band-cards .bc .arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(245,241,232,.2);
    display: grid; place-items: center;
    font-size: 14px;
    color: var(--cream);
  }

  /* ---------- Hours / status strip ---------- */
  .strip {
    background: var(--cream-2);
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .strip .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  @media (max-width: 900px){ .strip .wrap { grid-template-columns: repeat(2,1fr); } }
  .strip .item .k {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .strip .item .v {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--green-900);
    margin-top: 4px;
  }
  .strip .item .v.live { display: inline-flex; align-items: center; gap: 10px;}
  .strip .item .v.live::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 4px rgba(42,110,63,.18);
  }

  /* ---------- Visit / contact ---------- */
  .visit {
    background: var(--paper);
  }
  .visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: stretch;
  }
  @media (max-width: 900px){ .visit-grid { grid-template-columns: 1fr; } }
  .map {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream);
    position: relative;
    border: 1px solid var(--line);
  }
  .map svg { display: block; width: 100%; height: 100%; }
  .visit-info { display: flex; flex-direction: column; gap: 28px; }
  .visit-info .row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }
  .visit-info .row:last-child { border-bottom: 0; }
  .visit-info .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 4px;
  }
  .visit-info .v {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--green-900);
    line-height: 1.35;
  }
  .visit-info .v small {
    display: block;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-2);
    margin-top: 4px;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--green-900);
    color: var(--cream);
    padding: 80px 0 32px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245,241,232,.14);
  }
  @media (max-width: 900px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-brand .brand-text .name { color: var(--cream); }
  .foot-brand .brand-text .sub { color: rgba(245,241,232,.6); }
  .foot-brand p {
    margin-top: 22px;
    color: rgba(245,241,232,.65);
    font-size: 14px;
    line-height: 1.6;
    max-width: 36ch;
  }
  .foot-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;}
  .foot-col a {
    color: rgba(245,241,232,.78);
    font-size: 14px;
    transition: color .15s;
  }
  .foot-col a:hover { color: var(--cream); }

  .foot-bottom {
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(245,241,232,.5);
  }
  .foot-bottom .lang { background: rgba(255,255,255,.04); }

  /* Hide initial state for animations only */
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s, transform .8s; }
  .reveal.in { opacity: 1; transform: none; }



/* ============ SUB-PAGE STYLES ============ */
.subhero {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(64px, 9vw, 130px) 0 clamp(64px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.subhero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201,169,97,.08), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.015) 0 14px, rgba(0,0,0,.04) 14px 28px);
  pointer-events: none;
}
.subhero .wrap { position: relative; z-index: 1; }
.subhero .crumb {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; gap: 12px; align-items: center;
  margin-bottom: 28px;
}
.subhero .crumb a { color: rgba(245,241,232,.55); }
.subhero .crumb a:hover { color: var(--cream); }
.subhero .crumb .sep { color: rgba(245,241,232,.3); }
.subhero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 18ch;
}
.subhero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.subhero p.lede {
  margin-top: 24px;
  max-width: 60ch;
  color: rgba(245,241,232,.8);
  font-size: 17px;
  line-height: 1.55;
}

/* Rates page tables */
.rate-table-wrap {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow-x: auto;
  background: var(--paper);
}
.rate-table-wrap + .rate-table-wrap { margin-top: 32px; }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  min-width: 760px;
}
.rate-table caption {
  text-align: left;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green-900);
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  caption-side: top;
}
.rate-table caption .sub {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.rate-table thead th {
  background: var(--cream-2);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  padding: 14px 16px;
  text-align: right;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.rate-table thead th:first-child { text-align: left; }
.rate-table tbody td {
  padding: 14px 16px;
  font-size: 14.5px;
  text-align: right;
  border-bottom: 1px solid rgba(217, 210, 191, 0.5);
  color: var(--ink);
  white-space: nowrap;
}
.rate-table tbody td:first-child {
  text-align: left;
  color: var(--ink-2);
  font-weight: 500;
  white-space: normal;
}
.rate-table tbody tr:hover td { background: rgba(13,40,24,.025); }
.rate-table tbody td.peak { color: var(--green-900); font-weight: 600; background: rgba(201,169,97,.07); }
.rate-table tbody td.dash { color: var(--muted); }
.rate-table tfoot td {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--cream-2);
}

/* Generic page content */
.content {
  padding: clamp(64px, 8vw, 100px) 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px){ .content-grid { grid-template-columns: 1fr; } }
.content aside {
  position: sticky;
  top: 100px;
}
.content aside .label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
  display: block;
}
.content aside h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--green-900);
  line-height: 1.05;
}
.content aside h2 em { font-style: italic; color: var(--gold-2); font-weight: 300; }
.content article p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.content article p + p { margin-top: 18px; }
.content article h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--green-900);
  margin-top: 36px;
  margin-bottom: 14px;
}
.content article ul {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.content article ul li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.content article ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 14px; height: 1px; background: var(--gold-2);
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 40px 0;
}
@media (max-width: 720px){ .photo-strip { grid-template-columns: 1fr; } }
.photo-strip .ph {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.photo-strip .ph .ph-label {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(13,40,24,.55);
  background: rgba(255,255,255,.7);
  padding: 4px 8px;
  border-radius: 2px;
}
.ph-1 { background: repeating-linear-gradient(135deg, rgba(13,40,24,.06) 0 10px, rgba(13,40,24,.01) 10px 20px), linear-gradient(160deg, #c8c1ab 0%, #a59b80 100%); }
.ph-2 { background: repeating-linear-gradient(135deg, rgba(13,40,24,.06) 0 10px, rgba(13,40,24,.01) 10px 20px), linear-gradient(160deg, #d6c79e 0%, #a08a55 100%); }
.ph-3 { background: repeating-linear-gradient(135deg, rgba(245,241,232,.06) 0 10px, rgba(245,241,232,.02) 10px 20px), linear-gradient(160deg, #1c4a2c 0%, #0d2818 100%); }
.ph-3 .ph-label { color: rgba(245,241,232,.7); background: rgba(13,40,24,.4); }
.ph-4 { background: repeating-linear-gradient(135deg, rgba(13,40,24,.06) 0 10px, rgba(13,40,24,.01) 10px 20px), linear-gradient(160deg, #b9b8a5 0%, #898773 100%); }

/* Big feature with two columns */
.feature-block {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 800px){ .feature-block { grid-template-columns: 1fr; } }
.feature-block h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.feature-block p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin-top: 14px; }
.feature-block .photo {
  aspect-ratio: 4/3;
  border-radius: 4px;
}

/* CTA card */
.cta-card {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(40px, 5vw, 64px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.cta-card .lhs h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.cta-card .lhs h3 em { font-style: italic; color: var(--gold); font-weight: 300; }
.cta-card .lhs p { color: rgba(245,241,232,.65); margin-top: 10px; font-size: 14.5px; }
.cta-card .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn-primary { background: var(--gold); color: var(--green-900); }
.btn-primary:hover { background: #d8b86b; }
.btn-ghost { border: 1px solid rgba(245,241,232,.3); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--green-900); color: var(--cream); }
.btn-dark:hover { background: var(--green-700); }
.btn-light { background: var(--paper); color: var(--green-900); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--green-900); }

/* Socials in footer */
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,241,232,.2);
  display: grid; place-items: center;
  color: rgba(245,241,232,.7);
  transition: color .15s, border-color .15s, background .15s;
}
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.socials a svg { width: 15px; height: 15px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-900);
  font-weight: 400;
  line-height: 1.25;
}
.faq summary .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--green-900);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq details[open] summary .ic { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq details p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
}

/* Form */
.form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form .full { grid-column: 1 / -1; }
@media (max-width: 640px){ .form { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-900);
  border-radius: 4px;
  transition: border-color .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--green-900);
}
.form textarea { min-height: 140px; resize: vertical; }

/* ============ REAL IMAGES ============ */
/* Hero — course view */
.hero-photo {
  background:
    linear-gradient(180deg, rgba(13,40,24,.20) 0%, rgba(13,40,24,.55) 100%),
    url("../images/photo18epetite2-1.jpg") center/cover no-repeat !important;
}
.hero-photo::after { display: none; }

/* Welcome / dining */
.welcome-photo {
  background:
    url("../images/salleamanger2-1.jpg") center/cover no-repeat !important;
}
.welcome-photo::after { display: none; }

/* Amenity card photos — referenced by data-photo on the .amen-photo element */
.amen-photo[data-photo="range"]   { background: url("../images/champ-de-pratique-diaporama.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="resto"]   { background: url("../images/salleamanger2-1.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="recep"]   { background: url("../images/salleamanger-1.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="proshop"] { background: url("../images/proshopsection.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="mini"]    { background: url("../images/miniGolf.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="course"]  { background: url("../images/photo18epetite2-1.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo] .ph-label { background: rgba(13,40,24,.55); color: rgba(245,241,232,.85); }

/* Photo-strip image variants used on subpages */
.ph[data-photo] .ph-label { background: rgba(13,40,24,.6); color: rgba(245,241,232,.9); }
.ph[data-photo="range"]      { background: url("../images/champ-de-pratique-diaporama.jpg") center/cover no-repeat; }
.ph[data-photo="course"]     { background: url("../images/photo18epetite2-1.jpg") center/cover no-repeat; }
.ph[data-photo="resto"]      { background: url("../images/salleamanger2-1.jpg") center/cover no-repeat; }
.ph[data-photo="recep"]      { background: url("../images/salleamanger-1.jpg") center/cover no-repeat; }
.ph[data-photo="proshop"]    { background: url("../images/proshopsection.jpg") center/cover no-repeat; }
.ph[data-photo="mini1"]      { background: url("../images/miniGolf.jpg") center/cover no-repeat; }
.ph[data-photo="mini2"]      { background: url("../images/miniGolf2.jpg") center/cover no-repeat; }
.ph[data-photo="mini3"]      { background: url("../images/miniGolf3.jpg") center/cover no-repeat; }
.ph[data-photo="indoor"]     { background: url("../images/Ajuter-un-titre-1.png") center/cover no-repeat; }
.ph[data-photo="scorecard"]  { background: url("../images/carte-de-pointage-1.jpg") center/cover no-repeat; }

/* Sub-page hero override (set via inline custom property --hero-img) */
.subhero[style*="--hero-img"]::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--hero-img) center/cover no-repeat;
  opacity: .35;
  z-index: 0;
}
.subhero[style*="--hero-img"] { isolation: isolate; }

/* Big feature-block photo override */
.feature-block .photo[data-photo="indoor"] { background: url("../images/Ajuter-un-titre-1.png") center/cover no-repeat; }

/* Scorecard image figure */
.scorecard-image {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.scorecard-image img { width: 100%; height: auto; display: block; }
.scorecard-image figcaption {
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}

/* ============ MOBILE NAV (hamburger) ============ */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  border: 0;
  flex-shrink: 0;
}
.menu-btn svg { width: 20px; height: 20px; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="false"] .icon-close { display: none; }

@media (max-width: 860px) {
  header.site .wrap { gap: 12px; }
  nav.primary {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--paper);
    z-index: 100;
    padding: clamp(116px, 18vh, 140px) max(24px, 8vw) 36px;
    flex-direction: column;
    justify-content: center;
    gap: clamp(6px, 1.6vh, 12px);
    box-shadow: none;
    overflow: hidden;
    scrollbar-width: none;
  }
  nav.primary::-webkit-scrollbar { display: none; }
  body.menu-open header.site { z-index: 120; }
  body.menu-open nav.primary { display: flex; }
  body.menu-open::after {
    content: "";
    position: fixed; inset: 0;
    background: var(--paper);
    z-index: 90;
  }
  body.menu-open {
    overflow: hidden;
    position: fixed;   /* iOS-compatible scroll lock */
    width: 100%;
    /* top is set by JS to preserve scroll position */
  }
  nav.primary a {
    font-family: var(--serif);
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.1;
    padding: clamp(10px, 2.4vh, 14px) 4px;
    border-bottom: 1px solid var(--line);
    color: var(--green-900);
    border-radius: 0;
    text-align: center;
  }
  nav.primary a:last-child { border-bottom: 0; }
  .menu-btn {
    display: inline-flex;
    position: relative;
    z-index: 130;
  }
  /* Header CTA: keep icon only on mobile */
  .header-cta { padding: 10px 14px; }
  .header-cta span { display: none; }
}

/* ============ IPHONE / SMALL-SCREEN POLISH ============ */
@media (max-width: 720px) {
  /* Util bar: stack & soften */
  .util .wrap { flex-wrap: wrap; gap: 10px; padding-top: 8px; padding-bottom: 8px; }
  .util-left { gap: 16px; font-size: 12px; flex-wrap: wrap; }
  .util-right { gap: 12px; margin-left: auto; }

  /* Header */
  header.site .wrap { padding-top: 12px; padding-bottom: 12px; }
  .brand-mark { width: 38px; height: 38px; font-size: 19px; }
  .brand-text .name { font-size: 18px; }
  .brand-text .sub { font-size: 9.5px; letter-spacing: .18em; }

  /* Hero */
  .hero-inner { min-height: 0; }
  .hero-text { padding: 56px 24px 96px; }
  h1.display { font-size: clamp(40px, 11vw, 60px); }
  .lede { font-size: 16px; }
  .hero-meta { gap: 22px; padding-top: 22px; }
  .hero-meta .stat .n { font-size: 24px; }
  .hero-visual { aspect-ratio: 4/3; min-height: 240px; }

  /* Booking widget — tap targets and full-width on phones */
  .booking { padding: 14px; transform: translateY(-32px); }
  .booking-cta { min-height: 52px; font-size: 14px; padding: 14px 20px; }
  .field select, .field input { font-size: 16px; padding: 6px 0; min-height: 32px; }

  /* Sections — tighter rhythm */
  section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; gap: 18px; }
  h2.section { font-size: clamp(28px, 8vw, 40px); }

  /* Subhero — pulled in tight on phones */
  .subhero { padding: 56px 0 48px; }
  .subhero h1 { font-size: clamp(34px, 9vw, 52px); }
  .subhero p.lede { font-size: 16px; }

  /* Course stats stack */
  .course-stats .n { font-size: 36px; }
  .course-stats .cs { padding: 22px; }
  .scorecard { font-size: 12px; }
  .scorecard th, .scorecard td { padding: 12px 6px; font-size: 12.5px; }

  /* Rate cards: spacing */
  .rate-card { padding: 24px; gap: 18px; }
  .rate-card .price { font-size: 52px; }

  /* Visit info rows — stack key above value */
  .visit-info .row { grid-template-columns: 1fr; gap: 4px; padding-bottom: 18px; }
  .visit-info .v { font-size: 19px; }

  /* CTA card stacks */
  .cta-card { padding: 28px; gap: 18px; }
  .cta-card .actions { width: 100%; }
  .cta-card .actions .btn { flex: 1 1 auto; justify-content: center; }
  .btn { padding: 14px 18px; min-height: 48px; }

  /* Footer columns */
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .foot-bottom { font-size: 11px; }
  .foot-bottom .lang { margin-left: auto; }

  /* Strip stats */
  .strip .item .v { font-size: 19px; }

  /* Amenity card body padding */
  .amen-body { padding: 20px 18px 22px; }
  .amen-body h3 { font-size: 22px; }

  /* Content grid: aside on top, then article */
  .content aside { position: static; }
  .content aside h2 { font-size: clamp(28px, 8vw, 36px); }

  /* Rate tables — allow horizontal scroll, smaller font */
  .rate-table { font-size: 13px; min-width: 640px; }
  .rate-table caption { font-size: 20px; padding: 18px 18px 14px; }
}

@media (max-width: 480px) {
  /* iPhone SE / Mini territory */
  .util-right .lang button { padding: 4px 10px; }
  .booking-label { padding-bottom: 12px; }
  .field { padding: 6px 0; }
  .booking-cta { width: 100%; }

  /* Tap-friendly social icons */
  .socials a { width: 42px; height: 42px; }

  /* Ensure all anchor buttons reach 48px tap height */
  .header-cta { min-height: 44px; padding: 0 14px; }
}

/* Slightly lift form inputs above 16px on iOS to prevent zoom-in */
@media (max-width: 720px) {
  .form input, .form textarea, .form select,
  .field select, .field input,
  #b-date { font-size: 16px !important; }
}

/* ---- New images (batch 2) ---- */
.ph[data-photo="icecream"] { background: url("../images/IceCream.jpg") center/cover no-repeat; }
.ph[data-photo="aerial"]   { background: url("../images/aerial-pic.jpg") center/cover no-repeat; }
.ph[data-photo="camp"]     { background: url("../images/GolfCamp.png") center 30%/cover no-repeat; }
.ph[data-photo="icecream"] .ph-label,
.ph[data-photo="aerial"]   .ph-label,
.ph[data-photo="camp"]     .ph-label { background: rgba(13,40,24,.6); color: rgba(245,241,232,.9); }
.amen-photo[data-photo="icecream"] { background: url("../images/IceCream.jpg") center/cover no-repeat !important; }
.amen-photo[data-photo="aerial"]   { background: url("../images/aerial-pic.jpg") center/cover no-repeat !important; }

/* ---- Notice / alert callout ---- */
.notice {
  background: rgba(201,169,97,.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.notice strong { color: var(--green-900); display: block; margin-bottom: 4px; }

/* ---- Instructor pro cards ---- */
.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0 36px;
}
@media (max-width: 640px) { .pro-grid { grid-template-columns: 1fr; } }
.pro-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.pro-card .pro-photo {
  height: 260px;
  background: var(--cream-2) center/cover no-repeat;
}
.pro-card .pro-body { padding: 20px 22px 24px; }
.pro-card .pro-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green-900);
}
.pro-card .pro-cred {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 4px 0 16px;
}
.pro-card .pro-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pro-card .pro-detail a { color: var(--green-700); }

/* ---- Camp / schedule table ---- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  font-size: 14px;
}
.schedule-table thead th {
  background: var(--green-900);
  color: var(--cream);
  padding: 9px 14px;
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
}
.schedule-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.schedule-table tbody tr:last-child td { border-bottom: 0; }
.schedule-table .full { color: var(--muted); font-style: italic; font-size: 13px; }
@media (max-width: 640px) {
  .schedule-table { font-size: 12.5px; overflow-x: auto; display: block; }
  .schedule-table thead th,
  .schedule-table tbody td { padding: 8px 10px; }
}

/* ---- Chronogolf inline booking widget ---- */
.chrono-embed-slot {
  min-height: 520px;
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0 32px;
  background: var(--cream-2);
}
/* Hide the fallback / demo widget once the real widget has injected content */
#cg-booking-widget:not(:empty) ~ .chrono-fallback { display: none; }
/* Hide the inline slot when club ID isn't set yet (stays empty) */
.chrono-embed-slot:empty { display: none; }

/* ---- Demo booking widget (mirrors Chronogolf look) ---- */
.booking-widget {
  border: 1px solid var(--cream-2);
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0 32px;
  box-shadow: 0 2px 16px rgba(13,40,24,.07);
}
.bw-header {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  padding: 10px 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bw-header strong { color: #fff; }
.bw-fields {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid var(--cream-2);
}
.bw-field { display: flex; flex-direction: column; gap: 5px; }
.bw-field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.bw-field input, .bw-field select {
  border: 1.5px solid var(--cream-2);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 14.5px;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  height: 42px;
  box-sizing: border-box;
}
.bw-field-sm { min-width: 100px; }
.bw-search {
  height: 42px;
  padding: 0 22px;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.bw-search:hover { background: var(--green-600); }
.bw-results { background: #fff; }
.bw-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  padding: 20px;
}
.bw-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 8px;
  border: 1.5px solid var(--cream-2);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.bw-slot:hover { border-color: var(--green-600); background: var(--green-50); }
.bw-slot-selected { border-color: var(--green-700) !important; background: var(--green-50) !important; }
.bw-slot-full { opacity: .4; cursor: not-allowed; }
.bw-time { font-size: 15px; font-weight: 600; color: var(--ink); }
.bw-rate { font-size: 13px; color: var(--green-600); font-weight: 500; }
.bw-avail { font-size: 11.5px; color: var(--muted); }
.bw-confirm-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--green-50);
  border-top: 1px solid var(--cream-2);
  font-size: 14.5px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .bw-fields { grid-template-columns: 1fr 1fr; }
  .bw-search { grid-column: 1 / -1; }
  .bw-slots { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; }
  .bw-confirm-bar { flex-direction: column; align-items: flex-start; }
}

/* ---- Booking widget: proper field affordance on mobile ---- */
@media (max-width: 960px) {
  .booking { gap: 8px; }
  /* Give each field a visible border + background so it reads as a tap target */
  .field {
    border: 1px solid var(--line) !important;
    border-radius: 4px;
    background: var(--cream-2);
    padding: 10px 36px 10px 12px !important;
  }
  /* Re-anchor the dropdown chevron inside the new padding */
  .field-arrow::after { right: 12px !important; }
  /* Native select: full width, transparent over the field background */
  .field select { width: 100%; cursor: pointer; }
  /* Date input on iOS: ensure it shows a tap-friendly height */
  .field input[type="date"] { min-height: 28px; }
}
