:root {
  --bg: #f5f4ef;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #17202c;
  --muted: #637082;
  --line: rgba(23, 32, 44, 0.1);
  --brand: #ef7a24;
  --brand-deep: #c75f13;
  --brand-soft: rgba(239, 122, 36, 0.12);
  --shadow: 0 20px 45px rgba(25, 37, 54, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 122, 36, 0.18), transparent 28%),
    radial-gradient(circle at right 10% top 14%, rgba(65, 137, 230, 0.09), transparent 25%),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header,
.site-footer,
.hero,
.section {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.lang-toggle,
.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(23, 32, 44, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible,
.footer-lang:hover,
.footer-lang:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(23, 32, 44, 0.1);
}

.lang-divider {
  color: rgba(99, 112, 130, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
  gap: 30px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-deep);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.95rem);
}

.hero-lead,
.panel-text,
.partner-card p,
.service-card p,
.camp-card p,
.company-section p,
.info-list dd,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #ff9a4e 100%);
}

.button-secondary {
  border: 1px solid rgba(23, 32, 44, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.6em;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
  flex: 0 0 auto;
}

.hero-side {
  display: flex;
  align-items: stretch;
}

.partner-panel,
.camp-section,
.section,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.partner-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 26px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.92)),
    linear-gradient(180deg, transparent, rgba(239, 122, 36, 0.03));
}

.panel-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.partner-badge {
  display: block;
  width: 100%;
  height: auto;
}

.hero-badge {
  max-width: 440px;
}

.section {
  margin-top: 28px;
  padding: 34px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading.compact {
  justify-content: flex-start;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-badge {
  width: min(320px, 38vw);
  flex: 0 1 auto;
}

.partner-grid,
.service-grid,
.camp-grid,
.company-grid {
  display: grid;
  gap: 18px;
}

.partner-grid,
.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-card,
.service-card,
.camp-card,
.info-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.card-index,
.camp-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partner-card h3,
.service-card h3,
.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.partner-card p,
.service-card p,
.camp-card p,
.info-card p {
  margin: 0;
}

.camp-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(255, 250, 245, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at right top, rgba(239, 122, 36, 0.12), transparent 26%);
}

.camp-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.camp-intro p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.camp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.camp-card {
  background: rgba(255, 255, 255, 0.92);
}

.company-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.info-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 6px;
}

.info-list dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--text);
}

.info-list a,
.footer-links a {
  color: var(--brand-deep);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  margin-top: 28px;
}

.footer-name {
  margin: 0 0 6px;
  font-weight: 800;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
  }

  .hero,
  .camp-section {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .camp-intro h2 {
    max-width: none;
  }

  .section-badge {
    width: min(300px, 48vw);
  }

  .camp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--wrap));
    padding-top: 16px;
  }

  .site-header,
  .hero,
  .section,
  .camp-section,
  .site-footer {
    padding: 22px;
  }

  .partner-grid,
  .service-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-badge,
  .hero-badge {
    max-width: 100%;
  }

  .site-footer,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: flex-start;
  }

  .brand {
    width: 100%;
  }

  .lang-toggle {
    margin-left: auto;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .button {
    width: 100%;
  }
}
