@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins/Poppins-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins/Poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins/Poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins/Poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins/Poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #102532;
  --bg-light: #f7f2e7;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-soft: rgba(255, 236, 214, 0.55);
  --accent: #ff6b2d;
  --accent-dark: #e45716;
  --accent-soft: rgba(255, 107, 45, 0.14);
  --accent-secondary: #74b743;
  --accent-secondary-dark: #4a8529;
  --text-dark: #112433;
  --text-muted: #4d5c66;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(17, 36, 51, 0.12);
  --max-width: 1120px;
  --radius: 20px;
  font-size: 16px;
}

body.theme-dark {
  --bg-dark: #050d16;
  --bg-light: #0d1b24;
  --bg-card: rgba(19, 30, 41, 0.92);
  --bg-soft: rgba(28, 42, 55, 0.45);
  --accent: #ff7a3c;
  --accent-dark: #ff9b56;
  --accent-soft: rgba(255, 122, 60, 0.15);
  --accent-secondary: #78d842;
  --accent-secondary-dark: #a4f16a;
  --text-dark: #f3f7fa;
  --text-muted: #9eb4c4;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(130deg, #faf5ea 0%, #fffaf1 55%, #f1f8ec 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

.animate-on-scroll {
  will-change: transform, opacity;
}

body.theme-dark {
  background: linear-gradient(150deg, #040b12 0%, #091b26 50%, #0e2a2a 100%);
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
  color: var(--text-dark);
}

p {
  margin: 0;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.container {
  width: min(90vw, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(17, 36, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: clamp(96px, 12vw, 132px);
  min-width: 96px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(17, 36, 51, 0.12));
  display: block;
}

.footer-logo {
  width: clamp(100px, 12vw, 138px);
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.brand-tagline {
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-secondary-dark);
}

body.theme-dark .brand-title {
  color: var(--white);
}

body.theme-dark .brand-tagline {
  color: rgba(180, 233, 165, 0.75);
}


.site-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.6rem 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(17, 36, 51, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 36, 51, 0.15);
  border-color: rgba(255, 107, 45, 0.3);
}

.theme-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  color: inherit;
}

.theme-icon use {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  pointer-events: none;
}

.theme-icon--sun {
  display: none;
}

body.theme-dark .theme-toggle {
  background: rgba(15, 27, 38, 0.85);
  border-color: rgba(148, 182, 209, 0.35);
  color: #ffcf70;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

body.theme-dark .theme-toggle:hover,
body.theme-dark .theme-toggle:focus {
  border-color: rgba(255, 203, 112, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

body.theme-dark .theme-icon--sun {
  display: inline;
}

body.theme-dark .theme-icon--moon {
  display: none;
}

.cta {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent) 0%, #ff8b38 100%);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 18px 38px rgba(255, 107, 45, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta:hover,
.cta:focus {
  background: linear-gradient(120deg, var(--accent-dark) 0%, #ff7a20 100%);
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(255, 107, 45, 0.32);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.2rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 238, 219, 0.8) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(237, 248, 224, 0.85) 100%);
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  width: clamp(420px, 55vw, 640px);
  height: clamp(420px, 55vw, 640px);
  top: clamp(-290px, -15vw, -120px);
  right: clamp(-180px, -8vw, -40px);
  border: clamp(18px, 3vw, 28px) solid rgba(116, 183, 67, 0.3);
  transform: rotate(-8deg);
}

.hero-section::after {
  width: clamp(360px, 48vw, 580px);
  height: clamp(360px, 48vw, 580px);
  bottom: clamp(-260px, -18vw, -120px);
  left: clamp(-190px, -12vw, -60px);
  border: clamp(18px, 3vw, 26px) solid rgba(255, 107, 45, 0.25);
  transform: rotate(12deg);
}

.subpage-hero {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(140deg, rgba(255, 238, 219, 0.8) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(237, 248, 224, 0.85) 100%);
  overflow: hidden;
}

.subpage-hero::before,
.subpage-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.subpage-hero::before {
  width: clamp(360px, 52vw, 600px);
  height: clamp(360px, 52vw, 600px);
  top: clamp(-300px, -20vw, -160px);
  right: clamp(-200px, -12vw, -60px);
  border: clamp(18px, 3vw, 26px) solid rgba(116, 183, 67, 0.22);
}

.subpage-hero::after {
  width: clamp(320px, 48vw, 540px);
  height: clamp(320px, 48vw, 540px);
  bottom: clamp(-260px, -18vw, -120px);
  left: clamp(-180px, -10vw, -40px);
  border: clamp(18px, 3vw, 24px) solid rgba(255, 107, 45, 0.2);
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.8rem;
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-stat-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(116, 183, 67, 0.25);
  box-shadow: 0 22px 48px rgba(17, 36, 51, 0.16);
}

.hero-stat-block div {
  display: flex;
  flex-direction: column;
}

.hero-stat-block strong {
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1.1;
}

#desk-status {
  color: var(--accent-dark);
}

#desk-status.is-open {
  color: var(--accent-secondary-dark);
}

#desk-status.is-closed {
  color: #ff4f1f;
}

.hero-stat-block span {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.story-section {
  padding: 4.5rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.story-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 232, 0.92));
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(255, 107, 45, 0.2);
  box-shadow: var(--shadow-soft);
}

