/* =========================================================
   GOLDEN GROVE HARVEST CAREERS
   Premium responsive landing page
========================================================= */

:root {
  --forest-950: #071f18;
  --forest-900: #0b2d22;
  --forest-800: #123d2f;
  --forest-700: #1b5540;
  --forest-600: #2f7257;

  --gold-700: #9f7013;
  --gold-600: #bd881d;
  --gold-500: #d7a632;
  --gold-400: #e8c56b;
  --gold-200: #f5e3ad;

  --cream-50: #fffdf8;
  --cream-100: #fbf7ec;
  --cream-200: #f3ead4;

  --white: #ffffff;
  --text-dark: #1c2923;
  --text: #37453e;
  --text-soft: #69756f;
  --border: #dde4df;

  --danger-bg: #fff8e9;
  --danger-border: #e8c56b;

  --shadow-sm: 0 8px 24px rgba(11, 45, 34, 0.08);
  --shadow-md: 0 16px 40px rgba(11, 45, 34, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 31, 24, 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: 88px;
}

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.91);
  border-bottom: 1px solid rgba(11, 45, 34, 0.09);

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

  box-shadow: 0 4px 20px rgba(11, 45, 34, 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;

  color: inherit;
  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(189, 136, 29, 0.27),
    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: 26px;
}

.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-apply-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-apply-btn):hover {
  color: var(--forest-700);
}

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

.nav-apply-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, 61, 47, 0.2);
}

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

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(11, 45, 34, 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: 850px;
  padding: 175px 20px 95px;

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

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(215, 166, 50, 0.23),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 77%,
      rgba(245, 227, 173, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--forest-950) 0%,
      var(--forest-900) 42%,
      var(--forest-700) 100%
    );

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

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

  width: 430px;
  height: 430px;

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

.hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -150px;

  width: 520px;
  height: 520px;

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

.hero-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: 68px 68px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      transparent
    );
}

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

.eyebrow,
.section-label,
.panel-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(48px, 7vw, 84px);
  line-height: 1.03;
  letter-spacing: -3.3px;
}

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

.hero-description {
  max-width: 810px;
  margin: 28px auto 0;

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

.hero-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, 166, 50, 0.27);
}

.primary-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 38px rgba(215, 166, 50, 0.35);
}

.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: 850px;
  margin: 74px auto 0;
  padding: 25px 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 21px;
}

.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;
}

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

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

  text-align: center;
}

.center-heading h2,
.section-heading h2,
.employment-grid h2,
.requirements-content h2,
.standards-intro h2,
.privacy-grid h2,
.safety-heading 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;
}

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

