:root {
  --green-950: #12382f;
  --green-900: #173f35;
  --green-800: #285c4d;
  --green-700: #3c7562;
  --bronze: #b98758;
  --bronze-dark: #91683f;
  --bronze-light: #dfc19e;
  --cream: #f8f4ec;
  --cream-dark: #eee6da;
  --white: #fffefd;
  --ink: #23352f;
  --muted: #68716d;
  --border: #e2d8ca;
  --shadow: 0 18px 50px rgba(27, 54, 45, .11);
  --shadow-small: 0 10px 28px rgba(27, 54, 45, .08);
  --radius: 10px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 999;
  padding: 12px 18px;
  color: white;
  background: var(--green-950);
  border-radius: 6px;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 253, .96);
  border-bottom: 1px solid rgba(226, 216, 202, .9);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(19, 49, 41, .10);
}

.header-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-logo img {
  width: 250px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: var(--green-950);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.button):hover {
  color: var(--bronze);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: white;
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-800);
  box-shadow: 0 12px 26px rgba(23, 63, 53, .22);
}

.button-small {
  min-height: 41px;
  padding-inline: 19px;
  font-size: .72rem;
}

.button-outline {
  color: var(--bronze-dark);
  background: rgba(255, 255, 255, .82);
  border-color: var(--bronze);
}

.button-outline:hover {
  color: white;
  background: var(--bronze);
}

.button-outline-dark {
  color: var(--green-900);
  background: transparent;
  border-color: var(--green-900);
}

.button-muted {
  color: var(--bronze-dark);
  background: var(--cream);
  border-color: var(--bronze-light);
}

.important-banner {
  color: #4b3a22;
  background: #f0dfc6;
  border-bottom: 1px solid #dfc49d;
}

.banner-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: .88rem;
  text-align: center;
}

.banner-inner a {
  color: var(--green-900);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(209, 181, 146, .18), transparent 30%),
    linear-gradient(130deg, #fffefb 0%, #f8f1e6 52%, #e8ded0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  opacity: .13;
  background:
    repeating-linear-gradient(45deg, transparent 0 24px, var(--green-900) 25px 26px),
    repeating-linear-gradient(-45deg, transparent 0 24px, var(--bronze) 25px 26px);
}