.story-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.story-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.values-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(240, 248, 235, 0.65), rgba(255, 255, 255, 0.9));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.value-image,
.leadership-photo {
  margin: 0 0 1.1rem;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(17, 36, 51, 0.18);
  aspect-ratio: 4 / 3;
  background: rgba(17, 36, 51, 0.05);
}

.value-image img,
.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.leadership-photo {
  aspect-ratio: 3 / 4;
}

.values-grid article:hover .value-image img,
.leadership-grid article:hover .leadership-photo img {
  transform: scale(1.05);
}

.values-grid article {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(116, 183, 67, 0.22);
  box-shadow: 0 18px 40px rgba(17, 36, 51, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.leadership-section {
  padding: 4.5rem 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.leadership-grid article {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255, 107, 45, 0.16);
  box-shadow: 0 18px 38px rgba(17, 36, 51, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.leadership-grid .title {
  margin: 0.4rem 0 0.8rem;
  font-weight: 500;
  color: var(--accent-secondary-dark);
}

.sustainability-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.1), rgba(255, 107, 45, 0.1));
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.sustainability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.sustainability-list li {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  border: 1px solid rgba(116, 183, 67, 0.24);
  box-shadow: 0 18px 40px rgba(17, 36, 51, 0.12);
}

.catalogue-section {
  padding: 4.5rem 0;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.catalogue-thumb {
  margin: 0 0 1rem;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(17, 36, 51, 0.05);
  box-shadow: 0 18px 38px rgba(17, 36, 51, 0.15);
}

.catalogue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.catalogue-grid article:hover .catalogue-thumb img {
  transform: scale(1.05);
}

.catalogue-grid article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 107, 45, 0.18);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catalogue-grid h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.catalogue-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.value-add-section {
  padding: 4.5rem 0;
}

.aseptic-range {
  background: linear-gradient(180deg, rgba(255, 245, 232, 0.92), rgba(255, 255, 255, 0.95));
}

.frozen-range {
  background: linear-gradient(180deg, rgba(218, 242, 255, 0.7), rgba(255, 255, 255, 0.95));
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.media-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(17, 36, 51, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.media-card__figure {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  margin: 0;
  box-shadow: 0 24px 48px rgba(17, 36, 51, 0.18);
  background: rgba(17, 36, 51, 0.04);
}

.media-card--tall .media-card__figure {
  aspect-ratio: 4 / 5;
}

.media-card--wide .media-card__figure {
  aspect-ratio: 4 / 3;
}

.media-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__body h3 {
  margin: 0;
}

.media-card__body p {
  margin: 0;
  color: var(--text-muted);
}

.media-card__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.media-card__list li {
  line-height: 1.5;
}

.packaging-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(255, 246, 232, 0.7), rgba(255, 255, 255, 0.95));
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.packaging-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.packaging-list li {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(116, 183, 67, 0.2);
  box-shadow: 0 18px 38px rgba(17, 36, 51, 0.12);
}

.seasonal-section {
  padding: 4.5rem 0;
}

.seasonal-table-wrapper {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 107, 45, 0.18);
}

.seasonal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.seasonal-table th,
.seasonal-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(17, 36, 51, 0.08);
}

.seasonal-table thead {
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.2), rgba(255, 107, 45, 0.2));
  color: var(--text-dark);
}

.seasonal-table tbody tr:last-child td {
  border-bottom: none;
}

