/* Wildwood Lake HOA — lightweight static page */
:root {
  --ink: #14221a;
  --ink-soft: #2c3d34;
  --paper: #f7f5f0;
  --paper-2: #eef2ec;
  --accent: #2d5a4a;
  --accent-light: #3d7a63;
  --water: #1e4a5c;
  --gold: #c9a227;
  --shadow: 0 12px 40px rgba(20, 34, 26, 0.12);
  --radius: 12px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 90, 74, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.nav-main a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-soft);
}

.nav-main a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 6vw, 4rem);
  color: #fff;
  background: var(--water) url("../img/lake1-1-e1592509614653.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 34, 26, 0.35) 0%,
    rgba(20, 34, 26, 0.65) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.95;
  margin: 0 0 0.5rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 0;
  max-width: 38ch;
  font-size: 1.1rem;
  opacity: 0.96;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: #ddb82e;
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-intro {
  margin: 0 0 1.75rem;
  max-width: 62ch;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split-img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-img img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.doc-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doc-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(45, 90, 74, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(20, 34, 26, 0.06);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.doc-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.doc-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.doc-card .file {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.contact-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .contact-wrap {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-aside {
  background: var(--paper-2);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 90, 74, 0.12);
}

.contact-aside p {
  margin: 0 0 1rem;
}

.contact-aside p:last-child {
  margin-bottom: 0;
}

.mail {
  font-weight: 600;
  word-break: break-all;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(45, 90, 74, 0.25);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 2rem clamp(1rem, 4vw, 2rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.site-footer a {
  color: #a8d4c4;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer small {
  opacity: 0.85;
}

.site-footer code {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.section-footnote {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}
