:root {
  --green-950: #12351f;
  --green-900: #174a2a;
  --green-800: #216037;
  --green-700: #2d7547;
  --green-100: #e8f2eb;
  --green-050: #f4f8f5;
  --gold: #b98528;
  --cream: #fbfaf5;
  --ink: #1b241e;
  --muted: #58635c;
  --line: #d9e1db;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 54, 31, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--green-950);
  color: white;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.operator-bar {
  background: var(--green-950);
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.operator-inner {
  max-width: var(--max);
  min-height: 38px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.operator-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.operator-contact a { text-decoration: none; }
.operator-contact a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; line-height: 1.05; }
.brand strong { display: block; font-size: 27px; color: var(--green-800); letter-spacing: -.03em; }
.brand span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; letter-spacing: .035em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-weight: 650; font-size: 15px; color: #263329; }
.nav a:hover, .nav a:focus-visible { color: var(--green-700); }
.nav .nav-cta { padding: 10px 15px; border-radius: 9px; color: white; background: var(--green-800); }
.nav .nav-cta:hover { color: white; background: var(--green-950); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; color: var(--green-950); }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: currentColor; }

main { overflow: hidden; }
.section { padding: 78px 24px; }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.eyebrow { margin: 0 0 10px; color: var(--green-700); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { margin-top: 0; color: var(--green-950); line-height: 1.14; letter-spacing: -.025em; overflow-wrap: break-word; hyphens: auto; }
h1 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.6vw, 3.35rem); }
h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3.2vw, 2.65rem); }
h3 { margin-bottom: 10px; font-size: 1.18rem; }
p { margin-top: 0; }
.lead { max-width: 690px; font-size: 1.11rem; color: #344238; }

.hero {
  padding: 38px 24px 56px;
  background: linear-gradient(115deg, var(--cream) 0%, #f6faf6 58%, #edf4ee 100%);
}
.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  gap: 46px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
.hero-copy { padding: 22px 0; }
.hero-copy .lead { max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: white; }
.btn-primary:hover { background: var(--green-950); }
.btn-secondary { background: white; border-color: var(--green-700); color: var(--green-800); }
.btn-secondary:hover { background: var(--green-050); }
.hero-media, .section-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-media { aspect-ratio: 1.42 / 1; }
.hero-media img, .section-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: 54% 50%; }
.image-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(15, 32, 20, .76);
  color: white;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: .01em;
}

.intro { background: white; }
.intro-head { max-width: 790px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 34px;
}
.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 8px 26px rgba(22,57,32,.06);
}
.card-number { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 50%; color: white; background: var(--green-700); font-size: 14px; font-weight: 800; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.seller { background: var(--green-050); }
.two-col {
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.section-media { aspect-ratio: 1.34 / 1; }
.section-media img { object-position: 55% 52%; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
}

.pathways { background: white; }
.path-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.path-card { padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--cream); }
.path-card.emphasis { background: var(--green-950); color: white; border-color: var(--green-950); }
.path-card.emphasis h2, .path-card.emphasis h3 { color: white; }
.path-card.emphasis p { color: rgba(255,255,255,.84); }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 25px; }
.pill { padding: 7px 11px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-size: 14px; font-weight: 750; }
.path-card.emphasis .pill { background: rgba(255,255,255,.12); color: white; }

