
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #faf6ee;
  --ink: #1c211c;
  --muted: #5b6459;
  --line: #e3e0d5;
  --sand-200: #f2ead9;
  --sand-300: #e6d9bf;
  --accent: #1b381c;
  --forest-900: #16301a;
  --forest-800: #1b381c;
  --forest-700: #24492a;
  --forest-600: #34633b;
  --white: #ffffff;
  --status-open: #2f9e44;
  --status-closed: #d64545;
  --shadow: 0 8px 30px rgba(22, 48, 26, 0.08);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1180px;
  --radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #14170f; --surface: #1a1e14; --surface-alt: #1f2418; --ink: #eef1e6;
    --muted: #aab29c; --line: #2b3122; --sand-200: #262b1c; --sand-300: #333a24;
    --accent: #7ecb82; --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    --status-open: #4cc463; --status-closed: #e2685f;
  }
}
:root[data-theme="dark"] {
  --bg: #14170f; --surface: #1a1e14; --surface-alt: #1f2418; --ink: #eef1e6;
  --muted: #aab29c; --line: #2b3122; --sand-200: #262b1c; --sand-300: #333a24;
  --accent: #7ecb82; --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  --status-open: #4cc463; --status-closed: #e2685f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.5em; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--muted); max-width: 62ch; }

.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; color: var(--accent); margin-bottom: 0.9em; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; font-family: inherit; }
.btn-primary { background: var(--forest-800); color: #ffffff; }
.btn-primary:hover { background: var(--forest-900); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.55); color: #ffffff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--max-width); margin: 0 auto; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.brand-text strong { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-text span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-links button.nav-link { display: inline-block; padding: 8px 12px; text-decoration: none; font-size: 0.92rem; font-weight: 500; color: var(--ink); border-radius: var(--radius); transition: background 0.15s ease, color 0.15s ease; background: none; border: none; cursor: pointer; font-family: inherit; white-space: nowrap; }
.nav-links button.nav-link:hover { background: var(--sand-200); }
.nav-links button.nav-link.active { color: var(--accent); font-weight: 700; background: var(--sand-200); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-lang-mobile { display: none; }
.lang-switch { display: flex; gap: 2px; background: var(--surface-alt); border: 1px solid var(--line); border-radius: 999px; padding: 3px; width: fit-content; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 1.05rem; line-height: 1; padding: 5px 7px; border-radius: 999px; opacity: 0.5; transition: opacity 0.15s ease, background 0.15s ease; }
.lang-btn:hover { opacity: 0.8; }
.lang-btn.active { opacity: 1; background: var(--surface); box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.theme-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; background: var(--surface-alt); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 1rem; line-height: 1; padding: 0; transition: background 0.15s ease, border-color 0.15s ease; }
.theme-toggle:hover { background: var(--sand-200); }

.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; background: var(--surface-alt); border: 1px solid var(--line); border-radius: 999px; color: var(--ink); transition: background 0.15s ease, color 0.15s ease; }
.social-icon:hover { background: #1877f2; color: #ffffff; border-color: #1877f2; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; color: #ffffff; background: linear-gradient(160deg, var(--forest-900), var(--forest-700) 65%); overflow: hidden; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 96px 24px 90px; position: relative; z-index: 2; }
.hero.hero-compact .hero-inner { padding: 64px 24px; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-terrain { position: absolute; inset: 0; opacity: 0.14; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.5) 0, transparent 45%), radial-gradient(circle at 85% 70%, rgba(255,255,255,0.35) 0, transparent 40%); pointer-events: none; }
.hero-photo { background-image: linear-gradient(180deg, rgba(19,36,20,0.55) 0%, rgba(19,36,20,0.6) 55%, rgba(16,30,18,0.94) 100%), var(--hero-photo-src); background-size: cover; background-position: center 62%; }
.hero-photo .hero-terrain { display: none; }

.quote-badge { display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 8px 16px; font-size: 0.86rem; color: #fff; margin-bottom: 22px; }
.quote-badge .q-source { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

.status-bar { background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.status-bar .container { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; padding: 14px 24px; font-size: 0.86rem; color: var(--muted); }
.status-bar strong { color: var(--ink); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-right: 6px; }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; background: var(--status-closed); flex-shrink: 0; }
.status-dot--open { background: var(--status-open); }
.status-dot--closed { background: var(--status-closed); }

.book-dropdown { position: relative; }
.book-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.14); min-width: 240px; z-index: 70; overflow: hidden; flex-direction: column; }
.book-menu.open { display: flex; }
.book-menu-item { display: block; width: 100%; text-align: left; padding: 12px 16px; background: none; border: none; border-bottom: 1px solid var(--line); color: var(--ink); font-family: inherit; font-size: 0.88rem; font-weight: 500; cursor: pointer; text-decoration: none; }
.book-menu-item:last-child { border-bottom: none; }
.book-menu-item:hover { background: var(--sand-200); }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; background: var(--surface); }
.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: '+'; display: inline-block; width: 18px; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::before { content: '\2212'; }
.faq-item p { margin: 12px 0 0; color: var(--muted); }

