
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/lora-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/lora-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

:root {
  --ink: #f4efe4;       
  --ink-dim: rgba(244, 239, 228, 0.72);
  --ink-faint: rgba(244, 239, 228, 0.45);
  --rule: rgba(244, 239, 228, 0.28);
  --accent: #c9a961;    
  --accent-deep: #74591f; 
  --paper: #ebe4d4;     
  --paper-2: #e3dac6;
  --ink-dark: #1d2a22;  
  --ink-dark-2: #1a2620; 
  --ink-dark-3: #131c16; 
  --ink-dark-4: #0b0f0c; 
  --ink-dark-dim: #4b574d;
  --rule-dark: rgba(29, 42, 34, 0.18);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--ink-dark);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  transition: transform 200ms ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.noscript-bar {
  background: var(--ink-dark);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  padding: 18px 24px;
  text-align: center;
  line-height: 1.6;
}
.noscript-bar a { color: var(--accent); }
.noscript-brand { margin: 0 0 12px; font-size: 14px; }
.noscript-bar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.noscript-note {
  max-width: 60ch;
  margin: 14px auto 0;
  font-size: 12.5px;
  color: var(--ink-dim);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink-dark);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

}

.story, .amenities, .rates, .location, .footer, .feature-section { scroll-margin-top: 80px; }

.hero {
  position: relative;
  width: 100%;

  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--ink-dark-4);
  color: var(--ink);
}

.track {
  position: absolute;
  inset: 0;

  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active { opacity: 1; z-index: 1; }

.slide.entering { opacity: 1; z-index: 2; transition: opacity 1800ms ease; }

.slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide video.loop-layer { opacity: 0; transition: opacity 1800ms ease; }
.slide video.loop-layer.vid-on { opacity: 1; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.15) 18%,
      rgba(0,0,0,0.00) 38%,
      rgba(0,0,0,0.00) 62%,
      rgba(0,0,0,0.25) 85%,
      rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.page-banner {
  position: relative;
  height: 56vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--ink-dark-4);
  color: var(--ink);
}

.page-banner .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.15) 25%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-banner .eyebrow { color: var(--accent); margin-bottom: 14px; }

.page-banner h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  max-width: 18ch;
}

.page-banner h1 em { font-style: normal; font-weight: 500; }

.page-banner--legal { height: 42vh; min-height: 360px; }
.legal-page {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 80px 24px 110px;
}
.legal-page-inner { max-width: 760px; margin: 0 auto; }
.legal-page-inner h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink-dark);
  margin: 56px 0 18px;
  scroll-margin-top: 100px;
}
.legal-page-inner h2:first-child { margin-top: 0; }
.legal-page-inner p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
  color: rgba(29, 42, 34, 0.86);
}
.legal-page-inner p:last-child { margin-bottom: 0; }
.legal-page-inner a { color: var(--accent-deep); text-underline-offset: 2px; }

.legal-page-inner .legal-updated {
  font-size: 14px;
  color: rgba(29, 42, 34, 0.55);
  margin: -6px 0 26px;
}

.legal-page-inner ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-page-inner li {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 10px;
  color: rgba(29, 42, 34, 0.86);
}
.legal-page-inner li:last-child { margin-bottom: 0; }

.oob-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-image:
    url("/assets/big/oob-hole.jpg"),
    url("/assets/uploads/hole-14-20260708-141519-5ba90c.jpg");
  background-size: cover, cover;
  background-position: center bottom, center bottom;
  background-repeat: no-repeat;
  background-color: var(--ink-dark-3);

  padding: clamp(130px, 18vh, 195px) 24px 0;
}

.oob-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 12, 0.62), rgba(11, 15, 12, 0.3) 34%, transparent 58%);
  pointer-events: none;
}
.oob-content { position: relative; z-index: 2; max-width: 680px; }
.oob-content h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-shadow: 0 2px 18px rgba(11, 15, 12, 0.5);
}
.oob-lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.92);

  max-width: 440px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(11, 15, 12, 0.55);
}
.oob-content > * { animation: oob-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.oob-content h1        { animation-delay: 1.7s; }
.oob-content .oob-lede { animation-delay: 2.05s; }
@keyframes oob-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.oob-sphere {
  border-radius: 50%;
  background-image:
    radial-gradient(rgba(29, 42, 34, 0.09) 1.5px, transparent 2.1px),
    radial-gradient(rgba(29, 42, 34, 0.07) 1.5px, transparent 2.1px),
    radial-gradient(circle at 32% 28%, #fffdf6, #f4efe4 52%, #dcd3bf 88%, #cfc5ae);
  background-size: 16px 16px, 16px 16px, 100% 100%;
  background-position: 0 0, 8px 8px, 0 0;
  box-shadow: inset -6px -8px 16px rgba(29, 42, 34, 0.18);
}

.oob-povshot {
  position: absolute;

  left: 45%;
  top: 88%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;   
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: oob-povshot 1.25s cubic-bezier(0.3, 0.5, 0.8, 1) 0.2s both;
}
@keyframes oob-povshot {
  0%   { opacity: 1; transform: translate(5vw, 16vh) scale(1.6); }
  45%  { opacity: 1; transform: translate(2.5vw, -30vh) scale(0.55); }
  96%  { opacity: 1; }
  100% { opacity: 0; transform: translate(0, 0) scale(0.18); }
}

.oob-splashfx {
  position: absolute;
  left: 45%;
  top: 88%;
  width: clamp(110px, 13vw, 190px);
  transform: translate(-50%, -62%);
  color: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  z-index: 1;
}
.oob-splash { opacity: 0; transform-box: fill-box; transform-origin: center bottom; animation: oob-splash 0.45s ease-out 1.45s both; }
@keyframes oob-splash {
  0%   { opacity: 0; transform: translateY(10px) scale(0.4); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-6px) scale(1); }
}

.oob-ripple { opacity: 0; transform-box: fill-box; transform-origin: center; }
.oob-ripple-1 { animation: oob-ripple 1.2s ease-out 1.5s; }
.oob-ripple-2 { animation: oob-ripple 1.5s ease-out 1.68s; }
@keyframes oob-ripple {
  0%   { opacity: 0.85; transform: scale(0.15); }
  100% { opacity: 0;   transform: scale(1); }
}

.oob-ball-fall {
  position: absolute;
  left: 50%;
  bottom: 7vh;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  animation: oob-ball-fall 0.6s cubic-bezier(0.5, 0, 1, 1) 2.6s both;
}
@keyframes oob-ball-fall {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-80vh); }
  10%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.oob-ball-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 10px rgba(11, 15, 12, 0.6);
  white-space: nowrap;
  animation: oob-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 3.05s backwards;
}
.oob-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(104px, 11vw, 148px);
  height: clamp(104px, 11vw, 148px);
  color: var(--ink-dark);
  text-decoration: none;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
  box-shadow: inset -6px -8px 16px rgba(29, 42, 34, 0.18), 0 16px 28px rgba(11, 15, 12, 0.45);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
  position: relative;
  transform-origin: 50% 100%;
  animation: oob-land 0.32s ease-out 3.2s;
}
@keyframes oob-land {
  0%   { transform: scale(1); }
  45%  { transform: scaleX(1.06) scaleY(0.92); }
  100% { transform: scale(1); }
}

.oob-ball::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 84px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(11, 15, 12, 0.55), transparent 70%);
  transition: transform 240ms ease, opacity 240ms ease;
  animation: oob-shadow-in 0.35s ease-out 3.05s backwards;
}
@keyframes oob-shadow-in {
  from { opacity: 0; transform: translateX(-50%) scaleX(0.4); }
  to   { opacity: 1; transform: translateX(-50%) scaleX(1); }
}
.oob-ball:hover,
.oob-ball:focus-visible {
  transform: translateY(-6px);
  box-shadow: inset -6px -8px 16px rgba(29, 42, 34, 0.18), 0 22px 34px rgba(11, 15, 12, 0.5),
    0 0 0 2px var(--accent);
}
.oob-ball:hover::after { transform: translateX(-50%) scaleX(1.12); opacity: 0.7; }
.oob-ball:focus-visible { outline: none; }
@media (prefers-reduced-motion: reduce) {
  .oob-povshot, .oob-splash, .oob-ripple, .oob-ball-fall,
  .oob-ball, .oob-ball::after, .oob-ball-label,
  .oob-content > * { animation: none; }
}

