:root {
  --ink: #10293d;
  --muted: #607286;
  --line: #dbe9f6;
  --paper: #f6fbff;
  --white: #ffffff;
  --whale: #7bb4ec;
  --blue: #2f84c7;
  --deep: #123f63;
  --accent: #f28f5b;
  --shadow: 0 24px 70px rgba(18, 63, 99, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(123, 180, 236, .22), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(47, 132, 199, .14), transparent 26rem),
    var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(247, 251, 252, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 37, 51, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 74px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(47, 132, 199, .16);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.site-nav .nav-fish {
  padding: 10px 13px;
  border: 0;
  border-radius: 8px;
  color: #294656;
  background: transparent;
  font-size: .95rem;
  font-weight: 650;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.language-options {
  display: inline-flex;
  gap: 6px;
}

.language-option {
  position: relative;
  width: 34px;
  height: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 41, 61, .18);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(18, 63, 99, .08);
  cursor: pointer;
  flex: 0 0 auto;
}

.language-option.is-active {
  outline: 3px solid rgba(47, 132, 199, .26);
  border-color: var(--blue);
}

.flag-de {
  background: linear-gradient(to bottom, #111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-tr {
  background: #e30a17;
}

.flag-tr::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}

.flag-tr::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e30a17;
}

.flag-en {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(147deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(to bottom, transparent 36%, #fff 36% 44%, #c8102e 44% 56%, #fff 56% 64%, transparent 64%),
    linear-gradient(to right, transparent 36%, #fff 36% 44%, #c8102e 44% 56%, #fff 56% 64%, transparent 64%),
    #012169;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav .nav-fish:hover {
  background: rgba(123, 180, 236, .18);
  color: var(--deep);
}

.site-nav .nav-cta,
.site-nav .nav-fish {
  margin-left: 6px;
  color: white;
  background: var(--deep);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active,
.site-nav .nav-fish:hover {
  background: var(--blue);
  color: white;
}

.site-nav .nav-fish {
  animation: fish-button-pulse 1.9s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, #eef8ff, #dceefa 46%, #ffffff);
}

.hero img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(72vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 251, 255, .98) 0%, rgba(238, 248, 255, .92) 34%, rgba(238, 248, 255, .52) 58%, rgba(238, 248, 255, .12) 100%),
    radial-gradient(circle at 12% 72%, rgba(123, 180, 236, .24), transparent 24rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 36%;
  height: 42%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .68);
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--blue); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 { font-size: 1.15rem; letter-spacing: 0; }

.hero p:not(.eyebrow) {
  max-width: 650px;
  color: #486579;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-size: 1.04rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary { background: var(--blue); color: white; }
.button.secondary { background: rgba(255,255,255,.72); color: var(--deep); border: 1px solid rgba(47, 132, 199, .24); }
.button.light { background: white; color: var(--deep); }
.button.fish-button {
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(123, 180, 236, .55);
  background: rgba(255, 255, 255, .92);
  color: var(--deep);
  animation: fish-logo-pulse 2.2s ease-in-out infinite;
  box-shadow: 0 10px 26px rgba(47, 132, 199, .16);
}

.fish-button__mark {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 18px rgba(47, 132, 199, .16);
}

.fish-button__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes fish-button-pulse {
  0%, 100% {
    background: var(--deep);
    box-shadow: 0 0 0 0 rgba(47, 132, 199, .18);
    transform: scale(1);
  }
  50% {
    background: #2475ad;
    box-shadow: 0 0 0 9px rgba(47, 132, 199, .2);
    transform: scale(1.025);
  }
}

@keyframes fish-logo-pulse {
  0%, 100% {
    border-color: rgba(123, 180, 236, .55);
    box-shadow: 0 10px 26px rgba(47, 132, 199, .16);
    transform: scale(1);
  }
  50% {
    border-color: var(--whale);
    box-shadow: 0 10px 28px rgba(47, 132, 199, .24), 0 0 0 7px rgba(123, 180, 236, .18);
    transform: scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.fish-button,
  .site-nav .nav-fish {
    animation: none;
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-strip div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 52px);
  background: white;
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.stats-strip span { color: var(--muted); }

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.lead-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.quality-grid,
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 0;
}

.service-grid article,
.quality-grid article,
.values article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(6, 54, 70, .06);
}

.service-grid p,
.quality-grid p,
.values p,
.product-row p,
.timeline span,
.contact-info p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: rgba(123, 180, 236, .22);
  color: var(--blue);
  font-weight: 850;
}

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 clamp(20px, 5vw, 64px) clamp(72px, 9vw, 120px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--deep), var(--blue));
}

.band h2 { max-width: 820px; margin-bottom: 0; }

.page-hero {
  padding: clamp(76px, 10vw, 142px) clamp(20px, 5vw, 64px) clamp(58px, 8vw, 98px);
  background:
    linear-gradient(120deg, rgba(247, 251, 252, .98), rgba(229, 243, 246, .94)),
    url("seafood-warehouse.png") center/cover;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact { padding-bottom: clamp(44px, 6vw, 72px); }

.page-hero h1 {
  max-width: 920px;
  color: var(--deep);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.15rem;
}

.product-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 34px 0;
  background: var(--paper);
}

.product-row span {
  color: var(--blue);
  font-weight: 850;
}

.product-row h2 {
  margin: 8px 0 0;
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 92px);
  background: white;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-left: 4px solid var(--blue);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 800;
}

