/* =========================================
   HAUGESUND GOLFKLUBB - STYLESHEET
   ========================================= */

/* 1. DESIGN TOKENS
   ========================================= */
:root {
  --green-dark:  #1e3a27;
  --green:       #2d5a3d;
  --green-hover: #3a7050;
  --cream:       #f2ebe0;
  --sand:        #e5ddd0;
  --charcoal:    #1c1c1c;
  --muted:       #666;
  --white:       #fff;
  --shadow:      0 2px 14px rgba(0,0,0,.09);
  --nav-h:       70px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:      4px;
  --max-w:       1200px;
  --section-py:  80px;
}

/* 2. RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* 3. BASE
   ========================================= */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

/* 4. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* 5. LAYOUT
   ========================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: var(--section-py) 0; }
.section--dark  { background: var(--green-dark); color: var(--white); }
.section--sand  { background: var(--sand); }
.section--white { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,.7); }

.label-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.label-tag--light { color: rgba(255,255,255,.65); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* 6. BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .2s, color .2s, border-color .2s;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-hover); border-color: var(--green-hover); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }

/* 7. NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  inset-block-start: 0;
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 0 12px;
  gap: 12px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  flex-shrink: 0;
  padding: 10px 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 4px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: var(--charcoal);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(0,0,0,.04);
}
.nav-link svg {
  width: 11px; height: 11px;
  opacity: .6;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-item:hover .nav-link svg,
.nav-item.open   .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 6px 28px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  overflow: hidden;
}
.nav-item:hover .dropdown,
.nav-item.open   .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--charcoal);
  font-size: .86rem;
  transition: background .15s, color .15s;
  border-bottom: 1px solid var(--sand);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--green); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(0,0,0,.35);
  font-size: .78rem;
}
.lang-btn {
  padding: 3px 7px;
  color: rgba(0,0,0,.4);
  font-size: .78rem;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: .04em;
  transition: color .2s;
}
.lang-btn:hover, .lang-btn.active { color: var(--charcoal); }
.nav-cta { padding: 9px 18px; font-size: .83rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 23px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 8. HERO (full-height homepage)
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,18,10,.3) 0%, rgba(5,18,10,.5) 55%, rgba(5,18,10,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 38px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 36px;
  background: rgba(255,255,255,.35);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: .85; } }

/* 9. PAGE HERO (shorter inner pages)
   ========================================= */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 56px;
  margin-top: var(--nav-h);
}
.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg img { width:100%; height:100%; object-fit:cover; }
.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(5,18,10,.15) 0%, rgba(5,18,10,.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 600;
}
.page-hero .hero-eyebrow { color: rgba(255,255,255,.65); }

/* 10. QUICK-ACCESS CARDS (homepage)
   ========================================= */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.quick-card {
  background: var(--green-dark);
  color: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background .2s;
  cursor: pointer;
}
.quick-card:hover { background: var(--green); }
.quick-card:nth-child(2) { background: var(--green); }
.quick-card:nth-child(2):hover { background: var(--green-hover); }
.quick-card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-card-icon img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.quick-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.quick-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* 11. FEATURE SPLIT (image + text)
   ========================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.split.reverse .split-img  { order: 2; }