@media (max-height: 720px) {
  .oob-content h1 { font-size: clamp(34px, 6vh, 52px); margin-bottom: 12px; }
  .oob-lede { font-size: 14px; }
  .oob-ball { width: clamp(84px, 13vh, 108px); height: clamp(84px, 13vh, 108px); font-size: 9px; letter-spacing: 0.12em; }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 56px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: transparent;
  transition: background 320ms ease, padding 320ms ease, border-color 320ms ease;
  border-bottom: 1px solid transparent;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: opacity 320ms ease;
}
.topbar.scrolled::before { opacity: 0; }

body.menu-open .topbar::before { opacity: 0; }

.topbar .navbar { position: relative; z-index: 1; }

.topbar.scrolled {
  padding: 4px 56px;
  background: rgba(235, 228, 212, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--rule-dark);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-group:first-of-type { justify-self: end; }
.nav-group:last-of-type { justify-self: start; }

.nav-group > a,
.nav-group .nav-trigger {
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 220ms ease;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar.scrolled .nav-group > a,
.topbar.scrolled .nav-group .nav-trigger { color: var(--ink-dark); }

.nav-group > a::after,
.nav-group .nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.nav-group > a:hover,
.nav-group .nav-trigger:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger { color: var(--accent); }

.nav-group > a:hover::after,
.nav-group .nav-trigger:hover::after,
.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after { transform: scaleX(1); }

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item .caret {
  width: 9px;
  height: 9px;
  opacity: 0.75;
  transition: transform 280ms ease;
}

.nav-item:hover .caret,
.nav-item:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  min-width: 220px;
  padding-top: 14px; 
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
  z-index: 60;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  background: rgba(11, 15, 12, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  padding: 8px 0;
}

.topbar.scrolled .dropdown-inner {
  background: rgba(235, 228, 212, 0.96);
  border-color: var(--rule-dark);
}

.dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease, background 200ms ease;
}

.dropdown a::after { display: none; }

.topbar.scrolled .dropdown a { color: var(--ink-dark); }

.dropdown a:hover {
  color: var(--accent);
  background: rgba(201, 169, 97, 0.08);
}

.dropdown a .season-status,
.mobile-menu .sub a .season-status {
  display: block;
  margin-top: 4px;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-faint);
}

.topbar.scrolled .dropdown a .season-status {
  color: rgba(29, 42, 34, 0.42);
}

.menu-btn {
  display: none;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  z-index: 60;
}
.topbar.scrolled .menu-btn { color: var(--ink-dark); }

.weather-widget {
  position: absolute;
  right: 24px;
  top: 50%;

  transform: translateY(calc(-50% - 3px));
  z-index: 60;
  font-family: "Inter", sans-serif;
  transition: opacity 240ms ease;
}

.livecam-link {
  position: absolute;
  left: auto;
  right: 96px;
  top: 50%;
  transform: translateY(calc(-50% - 3px));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;   
  border: 0;
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
  padding: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 200ms ease, opacity 200ms ease;
}
.livecam-label { display: none; }

.menu-btn.open ~ .livecam-link { opacity: 0; pointer-events: none; }
.topbar.scrolled .livecam-link { color: var(--ink-dark); }
.livecam-link:hover { color: var(--accent); }
.livecam-icon { width: 24px; height: 24px; }

.livecam-dot { transform-origin: 6px 9.5px; animation: livecam-pulse 1.6s ease-in-out infinite; }
@keyframes livecam-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.livecam-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(11, 15, 12, 0.985);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.livecam-modal.open { opacity: 1; pointer-events: auto; }
.livecam-modal-inner { width: 100%; max-width: 960px; }
.livecam-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.livecam-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.livecam-credit {
  margin: 12px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(244, 239, 228, 0.55);
  text-align: left;
}
.livecam-credit a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}
.livecam-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--paper);
  color: var(--ink-dark);
  border: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
  z-index: 2;
}
.livecam-modal-close:hover { background: var(--accent); }
.livecam-modal-close svg { width: 20px; height: 20px; }

@media (max-width: 360px) {
  .livecam-link { right: 80px; }
}

.weather-cam-link {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--ink-dark);
  color: var(--paper);
  border: 0;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.weather-cam-link:hover { background: var(--accent); color: var(--ink-dark); }
.weather-cam-link[hidden] { display: none; }
.weather-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 6px 4px;
  cursor: pointer;
  color: var(--ink);
  transition: color 200ms ease;
}
.topbar.scrolled .weather-trigger { color: var(--ink-dark); }
.weather-trigger .weather-icon { width: 24px; height: 24px; }
.weather-temp {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.weather-panel {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 12px; 
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 240ms ease;
}
.weather-panel-inner {
  background: rgba(11, 15, 12, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  padding: 16px 18px;
}

.weather-widget.open .weather-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.weather-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.weather-panel-head .weather-icon { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }

.weather-panel-temp {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}
.weather-panel-condition {
  color: var(--ink-dim);
  font-size: 13px;
  margin-top: 4px;
}
.weather-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  padding: 6px 0;
}
.weather-row .k { color: var(--ink-dim); }
.weather-row .v { color: var(--ink); font-weight: 500; }

.weather-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  text-align: center;
}
.weather-note span { display: block; }

.weather-inline { display: none; }

@media (min-width: 1600px) {
  .weather-widget { display: flex; align-items: center; gap: 18px; }
  .weather-trigger { cursor: default; }
  .weather-panel { display: none; }
  .weather-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 18px;
    border-left: 1px solid var(--rule);
    color: var(--ink);
  }
  .topbar.scrolled .weather-inline { color: var(--ink-dark); border-left-color: var(--rule-dark); }
  .weather-inline-item { display: flex; flex-direction: column; line-height: 1.25; }
  .weather-inline-item .wk {
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .weather-inline-item .wv { font-size: 13px; font-weight: 600; }
}

.menu-btn .bars {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: background 200ms ease;
}
.menu-btn .bars::before,
.menu-btn .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 280ms ease, top 280ms ease;
}
.menu-btn .bars::before { top: -8px; }
.menu-btn .bars::after  { top:  8px; }

.menu-btn.open .bars { background: transparent; }
.menu-btn.open .bars::before { top: 0; transform: rotate(45deg); }
.menu-btn.open .bars::after  { top: 0; transform: rotate(-45deg); }

.menu-btn.open,
.topbar.scrolled .menu-btn.open { color: var(--ink); }
.menu-btn.open .bars::before,
.menu-btn.open .bars::after { height: 3px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(11, 15, 12, 0.985);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  padding: 76px 24px 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
  display: inline-block;
  padding: 6px 10px;
}
.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .group-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 26px;
  margin-bottom: 6px;
}

.mobile-menu .group-label:first-child { margin-top: 0; }

.mobile-menu .sub a {
  font-size: 15px;
  color: var(--ink-dim);
}

.logo {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.45));
  transition: height 320ms ease, filter 320ms ease, opacity 240ms ease;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}

.topbar.scrolled .logo {
  height: 48px;
}

.logo-dark { display: none; filter: none; }
.topbar.scrolled .logo-light { display: none; }
.topbar.scrolled .logo-dark { display: block; }

@media (min-width: 1600px) {
  .topbar { padding: 22px 80px; }
  .topbar.scrolled { padding: 8px 80px; }
  .topbar.scrolled .logo { height: 64px; }
  .logo { height: 112px; }
  .nav-group > a,
  .nav-group .nav-trigger { font-size: 12px; letter-spacing: 0.26em; }
}

