/* =========================================================
   GOLDEN GROVE HARVEST
   Official company website
========================================================= */

:root {
  --forest-950: #061d16;
  --forest-900: #0b3023;
  --forest-800: #124532;
  --forest-700: #1d5e45;
  --forest-600: #32785a;

  --gold-700: #9c6e13;
  --gold-600: #bb861e;
  --gold-500: #d7a734;
  --gold-400: #e8c76f;
  --gold-200: #f5e3ad;

  --cream-50: #fffdf8;
  --cream-100: #faf6e9;
  --cream-200: #f1e7cf;

  --white: #ffffff;
  --text-dark: #1a2922;
  --text: #3b4842;
  --text-soft: #6a756f;
  --border: #dde4df;

  --shadow-sm: 0 8px 24px rgba(11, 48, 35, 0.08);
  --shadow-md: 0 17px 44px rgba(11, 48, 35, 0.12);
  --shadow-lg: 0 30px 75px rgba(6, 29, 22, 0.17);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

section {
  scroll-margin-top: 90px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 48, 35, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 4px 20px rgba(11, 48, 35, 0.05);
}

.nav-container {
  width: min(calc(100% - 40px), var(--container));
  min-height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;

  box-shadow:
    0 9px 22px rgba(187, 134, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.13;
}

.brand-text strong {
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;

  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  position: relative;

  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.nav-links > a:not(.nav-contact-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;

  height: 2px;
  background: var(--gold-500);

  transition: right 0.22s ease;
}

.nav-links > a:not(.nav-contact-btn):hover {
  color: var(--forest-700);
}

.nav-links > a:not(.nav-contact-btn):hover::after {
  right: 0;
}

.nav-contact-btn {
  padding: 11px 20px;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      135deg,
      var(--forest-800),
      var(--forest-600)
    );

  color: var(--white) !important;

  box-shadow: 0 8px 20px rgba(18, 69, 50, 0.2);
}

.nav-contact-btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(11, 48, 35, 0.12);
  border-radius: 12px;

  background: var(--white);
  color: var(--forest-900);

  font-size: 24px;
  line-height: 1;

  box-shadow: var(--shadow-sm);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 880px;
  padding: 180px 20px 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(215, 167, 52, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 76%,
      rgba(245, 227, 173, 0.11),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      var(--forest-950) 0%,
      var(--forest-900) 45%,
      var(--forest-700) 100%
    );

  color: var(--white);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;

  width: 440px;
  height: 440px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -230px;
  left: -160px;

  width: 540px;
  height: 540px;

  border: 1px solid rgba(215, 167, 52, 0.25);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 68px 68px;
}

.hero-content {
  width: min(100%, 1020px);
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;

  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;

  font-size: clamp(50px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: -3.4px;
}

.hero h1 span {
  display: block;
  color: var(--gold-200);
}

.hero-description {
  max-width: 820px;
  margin: 29px auto 0;

  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions,
.final-actions {
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 15px 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius-pill);

  text-decoration: none;
  font-size: 15px;
  font-weight: 850;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.primary-btn {
  background:
    linear-gradient(
      135deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);

  box-shadow: 0 13px 32px rgba(215, 167, 52, 0.28);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(215, 167, 52, 0.36);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-highlights {
  max-width: 860px;
  margin : 76px auto 0;
  padding: 26px 30px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-highlights div {
  padding: 4px 22px;
}

.hero-highlights div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--gold-200);
  font-size: 18px;
  font-weight: 850;
}

.hero-highlights span {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}


/* =========================================================
   SHARED SECTIONS
========================================================= */

.section {
  padding: 108px 20px;
}

.section-container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 58px;

  text-align: center;
}

.center-heading h2,
.section-heading h2,
.services-heading h2,
.why-intro h2,
.responsibility-content h2,
.growth-grid h2,
.careers-content h2,
.contact-intro h2 {
  margin: 0;

  color: var(--forest-900);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -1.6px;
}

.center-heading > p:last-child {
  margin: 20px auto 0;

  color: var(--text-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  color: var(--forest-700);
  text-decoration: none;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.22s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  position: relative;
  z-index: 5;

  margin-top: -42px;
  padding: 0 20px 35px;
}

.trust-grid {
  padding: 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  padding: 13px 22px;

  display: flex;
  gap: 15px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.trust-item > span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.trust-item strong {
  display: block;

  color: var(--forest-900);
  font-size: 15px;
}

.trust-item p {
  margin: 5px 0 0;

  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 88px;
  align-items: start;
}

.about-content p {
  margin: 0 0 21px;

  color: var(--text-soft);
  font-size: 16px;
}

.about-content .lead-text {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.65;
}


/* =========================================================
   MISSION AND VISION
========================================================= */

.mission-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--cream-100)
    );
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.mission-card,
.vision-card {
  min-height: 420px;
  padding: 42px;

  position: relative;
  overflow: hidden;

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-highlights div {
  padding: 4px 22px;
}

.hero-highlights div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--gold-200);
  font-size: 18px;
  font-weight: 850;
}

.hero-highlights span {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}


/* =========================================================
   SHARED SECTIONS
========================================================= */

.section {
  padding: 108px 20px;
}

.section-container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 58px;

  text-align: center;
}

