.activities-page {
  --act-sand: #f7f3ed;
  --act-sand-dark: #e8e0d4;
  --act-terracotta: #c45a3b;
  --act-terracotta-dark: #a84830;
  --act-teal: #2a7c8c;
  --act-teal-light: #3a9aad;
  --act-navy: #1a3a4a;
  --act-coral: #e07b5f;
  --act-white: #ffffff;
  --act-cream: #fdfbf8;
  --act-text: #2d3436;
  --act-text-light: #636e72;
  --act-text-muted: #95a5a6;
  --act-gold: #d4a853;
  --act-sunset: #f39c6b;
  --act-radius: 12px;
  --act-radius-sm: 8px;
  --act-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --act-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--act-text);
  line-height: 1.7;
}

.act-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--act-navy);
}
.act-hero__bg {
  position: absolute;
  inset: 0;
}
.act-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.act-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 74, 0.85) 0%, rgba(42, 124, 140, 0.6) 50%, rgba(196, 90, 59, 0.4) 100%);
}
.act-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  margin-top: 80px;
  max-width: 900px;
}
.act-hero__badge {
  display: inline-block;
  background: var(--act-terracotta);
  color: var(--act-white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.act-hero__title {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--act-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .act-hero__title {
    font-size: 2.25rem;
  }
}
.act-hero__subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .act-hero__subtitle {
    font-size: 1.1rem;
  }
}
.act-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--act-coral);
  color: var(--act-white);
  padding: 1rem 2rem;
  border-radius: var(--act-radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(224, 123, 95, 0.4);
}
.act-hero__cta:hover {
  background: var(--act-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 90, 59, 0.5);
  color: var(--act-white);
  text-decoration: none;
}
.act-hero__cta i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.act-hero__cta:hover i {
  transform: translateY(3px);
}

.act-nav {
  background: var(--act-white);
  border-bottom: 1px solid var(--act-sand-dark);
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
.act-nav.is-sticky {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.act-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.act-nav__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.act-nav__breadcrumb a {
  color: var(--act-teal);
  text-decoration: none;
}
.act-nav__breadcrumb a:hover {
  text-decoration: underline;
}
.act-nav__breadcrumb span {
  color: var(--act-text-muted);
}
.act-nav__breadcrumb .current {
  color: var(--act-text);
  font-weight: 500;
}
.act-nav__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.act-nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--act-text-light);
  background: var(--act-sand);
  text-decoration: none;
  transition: all 0.25s ease;
}
.act-nav__links a:hover {
  background: var(--act-teal);
  color: var(--act-white);
}
.act-nav__links a.active {
  background: var(--act-teal);
  color: var(--act-white);
}
.act-nav__links a i {
  font-size: 0.8rem;
}

.act-intro {
  padding: 4rem 0;
  background: var(--act-cream);
}
.act-intro__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) {
  .act-intro__grid {
    grid-template-columns: 1fr;
  }
}
.act-intro__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.act-intro__content p {
  font-size: 1.15rem;
  color: var(--act-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.act-intro__content p:last-child {
  margin-bottom: 0;
}
.act-intro__image {
  border-radius: var(--act-radius);
  overflow: hidden;
  box-shadow: var(--act-shadow);
}
.act-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}
.act-intro__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .act-intro__highlights {
    grid-template-columns: 1fr;
  }
}
.act-intro__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.act-intro__highlight i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--act-teal);
  color: var(--act-white);
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}
.act-intro__highlight span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--act-text);
}

.act-categories {
  padding: 5rem 0;
  background: var(--act-sand);
}
.act-categories__header {
  text-align: center;
  margin-bottom: 3rem;
}
.act-categories__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 1rem;
}
.act-categories__header p {
  font-size: 1.2rem;
  color: var(--act-text-light);
  max-width: 650px;
  margin: 0 auto;
}
.act-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .act-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .act-categories__grid {
    grid-template-columns: 1fr;
  }
}

.act-card {
  background: var(--act-white);
  border-radius: var(--act-radius);
  overflow: hidden;
  box-shadow: var(--act-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.act-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--act-shadow-hover);
}
.act-card:hover .act-card__image img {
  transform: scale(1.05);
}
.act-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.act-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.act-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  pointer-events: none;
}
.act-card__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: var(--act-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--act-white);
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.act-card__body {
  padding: 1.5rem;
}
.act-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 0.75rem;
}
.act-card__title a {
  color: inherit;
  text-decoration: none;
}
.act-card__title a:hover {
  color: var(--act-teal);
}
.act-card__desc {
  font-size: 1rem;
  color: var(--act-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.act-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--act-teal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.act-card__link:hover {
  gap: 0.75rem;
  text-decoration: none;
}
.act-card__link i {
  font-size: 0.85rem;
}

.act-section {
  padding: 4rem 0;
}
.act-section--alt {
  background: var(--act-sand);
}
.act-section--dark {
  background: var(--act-navy);
  color: var(--act-white);
}
.act-section--dark h2, .act-section--dark h3, .act-section--dark h4 {
  color: var(--act-white);
}
.act-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}
.act-section--dark .act-section__header p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
}
.act-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.act-section__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 0.75rem;
}
.act-section__header p {
  font-size: 1.15rem;
  color: var(--act-text-light);
  max-width: 650px;
  margin: 0 auto;
}