@media (min-width: 2000px) {
  .topbar { padding: 26px 96px; }
  .topbar.scrolled { padding: 10px 96px; }
  .topbar.scrolled .logo { height: 76px; }
  .logo { height: 132px; }
  .nav-group > a,
  .nav-group .nav-trigger { font-size: 13px; letter-spacing: 0.28em; }
  .navbar { gap: 56px; }
  .nav-group { gap: 44px; }
}

.hero-pause {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 15, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(235, 228, 212, 0.4);
  color: var(--ink);
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, transform 160ms ease;
}
.hero-pause.visible { display: inline-flex; }
.hero-pause:hover { background: rgba(11, 15, 12, 0.85); transform: scale(1.05); }
.hero-pause svg { width: 18px; height: 18px; pointer-events: none; }
.hero-pause .icon-play { display: none; }
.hero-pause.paused .icon-pause { display: none; }
.hero-pause.paused .icon-play { display: inline; }
@media (max-width: 600px) {
  .hero-pause { left: 16px; bottom: 16px; width: 42px; height: 42px; }
  .hero-pause svg { width: 16px; height: 16px; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 220ms ease, transform 220ms ease;
}

.scroll-cue:hover { opacity: 1; transform: translateX(-50%) translateY(2px); }

.scroll-cue .label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.scroll-cue .line { display: none; }

@keyframes scrollDot {
  0%   { top: -18px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 56px; opacity: 0; }
}

.story {
  position: relative;
  background: var(--paper);
  color: var(--ink-dark);
  padding: 130px 56px 150px;
}

.story-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
}

.story-aside {
  position: static;
  top: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.story .eyebrow,
.gift-cards .eyebrow,
.newsletter .eyebrow,
.feature-section:not(.dark) .eyebrow,
.holes-head .eyebrow,
.gallery-head .eyebrow { color: var(--accent-deep); }

.story-aside .kicker {
  font-family: "Lora", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dark-dim);
  margin: 0;
  max-width: 22ch;
}

.story h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: var(--ink-dark);
  max-width: 16ch;
}

.story h2 em { font-style: normal; font-weight: 500; }

.story-body p {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink-dark);
  margin: 0 0 22px;
  max-width: 58ch;
  text-wrap: pretty;
}

.story-body p:last-child { margin-bottom: 0; }

.amenities {
  position: relative;
  background: var(--ink-dark-3);
  color: var(--ink);
  padding: 80px 56px 110px;
}

.amenities-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.amenities h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.amenities h2 em { font-style: normal; font-weight: 500; }

.amenities-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.amenity {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}

.amenity .photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.amenity .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-cms-bg] {
  overflow: hidden;
  background-color: var(--ink-dark-3);
}
[data-cms-bg]:not(.tt-author-photo) {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%234b574d' stroke-width='1.3'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.7'/%3E%3Cpath d='M21 15l-5-5L6 21'/%3E%3C/svg%3E"),
    linear-gradient(140deg, var(--ink-dark-2), var(--ink-dark-3) 65%, #10160f);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px, cover;
}
.hole-photo, .tt-author-photo { position: relative; }
[data-cms-bg]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cms-image);
  background-size: cover;
  background-position: var(--cms-origin, center);
  background-repeat: no-repeat;
  transform: scale(var(--cms-zoom, 1));
  transform-origin: var(--cms-origin, 50% 50%);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.amenity:hover .photo::before { transform: scale(calc(var(--cms-zoom, 1) * 1.04)); }

.hole-photo::before { z-index: 1; }
.hole-photo::after,
.gallery-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.14) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: cms-shimmer 1.5s ease-in-out infinite;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.hole-photo.cms-loaded::after,
.gallery-mosaic-item.cms-loaded::after { animation: none; opacity: 0; }

.gallery-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.14) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: cms-shimmer 1.5s ease-in-out infinite;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.gallery-room.cms-loaded::before { animation: none; opacity: 0; }

@keyframes cms-shimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) {
  .hole-photo::after, .gallery-mosaic-item::after, .gallery-room::before { animation: none; }
}

.amenity .num-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #0e1411;
  color: var(--ink-dim);
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px 6px 14px;
}

.amenity .body {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
  margin-top: 0;
}

.amenity .label {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--ink);
}

.amenity .desc {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0;
}

.turf-talks-section {
  background: var(--paper);
  color: var(--ink-dark);
  scroll-margin-top: 80px;
}
.tt-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 56px 60px;
}
.tt-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tt-head .eyebrow { margin-bottom: 0; }
.tt-updated {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
}
.turf-talks-section .tt-posts { max-width: none; }
.turf-talks-section .tt-post p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 72ch;
}

.turf-talks-section .tt-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dark);
}
.turf-talks-section .tt-body > *:first-child { margin-top: 0; }
.turf-talks-section .tt-body > *:last-child { margin-bottom: 0; }
.turf-talks-section .tt-body h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 40px 0 14px;
  color: var(--ink-dark);
}
.turf-talks-section .tt-body h3 b,
.turf-talks-section .tt-body h3 strong { font-weight: 600; }   
.turf-talks-section .tt-body b,
.turf-talks-section .tt-body strong { font-weight: 700; }
.turf-talks-section .tt-body i,
.turf-talks-section .tt-body em { font-style: italic; }
.turf-talks-section .tt-body u { text-decoration: underline; text-underline-offset: 3px; }

.turf-talks-section .tt-post-title {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.turf-talks-section .tt-post-lede {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--ink-dark-dim);
  margin: 0 0 14px;
  max-width: 60ch;
}
.turf-talks-section .tt-post-date {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
  margin: 0 0 28px;
}
.turf-talks-section .tt-post-caption {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dark-dim);
  margin: -24px 0 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-dark);
}

.turf-talks-section .tt-post-caption + .tt-body { margin-top: 32px; }

.turf-talks-section .tt-post .tt-slideshow {
  margin-bottom: 12px;
  max-width: 72ch;
}

.turf-talks-section .tt-post-caption { max-width: 72ch; }

.tt-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin: 0 0 36px;
}

.tt-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 380px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 36px;
  background: var(--ink-dark);
}
.tt-slides { position: absolute; inset: 0; }
.tt-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 360ms ease;
}
.tt-slide.active { opacity: 1; }
.tt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, opacity 180ms ease;
  z-index: 2;
}
.tt-nav:hover { background: #fff; }
.tt-nav-prev { left: 14px; }
.tt-nav-next { right: 14px; }
.tt-nav svg { width: 20px; height: 20px; }
.tt-nav[hidden] { display: none; }
.tt-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 15, 12, 0.7);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}
.tt-counter[hidden] { display: none; }
@media (max-width: 600px) {
  .tt-nav { width: 38px; height: 38px; }
  .tt-nav svg { width: 16px; height: 16px; }
  .tt-nav-prev { left: 8px; }
  .tt-nav-next { right: 8px; }
}

.tt-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-dark);
}
.tt-author-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
}
.tt-author-info { flex: 1; min-width: 0; }
.tt-author-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
  margin-bottom: 8px;
}
.tt-author-name {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink-dark);
}
.tt-author-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-dark-dim);
  margin-top: 2px;
}
.tt-author-bio {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dark);
  margin: 14px 0 0;
  max-width: 72ch;
}

@media (max-width: 820px) {
  .tt-inner { padding: 0 24px 48px; }
  .tt-image { height: clamp(220px, 56vw, 360px); }
  .tt-author { gap: 18px; }
  .tt-author-photo { width: 72px; height: 72px; }
  .tt-author-name { font-size: 19px; }
}
.tt-inner { padding-top: 60px; }

.feature-section {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 100px 56px;
}

.feature-section.dark {
  background: var(--ink-dark-3);
  color: var(--ink);
}

.feature-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: stretch;     
  overflow: hidden;          
}

.feature-section.reverse .feature-section-inner { flex-direction: row-reverse; }

