/* ============================================================
   SOCOTA FISHERIES — Page Styles V2
   Light · Ocean · Eco · 2025
   ============================================================ */

/* ─── Hero certs bar ─── */
.hero-certs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-cert-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ocean-light);
  flex-shrink: 0;
}
.hero-cert-sep {
  color: rgba(255,255,255,0.25);
  font-size: 14px;
}

/* ─── About section ─── */
.section-sf-about {
  padding: var(--section-v) 0;
}
.sf-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.sf-eco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.sf-about-photo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sf-photo-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sf-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.sf-photo-main:hover img { transform: scale(1.04); }
.sf-photo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sf-stat {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--t-med);
}
.sf-stat:hover { background: var(--ocean-pale); }
.sf-stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--ocean);
  line-height: 1;
}
.sf-stat-unit {
  font-family: var(--font-display);
  font-size: 0.65em;
  color: var(--ocean);
}
.sf-stat-label {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ─── Products section ─── */
.section-sf-products {
  padding: var(--section-v) 0;
  background: var(--white);
}
.sf-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sf-product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  transition: var(--t-med);
}
.sf-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.sf-product-img {
  position: relative;
  overflow: hidden;
}
.sf-product-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.sf-product-card:hover .sf-product-img img { transform: scale(1.06); }
.sf-product-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 12px;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sf-product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-product-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.sf-product-specs {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sf-product-specs span {
  font-size: 12px;
  color: var(--slate);
}
.sf-product-specs strong { color: var(--charcoal); }

/* ─── Certifications photo section ─── */
.section-sf-certs {
  position: relative;
  padding: var(--section-v) 0;
  overflow: hidden;
}
.sf-certs-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sf-certs-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sf-certs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,107,138,0.75) 0%,
    rgba(28,25,22,0.82) 100%
  );
}
.sf-certs-content {
  position: relative;
  z-index: 2;
}
.sf-certs-content .section-header { max-width: 640px; }
.sf-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.sf-cert-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--t-med);
}
.sf-cert-item:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.sf-cert-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
}
.sf-cert-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.sf-cert-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ─── Sustainability section ─── */
.section-sf-sustain {
  padding: var(--section-v) 0;
}
.sf-sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.sf-sustain-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sf-sustain-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,103,65,0.15);
}
.sf-sustain-kpi strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
}
.sf-sustain-kpi span { font-size: 11px; color: var(--slate); letter-spacing: 0.06em; }
.sf-sustain-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sf-sustain-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sf-sustain-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.sf-sustain-photo:hover img { transform: scale(1.04); }
.sf-sustain-badge-lg {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-soft);
}
.sf-sustain-badge-icon { font-size: 28px; flex-shrink: 0; }
.sf-sustain-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ─── Process steps ─── */
.section-sf-process {
  padding: var(--section-v) 0;
  background: var(--parchment);
}
.sf-process-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
.sf-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--sand);
  transition: var(--t-med);
}
.sf-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--ocean);
}
.sf-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.3;
}
.sf-step-icon { font-size: 28px; }
.sf-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.sf-step p { font-size: 13px; color: var(--slate); line-height: 1.65; }
.sf-step-arrow {
  font-size: 24px;
  color: var(--stone);
  flex-shrink: 0;
}

/* ─── CTA section ─── */
.section-sf-cta {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-cta-photo {
  position: absolute;
  inset: 0;
}
.sf-cta-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sf-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,107,138,0.45), rgba(28,25,22,0.7));
}
.sf-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-v) var(--gutter);
  width: 100%;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .sf-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .sf-sustain-grid { grid-template-columns: 1fr; gap: 48px; }
  .sf-certs-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sf-process-steps {
    flex-direction: column;
    gap: 16px;
  }
  .sf-step-arrow { transform: rotate(90deg); }
  .sf-photo-stats { grid-template-columns: repeat(3, 1fr); }
  .sf-sustain-kpis { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sf-products-grid { grid-template-columns: 1fr; }
  .sf-certs-grid { grid-template-columns: 1fr; }
  .sf-photo-stats { grid-template-columns: 1fr; }
  .hero-certs { gap: 10px; }
}
