
/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ocean-light);
  text-decoration: none;
}
a:hover {
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 33, 55, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.nav-logo:hover {
  color: #ffffff;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  border-radius: 6px !important;
  padding: 0.4rem 1rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: white;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  color: white;
  /*padding: 5rem 0 4rem;*/
  padding: 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 50%,
    var(--ocean) 100%
  );
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 40%;
  filter: brightness(1.1) saturate(1.15);
  transform: scale(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at center top,
      rgba(13, 33, 55, 0.3) 0%,
      rgba(13, 33, 55, 0.72) 70%
    ),
    linear-gradient(to bottom, rgba(13, 33, 55, 0.4), rgba(13, 33, 55, 0.75));
  backdrop-filter: blur(0.5px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* wave effect at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  opacity: 0.9;
}

.hero-text-shield {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertically centers content inside the circle */
  text-align: center;

  width: 100%;
  max-width: 680px;

  border-radius: var(--radius-lg);

  /* Deep navy tint at 80% opacity matching your site's color scheme */
  background: rgba(13, 33, 55, 0.8);

  padding: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Constrains text so it doesn't clip out of the circle's rounded top/bottom edges */
.hero-text-shield > * {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 480px;
}

/* Allows the pills and buttons a bit more horizontal freedom than the paragraph text */
.hero-pills,
.hero-actions {
  max-width: 800px;
}

/* Spacing layout adjustments */
.hero-eyebrow {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 750px; /* Allows the big headline to spread out a bit more on desktop */
}

.hero-tagline {
  margin-top: 0;
  /*margin-bottom: 2rem;*/
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .hero-text-shield {
    padding: 5rem 6rem; /* Mid-size screens get tighter side padding */
  }
}

@media (max-width: 768px) {
  .hero-text-shield {
    background-image: none;
    background: rgba(
      13,
      33,
      55,
      0.85
    ); /* Clean fallback block card for mobile */
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    width: 92%;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.88;
  max-width: 560px;
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--teal);
  color: white;
}
.btn-primary:hover {
  background: var(--ocean-light);
  color: white;
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--sand);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline-dark:hover {
  background: var(--ocean);
  color: white;
}

/* ── Today's Fish Banner ────────────────────────────────────────────────────── */
.todays-fish-section {
  padding: 4rem 0 0;
  background: var(--sand);
  position: relative;
}

.todays-fish-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.todays-fish-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--navy);
  line-height: 1.1;
}

.todays-fish-header h2 span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
  font-style: normal;
  font-family: var(--font-body);
}

.freshness-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(20, 143, 154, 0.1);
  border: 1px solid rgba(20, 143, 154, 0.3);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.freshness-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
  }
}

.fish-today-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.fish-today-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fish-today-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fish-today-card .fish-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.fish-today-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.fish-today-img picture,
.fish-today-img img {
  display: block;
  width: 100%;
  height: auto;
}

.fish-today-card .fish-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.fish-today-card .fish-origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 0.35rem;
  overflow: hidden;
  min-width: 0;
}

.fish-today-card .fish-origin span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.fish-today-card .fish-note {
  display: inline-block;
  background: var(--coral);
  color: white;
  border-radius: 100px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.fish-today-card.featured {
  border-color: var(--teal);
  background: white;
}

.todays-pick-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.todays-pick-badge svg {
  fill: var(--gold);
  stroke: var(--gold);
}

.todays-fish-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 1rem;
  grid-column: 1 / -1;
}

.todays-fish-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(20, 143, 154, 0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Wave divider: sand → cream ──────────────────────────────────────────────
   Sits at the bottom of .todays-fish-section. Fill matches .catalogue background
   so the transition is seamless. No extra HTML needed — it's a pseudo-element.  */
.todays-fish-wave {
  display: block;
  width: 100%;
  padding-top: 2rem;
  line-height: 0;
  overflow: hidden;
}

.todays-fish-wave svg {
  display: block;
  width: 100%;
}

/* ── Fish Catalogue Section ─────────────────────────────────────────────────── */
.catalogue {
  padding-top: 2rem;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.cat-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.cat-btn:hover {
  border-color: var(--ocean-light);
  color: var(--ocean);
}
.cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.cat-select {
  display: none;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.25rem;
}

.fish-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.fish-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fish-card[data-hidden="true"] {
  display: none;
}

.fish-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: white;
  position: relative;
  display: flex;
  align-items: center;
}

.fish-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.fish-card:hover .fish-img-wrap img {
  transform: scale(1.05);
}

.fish-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--teal-light);
  color: var(--teal);
}

.fish-img-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--navy-mid);
}

.fish-fav-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--coral);
  color: white;
  border-radius: 100px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-gf {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 0.1em 0.45em;
  vertical-align: middle;
  margin-left: 0.35em;
}

.fish-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fish-cat-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.fish-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.fish-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.fish-card-origin {
  margin-top: auto;
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-light);
  overflow: hidden;
  min-width: 0;
}

.fish-card-origin svg {
  flex-shrink: 0;
}

.fish-card-origin span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* ── About Section ──────────────────────────────────────────────────────────── */
.about {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.5rem 0 0.6rem;
}

.about-prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.78;
}

.about-prose strong {
  color: var(--text);
}

.about-prose ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-prose li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-prose li::before {
  content: "—";
  flex-shrink: 0;
}

.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
}

.info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.info-label {
  font-weight: 600;
  color: var(--text);
  display: block;
}
.info-value {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.info-card a {
  color: var(--ocean-light);
  font-weight: 500;
}
.info-card a:hover {
  color: var(--navy);
}

/* ── Loyalty Card ───────────────────────────────────────────────────────────── */
.loyalty-card-section {
  padding: 4rem 0;
  background: var(--navy-mid);
  color: white;
  text-align: center;
}

.loyalty-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.loyalty-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: white;
}