.hero-pattern {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(185, 135, 88, .25);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(185, 135, 88, .05),
    0 0 0 150px rgba(23, 63, 53, .035);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.25fr .7fr;
  align-items: center;
  gap: 80px;
  padding-block: 66px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.card-eyebrow,
.contact-category,
.document-date {
  margin: 0 0 8px;
  color: var(--bronze-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.quick-info h2,
.dues-card h3,
.contact-form-copy h3 {
  font-family: var(--serif);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.4rem, 6.2vw, 5.9rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.025em;
}

.ornament {
  width: 150px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 27px 0 19px;
  color: var(--bronze);
}

.ornament span {
  height: 1px;
  flex: 1;
  background: var(--bronze-light);
}

.ornament b {
  font-size: .55rem;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #43534d;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 29px;
}

.quick-info {
  padding: 31px 34px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(185, 135, 88, .25);
  border-top: 4px solid var(--bronze);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-info h2 {
  margin: 0 0 11px;
  color: var(--green-950);
  font-size: 2.1rem;
}

.quick-info dl {
  margin: 0;
}

.quick-info dl div {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.quick-info dt {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.quick-info dd a {
  text-decoration: none;
}

.text-link,
.notice-card a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.45rem, 4.6vw, 3.55rem);
  font-weight: 600;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin: 15px 0 0;
  color: var(--muted);
}

.announcements {
  background: var(--white);
}

.notice-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.notice-card {
  min-height: 270px;
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform .25s ease, box-shadow .25s ease;
}

.notice-card:hover,
.amenity-card:hover,
.service-card:hover,
.contact-card:hover,
.document-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.notice-card.featured {
  color: white;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  border-color: transparent;
}

.notice-label {
  display: inline-block;
  margin-bottom: 25px;
  padding: 5px 11px;
  color: var(--green-950);
  background: #f0dfc6;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notice-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.08;
}

.notice-card p {
  color: var(--muted);
}

.notice-card.featured p,
.notice-card.featured a {
  color: rgba(255, 255, 255, .86);
}

.intro-section {
  background: var(--cream);
  border-block: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 75px;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.community-cards article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  color: white;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 56, 47, .12), rgba(18, 56, 47, .92)),
    linear-gradient(135deg, #b8c4b9, #6a8879);
  box-shadow: var(--shadow-small);
}

.community-cards article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(32, 69, 78, .10), rgba(23, 65, 74, .92)),
    linear-gradient(135deg, #bacbce, #698893);
}

.community-cards article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(70, 48, 28, .10), rgba(83, 59, 35, .92)),
    linear-gradient(135deg, #d0c1ae, #987858);
}

.community-cards span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.community-cards h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.amenities-section {
  background: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-card {
  min-height: 220px;
  padding: 27px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.amenity-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--bronze-dark);
  background: white;
  border: 1px solid var(--bronze-light);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.amenity-card h3,
.service-card h3,
.contact-card h3,
.document-card h3,
.payment-panel h3,
.payment-details-grid h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.amenity-card p,
.service-card p,
.document-card p,
.payment-panel p,
.payment-details-grid p {
  color: var(--muted);
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 35px;
}

.dues-section {
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 135, 88, .13), transparent 25%),
    linear-gradient(140deg, var(--green-950), #214f42);
}

.section-heading.light h2,
.section-heading.light p:not(.eyebrow) {
  color: white;
}

.section-heading.light p:not(.eyebrow) {
  opacity: .78;
}

.dues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dues-card {
  overflow: hidden;
  color: var(--ink);
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
}

.dues-card-header {
  padding: 22px 27px;
  color: white;
  background: var(--bronze-dark);
}

.dues-card-header.alternate {
  background: #386376;
}

.dues-card-header p {
  margin: 0 0 3px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

.dues-card-header h3 {
  margin: 0;
  font-size: 1.75rem;
}

.dues-card-body {
  padding: 28px;
}

.amount {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.amount span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
}

.secondary-amount {
  margin: 12px 0 0;
  color: var(--bronze-dark);
  font-weight: 700;
}

.dues-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.dues-card li {
  position: relative;
  padding: 10px 0 10px 27px;
  border-bottom: 1px solid var(--border);
}

.dues-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

.payment-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 26px;
  padding: 29px;
  color: var(--ink);
  background: #fbf5eb;
  border-left: 5px solid var(--bronze);
  border-radius: var(--radius);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.payment-methods span {
  padding: 8px 14px;
  color: var(--green-950);
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}

.payment-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.payment-details-grid article {
  padding: 25px;
  color: var(--ink);
  background: white;
  border-radius: var(--radius);
}

.payment-details-grid address {
  font-style: normal;
  font-weight: 700;
}

.payment-details-grid a {
  color: var(--green-700);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.spacing-top {
  margin-top: 18px;
}

.resident-services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 290px;
  padding: 25px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-number {
  display: block;
  margin-bottom: 30px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 2rem;
}

.documents-section {
  background: white;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.document-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  padding: 27px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.document-icon {
  width: 62px;
  height: 76px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-900);
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.document-card .button {
  margin-top: 9px;
}

.faq-section {
  background: linear-gradient(180deg, white, var(--cream));
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  position: relative;
  padding: 18px 50px 18px 20px;
  color: var(--green-950);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--bronze);
  font-size: 1.45rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 19px;
  color: var(--muted);
}

.contact-section {
  background: var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 230px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 4px solid var(--bronze);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: var(--green-700);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
}

.contact-form-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  margin-top: 26px;
  padding: 35px;
  color: white;
  background: linear-gradient(140deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
}

.contact-form-copy h3 {
  margin: 0;
  color: white;
  font-size: 2.3rem;
}

.contact-form-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.contact-form {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 5px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bronze-light);
  box-shadow: 0 0 0 3px rgba(223, 193, 158, .22);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  color: rgba(255, 255, 255, .75);
  background: #102f28;
  border-top: 3px solid var(--bronze);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr 1.15fr;
  gap: 50px;
  padding-block: 50px 35px;
}

.footer-logo img {
  width: 285px;
  filter: brightness(1.3) saturate(.88);
}

.footer-logo p {
  max-width: 350px;
}

.site-footer h2 {
  margin: 0 0 13px;
  color: var(--bronze-light);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: white;
  text-decoration: none;
}

.site-footer p {
  font-size: .86rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 25px;
  border-top: 1px solid rgba(223, 193, 158, .3);
  font-size: .8rem;
}

.footer-bottom a {
  display: inline;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .72rem;
  }

  .notice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .notice-card.featured {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px;
  }

  .hero-layout,
  .intro-grid,
  .faq-layout,
  .contact-form-panel {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 35px;
  }

  .quick-info {
    max-width: 620px;
  }

  .amenity-grid,
  .payment-details-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 84px;
  }

  .site-logo img {
    width: 210px;
  }

  .important-banner {
    padding-block: 9px;
  }

  .banner-inner {
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 52px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .notice-grid,
  .community-cards,
  .amenity-grid,
  .dues-grid,
  .payment-details-grid,
  .services-grid,
  .document-grid,
  .contact-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .notice-card.featured {
    grid-column: auto;
  }

  .payment-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .document-card {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 25px;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.club-focus{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.club-focus article{min-height:185px;padding:24px;background:#fffefd;border:1px solid var(--border);border-top:4px solid var(--bronze);border-radius:var(--radius);box-shadow:var(--shadow-small)}
.club-focus article:nth-child(2){border-top-color:var(--green-700)}
.club-focus article:nth-child(3){border-top-color:#386376}
.club-focus h3{margin:0;color:var(--green-950);font-family:var(--serif);font-size:1.65rem}
.club-focus p:last-child{color:var(--muted)}
@media(max-width:680px){.club-focus{grid-template-columns:1fr}}


/* Ensure the Member Services navigation button remains readable */
.main-nav a.button,
.main-nav a.button:visited,
.main-nav a.button:hover,
.main-nav a.button:focus {
  color: #ffffff;
}
