/* ============ GLOBAL RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: #002c38;
  padding-top: 80px; /* space for fixed header */
}

/* Make anchor jumps respect header height */
section[id] {
  scroll-margin-top: 90px;
}

/* ============ VARIABLES ============ */
:root {
  --clr-primary-dark: #1a3a44;
  --clr-primary-light: #f7e0bb;
  --clr-accent-green: #00e0b7;
  --clr-text-heading: #0a111f;
  --clr-text-muted: #495565;
  --clr-white: #ffffff;

  --spacing-xs: 20px;
  --spacing-sm: 40px;
  --spacing-md: 60px;
  --spacing-lg: 100px;
  --spacing-xl: 180px;
  --transition-speed: 0.35s;

  --color-teal: #184b55;
  --color-teal-hover: #1f5f69;
  --color-dark: #111;
  --color-white: #fff;

  /* gold tones for rich vibes */
  --color-gold: #f4c96b;
  --color-gold-soft: #fff5da;
}

/* ============ SITE HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: radial-gradient(circle at 100% 0%, #00e0b7 0%, #02141a 38%, #001821 100%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  overflow: visible;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #00e0b7, #f9b233, #00e0b7);
  opacity: 0.85;
  pointer-events: none;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.site-logo span {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffe16a;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
}

/* NAV LINKS */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e6f6f4;
  opacity: 0.86;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(0, 224, 183, 0.45), transparent 60%),
    linear-gradient(120deg, rgba(0, 224, 183, 0.4), rgba(249, 178, 51, 0.4));
  opacity: 0;
  transform: scale(0.9);
  filter: blur(1px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: -1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00e0b7, #f9b233);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  width: 44px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(circle at 100% 0%, #00e0b7 0%, #021d23 35%, #001821 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  padding: 0 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.7);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* header responsive */
@media (max-width: 800px) {
  .site-header-inner {
    padding: 0.65rem 1.1rem;
    gap: 0.75rem;
  }

  .site-logo span {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    top: 100%;
    margin-top: 0.4rem;
    padding: 0.6rem 0.8rem 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    background: radial-gradient(circle at 100% 0%, #00e0b7 0%, #02141a 45%, #001821 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.7);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
  }

  .site-nav a::after {
    left: 10%;
    right: 10%;
    bottom: 3px;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    justify-content: space-between;
  }
}

/* ============ BACKGROUND SQUARES (HERO) ============ */
.bg {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

.dark2 {
  width: 40vw;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  bottom: 0;
  left: 0;
  background: #021d23;
}

.accent {
  position: absolute;
  background: rgba(132, 198, 78, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1;
  pointer-events: none;
}

.a1 {
  width: 30vw;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  top: 12%;
  left: 2%;
  background: #023547;
}
.a2 {
  width: 24vw;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  top: 4%;
  right: 4%;
  background: #0b3144;
}
.a3,
.a4,
.a5 {
  background: transparent;
  border: 2px solid #265150;
}
.a3 {
  width: 14vw;
  aspect-ratio: 1 / 1;
  top: 16%;
  right: 34%;
}
.a4 {
  width: 32vw;
  aspect-ratio: 1 / 1;
  bottom: 8%;
  right: 36%;
}
.a5 {
  width: 17vw;
  aspect-ratio: 1 / 1;
  bottom: 30%;
  right: 10%;
}

/* ============ HERO ============ */
.layout {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 7vw, 5.5rem);
  background: #002c38;
  column-gap: clamp(2rem, 6vw, 4rem);
  overflow: hidden;
}

/* UPDATED: center logo/text block in left hero */
.left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  min-height: min(60vh, 480px);
}

/* UPDATED: stack logo above text and center */
.left-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.logo img {
  width: clamp(56px, 4vw, 70px);
  height: clamp(56px, 4vw, 70px);
  object-fit: contain;
}

/* UPDATED: allow line break + center text */
.brand-text h1 {
  color: #f9b233;
  font-size: clamp(2.4rem, 3.8vw, 3.1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 900;
  text-align: center;
}

.brand-text h1 span {
  color: #ffd966;
}

/* UPDATED: year sits just under the logo/text, centered */
.year {
  margin-top: 0;
  width: 9.5rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  font-size: 1.45rem;
  color: #ffffff;
}

/* RIGHT HERO SIDE */
.right {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  margin-left: -50%;
}

.product-package {
  position: absolute;
  width: 30%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background: #20842f33;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-package img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-package:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
}

.package2 {
  top: 8%;
  left: 68%;
}
.package3 {
  top: 26%;
  left: 48%;
}
.package1 {
  top: 60%;
  left: 34%;
}
.package4 {
  top: 60%;
  left: 72%;
}

/* ============ PARTNERS ============ */
.partners-section {
  width: 100%;
  background: #ffffff;
}

.partners-header {
  background: #dceccf;
  padding: 48px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.partners-title {
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0a111f;
}

.partners-cta {
  background: #184b55;
  padding: 22px 32px;
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-cta-text {
  color: #ffe16a;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1rem;
}

.partners-grid {
  padding: 60px 70px 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 34px 28px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.95;
  transition: 0.25s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}

/* ============ ABOUT GRID ============ */
.about-grid {
  position: relative;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--clr-white);
  overflow: hidden;
}

.about-heading {
  font-size: 2.5rem;
  letter-spacing: 3px;
  color: var(--clr-text-heading);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
}

.about-image-column {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  height: 430px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 0 3px var(--clr-accent-green);
  z-index: 3;
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem;
  background-color: var(--clr-white);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 6;
}

.about-btn {
  align-self: flex-end;
  background-color: var(--clr-primary-dark);
  color: var(--clr-primary-light);
  padding: 0.8rem 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

/* ABOUT squares */
.about-sq {
  position: absolute;
  background: rgba(144, 238, 144, 0.3);
  border: 2px solid rgba(144, 238, 144, 0.45);
  z-index: 1;
}
.about-sq.s1 {
  width: 260px;
  height: 260px;
  bottom: 0;
  right: 0;
}
.about-sq.s2 {
  width: 200px;
  height: 200px;
  bottom: 0;
  right: 180px;
}
.about-sq.s3 {
  width: 180px;
  height: 180px;
  bottom: 230px;
  right: 0;
  background: transparent;
}
.about-sq.s4 {
  width: 300px;
  height: 300px;
  bottom: 0;
  right: 300px;
  background: transparent;
}

/* ABOUT desktop layout */
@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: 120px 420px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "heading image content"
      "heading image content";
    padding: 5rem 5rem;
    height: 100vh;
    gap: 3rem;
  }

  .about-heading {
    grid-area: heading;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 5rem;
    letter-spacing: 10px;
    white-space: nowrap;
    justify-self: center;
    align-self: center;
  }

  .about-image-column {
    grid-area: image;
    height: 100%;
    margin: auto 0;
  }

  .about-content {
    grid-area: content;
    max-width: 680px;
    margin: auto;
    padding: 4rem;
    border-radius: 16px;
  }
}

/* ABOUT mobile */
@media (max-width: 700px) {
  .about-sq {
    display: none;
  }

  .about-grid {
    padding: 0 0 2rem;
    gap: 1rem;
  }

  .about-heading {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    letter-spacing: 2px;
    text-align: center;
    padding: 1.25rem 1rem 0.5rem;
  }

  .about-image-column {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 45vh;
    min-height: 260px;
    max-height: 420px;
    border-radius: 0;
    box-shadow: none;
  }

  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-content {
    padding: 0 1rem 1rem;
    background: transparent;
    box-shadow: none;
    gap: 0.9rem;
  }

  .about-btn {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.12em;
    background: #184b55;
    color: #ffe16a;
  }

  .about-paragraph {
    background: #f7faf8;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--clr-accent-green);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--clr-text-heading);
    text-align: justify;
  }
}

/* ============ WHY US LIST ============ */
.whyus-info-text ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  line-height: 1.7;
}
.whyus-info-text li {
  margin-bottom: 6px;
}

.whyus-wrapper {
  position: relative;
}
.whyus-bottom-image {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.whyus-bottom-image img {
  height: 150px;
  width: auto;
}

@media (max-width: 700px) {
  .whyus-bottom-image {
    position: static;
    transform: none;
    margin-top: 1rem;
    text-align: center;
  }
  .whyus-bottom-image img {
    height: 90px;
  }
}

/* ============ DESIGN SECTION ============ */
.design-section {
  position: relative;
  background-color: var(--clr-white);
}

.design-section .about-image-column {
  max-width: 960px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 22px;
  border: none;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("images/leaf_cropped.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
}

.design-img {
  flex: 1 1 30%;
  max-width: 280px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.design-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

/* tablet */
@media (max-width: 1024px) {
  .design-section .about-image-column {
    padding: 1.25rem;
  }
  .design-img {
    flex: 1 1 45%;
    max-width: 200px;
  }
}

/* phone */
@media (max-width: 600px) {
  .design-section .about-image-column {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.6rem;
  }

  .design-section .design-img {
    flex: 0 0 calc(33.33% - 0.4rem);
    max-width: calc(33.33% - 0.4rem);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }
}

/* ============ WE PRODUCE BASE ============ */
.produce-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-xs);
}

.produce-heading {
  font-size: 2.2rem;
  letter-spacing: 4px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clr-text-heading);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 12px;
  z-index: 9;
}

.produce-caption {
  text-align: center;
  color: #2c2c2c;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-md);
  z-index: 10;
  opacity: 0.92;
}

.produce-row,
.produce-row2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow-x: auto;
  padding: 10px 8px 30px;
  z-index: 5;
  scroll-snap-type: x mandatory;
}

.produce-card {
  flex: 0 0 auto;
  width: 240px;
  max-width: 240px;
  padding: 12px;
  border-radius: 14px;
  scroll-snap-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.produce-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(119, 179, 67, 0.22);
}

.produce-image {
  height: auto;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0px 12px 30px rgba(0, 0, 0, 0.25));
  max-height: 340px;
}

