:root {
  --header-height: 74px;
  --bg: #0f1714;
  --bg-soft: #16211d;
  --surface: #f6f8f3;
  --surface-strong: #ffffff;
  --surface-muted: #eaf0e3;
  --surface-tint: #dce7d2;
  --text: #1f2b23;
  --text-muted: #4f6255;
  --text-invert: #eef5ec;
  --brand: #79c145;
  --brand-dark: #46772d;
  --brand-glow: #9ad85f;
  --accent: #ba7637;
  --accent-dark: #8a5428;
  --border: #cdd9c2;
  --border-strong: #a3b596;
  --shadow-sm: 0 10px 24px rgba(14, 23, 18, 0.1);
  --shadow: 0 18px 44px rgba(14, 23, 18, 0.16);
  --shadow-lg: 0 30px 60px rgba(14, 23, 18, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(121, 193, 69, 0.12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(186, 118, 55, 0.12), transparent 26%),
    linear-gradient(180deg, #edf3e6 0%, #e4ecdb 30%, #eff4e8 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.link-highlight {
  color: #e58e36;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.link-highlight:hover {
  color: #cc7420;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #1f6feb;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-sm {
  padding: 62px 0;
  position: relative;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.14;
  color: #152018;
}

.section-subtitle {
  margin: 0 0 34px;
  color: var(--text-muted);
  max-width: 68ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  background: linear-gradient(108deg, rgba(17, 47, 34, 0.94), rgba(24, 64, 46, 0.93));
  backdrop-filter: saturate(165%) blur(12px);
  border-bottom: 1px solid rgba(181, 206, 163, 0.28);
  box-shadow: 0 8px 30px rgba(7, 17, 12, 0.36);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 48%, rgba(255, 249, 236, 0.2), transparent 34%);
  pointer-events: none;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: linear-gradient(120deg, rgba(255, 252, 246, 0.98), rgba(250, 245, 232, 0.96));
  border: 1px solid rgba(204, 190, 163, 0.55);
  box-shadow: 0 10px 22px rgba(8, 16, 12, 0.22);
}

.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #f3f7f1;
  display: block;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #f3f7f1;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-menu {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  z-index: 510;
  background: linear-gradient(180deg, #1c2b24, #213228);
  border-bottom: 1px solid rgba(176, 197, 164, 0.26);
  display: none;
}

.nav-menu.open {
  display: block;
}

.nav-list,
.nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a,
.nav-sublist > li > a,
.nav-list > li > button {
  display: block;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  color: #f2f8ef;
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.nav-list > li > a[aria-current="page"],
.nav-list > li > button[aria-current="page"] {
  color: #b5f27e;
  font-weight: 700;
}

@keyframes launchNavPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(227, 146, 69, 0), 0 7px 18px rgba(8, 20, 12, 0.22);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 3px rgba(227, 146, 69, 0.14), 0 10px 24px rgba(227, 146, 69, 0.22);
  }
}

.nav-list > li > a[data-nav="launch"] {
  position: relative;
  transform-origin: center;
  border-radius: 10px;
  border: 1px solid rgba(236, 183, 122, 0.44);
  background: linear-gradient(120deg, rgba(229, 148, 67, 0.28), rgba(154, 210, 96, 0.14));
  color: #f7fbf4;
  font-weight: 600;
  animation: launchNavPulse 3.8s ease-in-out infinite;
}