.intro-content p {
  margin: 0 0 22px;

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


/* =========================================================
   FEATURE CARDS
========================================================= */

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

.feature-card {
  padding: 31px 25px;

  border: 1px solid rgba(18, 61, 47, 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,
    border-color 0.25s ease;
}

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

  border-color: rgba(215, 166, 50, 0.48);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 49px;
  height: 49px;

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

  border-radius: 14px;

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

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

.feature-card h3 {
  margin: 24px 0 11px;

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

.feature-card p {
  margin: 0;

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


/* =========================================================
   ROLE CARDS
========================================================= */

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

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

.role-card {
  padding: 37px;

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

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

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

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

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

  border-color: rgba(215, 166, 50, 0.68);
  box-shadow: var(--shadow-lg);
}

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

.role-number {
  color: var(--gold-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.role-type {
  padding: 7px 13px;

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

  background: #eaf4ef;
  color: var(--forest-700);

  font-size: 12px;
  font-weight: 800;
}

.role-card h3 {
  margin: 23px 0 15px;

  color: var(--forest-900);
  font-size: 27px;
  line-height: 1.2;
}

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

.role-card h4 {
  margin: 26px 0 10px;

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

.role-card ul {
  margin: 0;
  padding-left: 20px;
}

.role-card li {
  margin-bottom: 8px;

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

.roles-note {
  margin-top: 31px;
  padding: 21px 24px;

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

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

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


/* =========================================================
   EMPLOYMENT TYPES
========================================================= */

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

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

  color: var(--white);
}

.employment-section::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;

  width: 400px;
  height: 400px;

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

.employment-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 74px;
  align-items: center;

  position: relative;
  z-index: 2;
}

.employment-grid h2 {
  color: var(--white);
}

.employment-grid > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

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

.employment-card {
  padding: 31px;

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

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

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

.employment-badge {
  display: inline-block;
  padding: 6px 12px;

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

  background: rgba(215, 166, 50, 0.18);
  color: var(--gold-200);

  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.employment-card h3 {
  margin: 20px 0 12px;

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

.employment-card p,
.employment-card li {
  color: rgba(255, 255, 255, 0.7);
}

.employment-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.employment-card li {
  margin-bottom: 8px;
  font-size: 14px;
}


/* =========================================================
   EXPECTATIONS
========================================================= */

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

.expectation-card {
  padding: 29px;

  border: 1px solid rgba(18, 61, 47, 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;
}

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

.expectation-card::before {
  content: "";
  width: 42px;
  height: 5px;

  display: block;

  margin-bottom: 22px;

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

  background:
    linear-gradient(
      to right,
      var(--gold-500),
      var(--forest-600)
    );
}

.expectation-card h3 {
  margin: 0 0 10px;

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

.expectation-card p {
  margin: 0;

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


/* =========================================================
   WORK REQUIREMENTS
========================================================= */

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

.requirements-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

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

.check-list {
  margin: 26px 0 0;
  padding: 0;

  list-style: none;
}

.check-list li {
  position: relative;

  margin-bottom: 13px;
  padding-left: 35px;

  color: var(--text);
}

.check-list li::before {
  content: "✓";

  position: absolute;
  top: 1px;
  left: 0;

  width: 23px;
  height: 23px;

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

  border-radius: 50%;

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

  font-size: 12px;
  font-weight: 900;
}

.requirements-panel {
  padding: 42px;

  border: 1px solid rgba(215, 166, 50, 0.35);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 166, 50, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--cream-50),
      var(--cream-100)
    );

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

.panel-label {
  color: var(--gold-700);
}

.requirements-panel h3 {
  margin: 0 0 15px;

  color: var(--forest-900);
  font-size: 28px;
  line-height: 1.25;
}

.requirements-panel p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
}


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

.process-section {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fdfcf8
    );
}

.process-list {
  max-width: 920px;
  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, 45, 34, 0.17);
}

.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;
}


/* =========================================================
   HIRING STANDARDS
========================================================= */

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

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

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

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

.standards-list {
  display: grid;
  gap: 18px;
}

.standards-list article {
  padding: 27px 29px;

  border: 1px solid rgba(18, 61, 47, 0.1);
  border-radius: var(--radius-md);

  background: var(--white);

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

.standards-list h3 {
  margin: 0 0 8px;

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

.standards-list p {
  margin: 0;

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


/* =========================================================
   PRIVACY
========================================================= */

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

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

.privacy-content {
  padding: 36px;

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

  background: var(--cream-50);
}

.privacy-content p {
  margin: 0 0 19px;

  color: var(--text-soft);
}

.privacy-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   APPLICANT SAFETY
========================================================= */

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

.safety-card {
  padding: 50px;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;

  border: 1px solid var(--danger-border);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(215, 166, 50, 0.15),
      transparent 30%
    ),
    var(--danger-bg);

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

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

.safety-content {
  display: flex;
  align-items: center;
}


/* =========================================================
   FAQ
========================================================= */

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

.faq-list {
  max-width: 920px;
  margin: 0 auto;

  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;

  border: 1px solid rgba(18, 61, 47, 0.1);
  border-radius: var(--radius-sm);

  background: var(--white);

  box-shadow: 0 6px 18px rgba(11, 45, 34, 0.045);
}

.faq-list summary {
  padding: 22px 25px;

  cursor: pointer;
  list-style: none;

  color: var(--forest-900);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;

  color: var(--gold-700);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary {
  background: var(--cream-50);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 25px 24px;

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


/* =========================================================
   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, 166, 50, 0.23),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(245, 227, 173, 0.1),
      transparent 25%
    ),
    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: 790px;
  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;
}

.light-btn {
  margin-top: 33px;
}

.final-cta small {
  display: block;
  margin-top: 18px;

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


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

.footer {
  background: #061a14;
  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.75fr 1fr;
  gap: 55px;
}

.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: 18px;
}

.footer-brand p,
.footer-contact p {
  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: 11px;
}

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

  transition: color 0.2s ease;
}

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

.footer-contact strong {
  color: var(--gold-200);
}

.footer-contact a {
  display: inline-block;
  margin-top: 15px;

  color: var(--gold-200);
  font-weight: 800;
}

.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,
summary: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) {
  .feature-grid,
  .expectations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .employment-grid,
  .requirements-grid,
  .standards-grid,
  .privacy-grid,
  .safety-card {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .standards-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   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-apply-btn)::after {
    display: none;
  }

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

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

  .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;
  }

  .roles-grid,
  .employment-options,
  .expectations-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    padding: 38px 30px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .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 66px;
  }

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

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

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

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

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

  .section {
    padding: 77px 15px;
  }

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

  .center-heading h2,
  .section-heading h2,
  .employment-grid h2,
  .requirements-content h2,
  .standards-intro h2,
  .privacy-grid h2,
  .safety-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .role-card {
    padding: 26px 21px;
  }

  .role-card h3 {
    font-size: 23px;
  }

  .employment-card,
  .expectation-card {
    padding: 24px 21px;
  }

  .requirements-panel {
    padding: 30px 23px;
  }

  .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;
  }

  .privacy-content {
    padding: 26px 22px;
  }

  .safety-card {
    padding: 29px 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;
  }
}