.produce-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 8;
}

.produce-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  padding: 14px 36px;
  border-radius: 6px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 240px;
  box-shadow: 0 4px 12px rgba(24, 75, 85, 0.3);
  transition: all 0.3s ease;
}

.produce-btn:hover {
  background: var(--color-teal-hover);
  transform: translateY(-2px);
}

.produce-band {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 70px;
  height: 280px;
  background: var(--color-teal);
  border-radius: 6px;
  z-index: 0;
}

.produce-left-column {
  display: none;
}

/* desktop layout */
@media (min-width: 1024px) {
  .produce-heading {
    display: none;
  }

  .produce-wrapper {
    display: block;
    padding: 0;
  }

  .produce-left-column {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .produce-left-text {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.32em;
    color: var(--color-dark);
    text-transform: uppercase;
    opacity: 0.85;
  }

  .produce-header {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-sm);
  }

  .produce-btn {
    padding: 18px 55px;
  }

  .produce-band {
    display: block;
    position: absolute;
    left: var(--spacing-xl);
    right: var(--spacing-lg);
    bottom: var(--spacing-lg);
    height: 450px;
  }

  .produce-row,
  .produce-row2 {
    position: absolute;
    left: 18%;
    right: 12%;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    overflow: visible;
  }

  .produce-row {
    top: 22%;
  }
  .produce-row2 {
    top: 26%;
  }

  .produce-card {
    width: 340px;
    max-width: none;
  }

  .produce-caption {
    position: absolute;
    left: 260px;
    bottom: 150px;
    color: var(--color-white);
    text-align: left;
    margin-bottom: 0;
  }
}