.infrastructure-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.1), rgba(255, 107, 45, 0.1));
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.infrastructure-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.infrastructure-list li {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(116, 183, 67, 0.24);
  box-shadow: 0 18px 38px rgba(17, 36, 51, 0.12);
}

.compliance-section {
  padding: 4.5rem 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.compliance-cards {
  display: grid;
  gap: 1.2rem;
}

.compliance-cards article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255, 107, 45, 0.2);
  box-shadow: 0 18px 40px rgba(17, 36, 51, 0.12);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.2rem 0.5rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(116, 183, 67, 0.35);
  box-shadow: 0 16px 35px rgba(17, 36, 51, 0.12);
  margin-bottom: 1.5rem;
}

.hero-badge img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 0.35rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 36, 51, 0.12);
}

.hero-badge span {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-secondary-dark);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  margin-top: 0.5rem;
}



body.theme-dark 

.hero-badge + 

.hero-copy p {
  margin-top: 1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent) 0%, #ff8f38 100%);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(255, 107, 45, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(130deg, var(--accent-dark) 0%, #ff7421 100%);
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(255, 107, 45, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(255, 107, 45, 0.55);
  background: rgba(255, 107, 45, 0.08);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(255, 107, 45, 0.15);
}





.metrics-section {
  padding: 3.5rem 0;
  background: linear-gradient(120deg, rgba(116, 183, 67, 0.08), rgba(255, 107, 45, 0.08));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metrics-grid article {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 233, 0.9));
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 16px 36px rgba(17, 36, 51, 0.12);
  border: 1px solid rgba(116, 183, 67, 0.2);
  overflow: hidden;
}

.metrics-grid article::after {
  content: "";
  position: absolute;
  inset: 0 28% auto 28%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
}

.metrics-grid h3 {
  font-size: 2.3rem;
  color: var(--accent-secondary-dark);
}

.metrics-grid p {
  margin-top: 0.75rem;
}

.products-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 235, 0.7) 100%);
}

.section-heading {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 600px;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.section-heading::after {
  content: "";
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
  margin-top: 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  background: rgba(255, 107, 45, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 0 6px rgba(116, 183, 67, 0.16);
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  position: relative;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 229, 0.9));
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 107, 45, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 107, 45, 0.08), rgba(116, 183, 67, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17, 36, 51, 0.22);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(17, 36, 51, 0.05);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 36, 51, 0) 0%, rgba(17, 36, 51, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
  opacity: 0.5;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.product-link:hover,
.product-link:focus {
  color: var(--accent-dark);
}

.process-preview {
  position: relative;
  padding: 4.5rem 0;
}

.process-preview::before,
.process-preview::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.process-preview::before {
  width: clamp(280px, 40vw, 460px);
  height: clamp(280px, 40vw, 460px);
  top: clamp(-180px, -10vw, -60px);
  right: clamp(-40px, 6vw, 160px);
  border: clamp(16px, 3vw, 22px) solid rgba(116, 183, 67, 0.24);
}

.process-preview::after {
  width: clamp(360px, 50vw, 560px);
  height: clamp(360px, 50vw, 560px);
  bottom: clamp(-280px, -18vw, -120px);
  left: clamp(-180px, -12vw, -50px);
  border: clamp(16px, 3vw, 24px) solid rgba(255, 107, 45, 0.22);
}

.process-preview-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.process-checklist {
  display: grid;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(116, 183, 67, 0.2);
  box-shadow: 0 15px 30px rgba(17, 36, 51, 0.12);
}

.check-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.88), rgba(255, 107, 45, 0.88));
  box-shadow: 0 10px 22px rgba(116, 183, 67, 0.25);
}

.check-icon use {
  stroke: #ffffff;
  stroke-width: 2;
}

.testimonial-preview {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(240, 248, 235, 0.6), rgba(255, 255, 255, 0.9));
}

.process-section {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 227, 0.85));
  padding: 4.5rem 0;
}

.process-timeline {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(116, 183, 67, 0.2);
  box-shadow: 0 20px 48px rgba(17, 36, 51, 0.12);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(116, 183, 67, 0.08), rgba(255, 107, 45, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(17, 36, 51, 0.16);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step h3,
.process-step p,
.step-number {
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-muted);
}

.step-number {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 45, 0.12), rgba(116, 183, 67, 0.18));
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  box-shadow: 0 18px 40px rgba(17, 36, 51, 0.15);
}