.feature-image {
  flex: 1;
  aspect-ratio: auto;
  margin-top: 38px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.feature-image-col .feature-image { margin-top: 0; }

.feature-image .num-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #0e1411;
  color: var(--ink-dim);
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px 6px 14px;
}

.feature-text {
  flex: 1;
}

.feature-section .eyebrow { margin-bottom: 18px; }
.feature-section.dark .eyebrow { color: var(--accent); }

.feature-section h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink-dark);
  max-width: 18ch;
}

.feature-section.dark h2 { color: var(--ink); }
.feature-section h2 em { font-style: normal; font-weight: 500; }

.feature-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 56ch;
}

.feature-section.dark .feature-text p { color: var(--ink-dim); }
.feature-text p:last-child { margin-bottom: 0; }

.feature-text p a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent);
  transition: color 200ms ease;
}
.feature-text p a:hover { color: var(--accent); }

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.feature-list li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid;
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
}

.feature-list li:last-child { border-bottom: 1px solid; }

.feature-section.dark .feature-list li {
  border-top-color: rgba(244,239,228,0.18);
}
.feature-section.dark .feature-list li:last-child {
  border-bottom-color: rgba(244,239,228,0.18);
}
.feature-section:not(.dark) .feature-list li {
  border-top-color: var(--rule-dark);
}
.feature-section:not(.dark) .feature-list li:last-child {
  border-bottom-color: var(--rule-dark);
}

.feature-list .v {
  color: var(--accent);
  white-space: nowrap;
}

.tt-post + .tt-post {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--rule-dark);
}
.tt-post-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  margin: 0 0 12px;
}

.feature-hours { margin-top: 32px; }
.feature-hours-title {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.feature-hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 24px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 15.5px;
  line-height: 1.3;
}
.feature-hours dt { white-space: nowrap; }
.feature-hours dd { margin: 0; text-align: right; opacity: 0.82; }

.patio-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  align-items: stretch;
}
.patio-info-row .pdf-link { margin: 0; }

.patio-hours {
  background: var(--paper-2);
  color: var(--ink-dark);
  padding: 18px 22px;
  border: 1px solid rgba(29, 42, 34, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.patio-hours .patio-hours-label {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-dark);
  opacity: 0.55;
  margin: 0 0 10px;
  max-width: none;
  line-height: 1.2;
}
.patio-hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 14.5px;
  line-height: 1.35;
}
.patio-hours dt {
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-dark);
}
.patio-hours dd {
  margin: 0;
  text-align: right;
  color: var(--ink-dark);
  opacity: 0.72;
  font-style: italic;
}

@media (max-width: 720px) {
  .patio-info-row { grid-template-columns: 1fr; }
}

.feature-hours .feature-hours-note {
  margin: 10px 0 0;
  max-width: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  font-style: italic;
  opacity: 0.55;
}

#patio .feature-section-inner,
#greensview .feature-section-inner { align-items: stretch; }
#patio .feature-image,
#greensview .feature-image { aspect-ratio: auto; }

.rates {
  position: relative;
  background: var(--paper);
  color: var(--ink-dark);
  padding: 110px 56px 140px;
}

.rates-title {
  max-width: 1280px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink-dark);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.rates-title .word { display: inline-block; }
.rates-title .amp {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-dark);
  font-size: 1em;
  margin: 0 0.32em;
  opacity: 0.7;
}

.rates-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  position: relative;
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
}
.card.light {
  background: var(--paper);
  border: 1px solid var(--rule-dark);
  color: var(--ink-dark);
}
.card.dark {
  background: #0f1812;
  color: var(--ink);
}

.card .kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.card h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.card.light h3 { color: var(--ink-dark); }
.card.dark h3 { color: var(--ink); }

.card .intro {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 56ch;
}
.card.light .intro { color: var(--ink-dark-dim); }
.card.dark .intro { color: rgba(244,239,228,0.72); }

.card hr {
  border: 0;
  height: 1px;
  margin: 0 0 12px;
}
.card.light hr { background: rgba(29,42,34,0.18); }
.card.dark hr  { background: rgba(244,239,228,0.18); }

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.rates-note {
  max-width: 680px;
  margin: -16px auto 36px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dark-dim);
}
.price-list li {
  padding: 22px 0 18px;
}
.price-list li + li { border-top: 1px solid; }
.card.light .price-list li + li { border-top-color: rgba(29,42,34,0.14); }
.card.dark  .price-list li + li { border-top-color: rgba(244,239,228,0.14); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.price-row .info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  min-width: 0;
  flex: 1;
}
.price-row .name {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
.price-row .when {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  opacity: 0.72;
}

.price-row .price {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  white-space: nowrap;
}
.price-row .price .yr {
  font-style: italic;
  font-size: 14px;
  margin-left: 2px;
}
.price-list .meta {
  margin: 6px 0 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}
.card.light .price-list .meta { color: var(--ink-dark-dim); }
.card.dark  .price-list .meta { color: rgba(244,239,228,0.6); }

.member-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.member-perks li {
  position: relative;
  padding-left: 22px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
}

.card.light .member-perks li { color: var(--ink-dark); }
.card.dark .member-perks li { color: var(--ink-dim); }

.member-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.member-perks .asterisk {
  color: var(--accent);
  margin-left: 1px;
}

.member-perks-note {
  margin: 22px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
.card.light .member-perks-note { color: var(--ink-dark-dim); }
.card.dark .member-perks-note { color: rgba(244, 239, 228, 0.55); }

.feature-image-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 38px;
}
.feature-image-col .feature-image {
  flex: 1;
  width: 100%;
  aspect-ratio: auto;       
  min-height: 220px;        
}

.hours-line {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 16px 0 0;
  letter-spacing: -0.005em;
  text-align: center;
}
.feature-section:not(.dark) .hours-line { color: var(--ink-dark); }
.hours-time {
  font-weight: 600;          
}

.card-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  min-height: 44px;          
  box-sizing: border-box;
  align-self: flex-start;
  text-decoration: none;
  background: var(--ink-dark);
  color: var(--paper);
  border: 1px solid var(--ink-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.card-cta svg { width: 22px; height: 12px; transition: transform 220ms ease; }
.card-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-dark);
}
.card-cta:hover svg { transform: translateX(4px); }

.card.dark .card-cta,
.feature-section.dark .card-cta {
  background: var(--paper);
  color: var(--ink-dark);
  border-color: var(--paper);
}
.card.dark .card-cta:hover,
.feature-section.dark .card-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-dark);
}

.rates-inner.single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

#memberships {
  background: var(--paper-2);
  border-top: 1px solid var(--rule-dark);
}

