/*
Theme Name: Sea Pearl Seafood
Theme URI: https://www.sea-pearl.com/
Author: Sea Pearl Seafood, Inc.
Description: Custom "Gulf Coast heritage label" theme for Sea Pearl Seafood — family-owned Gulf shrimp processor in Bayou La Batre, Alabama, est. 1966. Built September 2026 to replace the Delicieux theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: Proprietary — for use by Sea Pearl Seafood, Inc. only.
Text Domain: seapearl
*/

/* ============================================================
   Sea Pearl Seafood — Gulf Coast Heritage Label
   Vintage crate-label / editorial print aesthetic:
   warm paper, ink navy, shrimp coral, brass. Est. 1966.
   ============================================================ */

:root {
  /* Brand: rope-script navy + ship's-wheel silver from sp-logo1.png */
  --paper: #f6f3ec;
  --paper-deep: #ebe7da;
  --ink: #1b3a70;
  --ink-deep: #102448;
  --coral: #d4593f;
  --coral-deep: #b8472f;
  --brass: #6e7681;
  --brass-light: #b3bac3;
  --cream: #f6f3ec;
  --hairline: rgba(27, 58, 112, 0.22);
  --hairline-light: rgba(246, 243, 236, 0.22);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Libre Franklin", "Franklin Gothic Medium", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--coral-deep); text-decoration: none; }
a:hover { color: var(--coral); }

::selection { background: var(--coral); color: var(--cream); }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Type helpers ---------- */

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- Top bar + Header ---------- */

.topbar {
  background: var(--ink-deep);
  color: rgba(246, 243, 236, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
}

.topbar a { color: var(--brass-light); }
.topbar a:hover { color: var(--cream); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--ink); }
.brand:hover { color: var(--ink); }

.brand-mark { width: 46px; height: 46px; flex-shrink: 0; color: var(--ink); }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-top: 0.3rem;
}

.main-nav { display: flex; align-items: center; gap: 1.7rem; }

.main-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover { color: var(--coral-deep); }
.main-nav a.active { color: var(--coral-deep); border-bottom-color: var(--coral); }

.nav-phone {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.1rem !important;
  border: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink) !important;
  box-shadow: 3px 3px 0 var(--coral);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-phone:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--coral); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--hairline-light);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 6rem 0 7rem;
  max-width: 760px;
}

.hero .kicker { color: var(--brass-light); margin-bottom: 1.6rem; display: inline-block; }
.hero .kicker::before, .hero .kicker::after { content: " ✦ "; color: var(--coral); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

.hero .lede {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.78);
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }

/* Load-in stagger */
.hero .kicker, .hero h1, .hero .lede, .hero-actions {
  animation: riseIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 { animation-delay: 0.12s; }
.hero .lede { animation-delay: 0.24s; }
.hero-actions { animation-delay: 0.36s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ghost year */
.ghost-year {
  position: absolute;
  right: -1rem;
  bottom: -2.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(9rem, 22vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246, 243, 236, 0.13);
  pointer-events: none;
  user-select: none;
}

/* Inspection stamp with live years-in-business counter */
.stamp-badge {
  position: absolute;
  top: 3.5rem;
  right: 5%;
  width: 218px;
  height: 218px;
  color: var(--brass-light);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.7rem;
  border: 2px solid var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-coral {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink-deep);
}
.btn-coral:hover {
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink-deep);
}

.hero .btn-coral, .page-hero .btn-coral, .cta-band .btn-coral {
  border-color: var(--cream);
  box-shadow: 4px 4px 0 var(--brass);
}
.hero .btn-coral:hover, .page-hero .btn-coral:hover, .cta-band .btn-coral:hover {
  box-shadow: 7px 7px 0 var(--brass);
}

.btn-line {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 243, 236, 0.5);
}
.btn-line:hover { color: var(--cream); border-color: var(--cream); transform: translate(-2px, -2px); }

/* ---------- Scallop edge (ink → paper) ---------- */

.edge-scallop {
  height: 26px;
  background-image: radial-gradient(circle at 26px -9px, var(--ink) 24px, transparent 25px);
  background-size: 52px 26px;
  background-repeat: repeat-x;
}

/* ---------- Marquee ticker ---------- */

.marquee {
  background: var(--coral);
  color: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7rem 0;
  white-space: nowrap;
}

.marquee i { font-style: normal; color: var(--ink); padding: 0 1.2rem; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: 5rem 0; }

.section-head { max-width: 660px; margin-bottom: 3.2rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.7rem 0 0.9rem;
}

.section-head h2 em { font-style: italic; font-weight: 500; color: var(--coral-deep); }