.split.reverse .split-body { order: 1; }
.split-img { overflow: hidden; }
.split-img img { width:100%; height:100%; object-fit:cover; }
.split-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.split-body.dark { background: var(--green-dark); color: var(--white); }
.split-body h2 { margin-bottom: 18px; }
.split-body p  { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.split-body.dark p { color: rgba(255,255,255,.72); }
.split-body .btn { margin-top: 12px; align-self: flex-start; }

/* 12. CARDS
   ========================================= */
.card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.13); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p  { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.card-body .btn { font-size: .85rem; }

/* 13. PRICING TABLE
   ========================================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--sand);
  font-size: .92rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table .price-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

/* Pricing fee cards (greenfee boxes) */
.fee-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.fee-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
}
.fee-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.fee-card .fee-price {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.fee-card .fee-note { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.fee-card p { font-size: .85rem; color: var(--muted); margin-bottom: 0; }

/* 14. COURSE MAP & HOLES
   ========================================= */
.course-map-box {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.course-map-box img { max-width: 600px; width:100%; margin:0 auto; }

.holes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.hole-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.hole-card img { max-height: 200px; width:auto; max-width:100%; }

/* Tabs */
.tabs {
  display: flex;
  background: var(--sand);
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 40px;
}
.tab-btn {
  flex: 1;
  padding: 11px 20px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
}
.tab-btn.active { background: var(--white); color: var(--charcoal); box-shadow: 0 1px 4px rgba(0,0,0,.09); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 15. STAFF & BOARD
   ========================================= */
.staff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.staff-card { text-align: center; }
.staff-avatar {
  width: 220px; height: 220px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--sand);
  background: var(--sand);
}
.staff-avatar img { width:100%; height:100%; object-fit:cover; object-position: center top; }
.staff-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.staff-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.staff-card p { color: var(--muted); font-size: .88rem; }

.board-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 28px; text-align: center; }
.board-card .staff-avatar { width: 200px; height: 200px; }
.board-card h4 { font-size: .95rem; margin-bottom: 3px; }
.board-role  { font-size: .78rem; color: var(--muted); }

/* 16. COMMITTEE LIST
   ========================================= */
.committee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.committee-card {
  background: var(--white);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.committee-card h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.committee-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* 17. PARTNERS STRIP
   ========================================= */
.partners-strip { padding: 52px 0; }
.partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
}
.partners-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .55;
  transition: filter .2s, opacity .2s;
}
.partners-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* 18. CONTACT & MAP
   ========================================= */
.contact-block { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(45,90,61,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-icon-wrap svg { width:18px; height:18px; }
.contact-item a { color: var(--green); transition: opacity .2s; }
.contact-item a:hover { opacity: .75; }
.map-frame {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow);
}
.map-frame iframe { width:100%; height:100%; border:0; display:block; }

/* 19. GALLERY
   ========================================= */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.gallery img {
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* 20. INFO BOX / ALERT
   ========================================= */
.infobox {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.alert {
  background: rgba(45,90,61,.08);
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 24px;
}
.alert p { margin:0; font-size: .9rem; }

/* 21. GRASROT SECTION
   ========================================= */
.grasrot-section {
  background: var(--sand);
  padding: 56px 0;
  text-align: center;
}
.grasrot-logo { height: 60px; width:auto; margin: 0 auto 20px; }
.grasrot-section h2 { margin-bottom: 16px; }
.grasrot-section p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }

/* 22. FOOTER
   ========================================= */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 70px;
  width: auto;
  opacity: .9;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .86rem; line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .2s, border-color .2s, color .2s;
}
.footer-socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: var(--white); }
.footer-socials svg { width:16px; height:16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .86rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* 23. COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #111f16;
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 28px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-size: .86rem;
  flex: 1;
  margin: 0;
  color: rgba(255,255,255,.8);
}
.cookie-banner p a { color: var(--white); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* 24. 404 PAGE
   ========================================= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.error-page .error-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.error-page p  { color: var(--muted); max-width: 400px; margin-bottom: 32px; }

/* 25. MISC UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-green   { color: var(--green); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.page-body { padding-top: var(--nav-h); }

/* Privacy policy / long-form text */
.prose h2 { margin: 40px 0 12px; font-size: 1.4rem; }
.prose h3 { margin: 28px 0 8px; font-size: 1.1rem; }
.prose p, .prose li { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }

/* =========================================
   26. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: repeat(3,1fr); }
  .fee-cards { grid-template-columns: repeat(2,1fr); }
  .split-body { padding: 56px 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; --nav-h: 60px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 40px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    padding: 14px 0;
    color: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
    font-size: .97rem;
    justify-content: space-between;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
  }
  .lang-toggle { color: rgba(255,255,255,.5); }
  .lang-btn { color: rgba(255,255,255,.55); }
  .lang-btn:hover, .lang-btn.active { color: var(--white); }
  .dropdown {
    position: static;
    background: none;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
    border-radius: 0;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a {
    color: rgba(255,255,255,.65);
    padding: 10px 0 10px 14px;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .dropdown a:hover { background: none; color: var(--white); }
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 8px;
    gap: 12px;
  }
  .nav-cta { width: 100%; text-align: center; }

  /* Layout */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .board-grid { grid-template-columns: repeat(2,1fr); }
  .staff-avatar { width: 100%; max-width: 140px; height: auto; aspect-ratio: 1; }
  .board-card .staff-avatar { width: 100%; max-width: 130px; height: auto; aspect-ratio: 1; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: .82rem; }
  .committee-grid { grid-template-columns: 1fr; }
  .holes-grid { grid-template-columns: repeat(2,1fr); }
  .fee-cards { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }

  /* Split */
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split.reverse .split-img  { order: -1; }
  .split.reverse .split-body { order: 0; }
  .split-img { height: 300px; }
  .split-body { padding: 40px 24px; }

  /* Quick cards */
  .quick-cards { grid-template-columns: 1fr; margin-top: 0; }

  /* Page hero */
  .page-hero { height: 38vh; min-height: 240px; }

  /* Footer */
  .footer { padding: 28px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px 20px; padding-bottom: 20px; }
  .footer-brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
  .footer-brand img { height: 44px; margin-bottom: 0; }
  .footer-brand p { display: none; }
  .footer-brand .footer-socials { margin-bottom: 0; }
  .footer-col h4 { margin-bottom: 8px; }
  .footer-col li { margin-bottom: 5px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 10px 0; }

  /* Cookie */
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }

  /* Tabs */
  .tabs { flex-direction: column; }
}

@media (max-width: 480px) {
  .staff-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .fee-cards  { grid-template-columns: 1fr; }
  .holes-grid { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: 1fr; }
  .hero h1    { font-size: 2.2rem; }
  .hero-btns  { flex-direction: column; align-items: center; }
}