.sold-out-banner {
  margin: -56px -56px 36px;
  background: #c0392b;
  color: #fff;
  text-align: center;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sold-out-banner-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sold-out-banner-note {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 28px;
  border: 1px solid var(--ink-dark);
  color: var(--ink-dark);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.cta:hover {
  background: var(--ink-dark);
  color: var(--paper);
}

.cta svg { width: 14px; height: 14px; }

.proshop-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
  align-items: stretch;
}
.proshop-info-row .proshop-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.proshop-info-row .proshop-contact p { margin: 0; }
.proshop-hours {
  background: transparent;
  padding: 18px 22px;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.proshop-hours .proshop-hours-label {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  line-height: 1.2;
}
.proshop-hours .proshop-hours-time {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 720px) {
  .proshop-info-row { grid-template-columns: 1fr; }
}

.event-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.event-action-row .pdf-link {
  margin: 0;
  padding: 10px 18px;
  gap: 11px;
}
.event-action-row .pdf-link .pdf-link-icon svg { width: 22px; height: 22px; }
.event-action-row .pdf-link .pdf-link-text { gap: 1px; }
.event-action-row .pdf-link .pdf-link-title { font-size: 13px; line-height: 1.2; }
.event-action-row .pdf-link .pdf-link-sub { font-size: 10px; }
.event-action-row .pdf-link .pdf-link-arrow { width: 14px; height: 14px; }

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  padding: 18px 26px;
  background: var(--ink-dark);
  color: var(--paper);
  border: 1px solid var(--ink-dark);
  text-decoration: none;
  max-width: 100%;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.pdf-link:hover {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}

.feature-section.dark .pdf-link {
  background: var(--paper);
  color: var(--ink-dark);
  border-color: var(--paper);
}
.feature-section.dark .pdf-link:hover {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}

.event-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
  padding: 11px 26px;
  background: transparent;
  color: var(--ink-dark);
  border: 1px solid var(--ink-dark);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.event-inquire:hover { background: var(--ink-dark); color: var(--paper); border-color: var(--ink-dark); }
.feature-section.dark .event-inquire { color: var(--paper); border-color: var(--paper); }
.feature-section.dark .event-inquire:hover { background: var(--paper); color: var(--ink-dark); border-color: var(--paper); }

@media (max-width: 560px) {
  .event-action-row { gap: 10px; flex-wrap: nowrap; }
  .event-action-row .event-inquire { flex: none; padding: 11px 15px; letter-spacing: 0.18em; }
  .event-action-row .pdf-link { flex: 1; min-width: 0; min-height: 44px; padding: 9px 12px; gap: 9px; }
  .event-action-row .pdf-link .pdf-link-icon svg { width: 19px; height: 19px; }
  .event-action-row .pdf-link .pdf-link-title { font-size: 12px; }
  .event-action-row .pdf-link .pdf-link-arrow { display: none; }
}
.pdf-link-icon { display: flex; flex-shrink: 0; }
.pdf-link-icon svg { width: 30px; height: 30px; }
.pdf-link-text { display: flex; flex-direction: column; gap: 3px; }
.pdf-link-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pdf-link-sub {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.78;
}

.pdf-link-arrow { width: 18px; height: 18px; flex-shrink: 0; margin-left: 4px; }

.location {
  position: relative;
  background: var(--ink-dark-3);
  color: var(--ink);
  padding: 110px 56px 64px;   
}

.contact-section {
  background: var(--ink-dark-2);   
  color: var(--ink);
  padding: 64px 56px 110px;
  border-top: 1px solid rgba(11, 15, 12, 0.35);   
}
.contact-form-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.location .contact-form-block {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 80px;   
}
.contact-form-block .eyebrow { color: var(--accent); justify-content: center; margin-bottom: 14px; }
.contact-form-block .eyebrow::before { display: none; }
.contact-form-block h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--ink);
}
.contact-form-block h2 em { font-style: normal; font-weight: 500; }
.contact-form-block > p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.contact-form-block .contact-form-phone { margin: -16px auto 28px; }
.contact-form-phone a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.contact-form-phone a:hover { border-bottom-color: var(--accent); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.contact-form-row { display: flex; gap: 10px; }
.contact-form-row input { flex: 1; min-width: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: rgba(244, 239, 228, 0.04);
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 200ms ease, background 200ms ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(244, 239, 228, 0.6); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); background: rgba(244, 239, 228, 0.07); }

.contact-form select {
  width: 100%;
  border: 1px solid var(--rule);
  background-color: rgba(244, 239, 228, 0.04);
  padding: 14px 44px 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a961'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6%209l6%206%206-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.contact-form select:focus { border-color: var(--accent); background-color: rgba(244, 239, 228, 0.07); }
.contact-form select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.contact-form select option { color: #1d2a22; background: #ebe4d4; }

.contact-form select:invalid { color: rgba(244, 239, 228, 0.6); }

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.footer-subscribe-row input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.newsletter-form input:focus-visible,
.newsletter-popup-form input:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--paper);
  color: var(--ink-dark);
  border: 0;
  padding: 15px 26px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 200ms ease, color 200ms ease, gap 200ms ease;
}
.contact-form button:hover { background: var(--accent); color: var(--ink); gap: 16px; }
.contact-form button svg { width: 22px; height: 12px; }

.giftcard-section {
  background: var(--ink-dark-3);
  color: var(--ink);
  padding: 90px 24px 110px;
}
.giftcard-inner { max-width: 1080px; margin: 0 auto; }

.gc-layout {
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(0, 620px);
  gap: 56px;
  justify-content: center;
  align-items: start;
}
.gc-main { min-width: 0; }
.gc-preview { position: sticky; top: 110px; }

.gc-layout.gc-paid { display: block; }
.gc-layout.gc-paid .gc-main { max-width: 560px; margin: 0 auto; }

.gc-card {
  position: relative;
  aspect-ratio: 800 / 507;         
  background: url("/assets/giftcards/giftcard-face.jpg") center / cover no-repeat, var(--ink-dark-4);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(11, 15, 12, 0.55);
}

.gc-card-amount {
  position: absolute;
  left: 3.5%;

  bottom: 1.5%;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65), 0 0 3px rgba(0, 0, 0, 0.4);
  animation: gc-amount-in 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes gc-amount-in {
  from { opacity: 0.25; transform: translateY(3px); }
  to   { opacity: 1;    transform: none; }
}
.gc-preview-note {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
  margin: 14px 0 0;
}

.giftcard-lede {
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.85);
  margin: 0 0 36px;
}
.giftcard-status {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  padding: 14px 18px;
  margin: 22px 0 0;   
  border: 1px solid var(--rule);
}
.giftcard-status.ok  { color: var(--accent); border-color: rgba(201, 169, 97, 0.5); }
.giftcard-status.err { color: #e7a8a8; border-color: rgba(231, 168, 168, 0.45); }

.gc-home-link {
  display: block;
  width: max-content;
  margin: 18px auto 0;
  padding: 14px 26px;
  background: var(--paper);
  color: var(--ink-dark);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.gc-home-link:hover { background: var(--accent); color: var(--ink); }

.gc-fieldset { border: 0; padding: 0; margin: 0 0 6px; }

.gc-fieldset legend,
.gc-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
  margin-bottom: 12px;
}
.gc-sublabel {
  display: block;
  font-size: 13px;
  color: rgba(244, 239, 228, 0.7);
  margin-bottom: 6px;
}
.gc-field { flex: 1; min-width: 0; }

.giftcard-form .gc-amount {
  align-self: auto;
  margin: 0;
  border: 1px solid var(--rule);
  background: rgba(244, 239, 228, 0.04);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 13px 22px;
  min-height: 44px;   
  gap: 0;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.giftcard-form .gc-amount:hover {
  border-color: var(--accent);
  background: rgba(244, 239, 228, 0.07);
  color: var(--ink);
  gap: 0;
}
.giftcard-form .gc-amount.selected,
.giftcard-form .gc-amount.selected:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-dark);
  font-weight: 500;
}
.giftcard-form .gc-amount:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.gc-amounts { display: flex; flex-wrap: wrap; gap: 8px; }
.gc-custom { margin-top: 10px; }

.gc-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  min-height: 44px;   
  border: 1px solid var(--rule);
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color 200ms ease;
}
.gc-radio:last-of-type { margin-bottom: 0; }
.gc-radio:hover { border-color: var(--accent); }

.gc-radio:has(input:checked) { border-color: var(--accent); background: rgba(201, 169, 97, 0.06); }
.giftcard-form .gc-radio input {
  width: auto;
  flex: none;
  padding: 0;
  border: 0;
  background: none;
  margin: 0;
  accent-color: var(--accent);
}
.giftcard-form .gc-radio input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.gc-radio span { display: block; font-weight: 500; font-size: 15px; }

.gc-delivery-note {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 10px 2px 0;
}

.giftcard-form button[type="submit"] { align-self: stretch; justify-content: center; }
.gc-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244, 239, 228, 0.6);
  margin: 4px 0 0;
}
.gc-secure-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--accent); }

@media (max-width: 920px) {

  .gc-layout { grid-template-columns: 1fr; gap: 36px; }
  .gc-preview { position: static; width: 100%; max-width: 340px; margin: 0 auto; }
  .gc-main { max-width: 620px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .gc-amounts { gap: 6px; }

  .giftcard-form .gc-amount { padding: 11px 16px; flex: 1; text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .gc-card-amount { animation: none; }
}

.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: stretch;
}

.location-info .eyebrow { color: var(--accent); margin-bottom: 18px; }

.location h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  color: var(--ink);
}

