:root {
  --bg: #f4efe4;
  --surface: #fffaf2;
  --ink: #2c2419;
  --muted: #6d6255;
  --accent: #b85c1f;
  --accent-2: #6f8b4b;
  --line: #dfd2bc;
  --shadow: 0 14px 40px rgba(35, 24, 11, 0.18);
  --radius: 18px;
  --anchor-offset: 88px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 92, 31, 0.1), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(111, 139, 75, 0.15), transparent 30%),
    var(--bg);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.nav-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid #dfd2bc;
  border-radius: 10px;
  background: #fff8ea;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  transition: background-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #efe3ce;
}

.hero {
  position: relative;
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
  min-height: clamp(360px, 64vh, 760px);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(110%) contrast(102%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff8ea;
  padding: 1.2rem;
  background:
    linear-gradient(to top, rgba(29, 21, 14, 0.68), rgba(29, 21, 14, 0.2) 55%, rgba(29, 21, 14, 0.48));
  animation: fadeIn 900ms ease;
}

.eyebrow {
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0;
}

.hero-overlay h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3.7rem);
  line-height: 1.12;
  margin: 0.7rem auto;
  max-width: 18ch;
  background: #0000006e;
  border-radius: 5px;
}

.hero-overlay p {
  margin: 0 auto;
  max-width: 56ch;
  background: #0000006e;
  border-radius: 5px;
}

.cta {
  justify-self: center;
  margin-top: 1.2rem;
  background: linear-gradient(120deg, var(--accent), #d57733);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(184, 92, 31, 0.35);
}

main {
  width: min(1100px, 92%);
  margin: 1rem auto 0;
}

.content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.5vw, 2rem);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow);
  animation: rise 800ms ease;
}

.content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-top: 0;
}

.two-column {
  display: grid;
  gap: 1rem;
}

.note-card,
.visit-panel,
.grid-cards article {
  background: #fff3dd;
  border: 1px solid #e8d5b4;
  border-radius: 14px;
  padding: 1rem;
}

.note-card h3,
.visit-panel h3,
.grid-cards h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
}

.note-card ul,
.visit-panel ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

.club-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.club-card {
  background: #fff3dd;
  border: 1px solid #e8d5b4;
  border-radius: 14px;
  padding: 1rem;
}

.club-card h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
}

.club-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.club-actions {
  margin: 1rem 0 0;
}

.club-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #d57733);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(184, 92, 31, 0.25);
}

.club-link:hover,
.club-link:focus-visible {
  filter: brightness(1.05);
}

.contact {
  display: grid;
  gap: 1rem;
}

.contact dl {
  margin: 1rem 0 0;
}

.contact dl div {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #d5c6ab;
}

.contact dt {
  font-weight: 700;
  color: var(--muted);
}

.contact dd {
  margin: 0.25rem 0 0;
}

.contact a {
  color: var(--accent);
}

.social-row {
  margin: 1rem 0 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  background: #1877f2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(24, 119, 242, 0.32);
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  filter: brightness(1.06);
}

.facebook-feed p {
  margin-bottom: 0.9rem;
}

.facebook-embed {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid #d9cab0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.facebook-embed iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}

.map-wrap {
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d9cab0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 1.3rem 1rem 2rem;
  text-align: center;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent), #d57733);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(42, 25, 9, 0.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  filter: brightness(1.05);
}

.center {
  text-align: center;
}

@media (min-width: 860px) {
  .two-column {
    grid-template-columns: 1.4fr 1fr;
  }

  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .club-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .site-nav {
    display: flex !important;
  }
}

@media (max-width: 859px) {
  :root {
    --anchor-offset: 96px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.7rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.45);
  }

  .hero {
    min-height: clamp(300px, 58vh, 520px);
  }

  .hero-overlay {
    place-content: end center;
    padding-bottom: 1.4rem;
  }

  .hero-overlay h1 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    }

  .hero-overlay h1, .hero-overlay p {
    background: #0000006e;
    border-radius: 5px;
  }

  .facebook-embed iframe {
    min-height: 680px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-overlay,
  .content,
  .back-to-top {
    animation: none;
    transition: none;
  }
}
