:root {
  --bg: #eef3ea;
  --bg-deep: #dce8d8;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #f8fbf6;
  --surface-dark: rgba(18, 37, 27, 0.55);
  --text: #143021;
  --muted: #59705f;
  --line: rgba(20, 48, 33, 0.12);
  --primary: #1f6a43;
  --primary-strong: #124d30;
  --accent: #d6b66f;
  --accent-soft: rgba(214, 182, 111, 0.16);
  --white: #f8fbf6;
  --shadow: 0 28px 70px rgba(16, 36, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 182, 111, 0.24), transparent 24%),
    radial-gradient(circle at right 20%, rgba(31, 106, 67, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbf4 0%, var(--bg) 42%, #f8faf6 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 244, 0.68);
  border-bottom: 1px solid rgba(20, 48, 33, 0.08);
}

.header-inner,
.intro-grid,
.about-layout,
.showcase-layout,
.lake-layout,
.updates-layout,
.contact-layout,
.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.header-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.brand img {
  width: clamp(180px, 18vw, 250px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--primary);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-video,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 19, 11, 0.2) 0%, rgba(6, 19, 11, 0.45) 45%, rgba(6, 19, 11, 0.82) 100%);
}

.hero-glow {
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.55;
}

.hero-glow-left {
  background: rgba(214, 182, 111, 0.24);
  inset: 15% auto auto 6%;
  width: 280px;
  height: 280px;
}

.hero-glow-right {
  background: rgba(31, 106, 67, 0.28);
  inset: auto 8% 18% auto;
  width: 340px;
  height: 340px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 3rem;
  color: var(--white);
}

.eyebrow,
.panel-label,
.feature-number {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow,
.panel-label {
  color: var(--accent);
}

.hero h1,
.section h2,
.about-panel h3,
.contact-block h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: rgba(248, 251, 246, 0.88);
  line-height: 1.8;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(18, 77, 48, 0.28);
}

.button-secondary {
  background: rgba(248, 251, 246, 0.08);
  border-color: rgba(248, 251, 246, 0.32);
  color: var(--white);
}

.button-secondary-dark {
  background: transparent;
  border-color: rgba(20, 48, 33, 0.18);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.stat-card,
.about-panel,
.feature-card,
.showcase-card,
.instagram-panel,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.stat-card {
  padding: 1.15rem 1.2rem;
  background: rgba(248, 251, 246, 0.12);
  backdrop-filter: blur(12px);
}

.stat-card:hover,
.about-panel:hover,
.feature-card:hover,
.showcase-card:hover,
.instagram-panel:hover,
.contact-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 85px rgba(16, 36, 24, 0.16);
  border-color: rgba(31, 106, 67, 0.24);
}

.stat-card strong,
.footer-title {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.stat-card span,
.footer-copy {
  color: rgba(248, 251, 246, 0.78);
  line-height: 1.5;
  font-size: 0.94rem;
}

.intro-band {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-top: 1px solid rgba(248, 251, 246, 0.08);
  background: linear-gradient(90deg, rgba(18, 77, 48, 0.96), rgba(24, 96, 58, 0.92));
}

.intro-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1rem 0;
}

.intro-grid p {
  margin: 0;
  text-align: center;
  color: rgba(248, 251, 246, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section {
  padding: 6rem 0;
}

.about-layout,
.updates-layout,
.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about-copy h2,
.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section p,
.detail-list li,
.instagram-note,
.contact-block p,
.footer-copy {
  color: var(--muted);
  line-height: 1.8;
}

.about-panel,
.contact-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 246, 0.92));
}

.about-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.detail-list {
  display: grid;
  gap: 0.9rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.feature-grid,
.gallery-grid,
.instagram-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 246, 0.92));
}

.feature-number {
  color: var(--primary);
  background: var(--accent-soft);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.showcase-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.showcase-card {
  overflow: hidden;
  background: var(--surface);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.showcase-card-large {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.showcase-copy {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(248, 251, 246, 0.86), rgba(240, 247, 236, 0.95));
}

.showcase-stack {
  display: grid;
  gap: 1.25rem;
}

.lake-section {
  background: linear-gradient(180deg, rgba(220, 232, 216, 0.22), rgba(248, 251, 246, 0));
}

.lake-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.compare-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 246, 0.96));
  box-shadow: var(--shadow);
}

.image-compare {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
}

.image-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-base,
.compare-overlay img {
  min-height: 520px;
}

.compare-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
}

.compare-overlay img {
  width: 100%;
  max-width: none;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(248, 251, 246, 0.94);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(20, 48, 33, 0.08);
}

.compare-divider span {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 48, 33, 0.74);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(20, 48, 33, 0.72);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.updates {
  background: linear-gradient(180deg, rgba(220, 232, 216, 0.28), rgba(248, 251, 246, 0));
}

.instagram-panel {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 246, 0.96));
}

.instagram-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.instagram-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdc468, #df4996, #4f5bd5);
}

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

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.instagram-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.embed-note {
  margin-top: 0.75rem;
}

.contact-block + .contact-block {
  margin-top: 1.2rem;
}

.contact-block h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.contact-actions {
  margin-top: 1.5rem;
}

.map-card {
  overflow: hidden;
  min-height: 100%;
}

.map-card iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.lightbox {
  width: min(92vw, 1080px);
  padding: 1rem;
  border: 0;
  border-radius: 28px;
  background: rgba(10, 20, 14, 0.96);
  color: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.lightbox::backdrop {
  background: rgba(5, 12, 8, 0.84);
  backdrop-filter: blur(6px);
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-title {
  margin: 0.9rem 0 0.2rem;
  color: rgba(248, 251, 246, 0.88);
  text-align: center;
}

.lightbox-close {
  margin-left: auto;
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(248, 251, 246, 0.18);
  border-radius: 999px;
  background: rgba(248, 251, 246, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(248, 251, 246, 0.16);
}

@media (max-width: 1024px) {
  .hero-stats,
  .feature-grid,
  .showcase-layout,
  .lake-layout,
  .showcase-card-large,
  .gallery-grid,
  .updates-layout,
  .contact-layout,
  .about-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gallery-card-tall {
    grid-row: span 1;
  }

  .image-compare,
  .compare-base,
  .compare-overlay img {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .site-nav,
  .intro-grid {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 7rem 0 2.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-header {
    position: static;
  }

  .brand img {
    width: 190px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    max-width: 12ch;
  }

  .hero-copy,
  .section p,
  .detail-list li {
    font-size: 0.98rem;
  }

  .about-panel,
  .contact-card,
  .feature-card,
  .showcase-copy,
  .instagram-panel {
    padding: 1.35rem;
  }

  .map-card iframe {
    min-height: 340px;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.8rem;
  }

  .image-compare,
  .compare-base,
  .compare-overlay img {
    min-height: 300px;
  }
}
