﻿:root {
  --ink: #10222b;
  --navy: #0b2a3a;
  --navy-deep: #061722;
  --blue: #1c7188;
  --water: #dceff1;
  --mist: #f5f8f7;
  --paper: #ffffff;
  --gold: #d4a64a;
  --gold-soft: #f2d37b;
  --coral: #d96d53;
  --muted: rgba(16, 34, 43, .68);
  --line: rgba(16, 34, 43, .13);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(16, 34, 43, .16);
  --radius: 8px;
  --max: 1200px;
  --display: "Outfit", Inter, system-ui, sans-serif;
  --body: "Manrope", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
h1, h2, h3, p, section, div, article, form { min-width: 0; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 23, 34, .96);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}
.nav::before {
  content: "1148 State Park Road, Lucas, KY  |  270-646-2357  |  Barren River Lake State Resort Park";
  display: block;
  padding: 8px 20px;
  background: #03101a;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.nav-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}
.logo img {
  width: min(220px, 40vw);
  max-height: 56px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}
.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,34,43,.16); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-line { border-color: var(--line); color: var(--ink); background: var(--paper); }
.nav .btn-line { border-color: rgba(255,255,255,.28); color: var(--paper); background: transparent; }
.btn-dark { background: var(--navy); color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: -.035em;
}
h1 {
  max-width: 790px;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: .94;
  font-weight: 800;
}
h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.25rem);
  line-height: .98;
  font-weight: 800;
}
h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 800;
}
.lead {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(6,23,34,.94) 0%, rgba(6,23,34,.78) 47%, rgba(6,23,34,.46) 100%),
    linear-gradient(to bottom, rgba(6,23,34,.06), rgba(6,23,34,.82)),
    var(--hero) center / cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
}
.hero-grid > div:first-child {
  padding: 28px 0;
  animation: fadeUp .85s ease both;
}
.hero-grid > div:first-child::after {
  content: "";
  display: block;
  width: min(520px, 100%);
  height: 1px;
  margin-top: 34px;
  background: rgba(255,255,255,.18);
}
.hero h1 { color: var(--paper); text-shadow: 0 10px 35px rgba(0,0,0,.22); }
.hero .lead { color: rgba(255,255,255,.82); }
.hero .eyebrow { color: var(--gold-soft); }

.lead-card {
  width: 100%;
  padding: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: fadeUp .85s ease .16s both;
}
.lead-card h3 { color: var(--ink); font-size: 1.55rem; }
.lead-card p { margin: 8px 0 18px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
input, select, textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf9;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 104px; padding-top: 12px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(16,31,41,.44); }
.full { grid-column: 1 / -1; }

