:root {
  --ink: #10261f;
  --ink-2: #213a31;
  --muted: #66746e;
  --paper: #f5f0e7;
  --paper-2: #fbfaf6;
  --white: #ffffff;
  --line: rgba(16, 38, 31, 0.16);
  --gold: #b18a34;
  --gold-2: #d8b96d;
  --blue: #2b6f9f;
  --green: #0c3d2d;
  --shadow: 0 22px 60px rgba(16, 38, 31, 0.18);
  --radius: 6px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0 48px;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(16, 38, 31, 0.12);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  box-shadow: 0 10px 30px rgba(16, 38, 31, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand small,
.footer-brand span {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 26, 20, 0.84) 0%, rgba(9, 26, 20, 0.55) 35%, rgba(9, 26, 20, 0.12) 72%, rgba(9, 26, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 24, 18, 0.62) 0%, rgba(7, 24, 18, 0.08) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 56px));
  min-height: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 72px;
}

.hero-copy {
  width: min(700px, 100%);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.74);
}

.button.secondary {
  color: var(--green);
  background: transparent;
  border-color: rgba(12, 61, 45, 0.6);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
  background: var(--green);
}

.status-rail {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.status-title,
.status-rail article {
  min-height: 128px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.status-title {
  justify-content: center;
}

.status-title h2,
.status-rail h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
}

.status-title h2 {
  font-size: 30px;
}

.status-rail h3 {
  font-size: 18px;
}

.status-rail p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.mini-mark {
  width: 38px;
  height: 38px;
  background:
    radial-gradient(circle at 50% 35%, var(--gold) 0 8px, transparent 9px),
    linear-gradient(var(--gold), var(--gold));
  background-size: 38px 38px, 4px 26px;
  background-position: center, center 12px;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--gold);
}

.status-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--green);
}

.status-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split-section,
.events-section,
.visit-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: 118px 0;
}

.section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-copy h2,
.pickleball-copy h2,
.restaurant-intro h2,
.events-copy h2,
.visit-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy p,
.pickleball-copy p,
.restaurant-intro p,
.events-copy p,
.visit-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.inline-list,
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.inline-list span,
.event-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.main-image,
.overlap-image,
.pickleball-section img,
.events-section > img,
.food-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  position: absolute;
  inset: 0 0 86px 58px;
  width: calc(100% - 58px);
  height: calc(100% - 86px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overlap-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(360px, 54%);
  aspect-ratio: 1 / 1;
  border: 10px solid var(--paper-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 38, 31, 0.2);
}

.pickleball-section {
  padding: 112px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 48, 61, 0.94), rgba(9, 55, 38, 0.96)),
    var(--green);
}

.pickleball-grid {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  grid-template-areas:
    "copy image"
    "notes image";
  gap: 28px 54px;
  align-items: end;
}

.pickleball-copy {
  grid-area: copy;
  align-self: start;
}

.pickleball-copy h2,
.pickleball-copy p {
  color: var(--white);
}

.pickleball-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.pickleball-grid > img {
  grid-area: image;
  min-height: 640px;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.stat-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-line strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 104px;
  font-weight: 500;
  line-height: 0.8;
}

.stat-line span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.4;
}

.pickleball-notes {
  grid-area: notes;
  display: grid;
  gap: 14px;
}

