/* ============================================
   Catch 22 Fishery — Design Tokens
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  color-scheme: light;
  /* Brand core — sampled from the Catch 22 badge */
  --teal-950: #0E2124;
  --teal-900: #1C393D;
  --teal-800: #26494D;
  --teal-700: #335D62;
  --gold-500: #C79964;
  --gold-400: #D6AF80;
  --gold-200: #EDDCC4;
  --cream-100: #F7F4EC;
  --cream-50:  #FBF9F4;
  --grey-500: #8B98A0;
  --cream-dim: #C9D3CE; /* solid, readable secondary text on dark teal backgrounds */
  --grey-700: #5C6A72;
  --red-600: #C4442E;
  --red-700: #A63A26;
  --ink: #182421;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --content-width: 1120px;
  --content-narrow: 720px;

  --radius-sm: 4px;
  --radius-md: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream-100) !important;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

section { background: var(--cream-100); }
.hero, .contact-section { background: var(--teal-900); }

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--teal-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; max-width: 62ch; }

.eyebrow-free { /* marker: intentionally no eyebrow labels per design guidance */ }

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 48px 0; }
  .contact-section { padding-bottom: 32px; }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(28, 57, 61, 0.12);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-word {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--teal-900);
  line-height: 1;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--grey-700);
  font-weight: 600;
  margin-top: 2px;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--teal-900);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--gold-500); }

.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--red-600);
  color: white;
}
.btn-primary:hover { background: var(--red-700); }

.btn-outline {
  background: transparent;
  border-color: var(--teal-900);
  color: var(--teal-900);
}
.btn-outline:hover { background: var(--teal-900); color: white; }

.btn-gold {
  background: var(--gold-500);
  color: var(--teal-950);
}
.btn-gold:hover { background: var(--gold-400); }

/* ============ Hero ============ */
.hero {
  background: var(--teal-900);
  color: var(--cream-100);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -20%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(199, 153, 100, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-script);
  color: var(--gold-400);
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: block;
}

.hero h1 { color: white; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 244, 236, 0.16);
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-400);
  font-weight: 600;
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.hero-panel {
  background: var(--teal-800);
  border: 1px solid rgba(199, 153, 100, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
}

.hero-panel h3 {
  color: var(--gold-400);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.hero-panel-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
  font-size: 0.92rem;
  color: var(--cream-100);
}
.hero-panel-row:last-child { border-bottom: none; }
.hero-panel-row b { color: white; }

/* ============ Section headers ============ */
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head p { color: var(--grey-700); font-size: 1.05rem; }

.section-tag {
  font-family: var(--font-script);
  color: var(--gold-500);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 2px;
}

/* ============ Lakes ============ */
.lakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lake-card {
  background: var(--cream-50);
  border: 1px solid rgba(28, 57, 61, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lake-map {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(28, 57, 61, 0.12);
}

.lake-body { padding: 26px 28px 30px; }

.lake-body h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lake-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-700);
  background: var(--cream-100);
  border: 1px solid rgba(28,57,61,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.lake-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.lake-stats div {
  text-align: left;
}
.lake-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal-900);
}
.lake-stats span { font-size: 0.78rem; color: var(--grey-700); }

.lake-prices {
  margin-top: 18px;
  border-top: 1px dashed rgba(28,57,61,0.2);
  padding-top: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
}
.price-row b { color: var(--teal-900); font-family: var(--font-display); font-weight: 600; }

/* ============ FAQ ============ */
.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(28, 57, 61, 0.14);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-900);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q .plus {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-weight: 400;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-bottom: 22px;
  color: var(--grey-700);
  font-size: 0.98rem;
}
.faq-a-inner p:last-child { margin-bottom: 0; }

.faq-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--gold-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--teal-900);
}

/* ============ Facilities ============ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
  background: var(--cream-50);
  border: 1px solid rgba(28, 57, 61, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.facility {
  background: var(--cream-50);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--teal-900);
}

.playlist-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--teal-950);
}

.playlist-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.playlist-note {
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--gold-200);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--teal-900);
}

/* ============ Blog ============ */

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

.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-script);
  font-size: 1.6rem;
  text-align: center;
  padding: 20px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--grey-700);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.blog-card h3 { margin: 8px 0 6px; font-size: 1.15rem; }
.blog-card p { font-size: 0.92rem; color: var(--grey-700); margin: 0; }

/* ============ Video ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--teal-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: block;
}

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247,244,236,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-600);
  font-size: 1.3rem;
}

.video-card-body { padding: 16px 18px 20px; }
.video-card-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: white;
}
.video-card-body span { font-size: 0.8rem; color: var(--gold-400); }

/* ============ Contact ============ */
.contact-section { background: var(--teal-900); color: var(--cream-100); }
.contact-section h2 { color: white; }
.contact-section .section-head p { color: var(--cream-dim); }

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

.contact-card {
  background: var(--teal-800);
  border: 1px solid rgba(199,153,100,0.22);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--cream-100);
  transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: var(--gold-500); }

.contact-card .icon {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
}
.contact-card .icon svg { display: block; }
.contact-card b { display: block; color: white; margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; }
.contact-card span { font-size: 0.88rem; color: var(--cream-dim); }

/* ============ Footer ============ */
footer {
  background: var(--teal-950);
  color: var(--cream-dim);
  padding: 44px 0;
  font-size: 0.88rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--cream-dim); text-decoration: none; font-weight: 500; }
.footer-socials a:hover { color: var(--gold-400); }

.footer-credit {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(247, 244, 236, 0.1);
  font-size: 0.78rem;
  color: rgba(201, 211, 206, 0.6);
}

.footer-credit a {
  color: rgba(201, 211, 206, 0.75);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--gold-400);
}

/* ============ Utility ============ */
.section-alt { background: var(--cream-50); }

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.pill {
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--cream-100);
  border: 1px solid rgba(28,57,61,0.15);
  color: var(--teal-900);
  font-weight: 500;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3/2;
  background: var(--teal-950);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.02); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 33, 36, 0.94);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(247,244,236,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .gallery-grid { gap: 16px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lakes-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(28,57,61,0.12);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(28,57,61,0.06); }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(28,57,61,0.2);
    border-radius: var(--radius-sm);
    background: none;
    font-size: 1.1rem;
    color: var(--teal-900);
    cursor: pointer;
    order: 2;
  }
  .site-header .wrap { flex-wrap: wrap; }
  .btn.btn-primary.header-cta { order: 3; padding: 10px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .site-header .wrap {
    height: auto;
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
  }
  .brand img { height: 36px; width: 36px; }
  .brand-word { font-size: 1.4rem; }
  .brand-word span { font-size: 0.52rem; }
  .btn.btn-primary.header-cta { padding: 8px 12px; font-size: 0.78rem; }
  .nav-toggle { width: 34px; height: 34px; font-size: 1rem; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-card { padding: 14px 12px; }
  .contact-card .icon { margin-bottom: 6px; }
  .contact-card .icon svg { width: 18px; height: 18px; }
  .contact-card b { font-size: 0.85rem; margin-bottom: 2px; }
  .contact-card span { font-size: 0.72rem; line-height: 1.3; word-break: break-word; }
  .lake-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats { flex-wrap: wrap; row-gap: 20px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
}
