/* ====== Aquashess Fish Farm — design tokens ====== */
:root {
  --ink: #0b2b33;
  --pond: #0b6e93;
  --pond-deep: #073445;
  --lime: #8fbf3b;
  --lime-deep: #6c9a29;
  --sand: #f6f1e2;
  --sand-deep: #ece3cc;
  --clay: #c97a3d;
  --paper: #fffdf8;

  --display: "Fraunces", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== Nav ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 43, 51, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand-text span { color: var(--pond); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--lime);
}
.nav-cta {
  background: var(--pond);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--pond-deep); }

.nav-toggle { display: none; }

/* ====== Eyebrow / labels ====== */
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--pond-deep);
  opacity: 0.8;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  font-weight: 700;
  color: var(--pond-deep);
}
.hero h1 em {
  font-style: italic;
  color: var(--pond);
}
.hero p.lead {
  font-size: 1.1rem;
  max-width: 46ch;
  color: rgba(11,43,51,0.8);
  margin-bottom: 28px;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.96rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pond); color: #fff; }
.btn-primary:hover { background: var(--pond-deep); }
.btn-outline { border-color: var(--pond-deep); color: var(--pond-deep); }
.btn-outline:hover { background: var(--pond-deep); color: #fff; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); }

/* ====== Stage bar — signature element ====== */
.stage-bar {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stage-bar .stage {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  background: var(--sand-deep);
  color: rgba(11,43,51,0.5);
  position: relative;
  border-top: 2px solid rgba(11,43,51,0.15);
}
.stage-bar .stage.active {
  background: var(--pond);
  color: #fff;
  border-top-color: var(--lime);
}
.stage-bar .stage:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(11,43,51,0.35);
  z-index: 2;
  font-size: 0.8rem;
}
.stage-bar .stage.active:not(:last-child)::after { color: var(--pond); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual .ring {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pond-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(7, 52, 69, 0.5);
  border: 6px solid var(--lime);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* wave divider */
.wave { display: block; width: 100%; height: 48px; }
.wave path { fill: var(--sand); }

/* ====== Product card image ====== */
.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-deep);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Gallery ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 10px;
  background: linear-gradient(to top, rgba(7,52,69,0.88), transparent);
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== Story image ====== */
.story-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.story-image img { width: 100%; display: block; }

/* ====== CAC badge ====== */
.cac-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  background: rgba(143, 191, 59, 0.14);
  border: 1px solid rgba(143, 191, 59, 0.45);
}
.cac-badge .seal {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pond-deep);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cac-badge .text {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--pond-deep);
  line-height: 1.3;
}
.cac-badge .text strong { display: block; font-size: 0.78rem; }

.cac-badge.on-dark {
  background: rgba(143, 191, 59, 0.14);
  border-color: rgba(143, 191, 59, 0.5);
}
.cac-badge.on-dark .text { color: var(--sand); }
.cac-badge.on-dark .seal { background: var(--lime); color: var(--pond-deep); }

/* ====== Trust strip ====== */
.trust-strip {
  background: var(--pond-deep);
  color: var(--sand);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.trust-item { display: flex; align-items: baseline; gap: 10px; min-width: 200px; }
.trust-item .num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lime);
}
.trust-item .label { font-size: 0.88rem; opacity: 0.85; max-width: 22ch; }

/* ====== Section base ====== */
section { padding: 72px 0; }
.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 10px 0 14px;
  color: var(--pond-deep);
  font-weight: 700;
}
.section-head p { color: rgba(11,43,51,0.75); }

/* ====== Product cards ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--paper);
  border: 1px solid rgba(11,43,51,0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .card-top {
  padding: 26px 26px 18px;
}
.product-card .tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
}
.product-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 8px 0 10px;
  color: var(--pond-deep);
}
.product-card p { color: rgba(11,43,51,0.78); font-size: 0.96rem; }
.product-card .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(11,43,51,0.15);
}
.product-card .spec .k {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: rgba(11,43,51,0.5);
  letter-spacing: 0.06em;
}
.product-card .spec .v { font-weight: 600; font-size: 0.92rem; }
.product-card .card-bottom { margin-top: auto; }

/* ====== About / story band ====== */
.story-band {
  background: var(--pond-deep);
  color: var(--sand);
}
.story-band .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.story-band h2 { font-family: var(--display); font-size: clamp(1.8rem, 3.4vw, 2.3rem); margin-top: 10px; }
.story-band p { color: rgba(246,241,226,0.82); }
.story-band .eyebrow { color: var(--lime); opacity: 1; }
.story-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
}
.story-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ====== Locations ====== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.location-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .location-grid.three { grid-template-columns: 1fr; } }
.location-card {
  background: var(--paper);
  border: 1px solid rgba(11,43,51,0.08);
  border-radius: 16px;
  padding: 26px;
}
.location-card .tag { font-family: var(--mono); font-size: 0.72rem; color: var(--pond); text-transform: uppercase; letter-spacing: 0.08em;}
.location-card h3 { font-family: var(--display); margin: 10px 0 6px; font-size: 1.25rem; color: var(--pond-deep); }
.location-card p { margin: 0; color: rgba(11,43,51,0.75); }

/* ====== Contact strip ====== */
.contact-strip {
  background: var(--lime);
}
.contact-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.contact-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
.contact-strip .btn-primary { background: var(--pond-deep); }
.contact-strip .btn-primary:hover { background: var(--ink); }

/* ====== Footer ====== */
footer {
  background: var(--ink);
  color: var(--sand);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
footer h4 {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 0 0 14px;
}
footer p, footer a { color: rgba(246,241,226,0.78); font-size: 0.92rem; text-decoration: none; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(246,241,226,0.15);
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(246,241,226,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ====== How to order ====== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--paper);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(11,43,51,0.08);
}
.step .n {
  font-family: var(--mono);
  color: var(--lime-deep);
  font-weight: 700;
  font-size: 0.85rem;
}
.step h3 { font-family: var(--display); font-size: 1.15rem; margin: 8px 0; color: var(--pond-deep); }
.step p { font-size: 0.92rem; color: rgba(11,43,51,0.75); margin: 0; }

/* ====== Contact page specifics ====== */
.contact-hero {
  padding: 56px 0 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid rgba(11,43,51,0.08);
  border-radius: 16px;
  padding: 26px;
}
.contact-card .tag { font-family: var(--mono); font-size: 0.72rem; color: var(--clay); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card h3 { font-family: var(--display); margin: 8px 0 4px; color: var(--pond-deep); }
.contact-card a.big-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 6px;
  color: var(--pond);
  text-decoration: none;
}
.contact-card a.big-link:hover { text-decoration: underline; }

/* ====== Responsive ====== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-visual .ring { max-width: 260px; }
  .product-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-band .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