.testimonials-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(240, 248, 235, 0.65), rgba(255, 255, 255, 0.93));
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(255, 107, 45, 0.18);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 107, 45, 0.07), rgba(116, 183, 67, 0.14));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-card .name {
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-card .role {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-banner {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.18), rgba(255, 107, 45, 0.2));
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 2.4rem;
  border: 1px solid rgba(255, 107, 45, 0.2);
  box-shadow: var(--shadow-soft);
}

.cta-banner-inner h2 {
  margin-bottom: 0.8rem;
}

.contact-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 235, 0.75));
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before {
  width: clamp(360px, 45vw, 540px);
  height: clamp(360px, 45vw, 540px);
  top: clamp(-260px, -12vw, -120px);
  right: clamp(-220px, -11vw, -80px);
  border: clamp(18px, 3vw, 26px) solid rgba(116, 183, 67, 0.26);
}

.contact-section::after {
  width: clamp(320px, 42vw, 500px);
  height: clamp(320px, 42vw, 500px);
  bottom: clamp(-240px, -14vw, -80px);
  left: clamp(-200px, -10vw, -60px);
  border: clamp(18px, 3vw, 24px) solid rgba(255, 107, 45, 0.22);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-section .section-heading {
  justify-items: start;
  text-align: left;
  margin-bottom: 2rem;
}

.contact-section .section-heading::after {
  margin-left: 0;
  margin-right: 0;
}

.contact-emblem {
  display: inline-block;
  width: clamp(120px, 18vw, 160px);
  margin-bottom: 1rem;
  filter: drop-shadow(0 18px 36px rgba(17, 36, 51, 0.15));
}

.contact-emblem img {
  width: 100%;
}

.contact-details p {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-details strong {
  color: var(--accent-dark);
}

.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 2.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 107, 45, 0.18);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 107, 45, 0.06), rgba(116, 183, 67, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-form:focus-within::before {
  opacity: 1;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

label {
  font-weight: 600;
  color: var(--text-dark);
}

input,
textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 36, 51, 0.15);
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(17, 36, 51, 0.45);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 45, 0.18);
  background: #ffffff;
}

.full-width {
  width: 100%;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-status.is-loading {
  color: var(--accent);
}

.form-status.is-success {
  color: var(--accent-dark);
  font-weight: 600;
}

.form-status.is-error {
  color: #c13f3f;
  font-weight: 600;
}

.office-map {
  padding: 4.5rem 0;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.office-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.office-list li {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  border: 1px solid rgba(116, 183, 67, 0.18);
  box-shadow: 0 16px 36px rgba(17, 36, 51, 0.12);
}

.map-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255, 107, 45, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
}

.map-placeholder {
  width: min(320px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(116, 183, 67, 0.18), rgba(255, 107, 45, 0.18));
  display: grid;
  place-items: center;
}

.map-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.map-icon use {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Dark theme overrides */
body.theme-dark .site-header {
  background: rgba(10, 22, 32, 0.92);
  border-bottom: 1px solid rgba(126, 162, 189, 0.2);
}

body.theme-dark .nav-links a {
  color: var(--text-dark);
}

body.theme-dark .nav-links a.active {
  color: var(--accent);
}

body.theme-dark .brand-logo,
body.theme-dark .footer-logo,
body.theme-dark .contact-emblem img {
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55));
}

body.theme-dark .hero-section {
  background: linear-gradient(145deg, rgba(10, 24, 34, 0.98) 0%, rgba(6, 17, 27, 0.95) 55%, rgba(16, 38, 32, 0.9) 100%);
}

body.theme-dark .hero-section::before {
  border-color: rgba(120, 216, 66, 0.35);
}

body.theme-dark .hero-section::after {
  border-color: rgba(255, 122, 60, 0.32);
}

