/* fishersofmenok.com — lake & fish design system.
   Palette: deep lake #07222E/#0B2E3C, teal #3FC1C9/#1E6E7E,
   sunset orange #E8863A, sand paper #F5F2EA, ink #16262C. */

:root {
  --deep:   #07222E;
  --lake:   #0B2E3C;
  --lake-2: #123D4E;
  --teal:   #1E6E7E;
  --teal-b: #3FC1C9;
  --sunset: #E8863A;
  --sunset-d: #C96A22;
  --sand:   #F5F2EA;
  --card:   #FFFFFF;
  --ink:    #16262C;
  --mut:    #55696F;
  --line:   #E2DFD5;
  --line-d: #1C4657;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16.5px/1.65 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:hover { color: var(--sunset-d); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.2rem; }
@media (min-width: 1500px) { .wrap { max-width: 1340px; } html { font-size: 17px; } }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: .5rem; top: .5rem; }

h1, h2, h3, h4 { line-height: 1.22; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); margin: 0 0 .8rem; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); margin: 0 0 .8rem; }
h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
.lead { font-size: 1.15rem; color: var(--mut); max-width: 46rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal); color: #fff; border: 0; border-radius: 10px;
  padding: .65rem 1.25rem; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: background .15s, transform .06s;
}
.btn:hover { background: #185A68; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--sunset); color: #1A2A31; }
.btn-accent:hover { background: var(--sunset-d); color: #fff; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: .85rem 1.6rem; font-size: 1.08rem; }

/* ---------------------------------------------------------------- header --- */
.site-header {
  background: var(--deep); color: #EAF4F4;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line-d);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .55rem; padding-bottom: .55rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; min-width: 0; }
.brand-mark { flex: 0 0 auto; }
.brand-name { font-weight: 800; font-size: 1.14rem; line-height: 1.15; letter-spacing: -.01em; }
.brand-name small { display: block; font-weight: 500; font-size: .72rem; color: #8FB8C2; letter-spacing: .02em; }
.nav-toggle { display: none; background: none; border: 0; color: #EAF4F4; padding: .4rem; cursor: pointer; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: .1rem; margin: 0; padding: 0; flex-wrap: wrap; }
.main-nav a { color: #D6E7EA; text-decoration: none; font-weight: 600; font-size: .95rem; padding: .5rem .62rem; border-radius: 8px; display: inline-flex; align-items: center; gap: .35rem; }
.main-nav a:hover { color: #fff; background: var(--lake-2); }
.main-nav a[aria-current="page"] { color: #fff; background: var(--lake-2); }
.nav-phone a { color: var(--teal-b); white-space: nowrap; }
.nav-cta a.btn { padding: .5rem 1rem; font-size: .95rem; }
.nav-cta a.btn:hover { color: #fff; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: .4rem 0 .8rem; }
  .main-nav a { padding: .65rem .5rem; font-size: 1.02rem; }
  .header-bar { flex-wrap: wrap; }
}

/* ------------------------------------------------------------------ hero --- */
.hero {
  position: relative; color: #fff; background: var(--deep);
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 72%; opacity: .55; }
.hero-inner { position: relative; padding: clamp(3.2rem, 8vw, 6.5rem) 0; text-align: center; }
.hero .kicker { color: var(--teal-b); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.45); font-size: clamp(2.1rem, 4.8vw, 3.8rem); line-height: 1.14; max-width: 1000px; margin-left: auto; margin-right: auto; text-wrap: balance; }
.hero p.sub { font-size: clamp(1.18rem, 1.6vw, 1.3rem); color: #E4F0F1; text-shadow: 0 1px 12px rgba(0,0,0,.5); max-width: 46rem; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; justify-content: center; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(7,34,46,0), rgba(7,34,46,.55));
  pointer-events: none;
}
.hero-badges { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.8rem; position: relative; justify-content: center; }
.hero-badges div { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: #EAF4F4; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero-badges svg { color: var(--teal-b); flex: 0 0 auto; }

/* page hero (small, interior pages) */
.page-hero { background: var(--deep); color: #fff; position: relative; overflow: hidden; }
.page-hero .hero-inner { padding: clamp(2.2rem, 5vw, 3.6rem) 0; max-width: 720px; }
.page-hero p.sub { color: #C9DDE1; font-size: 1.08rem; }

/* -------------------------------------------------------------- sections --- */
.section { padding: clamp(2.4rem, 6vw, 4.2rem) 0; }
.section.alt { background: #EDE9DD; }
.section.dark { background: var(--lake); color: #E8F1F2; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #C9DDE1; }
.section-head { max-width: 46rem; margin-bottom: 1.8rem; }
.section-head .kicker { color: var(--sunset-d); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.section.dark .section-head .kicker { color: var(--teal-b); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.5rem; box-shadow: 0 1px 3px rgba(22,38,44,.05);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: #E7F4F5; color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.card p { color: var(--mut); margin: .3rem 0 0; }
.section.dark .card { background: var(--lake-2); border-color: var(--line-d); }
.section.dark .card p { color: #B7CFD5; }
.section.dark .card .icon { background: rgba(63,193,201,.12); color: var(--teal-b); }

/* media split (image + text) */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.4rem; align-items: center; }
.split img { border-radius: 14px; box-shadow: 0 10px 32px rgba(7,34,46,.18); width: 100%; object-fit: cover; }
.split.rev { direction: rtl; } .split.rev > * { direction: ltr; }
@media (max-width: 880px) { .split, .split.rev { grid-template-columns: 1fr; direction: ltr; gap: 1.4rem; } }

.checklist { list-style: none; padding: 0; margin: 1rem 0; }
.checklist li { padding-left: 1.9rem; position: relative; margin: .55rem 0; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 1.1em; height: 1.1em;
  background: var(--sunset); border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.section.dark .checklist li::before { background: var(--teal-b); }

/* ----------------------------------------------------------------- stats --- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--lake-2); border: 1px solid var(--line-d); border-radius: 14px; padding: 1.2rem .8rem; }
.stat b { display: block; font-size: 1.7rem; color: var(--teal-b); letter-spacing: -.02em; }
.stat span { font-size: .88rem; color: #B7CFD5; }

/* --------------------------------------------------------------- pricing --- */
.price-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; max-width: 760px; }
@media (max-width: 720px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem 1.6rem 1.4rem; position: relative; }
.price-card.featured { border: 2px solid var(--sunset); box-shadow: 0 12px 30px rgba(201,106,34,.14); }
.price-card .tag { position: absolute; top: -0.8rem; left: 1.4rem; background: var(--sunset); color: #1A2A31; font-size: .78rem; font-weight: 800; padding: .18rem .7rem; border-radius: 99px; letter-spacing: .03em; }
.price-card .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--lake); }
.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--mut); letter-spacing: 0; }
.price-card ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.price-card li { padding: .42rem 0 .42rem 1.8rem; position: relative; color: #33474e; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: .68em; width: 1em; height: 1em; background: var(--teal);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.price-notes { max-width: 760px; margin-top: 1.2rem; }
.price-notes .card { padding: 1.1rem 1.3rem; }
.price-notes .card + .card { margin-top: .8rem; }
.price-notes b { color: var(--lake); }

/* --------------------------------------------------------------- gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid a { display: block; border-radius: 12px; overflow: hidden; position: relative; background: var(--lake); }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: transform .25s, opacity .2s; }
.gallery-grid a:hover img { transform: scale(1.04); opacity: .92; }
.gallery-grid figcaption, .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .8rem .55rem;
  background: linear-gradient(to top, rgba(7,34,46,.85), rgba(7,34,46,0));
  color: #fff; font-size: .85rem; font-weight: 600;
}

/* ------------------------------------------------------------------- FAQ --- */
.faq-list { max-width: 780px; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; margin-bottom: .7rem; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; font-weight: 700; padding: .95rem 3rem .95rem 1.2rem; list-style: none; position: relative;
  color: var(--lake);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--sunset-d);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list .faq-a { padding: 0 1.2rem 1rem; color: #33474e; }
.faq-list .faq-a p { margin: .2rem 0 .6rem; }

/* --------------------------------------------------------------- lake map --- */
.lakemap-wrap { background: var(--lake); border-radius: 16px; padding: 1rem; box-shadow: 0 14px 40px rgba(7,34,46,.25); }
.lakemap-wrap svg { width: 100%; height: auto; display: block; }
.map-note { font-size: .85rem; color: var(--mut); margin-top: .6rem; }

/* tables */
table.plain { border-collapse: collapse; width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
table.plain th, table.plain td { text-align: left; padding: .65rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.plain th { background: var(--lake); color: #fff; font-size: .9rem; }
table.plain tr:last-child td { border-bottom: 0; }
table.plain td b { color: var(--lake); }
.table-scroll { overflow-x: auto; }

/* -------------------------------------------------------------- cta band --- */
.cta-band { background: linear-gradient(120deg, var(--deep), var(--lake-2)); color: #fff; padding: 2.6rem 0; border-top: 3px solid var(--sunset); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 .4rem; }
.cta-band p { margin: 0; color: #C9DDE1; max-width: 34rem; }
.cta-band-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------- footer --- */
.site-footer { background: var(--deep); color: #A9C4CB; padding: 2.6rem 0 1.4rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .4rem 0; }
.site-footer a { color: #CFE2E6; text-decoration: none; }
.site-footer a:hover { color: var(--teal-b); }
.footer-brand strong { color: #fff; font-size: 1.1rem; }
.footer-verse { font-style: italic; color: #7FA5AF; font-size: .9rem; }
.footer-legal { border-top: 1px solid var(--line-d); margin-top: 2rem; padding-top: 1.2rem; font-size: .85rem; color: #7FA5AF; }
.footer-legal a { color: #A9C4CB; }

/* ----------------------------------------------------------------- forms --- */
.form-grid { display: grid; gap: 1rem; max-width: 560px; }
.form-grid label { font-weight: 700; font-size: .95rem; }
.form-grid input, .form-grid textarea {
  width: 100%; padding: .65rem .8rem; border: 1px solid #C8CFC9; border-radius: 10px;
  font: inherit; background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--teal-b); border-color: var(--teal); }
.notice { background: #E4F2E8; border: 1px solid #A9D3B5; border-radius: 10px; padding: .8rem 1rem; margin: 1rem 0; }
.errbox { background: #FAE9E4; border: 1px solid #E5B3A3; border-radius: 10px; padding: .8rem 1rem; margin: 1rem 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; max-width: 720px; }
@media (max-width: 640px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-cards .card { text-align: center; padding: 1.8rem 1.4rem; }
.contact-cards .card .big { font-size: 1.5rem; font-weight: 800; color: var(--lake); display: block; margin: .4rem 0; text-decoration: none; }

/* prose pages */
.prose { max-width: 46rem; }
.prose p { margin: 0 0 1.05rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose img { border-radius: 12px; }
figure { margin: 1.4rem 0; }
figcaption { font-size: .85rem; color: var(--mut); margin-top: .45rem; }
.img-credit { font-size: .78rem; color: var(--mut); }

/* breadcrumbs */
.crumbs { font-size: .85rem; color: #9FC3CB; margin-bottom: .6rem; }
.crumbs a { color: #C9DDE1; text-decoration: none; }
.crumbs a:hover { color: #fff; }