.location h2 em { font-style: normal; font-weight: 500; }

.location-block {
  padding: 22px 0;
  border-top: 1px solid rgba(244,239,228,0.18);
}

.location-block:last-of-type {
  border-bottom: 1px solid rgba(244,239,228,0.18);
  margin-bottom: 32px;
}

.location-block .lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.location-block .val {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
}

.location-block .val a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 200ms ease; }
.location-block .val a:hover { border-bottom-color: var(--accent); }

.location-block--address { border-bottom: 0; margin-bottom: 8px; }

.contact-groups { margin-bottom: 32px; }

.contact-group {
  padding: 20px 0;
  border-top: 1px solid rgba(244, 239, 228, 0.14);
}
.contact-group:last-child { border-bottom: 1px solid rgba(244, 239, 228, 0.14); }

.cg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.cg-name {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.cg-name-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 5px;
}
.cg-phone {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.cg-phone:hover { border-bottom-color: var(--accent); }
.cg-hours {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin-top: 8px;
}
.cg-hours .hours-list {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  gap: 5px 24px;
}
.cg-hours .hours-list dt { color: var(--ink-dim); }
.cg-hours .hours-list dd { color: var(--ink); }

.hours-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 32px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
}

.hours-list dt { color: var(--ink); }

.hours-list dd {
  margin: 0;
  color: var(--accent);
  white-space: nowrap;
}

.location .cta {
  border-color: rgba(244,239,228,0.55);
  color: var(--ink);
}
.location .cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-dark-3);
}

.map-frame {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(201,169,97,0.35);
  overflow: hidden;
  background: var(--ink-dark-4);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: none;
}

.gift-cards {
  background: var(--paper-2);
  color: var(--ink-dark);
  padding: 56px 56px 64px;
  scroll-margin-top: 80px;
  text-align: center;
}

.gift-cards + .rates { padding-top: 80px; }

.gift-cards-inner {
  max-width: 680px;
  margin: 0 auto;
}

.gift-cards .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.gift-cards .eyebrow::before { display: none; }

.gift-cards h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink-dark);
}

.gift-cards h2 em { font-style: normal; font-weight: 500; }

.gift-cards.dark { background: var(--ink-dark-3); color: var(--ink); }
.gift-cards.dark h2 { color: var(--ink); }
.gift-cards.dark p { color: var(--ink-dim); }
.gift-cards.dark .eyebrow { color: var(--accent); }
.gift-cards.dark .cta { border-color: var(--accent); color: var(--ink); }
.gift-cards.dark .cta:hover { background: var(--accent); border-color: var(--accent); color: var(--ink-dark); }

.gift-cards p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dark-dim);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.gift-cards .cta { margin: 0; }

.newsletter {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 72px 56px 84px;
  text-align: center;
  border-top: 1px solid var(--rule-dark);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.newsletter .eyebrow::before { display: none; }

.newsletter h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink-dark);
}

.newsletter h2 em { font-style: normal; font-weight: 500; }

.newsletter p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dark-dim);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;            
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--rule-dark);
  background: transparent;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-dark);
  outline: none;
  transition: border-color 200ms ease;
}

.newsletter-form input::placeholder { color: rgba(29, 42, 34, 0.7); }
.newsletter-form input:focus { border-color: var(--accent); }

.newsletter-form button {
  background: var(--ink-dark);
  color: var(--paper);
  border: 0;
  padding: 14px 22px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form button:hover { background: var(--accent); color: var(--ink-dark); }
.newsletter-form button svg { width: 14px; height: 10px; }

.newsletter-note {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
  margin: 0;
}

.newsletter-thanks {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-dark);
  margin: 0;
}

.footer {
  background: var(--ink-dark-4);
  color: var(--ink);

  padding: 88px 56px 96px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-brand .logo-foot {
  display: block;
  height: 120px;
  width: auto;
  margin-bottom: 28px;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-dark-4);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
}

.socials a:hover { background: #d9bb71; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer-subscribe {
  margin-top: 28px;
  max-width: 280px;
}

.footer-subscribe .lbl {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.footer-subscribe-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(244, 239, 228, 0.28);
  transition: border-color 200ms ease;
}

.footer-subscribe-row:focus-within { border-bottom-color: var(--accent); }

.footer-subscribe-row input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.footer-subscribe-row input::placeholder { color: rgba(244, 239, 228, 0.58); }

.footer-subscribe-row button {
  background: transparent;
  border: 0;
  color: var(--accent);
  padding: 8px 4px 8px 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 200ms ease;
}

.footer-subscribe-row button:hover { transform: translateX(3px); }
.footer-subscribe-row button svg { width: 16px; height: 12px; }

.footer-subscribe-thanks {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.28);
}

.footer-subscribe-status,
.newsletter-form-status,
.contact-form-status {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.footer-subscribe-status { margin-top: 10px; font-size: 12.5px; }
.newsletter-form-status  { margin-top: 14px; text-align: center; flex-basis: 100%; }
.contact-form-status     { margin-top: 14px; text-align: center; }

.footer-subscribe-status.ok,
.contact-form-status.ok  { color: var(--accent); }
.footer-subscribe-status.err,
.contact-form-status.err { color: #e7a8a8; }

.newsletter-form-status.ok  { color: #2a6a3a; }
.newsletter-form-status.err { color: #a23a3a; }

.footer-col h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

.footer-col a:hover { color: var(--accent); }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

.contact-list .ico {
  width: 22px; height: 22px;
  color: var(--accent);
}
.contact-list .ico svg { width: 18px; height: 18px; }

.contact-list .phone {
  color: var(--accent);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-family: "Lora", Georgia, serif;
  white-space: nowrap;   
}
.contact-list .phone:hover { color: #d9bb71; }

.footer-bottom {
  border-top: 1px solid rgba(244,239,228,0.18);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer-bottom .legal { display: flex; align-items: center; gap: 16px; }
.footer-bottom .legal a { color: var(--ink-dim); text-decoration: none; transition: color 200ms ease; }
.footer-bottom .legal a:hover { color: var(--accent); }
.footer-bottom .legal .sep { color: rgba(244,239,228,0.25); }

.holes {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 70px 56px 110px;
  scroll-margin-top: 80px;
}

.holes-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.holes-head .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.holes-head .eyebrow::before { display: none; }

.holes-head h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-dark);
}

.holes-head h2 em { font-style: normal; font-weight: 500; }

.holes-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}

.hole-card {
  display: flex;
  flex-direction: column;
  background: #f4efe4;
  border: 1px solid rgba(29, 42, 34, 0.10);
  box-shadow: 0 2px 6px rgba(29, 42, 34, 0.035);
  overflow: hidden;
  transition: border-color 240ms ease;
}

.hole-card:hover { border-color: rgba(201, 169, 97, 0.55); }

.hole-photo {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
}

.hole-body {
  padding: 22px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hole-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(29, 42, 34, 0.10);
}

.hole-num {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 46px;
  line-height: 0.85;
  color: var(--accent-deep);   
  letter-spacing: -0.02em;
}

.hole-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hole-par {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dark);
}

.hole-yds {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
}

.hole-index {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.hole-index-summary {
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink-dark);
  margin: 0 0 30px;
}
.hole-index-summary strong { font-weight: 600; }
.hole-index-nines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hole-index-nine-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(29, 42, 34, 0.14);
}
.hole-index-nine-name {
  font-family: "Lora", Georgia, serif; font-style: italic;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep);
}
.hole-index-nine-stat {
  font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-dark-dim);
}
.hole-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.hole-chip {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 12px; text-decoration: none;
  background: #f4efe4; border: 1px solid rgba(29, 42, 34, 0.12);
  transition: border-color 200ms ease, background 200ms ease;
}
.hole-chip:hover { border-color: rgba(201, 169, 97, 0.6); background: #efe8d8; }
.hole-chip:focus-visible { outline: 2px solid var(--ink-dark); outline-offset: 2px; }
.hole-chip-num {
  font-family: "Lora", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1; color: var(--accent-deep);
}
.hole-chip-meta {
  font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-dark-dim);
}
.hole-card { scroll-margin-top: 80px; }
@media (max-width: 720px) {
  .hole-index-nines { grid-template-columns: 1fr; gap: 24px; }
}