body.theme-dark .hero-badge {
  background: rgba(18, 32, 42, 0.88);
  border: 1px solid rgba(120, 216, 66, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

body.theme-dark .metrics-section {
  background: linear-gradient(120deg, rgba(120, 216, 66, 0.12), rgba(255, 122, 60, 0.12));
}

body.theme-dark .metrics-grid article {
  background: linear-gradient(160deg, rgba(18, 32, 41, 0.92), rgba(12, 24, 32, 0.9));
  border: 1px solid rgba(120, 216, 66, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

body.theme-dark .products-section {
  background: linear-gradient(180deg, rgba(10, 24, 34, 0.95) 0%, rgba(14, 32, 30, 0.9) 100%);
}

body.theme-dark .section-heading::after {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
  opacity: 0.9;
}

body.theme-dark .eyebrow {
  background: rgba(255, 122, 60, 0.22);
  color: var(--accent-dark);
}

body.theme-dark .product-card {
  background: linear-gradient(170deg, rgba(22, 32, 42, 0.95), rgba(16, 27, 36, 0.92));
  border: 1px solid rgba(255, 122, 60, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .product-card::before {
  background: linear-gradient(130deg, rgba(255, 122, 60, 0.14), rgba(120, 216, 66, 0.12));
}

body.theme-dark .product-image {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.theme-dark .process-preview {
  background: linear-gradient(150deg, rgba(9, 21, 30, 0.95), rgba(8, 21, 27, 0.9));
}

body.theme-dark .process-preview::before {
  border-color: rgba(120, 216, 66, 0.3);
}

body.theme-dark .process-preview::after {
  border-color: rgba(255, 122, 60, 0.28);
}

body.theme-dark .process-checklist .check-item {
  background: rgba(18, 30, 40, 0.9);
  border: 1px solid rgba(120, 216, 66, 0.24);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

body.theme-dark .testimonial-preview {
  background: linear-gradient(180deg, rgba(6, 18, 28, 0.92), rgba(10, 25, 27, 0.88));
}

body.theme-dark .process-section {
  background: linear-gradient(160deg, rgba(10, 24, 32, 0.95), rgba(12, 28, 26, 0.9));
}

body.theme-dark .process-step {
  background: rgba(17, 29, 38, 0.92);
  border: 1px solid rgba(120, 216, 66, 0.22);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .step-number {
  background: linear-gradient(135deg, rgba(255, 122, 60, 0.24), rgba(120, 216, 66, 0.28));
  color: #ffd58f;
}

body.theme-dark .testimonials-section {
  background: linear-gradient(180deg, rgba(8, 21, 30, 0.92), rgba(12, 32, 32, 0.88));
}

body.theme-dark .check-icon {
  background: linear-gradient(135deg, rgba(94, 107, 255, 0.88), rgba(120, 216, 66, 0.88));
  box-shadow: 0 12px 26px rgba(94, 107, 255, 0.32);
}

body.theme-dark .testimonial-card {
  background: rgba(18, 30, 40, 0.92);
  border: 1px solid rgba(255, 122, 60, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .contact-section {
  background: linear-gradient(130deg, rgba(7, 19, 28, 0.95), rgba(7, 26, 31, 0.9));
}

body.theme-dark .contact-section::before {
  border-color: rgba(120, 216, 66, 0.3);
}

body.theme-dark .contact-section::after {
  border-color: rgba(255, 122, 60, 0.28);
}

body.theme-dark .contact-form {
  background: rgba(16, 28, 36, 0.92);
  border: 1px solid rgba(255, 122, 60, 0.24);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45);
}

body.theme-dark .contact-details strong {
  color: #ffbd68;
}

body.theme-dark input,
body.theme-dark textarea {
  background: rgba(12, 22, 30, 0.85);
  border: 1px solid rgba(148, 182, 209, 0.3);
  color: var(--text-dark);
}

body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder {
  color: rgba(205, 218, 230, 0.6);
}

body.theme-dark input:focus,
body.theme-dark textarea:focus {
  background: rgba(16, 28, 38, 0.95);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 60, 0.2);
}

body.theme-dark .office-map {
  background: linear-gradient(160deg, rgba(8, 20, 28, 0.92), rgba(10, 26, 30, 0.9));
}

body.theme-dark .office-list li {
  background: rgba(18, 30, 40, 0.92);
  border: 1px solid rgba(120, 216, 66, 0.22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

body.theme-dark .map-card {
  background: rgba(16, 28, 36, 0.9);
  border: 1px solid rgba(255, 122, 60, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

body.theme-dark .map-placeholder {
  background: linear-gradient(135deg, rgba(120, 216, 66, 0.2), rgba(255, 122, 60, 0.2));
}

body.theme-dark .map-icon {
  color: var(--accent-secondary);
}

body.theme-dark .cta-banner {
  background: linear-gradient(135deg, rgba(120, 216, 66, 0.18), rgba(255, 122, 60, 0.2));
}

body.theme-dark .cta-banner-inner {
  background: rgba(16, 28, 36, 0.92);
  border: 1px solid rgba(255, 122, 60, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

body.theme-dark .site-footer {
  background: linear-gradient(190deg, rgba(4, 10, 14, 0.95), rgba(2, 7, 12, 0.98));
}

body.theme-dark .footer-links a {
  color: rgba(255, 255, 255, 0.85);
}

body.theme-dark .footer-links a:hover,
body.theme-dark .footer-links a:focus {
  color: #ffd28a;
}

body.theme-dark .story-card,
body.theme-dark .values-grid article,
body.theme-dark .leadership-grid article,
body.theme-dark .sustainability-list li,
body.theme-dark .media-card,
body.theme-dark .catalogue-grid article,
body.theme-dark .packaging-list li,
body.theme-dark .seasonal-table-wrapper,
body.theme-dark .infrastructure-list li,
body.theme-dark .compliance-cards article {
  background: rgba(18, 30, 40, 0.92);
  border: 1px solid rgba(255, 122, 60, 0.22);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .value-image,
body.theme-dark .leadership-photo {
  background: rgba(12, 22, 30, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

body.theme-dark .catalogue-thumb {
  background: rgba(12, 22, 30, 0.92);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

body.theme-dark .media-card__body p,
body.theme-dark .media-card__list li {
  color: rgba(214, 228, 236, 0.82);
}

body.theme-dark .seasonal-table thead {
  background: linear-gradient(135deg, rgba(120, 216, 66, 0.25), rgba(255, 122, 60, 0.25));
}

body.theme-dark .seasonal-table th,
body.theme-dark .seasonal-table td {
  border-bottom: 1px solid rgba(148, 182, 209, 0.25);
}

body.theme-dark .story-section,
body.theme-dark .values-section,
body.theme-dark .leadership-section,
body.theme-dark .sustainability-section,
body.theme-dark .value-add-section,
body.theme-dark .catalogue-section,
body.theme-dark .packaging-section,
body.theme-dark .seasonal-section,
body.theme-dark .infrastructure-section,
body.theme-dark .compliance-section {
  background: linear-gradient(150deg, rgba(8, 20, 28, 0.95), rgba(10, 26, 30, 0.88));
}

body.theme-dark .aseptic-range {
  background: linear-gradient(150deg, rgba(12, 26, 36, 0.97), rgba(10, 22, 30, 0.9));
}

body.theme-dark .frozen-range {
  background: linear-gradient(150deg, rgba(8, 24, 36, 0.97), rgba(6, 18, 30, 0.9));
}

body.theme-dark .subpage-hero {
  background: linear-gradient(150deg, rgba(10, 24, 34, 0.96) 0%, rgba(6, 18, 28, 0.95) 55%, rgba(16, 36, 30, 0.88) 100%);
}

body.theme-dark .subpage-hero::before {
  border-color: rgba(120, 216, 66, 0.3);
}

body.theme-dark .subpage-hero::after {
  border-color: rgba(255, 122, 60, 0.28);
}
.site-footer {
  position: relative;
  background: linear-gradient(190deg, rgba(16, 37, 50, 0.95), rgba(11, 24, 34, 0.98));
  color: rgba(255, 255, 255, 0.9);
  padding: 3.5rem 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 80%;
  border-radius: 50%;
  border: 24px solid rgba(116, 183, 67, 0.22);
  opacity: 0.5;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto -15% -55% -15%;
  height: 90%;
  border-radius: 50%;
  border: 26px solid rgba(255, 107, 45, 0.25);
  opacity: 0.4;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-logo {
  width: clamp(150px, 22vw, 200px);
  margin-bottom: 1rem;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.footer-links,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffb37a;
}

.footer-meta p {
  margin: 0;
}

#year {
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 235, 0.95));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 107, 45, 0.18);
    box-shadow: 0 22px 48px rgba(17, 36, 51, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-width: 200px;
    transform-origin: top right;
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.theme-dark .nav-links {
    background: linear-gradient(160deg, rgba(14, 28, 38, 0.96), rgba(10, 24, 30, 0.95));
    border: 1px solid rgba(148, 182, 209, 0.32);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .header-actions {
    gap: 0.6rem;
    margin-left: 0.5rem;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .cta {
    display: none;
  }

  .site-header {
    position: relative;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 1rem 0;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    min-width: 88px;
  }

  .hero-badge {
    width: 100%;
  }

  .hero-badge img {
    width: 54px;
    height: 54px;
  }
}
  






