/* ===========================================================
   Twin Lakes Golf Club — classic public-course redesign
   Deep fairway green / cream / gold · serif display
   =========================================================== */

:root {
  --green:    #1b4332;
  --green-2:  #2d6a4f;
  --green-lt: #40916c;
  --cream:    #f7f4ec;
  --cream-2:  #efe9da;
  --ink:      #1d211e;
  --gold:     #c9a227;
  --gold-dk:  #a8841a;
  --line:     rgba(27, 67, 50, .14);
  --shadow:   0 18px 40px rgba(27, 67, 50, .14);
  --radius:   14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.08; font-weight: 600; }
img { display: block; max-width: 100%; }
a { color: inherit; }
section { padding: 6rem 1.5rem; }
.center { text-align: center; }

.kicker {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700;
  color: var(--gold-dk); margin-bottom: .8rem;
}
.kicker.center { display: block; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.section-sub { color: #5a6460; max-width: 40rem; margin: 1rem auto 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: .95rem; text-decoration: none;
  padding: .85rem 1.7rem; border-radius: 999px; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1a1500; box-shadow: 0 8px 20px rgba(201,162,39,.4); }
.btn-gold:hover { background: var(--gold-dk); }
.btn-outline { border: 1.5px solid currentColor; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--green); color: #d8e8de; font-size: .8rem; letter-spacing: .02em;
  display: flex; justify-content: center; gap: 2rem; align-items: center; padding: .5rem 1.5rem; flex-wrap: wrap;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.8rem; background: rgba(247,244,236,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: .02em;
}
.brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.brand-text em { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dk); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { text-decoration: none; font-size: .9rem; font-weight: 500; }
.nav-links a:not(.nav-cta):hover { color: var(--green-2); }
.nav-cta { background: var(--green); color: #fff !important; padding: .55rem 1.2rem; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--green-2); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
  color: #fff; padding: 5rem 1.5rem 0;
  background: linear-gradient(180deg, rgba(20,40,30,.5), rgba(20,40,30,.78)), url('media/header-real.jpg') center/cover no-repeat;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; font-weight: 700; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); margin: 1rem 0; font-weight: 700; }