.act-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .act-list {
    grid-template-columns: 1fr;
  }
}
.act-list--single {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.act-item {
  display: flex;
  gap: 1.25rem;
  background: var(--act-white);
  padding: 1.5rem;
  border-radius: var(--act-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--act-teal);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.act-item:hover {
  box-shadow: var(--act-shadow);
  border-color: var(--act-terracotta);
}
.act-item__number {
  width: 36px;
  height: 36px;
  background: var(--act-sand);
  color: var(--act-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.act-item__content {
  flex: 1;
}
.act-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 0.5rem;
}
.act-item__desc {
  font-size: 0.95rem;
  color: var(--act-text-light);
  line-height: 1.65;
  margin: 0;
}
.act-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--act-text-muted);
}
.act-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.act-item__meta span i {
  color: var(--act-teal);
}
.act-item__image {
  width: 220px;
  flex-shrink: 0;
  border-radius: var(--act-radius);
  overflow: hidden;
}
.act-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.act-item--with-image {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
.act-item--with-image .act-item__number {
  display: none;
}
.act-item--with-image .act-item__image {
  border-radius: 0;
  border-top-left-radius: var(--act-radius);
  border-bottom-left-radius: var(--act-radius);
  min-height: 180px;
}
.act-item--with-image .act-item__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 575px) {
  .act-item--with-image {
    flex-direction: column;
  }
  .act-item--with-image .act-item__image {
    width: 100%;
    height: 180px;
    border-radius: 0;
    border-top-left-radius: var(--act-radius);
    border-top-right-radius: var(--act-radius);
  }
}

.act-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .act-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .act-features {
    grid-template-columns: 1fr;
  }
}

.act-feature {
  background: var(--act-white);
  border-radius: var(--act-radius);
  overflow: hidden;
  box-shadow: var(--act-shadow);
}
.act-feature__image {
  height: 180px;
  overflow: hidden;
  background: var(--act-sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.act-feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.act-feature__image i {
  font-size: 3rem;
  color: var(--act-text-muted);
}
.act-feature__body {
  padding: 1.5rem;
}
.act-feature__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 0.5rem;
}
.act-feature__subtitle {
  font-size: 0.9rem;
  color: var(--act-teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.act-feature__desc {
  font-size: 0.95rem;
  color: var(--act-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.act-feature__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--act-sand-dark);
}
.act-feature__stats .stat {
  text-align: center;
  flex: 1;
  min-width: 60px;
}
.act-feature__stats .stat .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--act-navy);
}
.act-feature__stats .stat .label {
  font-size: 0.75rem;
  color: var(--act-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.act-feature__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1rem;
}
.act-feature__price .amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--act-terracotta);
}
.act-feature__price .unit {
  font-size: 0.9rem;
  color: var(--act-text-muted);
}

.act-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .act-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .act-info {
    grid-template-columns: 1fr;
  }
}
.act-info__item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--act-white);
  border-radius: var(--act-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.act-info__item svg.svg-inline--fa {
  display: block;
  color: rgb(45, 52, 54);
  height: 28px;
  width: auto;
  margin: 12px auto 1.5rem;
}
.act-info__item img {
  display: block;
  width: auto;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 0.7rem;
}
.act-info__item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--act-navy);
  margin: 0 0 0.5rem 0;
}
.act-info__item p {
  font-size: 0.9rem;
  color: var(--act-text-light);
  line-height: 1.5;
  margin: 0;
}

.act-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--act-terracotta) 0%, var(--act-coral) 100%);
  text-align: center;
}
.act-cta__content {
  max-width: 700px;
  margin: 0 auto;
}
.act-cta__content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--act-white);
  margin-bottom: 1rem;
}
.act-cta__content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.act-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.act-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--act-radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.act-cta__btn--primary {
  background: var(--act-white);
  color: var(--act-terracotta);
}
.act-cta__btn--primary:hover {
  background: var(--act-cream);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--act-terracotta);
}
.act-cta__btn--secondary {
  background: transparent;
  color: var(--act-white);
  border: 2px solid var(--act-white);
}
.act-cta__btn--secondary:hover {
  background: var(--act-white);
  color: var(--act-terracotta);
  text-decoration: none;
}
.act-cta__phone {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.act-cta__phone a {
  color: var(--act-white);
  font-weight: 600;
  text-decoration: underline;
}
.act-cta__phone a:hover {
  text-decoration: none;
}

.act-related {
  padding: 4rem 0;
  background: var(--act-navy);
}
.act-related__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.act-related__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--act-white);
  margin-bottom: 0.5rem;
}
.act-related__header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}
.act-related__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .act-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .act-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.act-related__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--act-radius);
  text-decoration: none;
  transition: all 0.25s ease;
}
.act-related__link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  text-decoration: none;
}
.act-related__link.active {
  background: var(--act-teal);
}
.act-related__link i {
  font-size: 1.5rem;
  color: var(--act-coral);
}
.act-related__link span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--act-white);
  text-align: center;
}