.center-heading h2,
.section-heading h2,
.services-heading h2,
.why-intro h2,
.responsibility-content h2,
.growth-grid h2,
.careers-content h2,
.contact-intro h2 {
  margin: 0;

  color: var(--forest-900);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -1.6px;
}

.center-heading > p:last-child {
  margin: 20px auto 0;

  color: var(--text-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  color: var(--forest-700);
  text-decoration: none;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.22s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  position: relative;
  z-index: 5;

  margin-top: -42px;
  padding: 0 20px 35px;
}

.trust-grid {
  padding: 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  padding: 13px 22px;

  display: flex;
  gap: 15px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.trust-item > span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.trust-item strong {
  display: block;

  color: var(--forest-900);
  font-size: 15px;
}

.trust-item p {
  margin: 5px 0 0;

  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 88px;
  align-items: start;
}

.about-content p {
  margin: 0 0 21px;

  color: var(--text-soft);
  font-size: 16px;
}

.about-content .lead-text {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.65;
}


/* =========================================================
   MISSION AND VISION
========================================================= */

.mission-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--cream-100)
    );
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.mission-card,
.vision-card {
  min-height: 420px;
  padding: 42px;

  position: relative;
  overflow: hidden;

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mission-card {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 167, 52, 0.18),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
}

.vision-card {
  border: 1px solid rgba(11, 48, 35, 0.11);

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 167, 52, 0.13),
      transparent 30%
    ),
    var(--white);
}

.card-number {
  margin: 0 0 70px;

  color: var(--gold-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.mission-card h2,
.vision-card h2 {
  margin: 0;

  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -1.2px;
}

.mission-card h2 {
  color: var(--white);
}

.vision-card h2 {
  color: var(--forest-900);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  padding: 31px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background:
    linear-gradient(
      180deg,
      var(--white),
      #fdfcf8
    );

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);

  border-color: rgba(215, 167, 52, 0.65);
  box-shadow: var(--shadow-lg);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-number {
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
}

.product-category {
  padding: 6px 12px;

  border-radius: var(--radius-pill);

  background: var(--cream-100);
  color: var(--forest-700);

  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.product-icon {
  width: 58px;
  height: 58px;

  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      var(--gold-200),
      var(--cream-200)
    );

  color: var(--gold-700);
  font-size: 14px;
  font-weight: 900;
}

.product-card h3 {
  margin: 24px 0 12px;

  color: var(--forest-900);
  font-size: 24px;
}

.product-card > p {
  color: var(--text-soft);
}

.product-card ul {
  margin: 22px 0 0;
  padding-left: 19px;
}

.product-card li {
  margin-bottom: 7px;

  color: var(--text-soft);
  font-size: 13px;
}

.products-note {
  margin-top: 30px;
  padding: 24px 27px;

  border-left: 4px solid var(--gold-500);
  border-radius: 8px;

  background: var(--cream-100);
  color: var(--text-soft);
}

.products-note strong {
  color: var(--forest-900);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--cream-100)
    );
}

.services-heading {
  margin-bottom: 55px;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.services-heading > p:last-child {
  margin: 0;

  color: var(--text-soft);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 31px;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-number {
  display: inline-block;

  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 38px 0 12px;

  color: var(--forest-900);
  font-size: 21px;
}

.service-card p {
  margin: 0;

  color: var(--text-soft);
  font-size: 14px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
  background: var(--white);
}

.process-list {
  max-width: 930px;
  margin: 0 auto;

  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 35px;

  width: 2px;

  background:
    linear-gradient(
      to bottom,
      var(--gold-500),
      var(--cream-200)
    );
}

.process-step {
  padding-bottom: 35px;

  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;

  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step > span {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 2;

  border: 7px solid var(--white);
  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--forest-900),
      var(--forest-600)
    );

  color: var(--gold-200);

  font-size: 13px;
  font-weight: 900;

  box-shadow: 0 8px 22px rgba(11, 48, 35, 0.18);
}

.process-step > div {
  padding: 26px 29px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  margin: 0 0 9px;

  color: var(--forest-900);
  font-size: 20px;
}

.process-step p {
  margin: 0;

  color: var(--text-soft);
  font-size: 15px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 167, 52, 0.16),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: 120px;
}

.why-intro h2 {
  color: var(--white);
}

.why-intro > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.7);
}

.light-text-link {
  color: var(--gold-200);
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list article {
  padding: 25px 27px;

  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.06);
}

.why-list article > span {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
}

.why-list h3 {
  margin: 0 0 7px;

  color: var(--white);
  font-size: 18px;
}

.why-list p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}


/* =========================================================
   RESPONSIBILITY
========================================================= */

.responsibility-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--white)
    );
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.responsibility-content > p:not(.section-label) {
  color: var(--text-soft);
}