.pickleball-notes article {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.pickleball-notes h3,
.pickleball-notes p {
  margin: 0;
}

.pickleball-notes h3 {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.pickleball-notes p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.restaurant-section {
  padding: 116px 0;
  background: var(--paper-2);
}

.restaurant-intro {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.9fr);
  gap: 64px;
  align-items: end;
}

.restaurant-intro p {
  margin: 0;
}

.hours-band {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.hours-band div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.hours-band div:last-child {
  border-right: 0;
}

.hours-band strong,
.hours-band span {
  display: block;
}

.hours-band strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.hours-band span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.food-gallery {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.food-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eee;
}

.food-gallery figure.large {
  grid-row: span 2;
}

.food-gallery img {
  transition: transform 420ms ease;
}

.food-gallery figure:hover img {
  transform: scale(1.035);
}

.events-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.76fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  padding: 118px 0;
}

.events-section > img {
  aspect-ratio: 1.18 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1.28fr);
  gap: 48px;
  align-items: start;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.visit-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.visit-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visit-card.dark {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.visit-card h3,
.visit-card p {
  margin: 0;
}

.visit-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.visit-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.visit-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.visit-card a {
  margin-top: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.visit-card.dark a {
  color: var(--gold-2);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: 32px;
  align-items: center;
  padding: 44px 48px;
  color: rgba(255, 255, 255, 0.78);
  background: #071a14;
}

.site-footer .brand-mark,
.site-footer .footer-brand strong {
  color: var(--white);
}

.site-footer .brand-mark {
  color: var(--gold-2);
}

.site-footer p {
  max-width: 720px;
  justify-self: end;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 28px;
  }

  .menu-button {
    position: absolute;
    top: 17px;
    right: 28px;
    justify-self: end;
    width: 44px;
    height: 44px;
    z-index: 40;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--ink);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 45px rgba(16, 38, 31, 0.12);
  }

  .site-nav.is-open a {
    padding: 18px 28px;
    border-top: 1px solid var(--line);
  }

  .status-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-title {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .split-section,
  .pickleball-grid,
  .restaurant-intro,
  .events-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 520px;
  }

  .pickleball-grid {
    grid-template-areas:
      "copy"
      "image"
      "notes";
  }

  .pickleball-grid > img {
    min-height: 470px;
  }

  .restaurant-intro p {
    margin-top: -26px;
  }

  .food-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-panel {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .menu-button {
    top: 11px;
    right: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong,
  .footer-brand strong {
    font-size: 22px;
  }

  .brand small,
  .footer-brand span {
    font-size: 9px;
  }

  .site-nav.is-open {
    inset-top: 66px;
  }

  .menu-button {
    display: none !important;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 19;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 0 18px;
    background: rgba(251, 250, 246, 0.96);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(16, 38, 31, 0.08);
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    width: 100%;
    max-width: none;
    align-items: flex-end;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 64px;
  }

  .hero-copy {
    width: 100%;
    max-width: 354px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.98;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero p {
    max-width: 100%;
  }

  .status-rail {
    grid-template-columns: 1fr;
  }

  .status-title,
  .status-rail article {
    min-height: 110px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-section,
  .events-section,
  .visit-section,
  .pickleball-grid,
  .restaurant-intro,
  .hours-band,
  .food-gallery {
    width: calc(100% - 36px);
  }

  .split-section,
  .restaurant-section,
  .events-section,
  .visit-section,
  .pickleball-section {
    padding: 76px 0;
  }

  .section-copy h2,
  .pickleball-copy h2,
  .restaurant-intro h2,
  .events-copy h2,
  .visit-copy h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .section-copy p,
  .pickleball-copy p,
  .restaurant-intro p,
  .events-copy p,
  .visit-copy p {
    font-size: 16px;
  }

  .image-stack {
    min-height: 430px;
  }

  .main-image {
    inset: 0 0 70px 0;
    width: 100%;
    height: calc(100% - 70px);
  }

  .overlap-image {
    width: 54%;
    border-width: 7px;
  }

  .stat-line strong {
    font-size: 86px;
  }

  .pickleball-grid > img {
    min-height: 340px;
  }

  .restaurant-intro {
    gap: 30px;
  }

  .restaurant-intro p {
    margin-top: 0;
  }

  .hours-band {
    grid-template-columns: 1fr;
  }

  .hours-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hours-band div:last-child {
    border-bottom: 0;
  }

  .food-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .food-gallery figure.large {
    grid-row: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