.act-operators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .act-operators {
    grid-template-columns: 1fr;
  }
}

.act-operator {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--act-white);
  border-radius: var(--act-radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease;
}
.act-operator:hover {
  box-shadow: var(--act-shadow);
}
.act-operator__icon {
  width: 48px;
  height: 48px;
  background: var(--act-sand);
  border-radius: var(--act-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-operator__icon i {
  font-size: 1.25rem;
  color: var(--act-teal);
}
.act-operator__info {
  flex: 1;
  min-width: 0;
}
.act-operator__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--act-navy);
  margin-bottom: 0.25rem;
}
.act-operator__desc {
  font-size: 0.85rem;
  color: var(--act-text-light);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.act-operator__link {
  color: var(--act-teal);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.act-operator__link:hover {
  color: var(--act-terracotta);
}

.act-tips {
  background: var(--act-sand);
  border-radius: var(--act-radius);
  padding: 2rem;
  border-left: 4px solid var(--act-gold);
}
.act-tips__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 1rem;
}
.act-tips__title i {
  color: var(--act-gold);
}
.act-tips__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.act-tips__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--act-text-light);
  line-height: 1.6;
}
.act-tips__list li i {
  color: var(--act-teal);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.act-species {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .act-species {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .act-species {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .act-species {
    grid-template-columns: 1fr;
  }
}

.act-fish {
  text-align: center;
  padding: 1.5rem;
  background: var(--act-white);
  border-radius: var(--act-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.act-fish:hover {
  transform: translateY(-4px);
  box-shadow: var(--act-shadow);
}
.act-fish__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--act-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.act-fish__icon i {
  font-size: 1.75rem;
  color: var(--act-teal);
}
.act-fish__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.act-fish__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 0.35rem;
}
.act-fish__season {
  font-size: 0.85rem;
  color: var(--act-text-muted);
}
.act-fish--with-image {
  padding: 0;
  overflow: hidden;
}
.act-fish--with-image .act-fish__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.act-fish--with-image .act-fish__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.act-fish--with-image:hover .act-fish__image img {
  transform: scale(1.08);
}
.act-fish--with-image .act-fish__name,
.act-fish--with-image .act-fish__season {
  padding: 0 1rem;
}
.act-fish--with-image .act-fish__name {
  margin-top: 1rem;
}
.act-fish--with-image .act-fish__season {
  padding-bottom: 1rem;
}

.act-calendar {
  background: var(--act-white);
  border-radius: var(--act-radius);
  overflow: hidden;
  box-shadow: var(--act-shadow);
}
.act-calendar__header {
  background: var(--act-navy);
  color: var(--act-white);
  padding: 1rem 1.5rem;
}
.act-calendar__header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.act-calendar__body {
  padding: 1.5rem;
}
.act-calendar__row {
  display: grid;
  grid-template-columns: 120px repeat(12, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .act-calendar__row {
    grid-template-columns: 80px repeat(12, 1fr);
  }
}
.act-calendar__species {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--act-navy);
}
@media (max-width: 767px) {
  .act-calendar__species {
    font-size: 0.75rem;
  }
}
.act-calendar__month {
  text-align: center;
  font-size: 0.7rem;
  padding: 0.35rem 0;
  border-radius: 3px;
}
.act-calendar__month--header {
  color: var(--act-text-muted);
  font-weight: 500;
}
.act-calendar__month--active {
  background: var(--act-teal);
  color: var(--act-white);
}
.act-calendar__month--peak {
  background: var(--act-terracotta);
  color: var(--act-white);
}
.act-calendar__month--inactive {
  background: var(--act-sand);
  color: var(--act-text-muted);
}
.act-calendar__legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--act-sand-dark);
  justify-content: center;
  flex-wrap: wrap;
}
.act-calendar__legend span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--act-text-light);
}
.act-calendar__legend span::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.act-calendar__legend span.peak::before {
  background: var(--act-terracotta);
}
.act-calendar__legend span.good::before {
  background: var(--act-teal);
}
.act-calendar__legend span.off::before {
  background: var(--act-sand);
}

.act-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .act-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .act-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.act-gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--act-radius-sm);
  overflow: hidden;
}
.act-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.act-gallery__item img:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .act-hero {
    min-height: 55vh;
  }
  .act-hero__content {
    margin-top: 60px;
  }
  .act-nav {
    top: 50px;
  }
  .act-nav .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .act-nav__links {
    width: 100%;
    justify-content: flex-start;
  }
  .act-section {
    padding: 3rem 0;
  }
  .act-section__header h2 {
    font-size: 1.75rem;
  }
  .act-cta {
    padding: 3.5rem 0;
  }
  .act-cta__content h2 {
    font-size: 1.75rem;
  }
}