.responsibility-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.responsibility-cards article {
  padding: 28px;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.responsibility-cards span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.responsibility-cards h3 {
  margin: 28px 0 10px;

  color: var(--forest-900);
  font-size: 19px;
}

.responsibility-cards p {
  margin: 0;

  color: var(--text-soft);
  font-size: 14px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  padding: 29px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background:
    linear-gradient(
      180deg,
      var(--white),
      #fdfcf8
    );

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.industry-card > span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.industry-card h3 {
  margin: 28px 0 10px;

  color: var(--forest-900);
  font-size: 20px;
}

.industry-card p {
  margin: 0;

  color: var(--text-soft);
  font-size: 14px;
}


/* =========================================================
   GROWTH
========================================================= */

.growth-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-100),
      var(--cream-50)
    );
}

.growth-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.growth-grid > div:first-child > p:last-child {
  color: var(--text-soft);
}

.growth-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.growth-points article {
  padding: 27px;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.growth-points strong,
.growth-points span {
  display: block;
}

.growth-points strong {
  color: var(--forest-900);
  font-size: 20px;
}

.growth-points span {
  margin-top: 7px;

  color: var(--text-soft);
  font-size: 13px;
}


/* =========================================================
   CAREERS
========================================================= */

.careers-section {
  background: var(--white);
}

.careers-card {
  padding: 52px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  align-items: center;

  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 167, 52, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  box-shadow: var(--shadow-lg);
}

.careers-content h2 {
  color: var(--white);
}

.careers-content > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.careers-action {
  text-align: center;
}

.careers-action small {
  display: block;
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--cream-100)
    );
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: start;
}

.contact-intro > p:last-child {
  color: var(--text-soft);
}

.contact-panel {
  padding: 39px;

  border: 1px solid rgba(11, 48, 35, 0.1);
  border-radius: var(--radius-lg);

  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-item {
  padding: 18px 0;

  border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;

  color: var(--gold-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;

  color: var(--forest-900);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.contact-btn {
  margin-top: 27px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  min-height: 560px;
  padding: 105px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(215, 167, 52, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
  text-align: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );

  background-size: 62px 62px;
}

.final-cta-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin: 0;

  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -2.3px;
}

.final-cta-content > p:not(.section-label) {
  margin: 23px auto 0;

  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #061912;
  color: var(--white);
}

.footer-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 74px 0;

  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.72fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand strong,
.footer-links strong,
.footer-contact strong {
  display: block;

  color: var(--white);
  font-size: 17px;
}

.footer-brand p,
.footer-contact a {
  margin: 9px 0 0;

  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-200);
}

.footer-contact a {
  display: block;
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 23px 0 31px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-200);
  color: var(--forest-950);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

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

  .about-grid,
  .services-heading,
  .why-grid,
  .responsibility-grid,
  .growth-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-intro {
    position: static;
  }

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

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


/* =========================================================
   MOBILE NAVIGATION + LAYOUT
========================================================= */

@media (max-width: 820px) {
  .nav-container {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;

    padding: 18px;

    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-links a {
    width: 100%;
    padding: 11px 10px;
  }

  .nav-links > a:not(.nav-contact-btn)::after {
    display: none;
  }

  .nav-contact-btn {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 145px 18px 84px;
  }

  .hero h1 {
    letter-spacing: -2.2px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 17px;

    text-align: left;
  }

  .hero-highlights div {
    padding: 3px 5px;
  }

  .hero-highlights div + div {
    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .mission-grid,
  .products-grid,
  .services-grid,
  .responsibility-cards,
  .industries-grid,
  .growth-points {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  .nav-container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero {
    padding: 128px 15px 68px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-highlights {
    margin-top: 49px;
    padding: 20px;
  }

  .trust-strip {
    margin-top: -20px;
    padding-inline: 14px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .trust-item {
    padding: 17px 8px;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .section {
    padding: 77px 15px;
  }

  .center-heading {
    margin-bottom: 40px;
  }

  .center-heading h2,
  .section-heading h2,
  .services-heading h2,
  .why-intro h2,
  .responsibility-content h2,
  .growth-grid h2,
  .careers-content h2,
  .contact-intro h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .mission-card,
  .vision-card {
    min-height: 350px;
    padding: 29px 23px;
  }

  .card-number {
    margin-bottom: 52px;
  }

  .product-card,
  .service-card,
  .industry-card,
  .responsibility-cards article,
  .growth-points article {
    padding: 25px 21px;
  }

  .process-list::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .process-step > span {
    width: 55px;
    height: 55px;

    border-width: 5px;
  }

  .process-step > div {
    padding: 22px;
  }

  .why-list article {
    grid-template-columns: 34px 1fr;
    padding: 22px 20px;
  }

  .careers-card {
    padding: 31px 23px;
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .final-cta {
    min-height: 520px;
    padding: 84px 16px;
  }

  .final-cta h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .footer-container {
    width: min(calc(100% - 30px), var(--container));
    padding: 57px 0;
  }

  .footer-bottom {
    width: min(calc(100% - 30px), var(--container));
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}