.employee { background: linear-gradient(90deg, #f3f7f4, #fbfaf5); }
.employee-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.employee-inner p { margin-bottom: 0; max-width: 850px; }

.trust { padding: 34px 24px; background: var(--green-950); color: white; }
.trust-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.trust-item { padding: 4px 22px; border-left: 1px solid rgba(255,255,255,.25); }
.trust-item strong { display: block; font-size: 1.45rem; line-height: 1.2; }
.trust-item span { color: rgba(255,255,255,.78); font-size: .93rem; }

.form-section { background: #f8faf8; }
.form-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.form-copy { position: sticky; top: 118px; }
.form-copy .contact-mini { margin-top: 30px; padding: 20px; border-left: 4px solid var(--gold); background: white; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.contact-mini a { color: var(--green-800); font-weight: 750; }
.inquiry-form { padding: 32px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
fieldset { margin: 0 0 24px; padding: 0; border: 0; }
legend { margin-bottom: 12px; font-weight: 800; color: var(--green-950); }
.radio-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.radio-option { position: relative; }
.radio-option input { position: absolute; opacity: 0; pointer-events: none; }
.radio-option label { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; background: white; font-size: .9rem; font-weight: 760; text-align: center; }
.radio-option input:checked + label { color: white; background: var(--green-800); border-color: var(--green-800); }
.radio-option input:focus-visible + label { outline: 3px solid rgba(45,117,71,.27); outline-offset: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
label.field-label { display: block; margin-bottom: 7px; color: #273229; font-weight: 740; }
.required { color: #a23b2a; }
input, textarea {
  width: 100%;
  border: 1px solid #bec9c1;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(45,117,71,.21); border-color: var(--green-700); }
.field-help { margin: 7px 0 0; color: var(--muted); font-size: .83rem; }
.details-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 9px; background: var(--green-050); color: var(--green-950); font-weight: 800; text-align: left; }
.details-toggle .chevron { transition: transform .2s ease; }
.details-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.optional-fields { padding-top: 18px; }
.optional-fields[hidden] { display: none; }
.form-note { margin: 20px 0; padding: 14px 16px; background: var(--cream); border-radius: 9px; color: #445147; font-size: .9rem; }
.submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.submit-row .btn { border: 0; }
.form-status { margin: 16px 0 0; padding: 12px 14px; border-radius: 9px; background: var(--green-050); color: var(--green-950); font-weight: 650; }
.form-status[hidden] { display: none; }

.contact-section { padding: 54px 24px; background: white; }
.contact-card { width: min(100%, var(--max)); margin: 0 auto; padding: 32px; border-radius: var(--radius-lg); background: var(--cream); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.contact-card h2 { margin-bottom: 8px; }
.contact-card p { margin-bottom: 0; }
.contact-lines { display: grid; gap: 6px; min-width: 300px; }
.contact-lines a { color: var(--green-800); font-weight: 780; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }

.site-footer { background: #10291a; color: rgba(255,255,255,.82); }
.footer-inner { width: min(100%, var(--max)); margin: 0 auto; padding: 30px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: white; text-decoration: none; font-size: 14px; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: 13px; }

.legal-page { background: var(--green-050); min-height: 100vh; }
.legal-wrap { width: min(100% - 32px, 920px); margin: 46px auto; padding: 38px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.legal-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal-wrap h2 { margin-top: 34px; font-size: 1.45rem; }
.legal-wrap a { color: var(--green-800); }
.back-link { display: inline-flex; margin-bottom: 24px; font-weight: 800; text-decoration: none; }
.image-credit { display: grid; grid-template-columns: 260px 1fr; gap: 24px; margin: 24px 0; align-items: start; }
.image-credit img { width: 100%; border-radius: 12px; }

@media (max-width: 960px) {
  body { font-size: 17px; }
  .operator-inner { justify-content: center; }
  .operator-contact { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .nav .nav-cta { margin-top: 6px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { padding-bottom: 0; }
  .hero-media { aspect-ratio: 16 / 9; }
  .cards { grid-template-columns: 1fr 1fr; }
  .two-col, .path-grid, .form-layout { grid-template-columns: 1fr; }
  .seller .section-media { order: 2; }
  .form-copy { position: static; }
  .employee-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); padding: 14px 0; }
  .trust-item:first-child { border-top: 0; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-lines { min-width: 0; }
}

@media (max-width: 640px) {
  .operator-inner { min-height: 34px; font-size: 12px; }
  .header-inner { min-height: 68px; padding: 9px 18px; }
  .brand strong { font-size: 23px; }
  .brand span { font-size: 11px; }
  .hero { padding: 20px 18px 38px; }
  .hero-inner { gap: 20px; }
  .hero-copy { padding-top: 10px; }
  h1 { font-size: clamp(2rem, 9.2vw, 2.55rem); }
  .actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-media { border-radius: 18px; aspect-ratio: 1.32 / 1; }
  .hero-media img { object-position: 57% 50%; }
  .section { padding: 58px 18px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .two-col { gap: 34px; }
  .section-media { aspect-ratio: 1.2 / 1; }
  .path-card { padding: 24px; }
  .radio-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 22px 18px; border-radius: 18px; }
  .contact-card { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .legal-wrap { margin: 22px auto; padding: 24px 20px; }
  .image-credit { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
