/* Preserve complete fishing photographs instead of forcing portrait crops. */
.season-grid article {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.season-grid img {
  height: 340px;
  object-fit: contain;
  object-position: center;
  background: #0b0e0b;
  opacity: 1;
  transition: opacity .25s;
}

.season-grid article:hover img {
  transform: none;
  opacity: .92;
}

.season-grid article::after {
  display: none;
}

.season-grid article div {
  position: relative;
  inset: auto;
  padding: 26px 30px 30px;
  min-height: 210px;
}

.gallery-grid img {
  height: auto;
  object-fit: contain;
  object-position: center;
  overflow: visible;
}

@media (max-width: 900px) {
  .season-grid article { min-height: 0; }
  .season-grid img { height: auto; max-height: 620px; }
  .season-grid article div { min-height: 0; }
}

/* A distinctive heritage wordmark paired with a restrained utility subtitle. */
.brand > span,
.footer-brand > span {
  font-family: "Cormorant SC", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: .78;
  letter-spacing: .035em;
}

.brand > span b,
.footer-brand > span b {
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .32em;
}

@media (max-width: 560px) {
  .brand > span { font-size: 21px; }
  .brand > span b { margin-top: 6px; font-size: 8px; }
}

/* Art-directed hero crops retain both the angler and tarpon on every screen. */
.hero-picture,
.hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

/* Match the hero's height to the wide photograph on desktop, revealing more
   of the original frame without borders or distortion. */
.hero {
  height: min(100vh, 56.25vw);
  min-height: 760px;
}

.hero-copy {
  top: 22%;
  bottom: auto;
}

@media (max-width: 700px) {
  .hero { height: 100vh; min-height: 720px; }
  .hero-picture img { object-position: 53% center; }
  .hero-copy { top: 120px; bottom: auto; }
}

/* Let the new tarpon photograph sit fully visible beside Ren's story. */
.captain-image {
  background: #0b0e0b;
}

.captain-image > img {
  object-fit: contain;
  object-position: center;
}

/* Pro-team relationships presented as established brand credentials. */
.partners {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: center;
  padding: 80px 7vw;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners h2 {
  margin: 0 0 16px;
  font: 600 clamp(44px, 5vw, 74px)/.9 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.partners p:last-child { margin: 0; color: #4b514b; }

.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-logos a {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 38px;
  background: white;
}

.partner-logos img {
  width: 100%;
  max-width: 360px;
  max-height: 100px;
  object-fit: contain;
}

/* Show every skiff in full; no forced zoom or clipped hulls. */
.boat-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 12px;
}

.boat-collage img,
.boat-collage img:first-child,
.boat-collage img:nth-child(2) {
  width: 100%;
  height: 430px;
  grid-column: auto;
  grid-row: auto;
  object-fit: contain;
  object-position: center;
  background: #b7ae99;
}

.boat-collage img:last-child {
  grid-column: 1 / -1;
  height: 520px;
}

@media (max-width: 900px) {
  .partners { grid-template-columns: 1fr; gap: 36px; padding: 70px 6vw; }
  .partner-logos a { min-height: 140px; padding: 28px; }
  .boat-collage { grid-template-columns: 1fr; grid-template-rows: none; }
  .boat-collage img,
  .boat-collage img:first-child,
  .boat-collage img:nth-child(2),
  .boat-collage img:last-child { grid-column: auto; height: auto; max-height: 620px; margin: 0; }
}

@media (max-width: 560px) {
  .partner-logos { grid-template-columns: 1fr; }
}