.loyalty-text p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.loyalty-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.loyalty-steps li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.loyalty-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

.loyalty-card-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease;
}

.loyalty-card-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.loyalty-card-img img {
  width: 100%;
  display: block;
}

.loyalty-card-placeholder {
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  aspect-ratio: 1.6/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
}

.loyalty-card-placeholder .lc-icon {
  font-size: 2.5rem;
}

/* ── Find Us ────────────────────────────────────────────────────────────────── */
.find-us {
  padding-top: 4.5rem;
  background: white;
}

.find-us h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.markets-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.93rem;
}

.market-day {
  font-weight: 700;
  color: var(--navy);
  min-width: 70px;
}

.market-name {
  color: var(--text);
}
.market-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.big-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: block;
  box-shadow: var(--shadow-md);
}

/* ── News / Facebook ────────────────────────────────────────────────────────── */
.news {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  background: var(--sand);
  text-align: center;
}

.fb-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.fb-page {
  width: 100% !important;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fb-page:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 60px rgba(13, 33, 55, 0.15);
}

.fb-page,
.fb-page span,
.fb-page iframe {
  width: 100% !important;
}
.fb-page iframe {
  min-height: 700px !important;
}

/* ── Sustainability Strip ────────────────────────────────────────────────────── */
.sustain-strip {
  background: var(--teal);
  color: white;
  padding: 0 0 1.5rem 0;
  text-align: center;
}

.sustain-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.sustain-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.sustain-item svg {
  opacity: 0.85;
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li {
  font-size: 0.875rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Made North Canterbury membership badge ── */
.footer-made {
  display: flex;
  align-items: center;
  justify-content: center;
}
.made-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.made-badge:hover {
  opacity: 1;
}
.made-badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.made-badge-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-bottom span {
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.footer-bottom a:hover {
  color: white;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid,
  .find-us-grid,
  .loyalty-inner,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .loyalty-card-img {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-links h4 {
    display: none;
  }
  .footer-links ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  .footer-links li + li::before {
    content: "·";
    margin: 0 0.45rem;
    color: rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 1147px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .nav-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 0 3rem;
    min-height: 480px;
  }

  .fish-today-grid {
    grid-template-columns: 1fr 1fr;
  }
  .catalogue-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cat-filter-bar {
    display: none;
  }
  .cat-select {
    display: block;
  }

  .sustain-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .fb-page {
    border-radius: 14px;
  }
  .fb-page iframe {
    min-height: 520px !important;
  }
}

@media (max-width: 440px) {
  .fish-today-grid {
    grid-template-columns: 1fr;
  }
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Utilities ──────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Shop nav badge ──────────────────────────────────────────────────────────── */
.nav-shop {
  position: relative;
}

.nav-new-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--coral);
  color: white;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  vertical-align: super;
  line-height: 1;
  margin-left: 0.3em;
  pointer-events: none;
}

/* ── Shop teaser ─────────────────────────────────────────────────────────────── */
.shop-teaser {
  padding: 3.5rem 0;
  background: var(--navy);
  color: white;
}

.shop-teaser-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; /* mirrors footer-top exactly */
  gap: 2.5rem;
  align-items: center;
}

.shop-teaser-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}

.shop-teaser-content {
  grid-column: 2 / 4; /* spans the two right columns */
}

.shop-teaser-cart-col {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-teaser-cart {
  height: 66%;
  width: auto;
  opacity: 0.1;
  filter: invert(1);
  pointer-events: none;
  user-select: none;
}

.shop-teaser-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.shop-teaser-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .shop-teaser-inner {
    grid-template-columns: 1fr;
  }
  .shop-teaser-content {
    grid-column: 1;
  }
  .shop-teaser-cart-col {
    display: none;
  }
  .shop-teaser-logo-img {
    max-width: 140px;
  }
}

/* ── Contact form ────────────────────────────────────────────────────────────── */
.contact-section {
  padding: 4rem 0;
  background: var(--sand);
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-form-intro p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-form-alternatives {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form-alternatives li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-alternatives svg {
  flex-shrink: 0;
  color: var(--teal);
}
.contact-form-alternatives a {
  color: var(--navy);
  font-weight: 600;
}

.contact-form {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form-logo-img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: white;
  display: block;
  max-width: 410px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── Form field primitives ───────────────────────────────────────────────────── */
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form .form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: white;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 143, 154, 0.12);
}

/* Honeypot — visually hidden but not display:none (some bots check) */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.cf-turnstile {
  max-width: 0;
}

.contact-form-status {
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0;
  min-height: 0;
  transition: padding 0.15s;
}

.contact-status-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  padding: 0.75rem 1rem;
}

.contact-status-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
  padding: 0.75rem 1rem;
}

.required {
  color: var(--teal);
}

@media (max-width: 720px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Component helpers ────────────────────────────────────────────────────── */
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.date-badge {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.freshness-dot-warned {
  background: #f59e0b;
  box-shadow: none;
}
.availability-cta {
  text-align: center;
  margin-top: 2rem;
}
.photo-full {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 500px;
}
.photo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.award-sidebar-photo {
  margin-top: 0.5rem;
  max-height: 520px;
}
.loyalty-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.market-label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.fb-link:hover {
  color: #ffffff;
}
.footer-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Legal pages (privacy) ─────────────────────────────────────────────────── */
.legal-main { padding: 3.5rem 0 5rem; }
.legal-prose { max-width: 760px; margin: 0 auto; }
.legal-prose h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.legal-prose h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 0.6rem;
}
.legal-prose p,
.legal-prose li {
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-prose p { margin-bottom: 0.9rem; }
.legal-prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.legal-prose li { margin-bottom: 0.45rem; }