section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-alt { background: var(--surface-alt); }
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.card h3 { margin-bottom: 0.4em; }
.card .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); background: var(--sand-200); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }

.pricing-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; }
.pricing-card .price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 6px; }
.pricing-card .price .amount { font-size: 2.2rem; font-weight: 700; color: var(--ink); }
.pricing-card .price .period { color: var(--muted); font-size: 0.9rem; }
.pricing-card p { flex: 1; }
.pricing-card .btn { align-self: flex-start; margin-top: 8px; }

.photo-block { background: var(--sand-200); border: 1px dashed var(--sand-300); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.88rem; text-align: center; padding: 24px; min-height: 220px; }
.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 220px; }
.photo-frame img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 260px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 260px; display: block; border: 0; }
.map-link { display: inline-block; margin-top: 12px; font-size: 0.86rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.map-link:hover { text-decoration: underline; }

.carousel { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: var(--forest-900); max-width: 520px; margin: 0 auto; aspect-ratio: 4 / 5; }
.carousel-track { display: flex; height: 100%; transition: transform 0.5s ease; }
.carousel-slide { flex: 0 0 100%; height: 100%; position: relative; }
.carousel-slide img, .carousel-slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 20px 16px; background: linear-gradient(0deg, rgba(15,26,16,0.72), transparent); color: #fff; font-size: 0.88rem; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); border: none; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--forest-900); display: flex; align-items: center; justify-content: center; transition: background 0.15s ease; }
.carousel-arrow:hover { background: #ffffff; }
.carousel-arrow--prev { left: 14px; }
.carousel-arrow--next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; position: absolute; bottom: 14px; left: 0; right: 0; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer; }
.carousel-dots button.active { background: #ffffff; }
.gallery-submit { text-align: center; margin-top: 28px; }
.gallery-submit p { max-width: 480px; margin: 0 auto 16px; }

@media (max-width: 760px) {
  .carousel-arrow { width: 34px; height: 34px; font-size: 1.1rem; }
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.stat { border-top: 3px solid var(--accent); padding-top: 14px; }
.stat .num { font-size: 2rem; font-weight: 700; color: var(--ink); display: block; }
.stat .label { font-size: 0.85rem; color: var(--muted); }

.placeholder-note { border-left: 3px solid var(--accent); background: var(--surface-alt); padding: 14px 18px; font-size: 0.88rem; color: var(--muted); border-radius: 0 var(--radius) var(--radius) 0; margin: 18px 0 34px; }
.placeholder-note strong { color: var(--accent); }

.news-item { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.news-item:first-child { padding-top: 0; }
.news-item time { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

.info-table { width: 100%; border-collapse: collapse; margin: 20px 0 8px; }
.info-table th, .info-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.info-table th { color: var(--muted); font-weight: 600; width: 40%; }

.site-footer { background: var(--forest-900); color: rgba(255,255,255,0.78); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #ffffff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.footer-grid a:hover { color: #ffffff; }
.footer-grid button.footer-link { background: none; border: none; padding: 0; cursor: pointer; text-decoration: none; color: rgba(255,255,255,0.78); font-size: 0.92rem; font-family: inherit; text-align: left; }
.footer-grid button.footer-link:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.page { display: none; }
.page.active { display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

/* Nav links + "Book tee time" collapse into the hamburger menu earlier than
   the general mobile breakpoint below (760px), because the six page links
   plus the language switcher, theme toggle and "Book tee time" button need
   more horizontal room than that to avoid wrapping onto a second line. This
   keeps the header a single clean line all the way down to tablet widths,
   and hands off to the hamburger menu before anything can wrap. */
@media (max-width: 1120px) {
  .nav-links, .btn-outline-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-actions > .lang-switch { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    flex-direction: column; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); gap: 2px; z-index: 60;
  }
  .nav-lang-mobile { display: block; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-item { grid-template-columns: 1fr; gap: 10px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .hero-inner { padding: 64px 24px 56px; }
  .status-bar .container { gap: 10px 20px; }
  .status-edit-link { margin-left: 0; }
  .status-edit-row label { width: auto; }
}