input, textarea {
  width: 100%;
  border: 1px solid #c9dbe2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfeff;
  font: inherit;
}

input:focus, textarea:focus {
  outline: 3px solid rgba(123, 180, 236, .28);
  border-color: var(--blue);
}

.wide { grid-column: 1 / -1; }

.contact-form .button { justify-self: start; }

.contact-info {
  padding: 30px;
  border-radius: 8px;
  color: white;
  background: var(--deep);
}

.contact-info a {
  display: block;
  margin-top: 10px;
  color: white;
  font-weight: 750;
}

.contact-info .social-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(123, 180, 236, .14);
}

.contact-info hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  margin: 28px 0;
}

.contact-info p { color: rgba(255,255,255,.74); }

body.modal-open {
  overflow: hidden;
}

.fish-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
}

.fish-modal.is-open {
  display: flex;
}

.fish-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 38, .58);
  backdrop-filter: blur(10px);
}

.fish-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(123, 180, 236, .24), transparent 24rem),
    #ffffff;
  box-shadow: 0 28px 90px rgba(6, 24, 38, .28);
}

.fish-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.fish-modal__intro {
  max-width: 720px;
  color: var(--muted);
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.fish-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 42px rgba(18, 63, 99, .08);
}

.fish-card img {
  width: 100%;
  height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #eef7fd;
}

.fish-card h3,
.fish-card p {
  padding-inline: 18px;
}

.fish-card h3 {
  min-height: 2.75em;
  margin: 16px 0 6px;
  line-height: 1.25;
}

.fish-card p {
  min-height: 3.15em;
  margin-bottom: 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 64px);
  color: rgba(255,255,255,.82);
  background: #041e29;
}

.site-footer p { margin: 4px 0 0; color: rgba(255,255,255,.6); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover { color: white; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .site-nav .nav-cta,
  .site-nav .nav-fish {
    margin-left: 0;
    width: 100%;
  }

  .language-control {
    justify-content: space-between;
    margin-left: 0;
    padding: 8px 4px;
  }

  .stats-strip,
  .two-column,
  .product-row,
  .split-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .quality-grid,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .fish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 16px; }
  .brand small { display: none; }
  .hero { min-height: 680px; }
  .hero img {
    width: 100%;
    opacity: .42;
  }
  .hero-overlay { background: linear-gradient(180deg, rgba(246, 251, 255, .96), rgba(238, 248, 255, .74)); }
  .stats-strip,
  .service-grid,
  .quality-grid,
  .values,
  .contact-form,
  .fish-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .button,
  .hero-actions .button { width: 100%; }
  .hero-actions .fish-button { order: -1; }
  .site-footer { flex-direction: column; }
}