.hole-desc {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-dark);
  margin: 0;
  text-align: left;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 15, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.newsletter-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-popup-inner {
  background: var(--paper);
  color: var(--ink-dark);
  max-width: 440px;
  width: 100%;
  padding: 44px 40px 36px;
  position: relative;
  transform: translateY(16px);
  transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
  border: 1px solid var(--rule-dark);
  box-shadow: 0 24px 60px rgba(11, 15, 12, 0.35);
}

.newsletter-popup.open .newsletter-popup-inner { transform: translateY(0); }

.newsletter-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--ink-dark);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  opacity: 0.45;
  transition: opacity 200ms ease, color 200ms ease;
}

.newsletter-popup-close::after {
  content: "";
  position: absolute;
  inset: -6px;
}

.newsletter-popup-close:hover { opacity: 1; color: var(--accent); }

.newsletter-popup .eyebrow {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.newsletter-popup h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--ink-dark);
}

.newsletter-popup p {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-dark-dim);
  margin: 0 0 20px;
}

.newsletter-popup-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-popup-form input {
  flex: 1;
  border: 1px solid var(--rule-dark);
  background: transparent;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink-dark);
  outline: none;
  transition: border-color 200ms ease;
  min-width: 0;
}

.newsletter-popup-form input::placeholder { color: rgba(29, 42, 34, 0.45); }
.newsletter-popup-form input:focus { border-color: var(--accent); }

.newsletter-popup-form button {
  background: var(--ink-dark);
  color: var(--paper);
  border: 0;
  padding: 12px 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.newsletter-popup-form button:hover { background: var(--accent); color: var(--ink-dark); }

.newsletter-popup-note {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
  margin: 0;
  text-align: center;
}

.newsletter-popup-thanks {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-dark);
  margin: 0 0 8px;
}

.book-pill {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  background: var(--ink-dark-4);
  color: var(--ink);
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 228, 0.08);
  font-family: "Inter", sans-serif;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transform-origin: bottom right;
}

.book-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 10px 30px rgba(11, 15, 12, 0.32);
  z-index: -1;
  pointer-events: none;
}

.book-pill.visible {
  animation: book-pill-pop 640ms cubic-bezier(0.2, 0.75, 0.3, 1) forwards;
}

@keyframes book-pill-pop {
  0%   { opacity: 0; transform: translateY(28px) scale(0.55); }
  55%  { opacity: 1; transform: translateY(0)    scale(1.12); }
  72%  { opacity: 1; transform: translateY(0)    scale(0.96); }
  86%  { opacity: 1; transform: translateY(0)    scale(1.03); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .book-pill.visible {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.book-pill-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.book-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-pill-icon svg {
  width: 20px;
  height: 20px;
}

.book-pill-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.book-pill-caret {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  transition: transform 260ms ease;
}

.book-pill.open .book-pill-caret { transform: rotate(180deg); }

.book-pill-collapse { display: none; }

.book-pill-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 280px;
  background: var(--paper);
  color: var(--ink-dark);
  border: 1px solid var(--rule-dark);
  box-shadow: 0 18px 44px rgba(11, 15, 12, 0.32);
  padding: 20px 22px 18px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.book-pill.open .book-pill-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.book-pill-panel .eyebrow {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.book-pill-panel h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--ink-dark);
}

.book-pill-panel .book-pill-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-pill-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--rule-dark);
  color: var(--ink-dark);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.book-pill-panel a.primary {
  background: var(--ink-dark);
  color: var(--paper);
  border-color: var(--ink-dark);
}

.book-pill-panel a.primary:hover {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}

.book-pill-panel a:not(.primary):hover {
  border-color: var(--ink-dark);
}

.book-pill-panel a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.book-pill-panel .panel-note {
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dark-dim);
  text-align: center;
}

@media (min-width: 1600px) {
  .book-pill { right: 30px; bottom: 30px; gap: 16px; padding: 9px 21px 9px 9px; }
  .book-pill-trigger { gap: 16px; }
  .book-pill-icon { width: 46px; height: 46px; }
  .book-pill-icon svg { width: 24px; height: 24px; }
  .book-pill-label { font-size: 17px; }
  .book-pill-caret { width: 16px; height: 16px; margin-left: 5px; }
  .book-pill-panel { width: 320px; padding: 24px 26px 20px; bottom: calc(100% + 14px); }
  .book-pill-panel h4 { font-size: 22px; margin-bottom: 14px; }
  .book-pill-panel a { font-size: 14px; padding: 12px 16px; }
}

@media (min-width: 2000px) {
  .book-pill { right: 36px; bottom: 36px; gap: 19px; padding: 11px 26px 11px 11px; }
  .book-pill-trigger { gap: 19px; }
  .book-pill-icon { width: 56px; height: 56px; }
  .book-pill-icon svg { width: 29px; height: 29px; }
  .book-pill-label { font-size: 21px; }
  .book-pill-caret { width: 19px; height: 19px; margin-left: 7px; }
  .book-pill-panel { width: 380px; padding: 28px 30px 24px; bottom: calc(100% + 16px); }
  .book-pill-panel h4 { font-size: 27px; margin-bottom: 16px; }
  .book-pill-panel .eyebrow { margin-bottom: 12px; }
  .book-pill-panel .book-pill-actions { gap: 10px; }
  .book-pill-panel a { font-size: 16px; padding: 15px 20px; }
  .book-pill-panel a svg { width: 18px; height: 18px; }
  .book-pill-panel .panel-note { font-size: 13px; margin-top: 18px; }
}

@media (min-width: 2560px) {
  .book-pill { right: 44px; bottom: 44px; gap: 24px; padding: 13px 32px 13px 13px; }
  .book-pill-trigger { gap: 24px; }
  .book-pill-icon { width: 72px; height: 72px; }
  .book-pill-icon svg { width: 38px; height: 38px; }
  .book-pill-label { font-size: 27px; }
  .book-pill-caret { width: 24px; height: 24px; margin-left: 9px; }
  .book-pill-panel { width: 460px; padding: 34px 36px 28px; bottom: calc(100% + 20px); }
  .book-pill-panel h4 { font-size: 33px; margin-bottom: 20px; }
  .book-pill-panel .eyebrow { margin-bottom: 14px; }
  .book-pill-panel .book-pill-actions { gap: 12px; }
  .book-pill-panel a { font-size: 19px; padding: 18px 24px; }
  .book-pill-panel a svg { width: 22px; height: 22px; }
  .book-pill-panel .panel-note { font-size: 15px; margin-top: 22px; }
}

.gallery-section {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 96px 56px 120px;
}

.gallery-head {
  max-width: 1280px;
  margin: 0 auto 44px;
}
.gallery-head h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 10px 0 0;
  color: var(--ink-dark);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-room {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--ink-dark) center / cover no-repeat;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-room:hover { transform: translateY(-4px); }

.gallery-room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11, 15, 12, 0.82) 0%,
    rgba(11, 15, 12, 0.12) 55%,
    rgba(11, 15, 12, 0.30) 100%);
  transition: background 240ms ease;
}
.gallery-room:hover .gallery-room-overlay {
  background: linear-gradient(to top,
    rgba(11, 15, 12, 0.88) 0%,
    rgba(11, 15, 12, 0.28) 60%,
    rgba(11, 15, 12, 0.40) 100%);
}

.gallery-room-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--ink-dark);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.gallery-room-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  color: var(--ink);
}
.gallery-room-name {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.1;
}
.gallery-room-count {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.78);
}