.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(90deg, #c59631, var(--gold), #efca68);
  border-top: 1px solid rgba(255,255,255,.32);
  border-bottom: 1px solid rgba(16,31,41,.16);
  color: var(--ink);
}
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--gold), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(270deg, #efca68, transparent); }
.marquee-track {
  min-height: 56px;
  display: flex;
  width: max-content;
  align-items: center;
  animation: marqueeMove 34s linear infinite;
}
.marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
}
.marquee-group span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.marquee-group i {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(16,31,41,.52);
}
.subnav {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.subnav-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  color: rgba(16,31,41,.76);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.subnav-row span { color: var(--gold); }

.section { padding: 92px 0; }
.section.alt {
  background:
    linear-gradient(135deg, rgba(6,23,34,.96), rgba(16,45,61,.9)),
    url("https://barrenriverstatedock.com/wp-content/uploads/2023/01/Rectangle-21-1.jpg") center / cover;
  color: var(--paper);
}
.section.alt h2,
.section.alt h3,
.section.alt .feature strong { color: var(--paper); }
.section.alt .lead,
.section.alt .muted,
.section.alt .feature span,
.section.alt .step p,
.section.alt .card p { color: rgba(255,255,255,.76); }
.section.alt .card,
.section.alt .feature,
.section.alt .process {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.section.alt .eyebrow { color: var(--gold-soft); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(16,31,41,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: fadeUp .7s ease both;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card img { height: 245px; }
.card-body { padding: 23px; }
.card p, .muted { color: var(--muted); }
.card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(16,31,41,.08);
}
.stat {
  min-height: 132px;
  padding: 24px;
  border-left: 1px solid var(--line);
  animation: fadeUp .7s ease both;
}
.stat:first-child { border-left: 0; }
.stat strong {
  display: block;
  color: var(--coral);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}
.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; }
.photo {
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--photo) center / cover;
  box-shadow: var(--shadow);
  animation: slowFloat 7s ease-in-out infinite;
}
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  animation: fadeUp .65s ease both;
}
.feature b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
}
.feature strong { display: block; margin-bottom: 2px; }
.feature span { color: var(--muted); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.step { padding: 24px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; }
.step b { color: var(--coral); font-size: 30px; }
.step p { color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.faq { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.faq p { color: var(--muted); }
.map-panel {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6,23,34,.88), rgba(28,113,136,.62)),
    url("https://barrenriverstatedock.com/wp-content/uploads/2023/02/DJI_0944.jpg") center / cover;
  color: var(--paper);
  box-shadow: var(--shadow);
}
.map-panel h3 {
  max-width: 430px;
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.map-panel p { max-width: 430px; color: rgba(255,255,255,.78); }
.map-panel strong { display: block; margin-top: 14px; color: var(--gold-soft); font-size: 1.05rem; }
.map-panel .btn-gold { width: fit-content; }

.cta-band {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(6,23,34,.94), rgba(16,45,61,.72)),
    url("https://barrenriverstatedock.com/wp-content/uploads/2023/01/Rectangle-22.jpg") center / cover;
  color: var(--paper);
}
.cta-band h2 { color: var(--paper); }
.cta-band .lead { color: rgba(255,255,255,.82); }
.testimonial-section {
  background:
    linear-gradient(135deg, rgba(245,248,247,.96), rgba(220,239,241,.72)),
    url("https://barrenriverstatedock.com/wp-content/uploads/2023/01/Rectangle-22.jpg") center / cover;
}
.testimonial-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16,34,43,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.testimonial-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 70px);
}
.rating {
  display: inline-flex;
  gap: 6px;
  margin: 10px 0 22px;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
}
.quote {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.reviewer {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.reviewer strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reviewer span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.testimonial-media {
  position: relative;
  min-height: 540px;
}
.testimonial-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}
.review-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius);
  background: rgba(6,23,34,.86);
  color: var(--paper);
  backdrop-filter: blur(14px);
}
.review-card strong,
.review-card span { display: block; }
.review-card strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.1;
}
.review-card span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.newsletter-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf9;
}
.footer {
  padding: 66px 0 32px;
  background: var(--ink);
  color: rgba(255,255,255,.72);
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr .8fr; gap: 34px; }
.footer-logo img { width: min(220px, 100%); filter: brightness(0) invert(1); }
.footer h3 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer a, .footer p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.68); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 12px; }
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; padding: 0 10px; }

@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.card:nth-child(2), .stat:nth-child(2), .feature:nth-child(2) { animation-delay: .08s; }
.card:nth-child(3), .stat:nth-child(3), .feature:nth-child(3) { animation-delay: .16s; }
.stat:nth-child(4) { animation-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 980px) {
  .nav-inner, .hero-grid, .section-head, .grid-2, .split, .process, .footer-grid, .newsletter-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 58px 0; }
  .grid-3, .stats, .faq-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
  .testimonial-panel { grid-template-columns: 1fr; }
  .testimonial-copy,
  .testimonial-media,
  .testimonial-media img { min-height: 420px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .wrap { width: min(100% - 28px, var(--max)); }
  .nav::before { font-size: 11px; line-height: 1.4; }
  .nav-inner { min-height: 70px; grid-template-columns: 1fr auto; }
  .logo img { width: min(190px, 62vw); }
  h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .section { padding: 72px 0; }
  .form-grid, .grid-3, .stats, .faq-grid { grid-template-columns: 1fr; }
  .newsletter-form { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .photo { min-height: 310px; }
  .card img { height: 210px; }
  .mobile-cta { display: flex; }
  .testimonial-copy { min-height: auto; padding: 28px; }
  .testimonial-media,
  .testimonial-media img { min-height: 310px; }
  .reviewer { align-items: flex-start; flex-direction: column; gap: 5px; }
  .marquee-strip::before, .marquee-strip::after { width: 42px; }
  .marquee-track { min-height: 48px; animation-duration: 24s; }
  .marquee-group span { font-size: 11px; letter-spacing: .11em; }
}