/* mobile produce */
@media (max-width: 1023px) {
  .produce-wrapper {
    min-height: auto;
    padding: 2rem 1rem 2.5rem;
  }

  .produce-band,
  .produce-left-column {
    display: none;
  }

  .produce-heading {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.6rem;
  }

  .produce-caption {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.09em;
  }

  .produce-header {
    justify-content: center;
  }

  .produce-btn {
    margin-top: 0.5rem;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    min-width: auto;
  }

  .produce-row,
  .produce-row2 {
    margin-top: 1.5rem;
    border-radius: 16px;
    padding: 1.2rem 1rem 1.4rem;
    background: var(--color-teal);
    justify-content: space-between;
  }

  .produce-card {
    flex: 0 0 32%;
    max-width: 32%;
    padding: 0;
    height: 150px;
    box-shadow: none;
  }

  .produce-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  }

  .produce-wrapper .about-sq {
    display: none;
  }
}

@media (max-width: 767px) {
  .produce-row.produce-row--4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-inline: 0.9rem;
  }

  .produce-row.produce-row--4 .produce-card {
    max-width: none;
    width: 100%;
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .produce-row.produce-row--4 {
    left: 18%;
    right: 12%;
    gap: 24px;
  }

  .produce-row.produce-row--4 .produce-card {
    flex: 1 1 0;
    width: auto;
  }
}