.section-head p { color: rgba(27, 58, 112, 0.75); font-size: 1.04rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Credentials ledger ---------- */

.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.cred {
  padding: 1.8rem 1.6rem 2rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cred:nth-child(3n) { border-right: none; }
.cred:nth-child(n+4) { border-bottom: none; }

.cred h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cred p { font-size: 0.9rem; line-height: 1.6; color: rgba(27, 58, 112, 0.72); }

/* ---------- Product label cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

.card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.card-body { padding: 1.7rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.card-body p { font-size: 0.94rem; color: rgba(27, 58, 112, 0.75); flex: 1; margin-bottom: 1.3rem; }

.card-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.card-link::after { content: " →"; }

/* ---------- Quote band ---------- */

.quote-band {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band .qmark {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 0.5;
  color: var(--coral);
  opacity: 0.35;
  display: block;
  margin: 2.4rem auto 0;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.45;
  max-width: 840px;
  margin: 0 auto 1.4rem;
}

.quote-band cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 3rem;
}

/* ---------- Split (about teaser) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--coral);
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--hairline-light);
}

.split-visual .big-year {
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
}

.split-visual .big-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 0.9rem;
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.7rem 0 1.1rem;
}

.split-content p { color: rgba(27, 58, 112, 0.78); margin-bottom: 1.1rem; }

.checklist { list-style: none; margin: 1.5rem 0 2rem; border-top: 1px solid var(--hairline); }
.checklist li {
  padding: 0.65rem 0 0.65rem 1.9rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  font-size: 0.97rem;
}
.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0.2rem;
  color: var(--coral);
}

/* ---------- Page hero (interior) ---------- */

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--hairline-light);
  pointer-events: none;
}

.page-hero .hero-inner { padding: 4.2rem 0 5rem; max-width: 720px; }

.page-hero .kicker { color: var(--brass-light); margin-bottom: 1.2rem; display: inline-block; }
.page-hero .kicker::before, .page-hero .kicker::after { content: " ✦ "; color: var(--coral); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--coral); }

.page-hero p { color: rgba(246, 243, 236, 0.78); font-size: 1.06rem; max-width: 600px; }

/* ---------- Product spec sections ---------- */

.product-section {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 3rem;
  padding: 3.4rem 0;
  border-bottom: 1px solid var(--hairline);
}
.product-section:last-of-type { border-bottom: none; }

.product-aside h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.12;
  scroll-margin-top: 110px;
}

.product-aside .aside-rule {
  width: 56px;
  height: 4px;
  background: var(--coral);
  margin-top: 1.1rem;
}

.product-main p { color: rgba(27, 58, 112, 0.8); margin-bottom: 1.1rem; }
.product-main p strong { color: var(--ink); }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.93rem;
  margin: 1.4rem 0;
}

.spec-table th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: left;
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 1.1rem;
}

.spec-table td {
  padding: 0.75rem 1.1rem;
  border-top: 1px solid var(--hairline);
  vertical-align: top;
}

.spec-table td:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  white-space: nowrap;
  width: 130px;
  padding-top: 0.95rem;
}

.size-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 1.2rem; }

.size-pill {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--ink);
  background: var(--paper-deep);
  padding: 0.28rem 0.75rem;
}

.note {
  border: 1.5px dashed var(--brass);
  background: rgba(110, 118, 129, 0.08);
  padding: 1rem 1.3rem;
  font-size: 0.93rem;
}

/* ---------- Timeline ledger ---------- */

.timeline { list-style: none; border-top: 2px solid var(--ink); }

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--hairline);
}

.timeline .year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--coral-deep);
  line-height: 1.2;
}

.timeline p { color: rgba(27, 58, 112, 0.78); font-size: 0.98rem; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.8rem;
  align-items: start;
}

.contact-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.contact-card p { font-size: 0.95rem; color: rgba(27, 58, 112, 0.8); margin-bottom: 0.3rem; }
.contact-card a { font-weight: 700; }

.contact-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
  padding: 2.2rem 2.2rem 2.4rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.form-row { margin-bottom: 1.5rem; }

.form-row label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ink);
  padding: 0.5rem 0;
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus { outline: none; border-bottom-color: var(--coral); }

.form-status { margin-top: 1rem; font-size: 0.92rem; font-weight: 600; }
.form-status.ok { color: #2e6b3f; }
.form-status.err { color: var(--coral-deep); }

.map-embed {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--brass-light);
  margin-top: 3rem;
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; filter: sepia(0.25) saturate(0.85); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--coral);
  padding: 3rem 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--hairline-light);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.cta-band h2 em { font-style: italic; font-weight: 500; color: var(--brass-light); }

.cta-band p { color: rgba(246, 243, 236, 0.78); }

.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: rgba(246, 243, 236, 0.72);
  border-top: 4px solid var(--coral);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--hairline-light);
}