.hero h1 .gold { color: var(--gold); }
.hero .lede { max-width: 36rem; font-size: 1.15rem; color: #eaf1ec; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

.hero-stats {
  max-width: 1100px; margin: 3.5rem auto 0; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.25); padding: 1.5rem 0 2.5rem;
}
.hero-stats div { text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.hero-stats span { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: #d8e8de; }

/* ---------- the course ---------- */
.course { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1150px; margin: 0 auto; }
.course-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.course h2 { margin: .2rem 0 1.2rem; }
.course-text p { color: #4a544f; margin-bottom: 1rem; }
.course-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.6rem; }
.course-points li { font-weight: 600; font-size: .92rem; padding: .75rem 1rem; background: var(--cream-2); border-radius: 10px; }

/* ---------- rates ---------- */
.rates { background: var(--green); color: #fff; }
.rates .kicker { color: var(--gold); }
.rates .section-sub { color: #cfe0d6; }
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 920px; margin: 3rem auto 0; }
.rate-card {
  position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 2.2rem 1.5rem; text-align: center;
}
.rate-card.featured { background: var(--cream); color: var(--ink); border-color: var(--gold); transform: translateY(-10px); box-shadow: var(--shadow); }
.ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1500; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .25rem .9rem; border-radius: 999px; }
.rate-card h3 { font-size: 1.7rem; margin-bottom: .6rem; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; }
.price span { font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 500; opacity: .7; }
.price-sub { margin-top: .5rem; opacity: .8; font-size: .95rem; }
.rates-note { text-align: center; margin-top: 2.2rem; font-size: .92rem; opacity: .9; }
.rates-note a { color: var(--gold); font-weight: 600; }

/* ---------- scorecard ---------- */
.scorecard { background: var(--cream-2); }
.card-table { max-width: 760px; margin: 2.5rem auto 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--green); color: #fff; }
th, td { padding: 1rem 1.2rem; text-align: center; font-size: .98rem; }
th { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; font-weight: 700; }
tbody tr { border-bottom: 1px solid var(--line); }
tbody tr:last-child { border-bottom: 0; }
td:first-child { font-weight: 700; }
.tee { display: inline-block; padding: .2rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.tee.blue { background: #dbe7f5; color: #1c4e8a; }
.tee.white { background: #eceae4; color: #555; }
.tee.red { background: #f6dada; color: #a83232; }
.scorecard .rates-note { color: #5a6460; }
.scorecard .rates-note a, .scorecard .rates-note { color: #5a6460; }

/* ---------- outings & stay ---------- */
.outings { max-width: 1000px; margin: 0 auto; }
.outings-banner { text-align: center; }
.outings-banner h2 { margin: .2rem 0; }
.outings-banner a { color: var(--green-2); font-weight: 700; text-decoration: none; }
.outings-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.8rem; }
.stay-card { background: var(--green); color: #fff; border-radius: var(--radius); padding: 1.8rem 1.8rem; box-shadow: var(--shadow); }
.stay-card.light { background: var(--cream-2); color: var(--ink); }
.stay-card.light p { color: #4a544f; }
.stay-card.light .stay-tag { color: var(--gold-dk); }
.stay-img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 1.1rem; }
.stay-tag { display: inline-block; color: var(--gold); font-weight: 700; font-size: .95rem; margin-bottom: .6rem; }
.stay-card p { color: #e3eee8; }
.stay-card a { color: var(--gold); font-weight: 600; }

/* owner line */
.owner-line { font-style: italic; color: #5a6460 !important; }

/* ---------- local rules ---------- */
.rules { background: var(--cream-2); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; max-width: 1050px; margin: 3rem auto 0; }
.rule-card { background: #fff; border-radius: var(--radius); padding: 1.5rem 1.6rem; border-top: 3px solid var(--gold); box-shadow: 0 8px 22px rgba(27,67,50,.08); }
.rule-card h3 { font-size: 1.5rem; color: var(--green); margin-bottom: .4rem; }
.rule-card p { color: #4a544f; font-size: .94rem; }
.etiquette { max-width: 800px; margin: 2.5rem auto 0; background: var(--green); color: #fff; border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow); }
.etiquette h3 { font-size: 1.7rem; color: var(--gold); margin-bottom: 1rem; }
.etiquette ul { list-style: none; display: grid; gap: .8rem; }
.etiquette li { padding-left: 1.5rem; position: relative; color: #e3eee8; font-size: .98rem; }
.etiquette li::before { content: "⛳"; position: absolute; left: 0; }
.etiquette strong { color: #fff; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1150px; margin: 2.8rem auto 0; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- reviews ---------- */
.reviews { background: var(--green-2); color: #fff; }
.reviews .kicker { color: var(--gold); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1050px; margin: 2.8rem auto 0; }
.review-grid blockquote { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 1.8rem; }
.review-grid p { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; line-height: 1.35; margin-bottom: 1rem; }
.review-grid cite { font-style: normal; font-size: .85rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; }
.reviews .rates-note { opacity: .8; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1150px; margin: 0 auto; align-items: stretch; }
.contact-card { background: var(--cream-2); border-radius: var(--radius); padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow); }
.contact-card h2 { margin: .2rem 0 1.2rem; }
.addr { color: #4a544f; margin-bottom: 1rem; font-size: 1.05rem; }
.addr a { color: var(--green-2); font-weight: 700; text-decoration: none; }
.contact-card .btn-outline { color: var(--green); }
.contact-card .btn-outline:hover { background: rgba(27,67,50,.08); }
.map { width: 100%; min-height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- footer ---------- */
.footer { background: var(--green); color: #cfe0d6; text-align: center; padding: 3.5rem 1.5rem; }
.footer .brand { justify-content: center; margin-bottom: 1.2rem; color: #fff; }
.footer .brand-text { color: #fff; }
.footer p { font-size: .9rem; }
.fineprint { opacity: .6; font-size: .8rem; margin-top: .6rem; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 880px) {
  .course, .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .course-photo { order: -1; }
  .rate-grid, .review-grid, .gallery-grid, .outings-cards { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .rate-card.featured { transform: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .hero-stats div:nth-child(2) { border-right: 0; }
}
@media (max-width: 520px) {
  section { padding: 4rem 1.2rem; }
  .topbar { gap: .4rem; flex-direction: column; }
  .hero { min-height: 80vh; }
  .rules-grid { grid-template-columns: 1fr; }
}
