/* Laguna Madre Fishing Co. — coastal preview styles */
:root {
  --deep: #0a2744;
  --deep-mid: #123a5c;
  --bay: #1a5f7a;
  --aqua: #2a9d8f;
  --foam: #e8f4f8;
  --sand: #e8d5b7;
  --sand-dark: #c4a574;
  --coral: #e07a5f;
  --ink: #0f1c2e;
  --muted: #4a5d6e;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(10, 39, 68, 0.18);
  --header-h: 72px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--bay); }
a:hover { color: var(--aqua); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 39, 68, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 213, 183, 0.15);
}

.nav {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  line-height: 1.15;
}

.brand-mark {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-text {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
}
.brand-text em {
  font-style: normal;
  color: var(--sand);
  font-weight: 500;
  font-size: 0.82rem;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  margin-left: 0.35rem;
}
.nav-cta:hover {
  background: #c96a52 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--deep);
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.25rem;
    display: none;
    border-bottom: 1px solid rgba(232, 213, 183, 0.15);
  }
  .nav-menu.is-open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 0.35rem; }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,39,68,0.35) 0%, rgba(10,39,68,0.55) 45%, rgba(10,39,68,0.92) 100%),
    linear-gradient(90deg, rgba(10,39,68,0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
  max-width: 38rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 0.75rem;
}
.eyebrow.light { color: var(--sand); }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.25rem; }

.hero-lede,
.lead {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: #c96a52;
  border-color: #c96a52;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.15rem;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-lede {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .split.reverse > :first-child { order: 0; }
  .split.reverse > :last-child { order: 0; }
}

.about { background: var(--white); }
.about .lead { color: var(--ink); }
.about p { color: var(--muted); }
.about p strong { color: var(--ink); }

.trust-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--deep-mid);
  font-weight: 500;
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 700;
}

.about-photo,
.boat-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img,
.boat-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.boat-photo img { aspect-ratio: 5 / 4; }
.about-photo figcaption {
  padding: 0.75rem 1rem;
  background: var(--deep);
  color: var(--sand);
  font-size: 0.9rem;
}

.boat { background: linear-gradient(180deg, var(--foam) 0%, #dceef5 100%); }

.feature-grid {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 520px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
.feature-grid li {
  background: var(--white);
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 95, 122, 0.12);
  font-size: 0.95rem;
  color: var(--muted);
}
.feature-grid strong {
  display: block;
  color: var(--deep);
  margin-bottom: 0.15rem;
}

.soft-note {
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 3px solid var(--sand-dark);
  padding-left: 1rem;
  margin: 1.25rem 0 0;
}

/* —— Species —— */
.fish { background: var(--deep); color: var(--white); }
.fish .eyebrow { color: var(--sand); }
.fish .section-lede { color: rgba(255,255,255,0.75); }
.fish h2 { color: var(--white); }

.species-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .species-grid { grid-template-columns: repeat(3, 1fr); }
}

.species-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232, 213, 183, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}
.species-card h3 { color: var(--sand); margin-bottom: 0.5rem; }
.species-card p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
}
.species-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.fish-aside {
  margin: 2rem 0 0;
  padding: 1.15rem 1.35rem;
  background: rgba(42, 157, 143, 0.15);
  border-radius: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
}
.fish-aside strong { color: var(--sand); }

/* —— Gallery —— */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep-mid);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.tall {
  aspect-ratio: 3 / 4;
}
@media (min-width: 700px) {
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; height: 100%; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}

/* —— Reels —— */
.reels {
  background: linear-gradient(180deg, #0d2f4a 0%, var(--deep) 100%);
  color: var(--white);
}
.reels .eyebrow { color: var(--sand); }
.reels .section-lede { color: rgba(255,255,255,0.75); }
.reels h2 { color: var(--white); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .reels-grid { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
}

.reel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.reel-card:hover,
.reel-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--sand);
  background: rgba(255,255,255,0.09);
  color: var(--white);
  outline: none;
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  background: #061828;
  overflow: hidden;
}
.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-cue {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224, 122, 95, 0.92);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  pointer-events: none;
}

.reel-caption {
  margin: 0;
  padding: 0.85rem 0.9rem 0.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-link-hint {
  padding: 0.35rem 0.9rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sand);
}

/* —— Book —— */
.book {
  background:
    linear-gradient(135deg, rgba(10,39,68,0.88), rgba(26,95,122,0.85)),
    url("assets/photos/12-offshore-catch.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 5rem 0;
}

.book-panel {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .book-panel {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
    gap: 2.5rem;
  }
}

.book-copy .lead {
  color: rgba(255,255,255,0.9);
  max-width: 34rem;
}

.book-meta {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.book-aside {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(8px);
}
.book-aside h3 {
  color: var(--sand);
  margin-bottom: 0.75rem;
}
.book-aside ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.book-aside li { margin-bottom: 0.4rem; }

.fb-link {
  color: var(--sand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 213, 183, 0.4);
}
.fb-link:hover { color: var(--white); border-color: var(--white); }

/* —— Footer —— */
.site-footer {
  background: #061828;
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}
.footer-brand {
  font-family: var(--display);
  color: var(--sand);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.site-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.site-footer a:hover { color: var(--sand); }
.footer-note { font-size: 0.85rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-item img,
  .reel-card,
  .btn { transition: none; }
}
