* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Ysabeau Office', 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  color: #1f1f1f;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  margin: 0;
  color: #1f1f1f;
}

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

.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 16px 60px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  height: 86px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 54px;
  width: auto;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #0F4A82;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #0F4A82;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.logo-text small {
  font-size: 12px;
  color: #808080;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .hamburger-lines span {
  width: 25px;
  height: 3px;
  background-color: #1f1f1f;
  border-radius: 2px;
}

.close-x {
  display: none;
  font-size: 28px;
  color: #1f1f1f;
  line-height: 1;
}

.menu-toggle.active .hamburger-lines {
  display: none;
}

.menu-toggle.active .close-x {
  display: block;
}

.top-nav nav {
  display: flex;
  justify-content: flex-end;
}

.top-nav nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  width: auto;
  justify-content: flex-end;
}

.top-nav nav li {
  display: flex;
  justify-content: center;
}

.top-nav nav a {
  padding: 4px 0;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.top-nav nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #0F4A82;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.top-nav nav a:hover::after,
.top-nav nav a:focus::after {
  transform: scaleX(1);
}

.top-nav nav a.active::after,
.top-nav nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  height: 750px;              /* reduce height to crop more of the bottom */
  min-height: 600px;

  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,   /* almost no vignette at top */
      rgba(0, 0, 0, 0.10) 40%,  /* gradual fade */
      rgba(0, 0, 0, 0.55) 70%,  /* darker lower half */
      rgba(0, 0, 0, 1) 100%  /* heaviest at bottom */
    ),
    url('assets/close-up-view-raw-fish-slices-with-ice-tomato-slices 1.png');

  background-size: cover;
  background-position: center bottom; /* crop visually from bottom */
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
}