.gallery-mosaic {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-mosaic-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--ink-dark) center / cover no-repeat;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 240ms ease;
}
.gallery-mosaic-item:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.gallery-head--albums { margin-top: 24px; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(11, 15, 12, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  overflow-y: auto;
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 56px;
  background: rgba(11, 15, 12, 0.97);
  border-bottom: 1px solid var(--rule);
}
.gallery-lightbox-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin: 0;
}
.gallery-lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink-dark);
  border: 0;
  padding: 14px 24px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease;
  flex-shrink: 0;
}
.gallery-lightbox-close:hover { background: var(--accent); }
.gallery-lightbox-close svg { width: 16px; height: 16px; }

.gallery-lightbox-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 56px 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-lightbox-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  background: var(--ink-dark);
  cursor: zoom-in;
}

.gallery-lightbox-thumb {
  display: block; width: 100%; padding: 0; border: 0; margin: 0;
  background: none; cursor: zoom-in;
}
.gallery-lightbox-thumb:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.gallery-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(11, 15, 12, 0.985);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  cursor: zoom-out;
}
.gallery-photo-viewer.open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-photo-viewer-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.gallery-photo-viewer-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--paper);
  color: var(--ink-dark);
  border: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
  z-index: 2;
}
.gallery-photo-viewer-close:hover { background: var(--accent); }
.gallery-photo-viewer-close svg { width: 20px; height: 20px; }

.gallery-photo-viewer-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(235, 228, 212, 0.92);
  color: var(--ink-dark);
  border: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
  z-index: 2;
}
.gallery-photo-viewer-nav.prev { left: 24px; }
.gallery-photo-viewer-nav.next { right: 24px; }
.gallery-photo-viewer-nav:hover { background: var(--accent); }
.gallery-photo-viewer-nav svg { width: 26px; height: 26px; }
.gallery-photo-viewer-nav[hidden] { display: none; }

@media (max-width: 600px) {
  .gallery-photo-viewer-nav { width: 44px; height: 44px; }
  .gallery-photo-viewer-nav.prev { left: 12px; }
  .gallery-photo-viewer-nav.next { right: 12px; }
  .gallery-photo-viewer-nav svg { width: 20px; height: 20px; }
}

@media (max-width: 1100px) {
  .nav-group { gap: 22px; }
  .navbar { gap: 28px; }
  .nav-group > a,
  .nav-group .nav-trigger { font-size: 10px; letter-spacing: 0.18em; }
  .logo { height: 82px; }
  .story-inner { gap: 70px; }
  .holes-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 64px; }
}

@media (max-width: 820px) {
  .topbar { padding: 14px 20px; }
  .topbar.scrolled { padding: 10px 20px; }
  .navbar { gap: 0; }
  .navbar .nav-group { display: none; }

  .navbar > a { grid-column: 2; }
  .menu-btn { display: block; left: 10px; }

  .weather-widget { right: 8px; }
  .logo { height: 60px; }

  .menu-btn.open ~ .navbar .logo { opacity: 0; pointer-events: none; }
  .menu-btn.open ~ .weather-widget { opacity: 0; pointer-events: none; }
  .topbar:has(.menu-btn.open) { background: transparent; border-bottom-color: transparent; }
  .topbar.scrolled .logo { height: 48px; }

  .scroll-cue { display: none; }
  .page-banner { height: 44vh; min-height: 300px; }
  .page-banner-inner { padding: 0 24px 36px; }

  .story { padding: 100px 24px 88px; }
  body.user-scrolled .story { padding-top: 72px; }
  .story-inner { grid-template-columns: 1fr; gap: 24px; }
  .story-aside { position: static; }
  .story-body p { font-size: 17px; }
  .story-body p:first-child::first-letter { font-size: 56px; }
  .amenities { padding: 48px 24px 72px; }
  .amenities-grid { grid-template-columns: 1fr; gap: 32px; }
  .amenity .photo-wrap { aspect-ratio: 4 / 3; }
  .feature-section,
  .feature-section.reverse { padding: 56px 32px; }
  .feature-section-inner,
  .feature-section.reverse .feature-section-inner { flex-direction: column; gap: 32px; }

  .feature-image {
    aspect-ratio: 4 / 3;
    margin-top: 0;
    min-height: 0;
  }
  .feature-image-col { padding-top: 0; }
  .rates { padding: 64px 24px 80px; }
  .rates-title { margin-bottom: 28px; }
  .rates-inner { grid-template-columns: 1fr; gap: 16px; }
  .rates-note { font-size: 14px; margin: 0 0 24px; padding: 0 6px; }
  .card { padding: 32px 24px; }
  .sold-out-banner { margin: -32px -24px 26px; }
  .sold-out-banner-title { font-size: 23px; }
  .pdf-link { gap: 14px; padding: 16px 18px; }
  .pdf-link-icon svg { width: 26px; height: 26px; }
  .pdf-link-title { font-size: 15px; }
  .gallery-section { padding: 56px 24px 80px; }
  .gallery-head { margin-bottom: 28px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 48px; }
  .gallery-lightbox-head { padding: 18px 24px; }
  .gallery-lightbox-title { font-size: 22px; }
  .gallery-lightbox-close { padding: 12px 18px; }
  .gallery-lightbox-grid { grid-template-columns: 1fr; padding: 24px 24px 72px; gap: 16px; }
  .location { padding: 64px 24px 48px; }
  .location-inner { grid-template-columns: 1fr; gap: 32px; }
  .map-frame { min-height: 320px; }
  .contact-form-block { margin-top: 48px; padding-top: 40px; }
  .contact-form-row { flex-direction: column; }
  .contact-form button { align-self: stretch; justify-content: center; }
  .footer { padding: 56px 24px calc(84px + env(safe-area-inset-bottom)); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-col:has(.contact-list) { grid-column: 1 / -1; }
  .footer-col:has(.contact-list) .contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px 32px;
  }
  .footer-col:has(.contact-list) .contact-list li { flex: 1 1 200px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .holes { padding: 48px 24px 72px; }
  .holes-head { margin-bottom: 28px; }

  .holes-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 4px 24px 16px;
    scroll-padding-left: 24px;
  }
  .holes-grid .hole-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
  .gift-cards { padding: 44px 24px 52px; }
  .gift-cards + .rates { padding-top: 52px; }
  .newsletter { padding: 56px 24px 64px; }
  .newsletter-form { flex-direction: column; gap: 12px; max-width: 320px; }
  .newsletter-form button { padding: 14px 20px; }
  .footer-subscribe { max-width: 100%; }
  .newsletter-popup-inner { padding: 36px 28px 28px; }
  .newsletter-popup-form { flex-direction: column; }

  .book-pill { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); padding: 6px 14px 6px 6px; gap: 10px; }

  .book-pill::after { display: none; }
  .book-pill-icon { width: 32px; height: 32px; }
  .book-pill-icon svg { width: 17px; height: 17px; }
  .book-pill-label { font-size: 13.5px; }
  .book-pill-panel { width: calc(100vw - 28px); right: 0; max-width: 320px; }


  .book-pill-caret { display: none; }
  .book-pill-collapse {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-right: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
  }

  .book-pill-collapse::after {
    content: "";
    position: absolute;
    inset: -7px;
  }
  .book-pill-collapse svg { width: 13px; height: 13px; }


  .book-pill {
    transition: padding 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
                gap 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .book-pill-label {
    max-width: 220px;
    overflow: hidden;
    transition: max-width 300ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease;
  }
  .book-pill-collapse {
    overflow: hidden;
    transition: width 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
                margin 300ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease;
  }
  .book-pill.collapsed { padding: 6px; gap: 0; }
  .book-pill.collapsed .book-pill-label { max-width: 0; opacity: 0; }
  .book-pill.collapsed .book-pill-collapse { width: 0; margin: 0; opacity: 0; }
  .book-pill.collapsed .book-pill-panel { display: none; }
}