/* ============ RESPONSIVE HERO ============ */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 2.5rem;
    justify-items: center;
    padding: 3rem 2rem 2.5rem;
    min-height: auto;
  }

  .left {
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .left-top {
    justify-content: center;
  }

  .year {
    align-self: center;
    margin-top: 1.5rem;
  }

  .right {
    margin: 0 auto;
    max-width: 520px;
  }

  .product-package {
    width: 28%;
  }
}

@media (max-width: 767px) {
  .layout {
    padding: 2.5rem 1.25rem 2rem;
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .bg,
  .accent {
    display: none;
  }

  .brand-text h1 {
    font-size: 1.8rem;
    letter-spacing: 0.18em;
    text-align: center;
  }

  .left {
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .year {
    width: 130px;
    height: 60px;
    font-size: 1.1rem;
  }

  .right {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    justify-items: stretch;
    align-items: stretch;
    aspect-ratio: auto;
    margin-left: -3%;
  }

  .product-package {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    padding: 0.6rem;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    transform: none;
  }

  .product-package img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-package:hover {
    transform: none;
  }
}

/* partners responsive */
@media (max-width: 900px) {
  .partners-header {
    padding: 36px 24px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .partners-title {
    font-size: 2.2rem;
    letter-spacing: 0.18em;
  }

  .partners-grid {
    padding: 40px 24px 70px;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 26px 18px;
  }

  .partner-logo {
    max-width: 110px;
    max-height: 55px;
  }
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  width: 100%;
  background: radial-gradient(circle at 0% 0%, #08543b 0%, #021713 48%, #000f0d 100%);
  padding: 4rem 1.5rem 4.5rem;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 3rem 3rem 3.25rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(4, 40, 30, 0.98), rgba(9, 63, 44, 0.98));
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* subtle green-gold glow */
.contact-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(0, 224, 183, 0.25), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(244, 201, 107, 0.35), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.contact-heading-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.6rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-heading {
  font-size: 2.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(0, 0, 0, 1);
}

.contact-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  box-shadow: 0 0 18px rgba(244, 201, 107, 0.8);
}

/* form card */
.contact-form {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 2.1rem 2.2rem 2.4rem;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), rgba(5, 35, 26, 0.98));
  border: 1px solid rgba(244, 201, 107, 0.55);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* rows */
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(244, 201, 107, 0.35);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), rgba(2, 24, 18, 0.98));
  color: #fdfdfd;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(244, 201, 107, 0.35);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), rgba(2, 24, 18, 1));
  transform: translateY(-1px);
}

/* luxurious button */
.contact-submit {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 65, 50, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: linear-gradient(120deg, #f4c96b, #ffe8c2, #f3c35a);
  color: #143a29;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(244, 201, 107, 0.6);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(244, 201, 107, 0.85);
  filter: brightness(1.02);
}

.contact-submit:active {
  transform: translateY(0);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.9),
    0 0 14px rgba(244, 201, 107, 0.7);
}

/* status messages (kept) */
.contact-status {
  display: none;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-status--success { color: #b8ffd2; }
.contact-status--error { color: #ffb3b3; }

.contact-status.is-visible { display: block; }

/* contact responsive */
@media (max-width: 900px) {
  .contact-section {
    padding: 3.2rem 1.2rem 3.6rem;
  }

  .contact-inner {
    padding: 2.4rem 1.8rem 2.6rem;
  }

  .contact-heading {
    font-size: 2rem;
    letter-spacing: 0.22em;
  }

  .contact-form {
    padding: 1.8rem 1.6rem 2rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 2.6rem 1rem 3.1rem;
  }

  .contact-inner {
    padding: 2rem 1.25rem 2.2rem;
    border-radius: 1.1rem;
  }

  .contact-form {
    padding: 1.6rem 1.3rem 1.9rem;
  }
}

/* ===== Contact Modal Popup (FIXED + MATCHES HTML) ===== */
.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

/* Center reliably */
.contact-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* HTML uses __panel */
.contact-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: calc(100% - 2rem);
  margin: 0;
  background: #0b2d23;
  color: #fff;
  padding: 24px 22px;
  border-radius: 14px;
  border: 1px solid rgba(244, 201, 107, 0.55);
  box-shadow: 0 18px 50px rgba(0,0,0,0.8);
}

.contact-modal__title {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe8c2;
  margin-bottom: 8px;
}

.contact-modal__message {
  opacity: 0.95;
  line-height: 1.5;
}

.contact-modal__close {
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 201, 107, 0.55);
  background: linear-gradient(120deg, #f4c96b, #ffe8c2, #f3c35a);
  color: #143a29;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}