.footer-grid h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.1rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a { color: rgba(246, 243, 236, 0.72); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--coral); }
.footer-grid p { font-size: 0.93rem; }

.footer-brand .brand-name { color: var(--cream); font-size: 1.6rem; }
.footer-brand .brand-tag { color: var(--brass-light); }
.footer-brand p { margin-top: 0.9rem; max-width: 280px; font-size: 0.9rem; font-style: italic; font-family: var(--font-display); }

.social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-links a {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(246, 243, 236, 0.35);
  display: grid;
  place-items: center;
  color: rgba(246, 243, 236, 0.8);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-links a:hover { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.social-links svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 236, 0.45);
}

/* ---------- Brand logo image ---------- */

.brand-logo { height: 104px; width: auto; }

.footer-logo-card {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 0.7rem 1rem;
  margin-bottom: 0.4rem;
}
.footer-logo-card img { height: 64px; width: auto; }

/* ---------- Announcement bar (Boja's Foods acquisition) ---------- */

.annc {
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.55rem 4%;
}
.annc strong { color: var(--ink); }
.annc .annc-flag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--coral);
  padding: 0.15rem 0.55rem;
  margin-right: 0.6rem;
  white-space: nowrap;
}

/* ---------- Photography ---------- */

.card-photo {
  height: 175px;
  width: 100%;
  object-fit: contain;
  background: #fff;
  padding: 0.7rem;
  border-bottom: 2px solid var(--ink);
}

.product-photo {
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--brass-light);
  margin-top: 1.3rem;
  background: #fff;
}
.product-photo img { width: 100%; height: 185px; object-fit: contain; padding: 0.6rem; }

.photo-band {
  position: relative;
  background:
    linear-gradient(rgba(16, 36, 72, 0.82), rgba(16, 36, 72, 0.82)),
    url("images/shrimp-bg1.jpg") center / cover no-repeat;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--cream);
  text-align: center;
}

.split-visual.has-photo {
  background:
    linear-gradient(rgba(16, 36, 72, 0.55), rgba(16, 36, 72, 0.78)),
    url("images/IMG_1746.jpg") center / cover no-repeat;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero .kicker, .hero h1, .hero .lede, .hero-actions { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .creds { grid-template-columns: repeat(2, 1fr); }
  .cred:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .cred:nth-child(2n) { border-right: none; }
  .cred:nth-child(n+4) { border-bottom: 1px solid var(--hairline); }
  .cred:nth-child(n+5) { border-bottom: none; }
}

/* Badge drops out of the corner and sits below the hero text */
@media (max-width: 1120px) {
  .stamp-badge {
    position: static;
    display: block;
    width: 170px;
    height: 170px;
    margin: -2.5rem auto 3rem;
  }
}

@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-visual { min-height: 280px; }
  .product-section { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline li { grid-template-columns: 120px 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; }
  .topbar-inner span { display: none; }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 4% 1.2rem;
    display: none;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--hairline);
  }

  .main-nav a.nav-phone {
    margin-top: 1rem;
    text-align: center;
    box-shadow: 3px 3px 0 var(--coral);
  }

  .brand-logo { height: 72px; }

  .hero-inner { padding: 4rem 0 5.5rem; }
  .ghost-year { font-size: 8rem; bottom: -1.4rem; }
  .creds { grid-template-columns: 1fr; }
  .cred, .cred:nth-child(2n), .cred:nth-child(3n) { border-right: none; }
  .cred, .cred:nth-child(n+4), .cred:nth-child(n+5) { border-bottom: 1px solid var(--hairline); }
  .cred:last-child { border-bottom: none; }
  .cta-band { padding: 2.2rem 1.8rem; }
  .timeline li { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- Quick Facts stat band ---------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  background: var(--paper);
}
.stat {
  padding: 1.7rem 1.5rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat:nth-child(3n) { border-right: none; }
.stat:nth-child(n+4) { border-bottom: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--coral-deep);
}
.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.stat-sub { font-size: 0.85rem; color: var(--brass); margin-top: 0.2rem; }

/* ---------- Story pull-quote ---------- */
.pullquote {
  border-left: 4px solid var(--coral);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 1.8rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Family grid ---------- */
.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.family-card {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.5rem 1.5rem 1.6rem;
}
.family-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}
.family-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.7rem;
}
.family-card p { font-size: 0.92rem; color: var(--ink-soft, #51626f); }

@media (max-width: 760px) {
  .statbar { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+4) { border-bottom: 1px solid var(--hairline); }
  .stat:nth-child(n+5) { border-bottom: none; }
}

/* ---------- Alternating section band (About page) ---------- */
.section-alt {
  background: var(--paper-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
