/* ===== vars ===== */
:root {
  --c-deep: #2d5016;
  --c-sage: #8b9d6b;
  --c-gold: #c5a55a;
  --c-warm: #f8f6f0;
  --c-text: #2a2a2a;
  --c-muted: #6b7280;
  --c-light: #e8e4dc;
  --c-accent: #3e6b1f;
  --ff: "Segoe UI", system-ui, -apple-system, sans-serif;
  --rx: 8px;
}

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

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

body {
  font-family: var(--ff);
  color: var(--c-text);
  background: var(--c-warm);
  line-height: 1.7;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-deep);
}

/* ===== pg-lead: header ===== */
.pg-lead__bar {
  background: var(--c-deep);
  color: #fff;
  font-size: 0.82rem;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.pg-lead__bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.88;
}

.pg-lead__bar-item svg {
  opacity: 0.7;
}

.pg-lead__nav {
  background: #fff;
  border-bottom: 1px solid var(--c-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.pg-lead__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-deep);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
}

.pg-lead__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--c-deep);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
}

.pg-lead__logo-alt {
  color: var(--c-sage);
}

.pg-lead__toggle {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.pg-lead__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s;
}

.pg-lead__links {
  display: flex;
  gap: 28px;
}

.pg-lead__links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  position: relative;
}

.pg-lead__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width 0.3s;
}

.pg-lead__links a:hover {
  color: var(--c-deep);
}
.pg-lead__links a:hover::after {
  width: 100%;
}

/* ===== fg-welcome: hero ===== */
.fg-welcome {
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px;
  background: linear-gradient(
    145deg,
    #1e3a0e 0%,
    var(--c-deep) 40%,
    var(--c-sage) 100%
  );
  color: #fff;
}

.fg-welcome__canvas {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(197, 165, 90, 0.2) 0%,
      transparent 40%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 80px
    );
  pointer-events: none;
}

.min-vh-75 {
  min-height: 70vh;
}

.fg-welcome__tx {
  padding-right: 40px;
}

.fg-welcome__tag {
  display: inline-block;
  background: rgba(197, 165, 90, 0.25);
  border: 1px solid rgba(197, 165, 90, 0.4);
  color: var(--c-gold);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fg-welcome__heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.fg-welcome__heading em {
  font-style: normal;
  color: var(--c-gold);
  position: relative;
}

.fg-welcome__sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.lnk-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  background: var(--c-gold);
  border-radius: var(--rx);
  transition:
    background 0.2s,
    transform 0.15s;
}

.lnk-action:hover {
  color: #fff;
  background: #b8943f;
  transform: translateY(-1px);
}

.fg-welcome__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fg-welcome__plate {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: transform 0.4s;
}

.fg-welcome__plate:hover {
  transform: rotate(0deg) scale(1.02);
}

.fg-welcome__plate img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fg-welcome__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--c-warm);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

/* ===== shared tx-* ===== */
.tx-label {
  display: inline-block;
  color: var(--c-sage);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tx-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--c-deep);
  line-height: 1.3;
  margin-bottom: 16px;
}

.tx-sub {
  color: var(--c-muted);
  max-width: 560px;
  font-size: 1.02rem;
}

/* ===== sc-about ===== */
.sc-about {
  padding: 80px 0;
}

.sc-about__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sc-about__img img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.sc-about__stats {
  text-align: center;
}

.sc-about__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-deep);
}

.sc-about__cap {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ===== sc-paths ===== */
.sc-paths {
  padding: 80px 0;
  background: #fff;
}

.cl-path {
  background: var(--c-warm);
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--c-light);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.cl-path:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
}

.cl-path--hl {
  background: var(--c-deep);
  color: #fff;
  border-color: transparent;
}

.cl-path--hl .cl-path__title {
  color: #fff;
}

.cl-path--hl .cl-path__text {
  color: rgba(255, 255, 255, 0.8);
}

.cl-path--hl .cl-path__more {
  color: var(--c-gold);
}

.cl-path--hl .cl-path__icon {
  color: var(--c-gold);
}

.cl-path__icon {
  color: var(--c-sage);
  margin-bottom: 20px;
}

.cl-path__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-deep);
  margin-bottom: 12px;
}

.cl-path__text {
  color: var(--c-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cl-path__more {
  font-size: 0.84rem;
  color: var(--c-accent);
  font-weight: 600;
}

/* ===== sc-trust ===== */
.sc-trust {
  padding: 80px 0;
}

.sc-trust__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sc-trust__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sc-trust__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-sage);
  margin-top: 6px;
}

.sc-trust__row p {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 4px 0 0;
}

.sc-trust__aside {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  border: 1px solid var(--c-light);
  position: relative;
}

.sc-trust__aside::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--c-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.sc-trust__quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--c-deep);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sc-trust__quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--c-muted);
  font-weight: 600;
}

/* ===== sc-reach ===== */
.sc-reach {
  padding: 80px 0;
  background: #fff;
}

.sc-reach__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.sc-reach__detail svg {
  color: var(--c-sage);
  flex-shrink: 0;
  margin-top: 3px;
}

.sc-reach__detail strong {
  display: block;
  margin-bottom: 2px;
}

.sc-reach__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== pg-end: footer ===== */
.pg-end {
  background: #1a2e0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  font-size: 0.88rem;
}

.pg-end .pg-lead__logo {
  color: #fff;
  margin-bottom: 12px;
}

.pg-end__about {
  max-width: 300px;
  line-height: 1.7;
  opacity: 0.7;
}

.pg-end__heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pg-end__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-end__nav a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.pg-end__nav a:hover {
  color: var(--c-gold);
}

.pg-end__hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.pg-end__copy {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.5;
}

.pg-end__legal {
  display: flex;
  gap: 20px;
}

.pg-end__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.pg-end__legal a:hover {
  color: var(--c-gold);
}

/* ===== sc-static: policy/terms pages ===== */
.sc-static {
  padding: 60px 0 80px;
}
.sc-static__wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--c-light);
}
.sc-static__wrap h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-deep);
  margin-bottom: 4px;
}
.sc-static__date {
  color: var(--c-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.sc-static__wrap h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-deep);
  margin-top: 28px;
  margin-bottom: 8px;
}
.sc-static__wrap p {
  line-height: 1.75;
  margin-bottom: 10px;
}
.sc-static__wrap ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.sc-static__wrap li {
  margin-bottom: 4px;
  line-height: 1.6;
}
.sc-static__wrap address {
  font-style: normal;
  line-height: 1.8;
  margin-top: 12px;
}

@media (max-width: 575.98px) {
  .sc-static__wrap {
    padding: 28px 20px;
  }
}

/* ===== responsive ===== */
@media (max-width: 991.98px) {
  .fg-welcome {
    padding: 40px 0 80px;
  }
  .fg-welcome__tx {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .min-vh-75 {
    min-height: auto;
    padding: 40px 0;
  }
  .sc-about,
  .sc-paths,
  .sc-trust,
  .sc-reach {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .pg-lead__links {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }
  .sc-about__stats .col-4 {
    flex: 0 0 auto;
    width: 33.333%;
  }
  .sc-trust__aside {
    padding: 32px 24px;
  }
  .sc-reach__map iframe {
    height: 280px;
  }
}