.hero-content {
  max-width: 800px;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-content p {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 24px;
  color: #f0f0f0;
}

.hero-subtext {
  max-width: 100%;
  white-space: normal;
  word-break: keep-all;
  font-weight:lighter;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.hero-actions .btn {
  min-width: 0;
  height: 47px;
  padding: 10px 40px;
  gap: 10px;
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 1;
  border: 1px solid #ffffff;
  white-space: nowrap;
}

.hero-actions .btn:first-child {
  width: 271px;
}

.hero-actions .btn:last-child {
  width: 218px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
}

.btn-primary {
  background-color: #0F4A82;
  color: #ffffff;
  border: 1px solid #0F4A82;
}

.btn-white {
  background-color: #ffffff;
  color: #0F4A82;
}

.btn-white:hover {
  filter: brightness(0.95);
}

.btn-primary:hover {
  filter: brightness(0.9);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-outline.accent {
  color: #0F4A82;
  border-color: #0F4A82;
}

.btn-outline.accent:hover {
  background-color: rgba(15, 74, 130, 0.1);
}

.intro,
.numbers,
.quality,
.careers {
  padding: 60px 60px;
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.intro h2 {
  font-size: 40px;
  margin-bottom: 24px;
  font-weight: 100;
}

.highlight {
  color: #518BC4;
}

.intro .highlight,
.intro-text .highlight {
  color: #0F4A82;
}

.intro p {
  margin-bottom: 16px;
  color: #4f4f4f;
}

.intro .btn-outline.accent {
  width: 262px;
  height: 47px;
  padding: 10px 40px;
  gap: 10px;
  border-width: 1px;
  margin-top: 24px;
}

.numbers {
  background-color: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.numbers .section-heading {
  margin: 0 0 60px 0;
  text-align: left;
  max-width: none;
}

.numbers .section-heading h3 {
  font-weight: 100;
}

.section-heading h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 60px;
  margin-bottom: 80px;
  align-items: start;
  width: 100%;
}

.metric {
  text-align: left;
}

.metric .value {
  display: block;
  font-size: 72px;
  font-weight: 300;
  color: #0F4A82;
  line-height: 1.2;
  margin-bottom: 12px;
}

.metric .label {
  font-size: 18px;
  color: #4f4f4f;
}

.product-range {
  max-width: none;
  margin: 0;
  text-align: left;
}

.product-range h4 {
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 16px;
}

.product-range p {
  color: #4f4f4f;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.product-item h5 {
  font-size: 18px;
  margin-bottom: 0;
}

.partners {
  background-color: #022D53;
  color: #ffffff;
  padding: 60px 60px 60px;
}

.partners-heading {
  max-width: none;
  margin: 0 0 60px 0;
  text-align: left;
}

.partners-heading h3 {
  font-size: 36px;
  font-weight: 100;
  color: #ffffff;
  margin-bottom: 16px;
}

.partners-heading p {
  color: #d6d6d6;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.partner-card {
  background-color: #ffffff;
  color: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partner-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-content h4 {
  font-size: 24px;
  margin-bottom: 0;
}

.card-content p {
  color: #4f4f4f;
  margin-bottom: 0;
}

.card-content .btn {
  align-self: baseline;
  color: #0F4A82;
  border-color: #0F4A82;
  width: 222px;
  height: 47px;
  padding: 10px 40px;
  gap: 10px;
  border-width: 1px;
  margin-top: 20px;
}

.card-content .btn:hover {
  background-color: rgba(15, 74, 130, 0.1);
}

.quality-heading {
  max-width: none;
  margin: 0 0 60px 0;
  text-align: left;
}

.quality-heading h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.quality-heading p {
  color: #4f4f4f;
  margin-bottom: 0;
}

.quality-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: none;
  margin: 0;
  text-align: left;
  align-items: start;
}

.quality-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #4f4f4f;
  font-weight: 600;
}

.quality-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.quality-item span {
  line-height: 1.4;
}

.careers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.careers-text h3 {
  font-size: 36px;
  margin-bottom: 24px;
}

.careers-text p {
  color: #4f4f4f;
  margin-bottom: 16px;
}

.careers-text .btn-outline.accent {
  width: 211px;
  height: 47px;
  padding: 10px 40px;
  gap: 10px;
  border-width: 1px;
}

.careers-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.careers-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.cta-footer {
  background-color: #022D53;
  color: #ffffff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer {
  background-color: #313131;
  color: #ffffff;
}

.footer-bottom {
  background-color: #0f1726;
  color: #cfd6e4;
  padding: 22px 60px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-bottom a {
  color: #cfd6e4;
}

.footer-divider {
  margin: 0 10px;
  opacity: 0.6;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 100;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-content p {
  color: #d6d6d6;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #ffffff;
  color: #0F4A82;
  width: 281px;
  height: 47px;
  padding: 10px 40px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(1500%) hue-rotate(195deg) brightness(0.9) contrast(1.2);
}

@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 48px;
  }

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

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

  .partner-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .top-nav {
    padding: 16px 24px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .top-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .top-nav nav.active {
    max-height: 500px;
  }

  .top-nav nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 24px;
    width: 100%;
  }

  .top-nav nav li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .top-nav nav li:last-child {
    border-bottom: none;
  }

  .top-nav nav a {
    width: 100%;
    padding: 16px 0;
    height: auto;
    justify-content: flex-start;
  }

  .top-nav nav a::after {
    display: none;
  }

  .hero {
    padding: 80px 24px;
    height: auto;
    min-height: 70vh;
  }

  .intro,
  .careers {
    grid-template-columns: 1fr;
  }

  .intro-image,
  .careers-image {
    order: 2;
  }

  .intro,
  .numbers,
  .quality,
  .careers,
  .partners,
  .cta-footer,
  .footer-bottom,
  .page-intro,
  .partners-detail,
  .export-partners {
    padding: 80px 24px;
  }

  .hero.hero--partners {
    padding: 80px 24px;
    height: auto;
    min-height: 70vh;
  }

  .partner-split,
  .export-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }

  .partner-split .partner-image,
  .export-grid .export-image {
    order: -1;
    width: 100%;
  }

  .partner-image,
  .export-image {
    width: 100%;
  }

  .partner-image img,
  .export-image img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 280px;
    object-fit: cover;
  }

  .partner-panel,
  .export-text {
    width: 100%;
  }

  .site-footer {
    padding: 22px 24px;
  }

  .partners-detail-heading {
    max-width: 100%;
    width: 100%;
  }

  .partners-detail-heading h3 {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .metrics-grid {
    gap: 32px;
  }

  .quality-icons {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .quality-item {
    align-items: center;
    text-align: center;
  }

  .cta-footer {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------ */
/* Partners page                  */
/* ------------------------------ */

.hero.hero--partners {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.12) 40%,
      rgba(0, 0, 0, 0.55) 72%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    url('assets/partner shake.png');
  background-position: center;
  height: 750px;
  min-height: 600px;
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.page-intro {
  padding: 200px 60px;
  background: #ffffff;
}

.page-intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.page-intro h2 {
  font-size: 34px;
  font-weight: 100;
  color: #143b5a;
  margin-bottom: 18px;
}

.page-intro p {
  color: #143b5a;
  opacity: 0.92;
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.partners-detail {
  padding: 70px 60px 90px;
  background: #ffffff;
}

.partners-detail-heading {
  max-width: 560px;
  margin-bottom: 34px;
}

.partners-detail-heading h3 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 12px;
}

.accent-blue {
  color: #2a6fca;
}

.partners-detail-heading p {
  color: #4f4f4f;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.partner-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.partner-image img {
  border-radius: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

.partner-panel h4 {
  font-size: 30px;
  font-weight: 100;
  margin-bottom: 10px;
}

.muted {
  color: #4f4f4f;
}

.partner-panel p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
}

.benefits {
  margin-top: 18px;
  border-top: 1px solid #e7e7e7;
}

.benefit {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e7e7e7;
}

.benefit-icon {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #1f1f1f;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 4px;
}

.benefit-text h5 {
  font-size: 18px;
  margin-bottom: 4px;
}

.benefit-text p {
  margin: 0;
  color: #4f4f4f;
}

.link {
  color: #2a6fca;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-note {
  margin-top: 18px;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.export-partners {
  padding: 70px 60px 80px;
  background: #ffffff;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.export-text h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.export-text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
}

.export-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  max-width: 100%;
}

.site-footer {
  background: #0f1b2b;
  color: #d6dbe3;
  padding: 22px 60px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy,
.footer-meta {
  margin: 0;
  font-size: 13px;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #d6dbe3;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------ */
/* About page                     */
/* ------------------------------ */

.about-hero {
  position: relative;
  height: 750px;
  min-height: 600px;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.10) 40%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 1) 100%
    ),
    url('assets/close-up-view-rawd-fish-slices-with-ice-tomato-slices 1.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
}

.about-hero-content {
  max-width: 800px;
  margin-bottom: 60px;
}

.about-hero-content h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.about-hero-content p {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #f0f0f0;
  margin: 0;
  max-width: 640px;
}

.about-split {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.about-split h2 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 22px;
}

.about-split p {
  margin: 0 0 16px;
  color: #4f4f4f;
}

.about-split-image {
  display: flex;
  justify-content: flex-end;
}

.about-split-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.values {
  padding: 0 60px 40px;
}

.values-wrap h3 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 26px;
}

.value-card {
  background-color: #083154;
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 0;
  aspect-ratio: 1.15;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;

}

.value-card h4 {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.4;
}

.value-icon {
  width: 56px;
  height: 56px;
  color: #ffffff;
  flex-shrink: 0;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.value-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.values-copy p {
  margin: 0 0 14px;
  color: #4f4f4f;
  max-width: 980px;
}

.delivery-teams {
  padding: 40px 60px 80px;
}

.delivery-wrap h3 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 8px;
}

.delivery-subtitle {
  margin: 0 0 46px;
  color: #4f4f4f;
}

.delivery-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.delivery-row--alt {
  grid-template-columns: 1.2fr 1fr;
}

.delivery-text h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.delivery-text p {
  margin: 0 0 14px;
  color: #4f4f4f;
}

.delivery-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-placeholder {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
}

.logo-placeholder span {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #1f1f1f;
  text-align: center;
  line-height: 1.2;
  padding: 18px;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-hero {
    padding: 80px 24px;
    height: auto;
    min-height: 70vh;
  }

  .about-hero-content {
    margin-bottom: 40px;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-split {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 40px;
  }

  .values {
    padding: 0 24px 40px;
  }

  .values-header h2 {
    font-size: 32px;
  }

  .delivery-teams {
    padding: 40px 24px 80px;
  }

  .delivery-teams h2 {
    font-size: 32px;
  }

  .delivery-row,
  .delivery-row--alt {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .delivery-photo {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .top-nav nav ul {
    gap: 16px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .numbers .section-heading {
    text-align: center;
    margin: 0 auto 40px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .metric {
    text-align: center;
  }

  .product-range {
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-item {
    align-items: center;
    text-align: center;
  }

  .quality-heading {
    text-align: center;
    margin: 0 auto 40px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-intro h2 {
    font-size: 28px;
  }

  .partners-detail-heading h3 {
    font-size: 30px;
  }

  /* Remove forced line breaks on mobile */
  br {
    display: inline;
  }

  .hero-content h1 br,
  .about-hero-content h1 br,
  .products-hero h1 br,
  .team-hero h1 br,
  .quality-hero h1 br,
  .contact-hero h1 br,
  .partners-detail-heading h3 br,
  .intro-text h2 br,
  .section-header h3 br,
  .cta-text h3 br {
    display: none;
  }

  /* Better spacing for benefit cards */
  .benefits {
    gap: 16px;
  }

  .benefit {
    gap: 12px;
  }

  /* Leader cards on mobile */
  .leadership-grid {
    gap: 20px;
  }

  /* Opening cards */
  .openings-list {
    gap: 16px;
  }
}

/* ---------------------------- */
/* Products Page                */
/* ---------------------------- */

.products-page .top-nav {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.products-hero {
  position: relative;
  height: 750px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.14) 40%,
      rgba(0, 0, 0, 0.62) 78%,
      rgba(0, 0, 0, 1) 100%
    ),
    url('assets/meats.png');
  background-size: cover;
  background-position: center;
}

.products-hero__content {
  max-width: 800px;
  margin-bottom: 60px;
}

.products-hero h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.products-hero__subtext {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #f0f0f0;
  max-width: 720px;
  margin: 0;
}

.products-wrap {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 70px 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding: 30px 0;
}

.product-block__info,
.product-block__media {
  margin: 0;
  padding: 0;
}

.product-block__info h2 {
  font-size: 44px;
  font-weight: 300;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.product-block__info p {
  margin: 0 0 28px 0;
  color: #4f4f4f;
  max-width: 520px;
}

.product-block__info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b3557;
  margin: 0 0 14px 0;
}

.muted {
  color: #7a7a7a;
  font-weight: 400;
  font-size: 14px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f3f3f;
  font-size: 15px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #0b3557;
  font-weight: 700;
}

.photo-card {
  width: 100%;
  max-width: 720px;
  margin: 0 0 0 auto;
  padding: 0;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.product-block--reverse .product-block__info {
  order: 2;
}

.product-block--reverse .product-block__media {
  order: 1;
}

.product-block--reverse .photo-card {
  margin-left: 0;
  margin-right: auto;
}

.photo-placeholder {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e9eef6, #d9e2f0);
  border: 1px solid #e8e8e8;
}

.photo-placeholder--mutton {
  background: linear-gradient(135deg, #f6f1ee, #efe1dc);
}

.photo-placeholder--chicken {
  background: linear-gradient(135deg, #f4f8ff, #dbe8ff);
}

.photo-placeholder--beef {
  background: linear-gradient(135deg, #f7f2f6, #edddea);
}

.photo-placeholder--prawns {
  background: linear-gradient(135deg, #fff4f0, #ffe0d6);
}

/* Fish & Seafood block */
.product-block__info--fish {
  align-self: start;
}

.photo-card--fish {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.photo-card--fish img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px 6px 0 0;
}

.photo-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: #0b3557;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.fish-grid {
  margin: 12px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fish-grid__item {
  padding: 10px 12px;
  border-radius: 0;
  background: #d8e9fb;
  color: #1f1f1f;
  font-size: 16px;
}

.fish-grid__item--active {
  background: #0b3557;
  color: #ffffff;
}

.fish-panel {
  margin-top: 18px;
  background: #0b3557;
  color: #ffffff;
  padding: 18px 20px 20px;
}

.fish-panel h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px 0;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.92);
}

.check-list--light li::before {
  color: #ffffff;
}

/* Ready to order + footer */
.order-cta {
  background: #f6f6f6;
  padding: 110px 24px;
}

.order-cta__inner {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.order-cta__inner h2 {
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #0b3557;
}

.order-cta__inner p {
  margin: 0 auto 22px;
  max-width: 620px;
  color: #4f4f4f;
}

.order-cta__btn {
  background: #0b3557;
  border-color: #0b3557;
  color: #ffffff;
  width: 200px;
  height: 44px;
  padding: 10px 20px;
  border-radius: 0;
}

.order-cta__btn:hover {
  filter: brightness(0.95);
}

.site-footer {
  background: #0b1c30;
  color: rgba(255, 255, 255, 0.82);
  padding: 26px 24px;
}

.site-footer__inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

.site-footer .dot {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .products-hero {
    padding: 80px 24px 70px;
    min-height: 70vh;
    height: auto;
  }

  .products-wrap {
    padding: 70px 24px 20px;
  }

  .product-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 10px 0 30px;
  }

  .product-block--reverse .product-block__info,
  .product-block--reverse .product-block__media {
    order: initial;
  }

  .photo-card {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .products-hero {
    padding: 60px 20px;
  }

  .products-hero h1 {
    font-size: 32px;
  }

  .products-hero__content {
    margin-bottom: 30px;
  }

  .products-hero__subtext {
    font-size: 15px;
  }

  .product-block {
    padding: 60px 20px;
  }

  .product-block__info h2 {
    font-size: 28px;
  }

  .product-block__info p {
    font-size: 15px;
  }

  .order-cta {
    padding: 60px 20px;
  }

  .order-cta__inner h2 {
    font-size: 26px;
  }

  .order-cta__inner p {
    font-size: 15px;
  }

  .product-block__info h2,
  .order-cta__inner h2 {
    font-size: 34px;
  }

  .photo-placeholder {
    height: 260px;
  }
}

/* ------------------------------ */
/* Team page                      */
/* ------------------------------ */

.team-page {
  background: #ffffff;
}

.team-hero {
  position: relative;
  height: 750px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 1) 100%
    ),
    url('assets/teams.png');
  background-size: cover;
  background-position: center;
}

.team-hero__content {
  max-width: 800px;
  margin-bottom: 60px;
}

.team-hero h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.team-hero__subtext {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #f0f0f0;
  max-width: 720px;
}

.team-section {
  padding: 95px 60px;
  background: #ffffff;
}

.team-section.leadership {
  padding-bottom: 40px;
}

.team-section:has(.why-grid) {
  padding-bottom: 40px;
}

.team-section:has(.team-body):not(.openings) {
  padding-bottom: 40px;
}

.team-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.team-section__header {
  max-width: 720px;
  margin-bottom: 46px;
}

.team-section__header h2 {
  font-size: 44px;
  font-weight: 300;
  color: #0b3557;
  margin-bottom: 12px;
}

.team-section__header p {
  margin: 0;
  color: #4f4f4f;
  font-size: 17px;
  line-height: 1.6;
}

.team-h2 {
  font-size: 44px;
  font-weight: 300;
  color: #0b3557;
  margin: 0 0 22px;
}

.team-body {
  margin: 0;
  max-width: 760px;
  color: #4f4f4f;
  font-size: 17px;
  line-height: 1.6;
}

/* Leadership cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.leader-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #e9eef5;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.leader-photo {
  height: 320px;
  background: radial-gradient(circle at 40% 35%, #0c5aa8 0%, #083a73 55%, #062d58 100%);
  display: grid;
  place-items: center;
}

.leader-photo svg {
  width: 160px;
  height: 160px;
  opacity: 0.95;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leader-info {
  background: #0b3557;
  color: rgba(255, 255, 255, 0.88);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin-bottom: 0;
}

.leader-info h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.leader-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.leader-link svg {
  width: 14px;
  height: 14px;
}

.leader-link img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.leader-role {
  margin: 4px 0 0;
  color: #63b0ff;
  font-weight: 400;
  min-height: 44px;
  line-height: 1.4;
}

.leader-bio {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
}

/* Why work with us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 10px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-icon {
  width: 46px;
  height: 46px;
  color: #0b3557;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
}

.why-card p {
  margin: 0;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.6;
}

/* Openings */
.openings-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.opening {
  border: 1px solid #e7eef6;
  border-radius: 10px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.opening-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.opening-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #0b3557;
  flex-shrink: 0;
}

.opening-icon svg {
  width: 100%;
  height: 100%;
}

.opening-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
}

.opening-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
  color: #4f4f4f;
  font-size: 14px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: #4f4f4f;
}

.pill {
  background: #a8d3ff;
  color: #0b3557;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.apply-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0b3557;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.apply-btn:hover {
  filter: brightness(0.96);
}

.apply-arrow {
  font-size: 18px;
  line-height: 1;
}

/* Footer */
.team-footer {
  background: #0f1726;
  color: #cfd6e4;
  padding: 22px 60px;
  font-size: 13px;
}

.team-footer__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-footer__inner p {
  margin: 0;
}

.team-footer a {
  color: #cfd6e4;
}

/* ------------------------------ */
/* Quality page                   */
/* ------------------------------ */

.quality-hero {
  position: relative;
  height: 750px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.62) 80%,
      rgba(0, 0, 0, 1) 100%
    ),
    url('assets/vans.png');
  background-size: cover;
  background-position: center;
}

.quality-hero__content {
  max-width: 800px;
  margin-bottom: 60px;
}

.quality-hero h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.quality-hero__subtext {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #f0f0f0;
  max-width: 720px;
}

.quality-promise {
  padding: 300px 60px 300px;
  background: #ffffff;
}

.quality-promise__inner {
  text-align: center;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.quality-promise h2 {
  font-size: 34px;
  font-weight: 100;
  color: #143b5a;
  margin-bottom: 18px;
}

.quality-promise__subtext {
  margin: 0 auto;
  max-width: 720px;
  color: #143b5a;
  opacity: 0.92;
  font-size: 17px;
  line-height: 1.6;
}

.quality-pillars {
  padding: 0 60px 140px;
  background: #ffffff;
}

.quality-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.quality-pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quality-pillar__icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.quality-pillar h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1f1f1f;
}

.quality-list {
  margin: 0;
  padding-left: 18px;
  color: #4f4f4f;
  font-size: 14px;
}

.quality-list li + li {
  margin-top: 10px;
}

.quality-footer {
  padding: 0;
}

.quality-page .footer-bottom {
  padding: 22px 60px;
}

/* Responsive */
@media (max-width: 1100px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .team-hero {
    padding: 80px 24px 70px;
    min-height: 70vh;
    height: auto;
  }

  .team-hero__content {
    margin-bottom: 40px;
  }

  .team-hero h1 {
    font-size: 36px;
  }

  .quality-hero {
    padding: 80px 24px 70px;
    min-height: 70vh;
    height: auto;
  }

  .quality-hero__content {
    margin-bottom: 40px;
  }

  .quality-hero h1 {
    font-size: 36px;
  }

  .quality-promise {
    padding: 80px 24px 60px;
  }

  .quality-promise h2 {
    font-size: 32px;
  }

  .quality-pillars {
    padding: 0 24px 80px;
  }

  .quality-pillars__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quality-page .footer-bottom {
    padding: 22px 24px;
  }

  .team-section {
    padding: 60px 24px;
  }

  .team-section__header h2,
  .team-h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 600px) {
  .team-hero h1,
  .team-section__header h2,
  .team-h2 {
    font-size: 34px;
  }

  .quality-hero h1 {
    font-size: 34px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .team-footer {
    padding: 22px 24px;
  }
}

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

.contact-hero {
  position: relative;
  height: 750px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
  color: #ffffff;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 1) 100%
    ),
    url('assets/contact office.png');
  background-size: cover;
  background-position: center;
}

.contact-hero__content {
  max-width: 800px;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-hero__subtext {
  font-family: 'Ysabeau Office', 'Source Sans 3', sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #f0f0f0;
  max-width: 720px;
}

.contact-intro {
  padding: 110px 60px 70px;
  background: #ffffff;
}

.contact-intro__inner {
  max-width: 560px;
  margin: 0;
}

.contact-intro h2 {
  font-size: 44px;
  font-weight: 300;
  color: #0b3557;
  margin-bottom: 14px;
}

.contact-intro p {
  margin: 0;
  color: #4f4f4f;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
}

.contact-offices {
  padding: 60px 60px 20px;
  background: #ffffff;
}

.contact-offices .container {
  margin-left: 0;
  margin-right: auto;
  width: auto;
  max-width: 1200px;
}

.contact-h3 {
  font-size: 34px;
  font-weight: 300;
  color: #0b3557;
  margin: 0 0 26px 0;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.office-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #e9eef5;
  background: #ffffff;
  height: 100%;
}

.office-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}

.office-card__body {
  background: #0b3557;
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.office-card__body h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.office-card__subtitle {
  margin: 0 0 14px 0;
  color: #63b0ff;
  font-weight: 400;
}

.office-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-meta__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.office-meta__item a {
  color: rgba(255, 255, 255, 0.92);
}

.office-meta__item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.office-meta__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
}

.office-meta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.office-meta__img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.contact-form {
  padding: 60px 60px 110px;
  background: #ffffff;
}

.contact-form .container {
  margin-left: 0;
  margin-right: auto;
  width: auto;
  max-width: 1200px;
}

.enquiry {
  width: 100%;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  grid-template-areas:
    "name category"
    "company message"
    "email message"
    "phone submit";
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: #0b3557;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #edf1f6;
  background: #f3f5f7;
  border-radius: 0;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  color: #1f1f1f;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(11, 53, 87, 0.5);
  box-shadow: 0 0 0 3px rgba(11, 53, 87, 0.12);
}

.field--name {
  grid-area: name;
}
.field--category {
  grid-area: category;
}
.field--company {
  grid-area: company;
}
.field--message {
  grid-area: message;
}
.field--email {
  grid-area: email;
}
.field--phone {
  grid-area: phone;
}
.field--submit {
  grid-area: submit;
  align-self: end;
}

.enquiry-submit {
  width: 100%;
  height: 44px;
  background: #0b3557;
  border: 1px solid #0b3557;
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.enquiry-submit:hover {
  filter: brightness(0.96);
}

.enquiry-submit__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.enquiry-submit__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-footer .footer-bottom {
  padding: 22px 60px;
}

@media (max-width: 1100px) {
  .offices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 80px 24px 70px;
    min-height: 70vh;
    height: auto;
  }

  .contact-hero__content {
    margin-bottom: 40px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-intro {
    padding: 80px 24px 50px;
  }

  .contact-intro h2 {
    font-size: 32px;
  }

  .contact-intro,
  .contact-offices,
  .contact-form,
  .contact-footer .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-template-areas:
      "name"
      "category"
      "company"
      "email"
      "phone"
      "message"
      "submit";
  }
}

@media (max-width: 600px) {
  .contact-hero h1,
  .contact-intro h2 {
    font-size: 34px;
  }
}

/* ================================ */
/* Enhanced Mobile Responsiveness   */
/* ================================ */

@media (max-width: 480px) {
  /* Base typography scaling */
  body {
    font-size: 15px;
  }

  /* Navigation */
  .top-nav {
    padding: 12px 16px;
    height: 70px;
  }

  .logo-wrap img {
    height: 36px;
  }

  /* Hero sections - all pages */
  .hero,
  .about-hero,
  .products-hero,
  .team-hero,
  .quality-hero,
  .contact-hero,
  .hero.hero--partners {
    padding: 60px 16px;
    min-height: 60vh;
  }

  .hero-content,
  .about-hero-content,
  .products-hero__content,
  .team-hero__content,
  .quality-hero__content,
  .contact-hero__content {
    margin-bottom: 30px;
  }

  .hero-content h1,
  .about-hero-content h1,
  .products-hero h1,
  .team-hero h1,
  .quality-hero h1,
  .contact-hero h1 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-content p,
  .hero-subtext,
  .about-hero-content p,
  .products-hero__subtext,
  .team-hero__subtext,
  .quality-hero__subtext,
  .contact-hero__subtext {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Intro sections */
  .intro,
  .about-split {
    padding: 50px 16px;
    gap: 30px;
  }

  .intro-text h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .intro-text p {
    font-size: 15px;
  }

  /* Numbers/Metrics */
  .numbers {
    padding: 50px 16px;
  }

  .numbers .section-heading {
    text-align: center;
    margin: 0 auto 40px;
  }

  .metrics-grid {
    gap: 24px;
    align-items: center;
  }

  .metric {
    text-align: center;
  }

  .metric-value {
    font-size: 36px;
  }

  .metric-label {
    font-size: 14px;
  }

  /* Products section */
  .quality {
    padding: 50px 16px;
  }

  .quality-heading {
    text-align: center;
    margin: 0 auto 40px;
  }

  .section-header h3 {
    font-size: 26px;
  }

  .product-range {
    text-align: center;
  }

  .product-grid {
    gap: 20px;
  }

  .product-item {
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .product-item img {
    width: 48px;
    height: 48px;
  }

  .product-item h5 {
    font-size: 16px;
  }

  .product-item p {
    font-size: 14px;
  }

  /* Quality icons */
  .quality-icons {
    gap: 24px;
    text-align: center;
  }

  .quality-item {
    align-items: center;
    text-align: center;
  }

  .quality-item img {
    width: 56px;
    height: 56px;
  }

  .quality-item span {
    font-size: 14px;
  }

  /* Partners section */
  .partners {
    padding: 50px 16px;
  }

  .partners h3 {
    font-size: 26px;
  }

  .partners p {
    font-size: 15px;
  }

  /* CTA Footer */
  .cta-footer {
    padding: 50px 16px;
    gap: 24px;
  }

  .cta-text h3 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 15px;
  }

  /* Footer */
  .footer-bottom {
    padding: 20px 16px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  /* About page */
  .values {
    padding: 0 16px 40px;
  }

  .values-header h2 {
    font-size: 26px;
  }

  .values-grid {
    gap: 16px;
  }

  .value-card {
    padding: 24px 20px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }

  .value-card h4 {
    font-size: 17px;
  }

  .value-card p {
    font-size: 14px;
  }

  .delivery-teams {
    padding: 40px 16px 60px;
  }

  .delivery-teams h2 {
    font-size: 26px;
  }

  .delivery-photo {
    height: 200px;
  }

  .delivery-text h3 {
    font-size: 20px;
  }

  .delivery-text p {
    font-size: 14px;
  }

  /* Partners page */
  .page-intro {
    padding: 80px 16px;
  }

  .page-intro h2 {
    font-size: 24px;
  }

  .page-intro p {
    font-size: 15px;
  }

  .partners-detail {
    padding: 40px 16px;
  }

  .partners-detail-heading {
    margin-bottom: 24px;
  }

  .partners-detail-heading h3 {
    font-size: 24px;
  }

  .partners-detail-heading p {
    font-size: 15px;
  }

  .partner-split,
  .export-grid {
    gap: 16px;
  }

  .partner-image img,
  .export-image img {
    min-height: 180px;
    max-height: 220px;
  }

  .partner-panel h4 {
    font-size: 22px;
  }

  .partner-panel p {
    font-size: 14px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-text h5 {
    font-size: 15px;
  }

  .benefit-text p {
    font-size: 13px;
  }

  .export-partners {
    padding: 50px 16px;
  }

  .export-partners {
    padding: 50px 16px;
  }

  .export-text h4 {
    font-size: 20px;
  }

  .export-text p {
    font-size: 14px;
  }

  /* Team page */
  .team-section {
    padding: 50px 16px;
  }

  .team-section__header h2,
  .team-h2 {
    font-size: 26px;
  }

  .team-section__header p,
  .team-body {
    font-size: 15px;
  }

  .leader-card {
    padding: 20px;
  }

  .leader-photo {
    height: 180px;
  }

  .leader-info h3 {
    font-size: 17px;
  }

  .leader-role {
    font-size: 13px;
  }

  .leader-bio {
    font-size: 13px;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 14px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
  }

  .opening {
    padding: 20px 16px;
    gap: 16px;
  }

  .opening-icon {
    width: 40px;
    height: 40px;
  }

  .opening-info h3 {
    font-size: 16px;
  }

  .opening-info p {
    font-size: 13px;
  }

  .apply-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Quality page */
  .quality-promise {
    padding: 60px 16px 50px;
  }

  .quality-promise__inner {
    max-width: 100%;
  }

  .quality-promise h2 {
    font-size: 24px;
  }

  .quality-promise__subtext {
    font-size: 15px;
    max-width: 100%;
  }

  .quality-pillars {
    padding: 0 16px 60px;
  }

  .quality-pillar__icon {
    width: 44px;
    height: 44px;
  }

  .quality-pillar h3 {
    font-size: 16px;
  }

  .quality-list li {
    font-size: 14px;
  }

  /* Contact page */
  .contact-intro {
    padding: 80px 16px 50px;
  }

  .contact-intro h2 {
    font-size: 28px;
  }

  .contact-intro p {
    font-size: 15px;
  }

  .contact-offices {
    padding: 40px 16px 20px;
  }

  .office-card {
    padding: 24px 20px;
  }

  .office-card h3 {
    font-size: 18px;
  }

  .office-meta {
    font-size: 14px;
  }

  .contact-form {
    padding: 50px 16px;
  }

  .enquiry-heading h2 {
    font-size: 26px;
  }

  .enquiry-input,
  .enquiry-textarea {
    padding: 14px 16px;
    font-size: 15px;
  }

  .enquiry-submit {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Careers section on home */
  .careers {
    padding: 50px 16px;
    gap: 30px;
  }

  .careers-text h2 {
    font-size: 26px;
  }

  .careers-text p {
    font-size: 15px;
  }
}