.nav-list > li > a[data-nav="launch"][aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.nav-list > li > a.nav-catalogue {
  margin: 8px 16px 12px;
  width: calc(100% - 32px);
  border: 1px solid rgba(237, 209, 153, 0.7);
  border-radius: 999px;
  background: linear-gradient(120deg, #fff6df, #d9a65a);
  color: #1f2b23;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 17, 12, 0.2);
}

.nav-list > li > a.nav-catalogue:hover {
  background: linear-gradient(120deg, #fffaf0, #e2b46e);
  color: #18231d;
}

@media (prefers-reduced-motion: reduce) {
  .nav-list > li > a[data-nav="launch"] {
    animation: none;
  }
}

.nav-item-has-children > button::after {
  content: "▾";
  margin-left: 8px;
}

.nav-sublist {
  border-top: 1px solid rgba(176, 197, 164, 0.26);
  background: rgba(24, 37, 30, 0.92);
}

.nav-sublist a {
  padding-left: 36px;
  font-size: 0.95rem;
}

.nav-sublist[hidden] {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 14, 10, 0.7), rgba(16, 30, 22, 0.58)),
    linear-gradient(180deg, rgba(20, 39, 30, 0.18), rgba(10, 18, 14, 0.72));
  border-bottom: 1px solid rgba(170, 193, 154, 0.26);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  animation: heroCrossfade 24s ease-in-out infinite;
}

.hero-slide.slide-1 { background-image: url("../images/hero/home-hero.jpg"); animation-delay: 0s; }
.hero-slide.slide-2 { background-image: url("../images/hero/home-hero2.jpg"); animation-delay: 6s; }
.hero-slide.slide-3 { background-image: url("../images/hero/home-hero3.jpg"); animation-delay: 12s; }
.hero-slide.slide-4 { background-image: url("../images/hero/home-hero4.jpg"); animation-delay: 18s; }

@keyframes heroCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  4% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  28% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(8, 22, 15, 0.62), rgba(18, 44, 31, 0.54)),
    radial-gradient(circle at 16% 26%, rgba(121, 193, 69, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(186, 118, 55, 0.16), transparent 33%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 19, 0.72));
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding: 96px 0 88px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.35rem, 5.8vw, 4.2rem);
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.hero p {
  margin: 0;
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
  opacity: 0.98;
  max-width: 62ch;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .actions {
  margin-top: 34px;
  gap: 16px;
}

.hero .actions .btn {
  flex-direction: column;
  gap: 2px;
  padding: 17px 32px;
  min-height: 78px;
  min-width: 230px;
  font-size: clamp(1.14rem, 1.8vw, 1.34rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero .actions .btn span {
  display: block;
}

.hero .actions .btn-secondary {
  background: linear-gradient(120deg, #d68a43, #b86f32);
  color: #fff;
  border-color: rgba(255, 225, 196, 0.6);
  box-shadow: 0 16px 32px rgba(119, 67, 30, 0.38);
}

.hero .actions .btn-secondary:hover {
  background: linear-gradient(120deg, #dd9551, #a9632b);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(120deg, #8bd14f, #6aac3f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(64, 105, 38, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #98dd5b, #5f9737);
}

.btn-secondary {
  background: linear-gradient(120deg, #f6f8f3, #ffffff);
  color: #1d281f;
  border-color: rgba(255, 255, 255, 0.82);
}

.btn-outline {
  border-color: var(--border-strong);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 243, 0.82));
  color: #223125;
}

/* Layout blocks */
.grid {
  display: grid;
  gap: 18px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 238, 0.95));
  border: 1px solid rgba(158, 181, 143, 0.42);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(121, 193, 69, 0.08), transparent 45%);
  pointer-events: none;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.brand-cards {
  align-items: stretch;
}

.brand-card {
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.brand-card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.brand-logo-wrap,
.brand-card-title,
.brand-card p,
.brand-card-actions {
  position: relative;
  z-index: 2;
}

.brand-logo-wrap {
  border-radius: 12px;
  border: 1px solid rgba(168, 189, 153, 0.4);
  background: linear-gradient(145deg, #ffffff, #f2f7eb);
  padding: 18px;
}

.brand-logo-wrap img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-card-title {
  margin: 0;
  color: #132017;
}

.brand-card-actions {
  margin-top: 4px;
}

.brand-card-button {
  position: relative;
  z-index: 3;
}

.brand-card-actions .btn-secondary {
  background: linear-gradient(120deg, #d68a43, #b86f32);
  color: #fff;
  border-color: rgba(255, 225, 196, 0.6);
  box-shadow: 0 10px 22px rgba(119, 67, 30, 0.24);
}

.brand-card-actions .btn-secondary:hover {
  background: linear-gradient(120deg, #dd9551, #a9632b);
}

.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-peter-kuruvita-listing .peter-card-ambassador img {
  object-position: center 18%;
}

.page-peter-kuruvita-listing .peter-card-media-release img {
  object-position: center 20%;
}

.blog-card-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.post-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.article-wrap {
  max-width: 860px;
  margin-inline: auto;
}

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(166, 188, 151, 0.5);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
  aspect-ratio: 16 / 9;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Keep Peter Kuruvita article hero portraits framed consistently without affecting other articles. */
.page-peter-kuruvita-media-release .article-cover,
.page-peter-kuruvita-ambassador .article-cover {
  aspect-ratio: 4 / 3;
}

.page-peter-kuruvita-media-release .article-cover img,
.page-peter-kuruvita-ambassador .article-cover img {
  object-position: center 24%;
}

.article-content {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 235, 0.95));
  border: 1px solid rgba(166, 188, 151, 0.44);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.article-content p {
  margin: 0 0 14px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin: 18px 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content .alignright {
  float: right;
  margin: 0 0 12px 16px;
}

.article-content .alignleft {
  float: left;
  margin: 0 16px 12px 0;
}

.article-content .aligncenter {
  display: block;
  margin: 12px auto;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content::after {
  content: "";
  display: block;
  clear: both;
}

.about-slideshow-section {
  padding-top: 28px;
}

.about-slideshow {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.about-slide-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(168, 189, 153, 0.55);
  background: rgba(255, 255, 255, 0.9);
  color: #1d2b22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.about-slide-arrow:hover {
  transform: translateY(-1px);
  background: #fff;
}

.about-slide-viewport {
  border-radius: var(--radius);
  border: 1px solid rgba(166, 188, 151, 0.5);
  background: transparent;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-slide-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.about-slide {
  margin: 0;
  min-width: 100%;
}

.about-slide img {
  width: 100%;
  height: clamp(250px, 44vw, 520px);
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
}

.campaign-hero {
  position: relative;
  padding: 96px 0 76px;
  color: #f3f8ef;
  background:
    radial-gradient(circle at 9% 18%, rgba(240, 157, 66, 0.2), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(140, 207, 88, 0.2), transparent 32%),
    linear-gradient(155deg, #13291f, #1a392c 45%, #1f4635);
  border-bottom: 1px solid rgba(181, 204, 166, 0.24);
}

.campaign-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.campaign-eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #f0b46c;
  font-weight: 700;
}

.campaign-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.campaign-subhead {
  margin: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: #d9e6d8;
  max-width: 58ch;
}

.campaign-availability {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 13px;
  border: 1px solid rgba(236, 180, 110, 0.5);
  background: rgba(229, 143, 51, 0.16);
  color: #ffd4a4;
  font-weight: 700;
}

.campaign-pack {
  border-radius: 18px;
  border: 1px solid rgba(195, 216, 180, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  width: min(420px, 100%);
  margin-inline: auto;
}

.campaign-pack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
}

.campaign-highlights {
  display: grid;
  gap: 16px;
}

.campaign-highlight-card {
  padding: 20px;
}

.campaign-highlight-card h3 {
  margin: 0 0 8px;
}

.campaign-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.campaign-list li {
  color: var(--text-muted);
}

.campaign-visual {
  display: grid;
  gap: 18px;
  align-items: center;
}

.campaign-poster {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(166, 188, 151, 0.5);
  box-shadow: var(--shadow-lg);
}

.campaign-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-cta {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.category-card {
  overflow: hidden;
  padding: 0;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .content {
  padding: 18px;
}

.product-feature-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}

.product-feature-compact .feature-media {
  min-height: 190px;
}

.product-feature-compact .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-feature-compact .feature-content {
  padding: 18px 22px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.product-feature-compact .feature-content h3 {
  margin: 0;
}

.product-feature-compact .feature-content p {
  margin: 0;
}

.home-products-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(191, 215, 174, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #f1f7ed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  background: rgba(121, 193, 69, 0.22);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 12px) / 2);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-products-track::-webkit-scrollbar {
  display: none;
}

.home-product-item {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto minmax(2.8em, auto) auto;
  gap: 14px;
  align-content: start;
  justify-items: center;
  text-align: center;
  min-height: 100%;
}

.home-product-media {
  border-radius: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  min-height: 230px;
  display: grid;
  align-items: center;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
  background: transparent;
}

.home-product-item h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.35;
  color: #f1f7ed;
  width: 100%;
}

.home-product-item .btn {
  justify-self: center;
}

.products-list {
  display: grid;
  gap: 24px;
}

.product-detail-card {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
}

.product-detail-card::before {
  display: none;
}

.product-detail-media {
  background: linear-gradient(145deg, #f0f5e9, #e6eee0);
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-detail-content {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.product-detail-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: #152018;
}

.product-detail-content p {
  margin: 0;
}

.product-meta-group {
  display: grid;
  gap: 7px;
}

.product-meta-group h3 {
  margin: 0;
  font-size: 0.8rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-meta-group ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
}

.product-meta-group .product-chip-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-meta-group .product-chip-list li {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(163, 181, 150, 0.58);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 231, 0.95));
  color: #223126;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 6px 14px rgba(14, 23, 18, 0.06);
}

.product-size-line {
  font-size: 0.97rem;
  color: #314238;
  font-weight: 600;
}

.product-detail-note {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.product-card-actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-card-actions .btn {
  min-width: 210px;
}

.product-card-actions .btn-secondary {
  background: linear-gradient(120deg, #d68a43, #b86f32);
  color: #fff;
  border-color: rgba(255, 225, 196, 0.58);
  box-shadow: 0 10px 22px rgba(119, 67, 30, 0.26);
}

.product-card-actions .btn-secondary:hover {
  background: linear-gradient(120deg, #dd9551, #a9632b);
}

.certificates-showcase {
  margin-top: 34px;
}

.certificates-title {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.certificates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.certificate-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 238, 0.96));
  border: 1px solid rgba(166, 188, 151, 0.5);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 12px;
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  border-radius: 8px;
}

.launch-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.launch-teaser-media {
  background: linear-gradient(150deg, #1d3a2a, #2c533b);
  min-height: 220px;
}

.launch-teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.launch-teaser-content {
  padding: 20px 22px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.launch-teaser-content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.launch-teaser-content p {
  margin: 0;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(162, 182, 147, 0.44);
}

.band {
  background:
    linear-gradient(160deg, rgba(36, 52, 43, 0.96), rgba(28, 40, 34, 0.96)),
    radial-gradient(circle at 10% 10%, rgba(121, 193, 69, 0.22), transparent 36%);
  border-block: 1px solid rgba(168, 189, 154, 0.24);
  color: var(--text-invert);
}

.band .section-title,
.band .section-subtitle,
.band .card h2,
.band .card h3,
.band .card p,
.band p,
.band li {
  color: var(--text-invert);
}

.band .card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(178, 203, 159, 0.26);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  border-radius: 999px;
  border: 1px solid rgba(164, 186, 149, 0.5);
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 13px;
  font-size: 0.92rem;
}

.band .pill-list li {
  border-color: rgba(190, 215, 171, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.image-shell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(160, 180, 146, 0.45);
  box-shadow: var(--shadow-lg);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-shell:hover img {
  transform: scale(1.06);
}

.about-video-section .container {
  max-width: 1040px;
}

.about-video-section .image-shell {
  background: linear-gradient(145deg, #ffffff, #eef4e8);
}

.about-video-section video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  background: #0f1714;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pack-item {
  background: linear-gradient(140deg, #ffffff, #f3f8ed);
  border: 1px solid rgba(166, 188, 151, 0.54);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pack-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pack-item p {
  margin: 0;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.packaging-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.packaging-card {
  background: linear-gradient(140deg, #ffffff, #f3f8ed);
  border: 1px solid rgba(166, 188, 151, 0.54);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: auto 1fr;
}

.packaging-card-media {
  background: #fff;
  padding: 12px;
}

.packaging-card-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.packaging-card-content {
  padding: 14px 16px 12px;
  display: grid;
  gap: 8px;
}

.packaging-card-content h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #18231d;
}

.packaging-card-content ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 5px;
  color: var(--text-muted);
}

.steps {
  counter-reset: step;
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  background: linear-gradient(150deg, #ffffff, #f4f8ee);
  border: 1px solid rgba(165, 186, 150, 0.5);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.steps li h3 {
  margin-top: 0;
}

.faq-item {
  border: 1px solid rgba(166, 188, 151, 0.52);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(150deg, #ffffff, #f4f8ee);
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  border: 0;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--text-muted);
}

.faq-answer[hidden] {
  display: none;
}

.contact-panel {
  background:
    radial-gradient(circle at 8% 8%, rgba(154, 216, 95, 0.28), transparent 34%),
    linear-gradient(152deg, #233428, #2f4936 48%, #3e5f45);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(182, 208, 162, 0.3);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(162, 183, 147, 0.56);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.external-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 221, 183, 0.26), transparent 34%),
    linear-gradient(120deg, #8f5627, #ba7636 48%, #cf8a47);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 220, 186, 0.35);
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 8% 14%, rgba(121, 193, 69, 0.22), transparent 36%),
    radial-gradient(circle at 85% 18%, rgba(186, 118, 55, 0.24), transparent 34%),
    linear-gradient(rgba(16, 24, 20, 0.75), rgba(14, 20, 17, 0.8)),
    url("../images/hero/contact-hero.jpg") center / cover no-repeat;
  padding: 110px 0 86px;
  border-bottom: 1px solid rgba(177, 199, 163, 0.24);
}

body[data-page="peter-kuruvita"] .page-hero {
  background:
    radial-gradient(circle at 8% 14%, rgba(121, 193, 69, 0.22), transparent 36%),
    radial-gradient(circle at 85% 18%, rgba(186, 118, 55, 0.24), transparent 34%),
    linear-gradient(rgba(16, 24, 20, 0.75), rgba(14, 20, 17, 0.8)),
    url("../images/hero/petercover.jpg") center / cover no-repeat;
}

.peter-profile-section {
  padding-top: 38px;
  padding-bottom: 18px;
}

.page-peter-kuruvita-listing .peter-profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.page-peter-kuruvita-listing .peter-profile-card::before {
  background: linear-gradient(135deg, rgba(121, 193, 69, 0.09), rgba(186, 118, 55, 0.06) 58%, transparent 100%);
}

.peter-profile-copy,
.peter-profile-media {
  position: relative;
  z-index: 1;
}

.peter-profile-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.peter-profile-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #152018;
}

.peter-profile-role {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.page-peter-kuruvita-listing .peter-profile-copy p {
  margin: 0;
  max-width: 62ch;
}

.peter-profile-brand {
  color: #e58e36;
  font-weight: 800;
}

.peter-profile-media {
  justify-self: end;
  width: min(100%, 320px);
}

.peter-profile-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 1px solid rgba(166, 188, 151, 0.48);
  box-shadow: var(--shadow-sm);
}

/* History */
.history-hero {
  background:
    radial-gradient(circle at 8% 14%, rgba(121, 193, 69, 0.24), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(186, 118, 55, 0.24), transparent 34%),
    linear-gradient(rgba(16, 24, 20, 0.72), rgba(14, 20, 17, 0.8)),
    url("../images/history/2024/FineFoodMelbourne2024.jpg") center / cover no-repeat;
}

.history-section {
  padding-top: 72px;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 48px;
  min-width: 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 8px;
  left: 21px;
  width: 2px;
  background: linear-gradient(180deg, rgba(121, 193, 69, 0.78), rgba(186, 118, 55, 0.58));
}

.history-year {
  position: relative;
  padding-left: 58px;
  scroll-margin-top: calc(var(--header-height) + 24px);
  min-width: 0;
}

.history-year-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.history-year-marker {
  position: absolute;
  left: 0;
  top: 1px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(186, 118, 55, 0.48);
  background: linear-gradient(145deg, #fffaf1, #f4f8ee);
  box-shadow: var(--shadow-sm);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.history-year h2 {
  margin: 0;
  color: #152018;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  letter-spacing: 0;
}

.history-event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-width: 0;
}

.history-event-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(158, 181, 143, 0.44);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 238, 0.96));
  box-shadow: var(--shadow-sm);
}

.history-event-card img {
  width: 100%;
  max-width: 100%;
  height: clamp(230px, 62vw, 320px);
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: linear-gradient(145deg, #ffffff, #eef4e8);
  border-bottom: 1px solid rgba(166, 188, 151, 0.34);
  cursor: zoom-in;
}

.history-event-card h3 {
  margin: 0;
  padding: 15px 16px 17px;
  align-self: center;
  color: #18231d;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.history-year-nav {
  order: -1;
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  min-width: 0;
  width: 100%;
  padding: 10px 0 10px 18px;
}

.history-year-nav p {
  margin: 0;
}

.history-year-rail {
  position: relative;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0 8px 4px;
  scrollbar-width: none;
}

.history-year-rail::-webkit-scrollbar {
  display: none;
}

.history-year-rail::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 16px;
  width: 1px;
  background:
    linear-gradient(180deg, rgba(121, 193, 69, 0.82), rgba(186, 118, 55, 0.42));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.history-year-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 74px;
  min-height: 34px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: rgba(36, 51, 41, 0.68);
  font-weight: 800;
  letter-spacing: 0.02em;
  transform-origin: left center;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    text-shadow 0.22s ease,
    opacity 0.22s ease;
}

.history-year-nav a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(112, 145, 91, 0.48);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 32%, rgba(121, 193, 69, 0.9) 33% 100%);
  box-shadow:
    0 0 0 4px rgba(239, 245, 233, 0.86),
    0 0 0 rgba(121, 193, 69, 0);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.history-year-nav a:hover,
.history-year-nav a:focus-visible {
  transform: scale(1.08);
  color: #183124;
  text-shadow: 0 0 16px rgba(121, 193, 69, 0.16);
}

.history-year-nav a:hover::before,
.history-year-nav a:focus-visible::before {
  transform: scale(1.18);
  border-color: rgba(121, 193, 69, 0.86);
  box-shadow:
    0 0 0 4px rgba(239, 245, 233, 0.92),
    0 0 16px rgba(121, 193, 69, 0.28);
}

.history-year-nav a[aria-current="location"] {
  color: #152018;
  transform: scale(1.1);
  text-shadow: 0 0 18px rgba(121, 193, 69, 0.18);
}

.history-year-nav a[aria-current="location"]::before {
  transform: scale(1.26);
  border-color: rgba(70, 119, 45, 0.9);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0 24%, rgba(121, 193, 69, 0.98) 25% 68%, rgba(70, 119, 45, 0.95) 69% 100%);
  box-shadow:
    0 0 0 5px rgba(233, 241, 226, 0.98),
    0 0 18px rgba(121, 193, 69, 0.34);
}

.history-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 16, 12, 0.78);
  backdrop-filter: blur(10px);
}

.history-lightbox[hidden] {
  display: none;
}

.history-lightbox-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(88vh, 980px);
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(185, 206, 171, 0.24);
  background: linear-gradient(155deg, rgba(19, 33, 24, 0.94), rgba(25, 42, 31, 0.92));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.history-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 235, 214, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef5ec;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.history-lightbox-close:hover,
.history-lightbox-close:focus-visible {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(223, 235, 214, 0.42);
}

.history-lightbox-frame {
  display: grid;
  gap: 12px;
}

.history-lightbox-image {
  width: 100%;
  max-width: 100%;
  max-height: min(72vh, 860px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #edf4e6);
}

.history-lightbox-caption {
  margin: 0;
  color: #eef5ec;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(121, 193, 69, 0.14), transparent 32%),
    linear-gradient(165deg, #111914, #18231b 45%, #1d2b22);
  color: #dbe6d4;
  padding: 56px 0 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(171, 194, 156, 0.24);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-top: 0;
}

.footer-nav,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(186, 206, 173, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #edf6e8;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(121, 193, 69, 0.18);
  border-color: rgba(184, 222, 158, 0.6);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-meta {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #b8c7b1;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.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 (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .product-feature-compact {
    grid-template-columns: minmax(270px, 320px) 1fr;
    align-items: stretch;
  }

  .launch-teaser {
    grid-template-columns: minmax(240px, 320px) 1fr;
  }

  .launch-teaser-media {
    min-height: 240px;
  }

  .launch-teaser-content {
    padding: 24px 26px;
  }

  .product-feature-compact .feature-media {
    min-height: 220px;
  }

  .product-feature-compact .feature-content {
    padding: 20px 24px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
  }

  .campaign-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-peter-kuruvita-listing .peter-profile-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 320px);
    gap: 30px;
    padding: 30px 32px;
  }

  .home-products-track {
    grid-auto-columns: calc((100% - 36px) / 4);
  }

  .home-product-media {
    min-height: 250px;
  }

  .packaging-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-card {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  }

  .product-detail-media {
    min-height: 100%;
  }

  .product-detail-content {
    padding: 24px 26px;
    gap: 11px;
  }

  .campaign-visual {
    grid-template-columns: 1.2fr 0.8fr;
  }

}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: block;
    border: 0;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-list > li {
    position: relative;
  }

  .nav-list > li > a,
  .nav-list > li > button {
    padding: 11px 13px;
    border-radius: 8px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  }

  .nav-list > li > a:hover,
  .nav-list > li > button:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-list > li > a[data-nav="launch"]:hover {
    background: linear-gradient(120deg, rgba(236, 156, 79, 0.38), rgba(161, 221, 102, 0.2));
    border-color: rgba(244, 199, 149, 0.62);
  }

  .nav-list > li > a.nav-catalogue {
    margin: 0 0 0 4px;
    width: auto;
    padding: 11px 18px;
    border-radius: 999px;
    color: #1d281f;
    text-shadow: none;
    box-shadow: 0 10px 22px rgba(8, 20, 12, 0.22);
  }

  .nav-list > li > a.nav-catalogue:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(8, 20, 12, 0.28);
  }

  .nav-sublist {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 520;
    min-width: 270px;
    background: linear-gradient(170deg, #213328, #17241d);
    border: 1px solid rgba(178, 203, 159, 0.24);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(4, 8, 6, 0.42);
  }

  .nav-sublist a {
    padding: 10px 14px;
  }

  .hero .actions .btn {
    min-width: 250px;
  }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .pack-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-products-track { grid-auto-columns: calc((100% - 54px) / 4); }

  .home-product-media {
    min-height: 270px;
  }

  .packaging-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .certificates-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .history-layout {
    grid-template-columns: minmax(0, 1fr) 144px;
    align-items: start;
    gap: 34px;
  }

  .history-year-nav {
    order: 0;
    top: calc(var(--header-height) + 24px);
    margin-inline: 0;
    padding: 4px 0 4px 10px;
  }

  .history-year-rail {
    display: grid;
    gap: 12px;
    overflow: visible;
    padding: 18px 0 18px 6px;
  }

  .history-year-rail::before {
    top: 16px;
    bottom: 16px;
    left: 18px;
  }

  .history-year-nav a {
    min-width: 0;
    padding: 0;
  }

  .history-event-card img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 44px 0;
  }

  .page-hero {
    padding: 92px 0 64px;
  }

  .peter-profile-section {
    padding-top: 26px;
    padding-bottom: 6px;
  }

  .page-peter-kuruvita-listing .peter-profile-card {
    padding: 22px;
  }

  .peter-profile-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .peter-profile-role {
    font-size: 0.94rem;
  }

  .peter-profile-media {
    justify-self: start;
    width: min(100%, 260px);
  }

  .history-section {
    padding-top: 42px;
  }

  .history-timeline {
    gap: 38px;
  }

  .history-timeline::before {
    left: 17px;
  }

  .history-year {
    padding-left: 46px;
  }

  .history-year-marker {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .history-year-heading {
    min-height: 36px;
    margin-bottom: 14px;
  }

  .history-year-nav {
    order: -1;
    top: var(--header-height);
    padding: 0 0 0 10px;
  }

  .history-year-rail {
    gap: 10px;
    padding: 10px 0 10px 4px;
  }

  .history-year-rail::before {
    left: 16px;
  }

  .history-year-nav a {
    min-width: 64px;
    font-size: 0.92rem;
  }

  .history-lightbox {
    padding: 14px;
  }

  .history-lightbox-dialog {
    padding: 14px;
    border-radius: 18px;
  }

  .history-lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .history-lightbox-image {
    max-height: 70vh;
  }

  .history-event-card h3 {
    font-size: 0.96rem;
  }

  .about-slideshow {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .about-slide-arrow {
    width: 36px;
    height: 36px;
  }

  .about-slide img {
    height: clamp(210px, 58vw, 340px);
  }

  .home-products-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .home-products-track {
    grid-auto-columns: 100%;
  }

  .home-product-media {
    min-height: 210px;
  }

  .page-peter-kuruvita-listing .peter-card-ambassador img {
    object-position: center 14%;
  }

  .page-peter-kuruvita-listing .peter-card-media-release img {
    object-position: center 15%;
  }

  .page-peter-kuruvita-media-release .article-cover,
  .page-peter-kuruvita-ambassador .article-cover {
    aspect-ratio: 1 / 1;
  }

  .page-peter-kuruvita-media-release .article-cover img,
  .page-peter-kuruvita-ambassador .article-cover img {
    object-position: center 18%;
  }

  .product-meta-group .product-chip-list li {
    font-size: 0.86rem;
  }

  .product-card-actions .btn {
    min-width: 0;
    flex: 1 1 100%;
  }
}

