:root {
  color-scheme: light;
  --ink: #1f2524;
  --muted: #66706c;
  --paper: #fff9ef;
  --panel: #ffffff;
  --line: #eadfcb;
  --night: #101928;
  --leaf: #7e8a62;
  --orange: #ef8b51;
  --gold: #f4c870;
  --shadow: 0 22px 70px rgba(48, 35, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 200, 112, 0.22), transparent 32rem),
    linear-gradient(135deg, #fffaf2 0%, #f5efe2 52%, #fff5e7 100%);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: #9b572f;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #6f3d23;
}

.site-shell {
  min-height: 100vh;
  padding: 28px;
}

.topbar,
.hero,
.content,
.footer {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(31, 37, 36, 0.14);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 13px;
}

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

.nav a,
.button-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 138, 98, 0.34);
  border-radius: 999px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(48, 35, 16, 0.07);
}

.nav a:hover,
.button-link:hover {
  border-color: rgba(239, 139, 81, 0.58);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 203, 0.86);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 235, 0.72)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(126, 138, 98, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: #8a5b35;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 78px);
}

h2 {
  margin: 52px 0 18px;
  font-size: clamp(25px, 3vw, 38px);
}

h3 {
  margin: 26px 0 8px;
  font-size: 20px;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #4e5753;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.hero-art img {
  width: min(310px, 88%);
  border-radius: 32px;
  box-shadow: 0 28px 64px rgba(16, 25, 40, 0.23);
  transform: rotate(2deg);
}

.status-card {
  position: absolute;
  right: 2%;
  bottom: 9%;
  width: min(270px, 80%);
  border: 1px solid rgba(244, 200, 112, 0.66);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(48, 35, 16, 0.16);
  backdrop-filter: blur(14px);
}

.status-card b {
  display: block;
  margin-bottom: 4px;
}

.status-card span {
  color: var(--muted);
  font-size: 14px;
}

.content {
  margin-top: 30px;
  padding: 44px 48px;
  border: 1px solid rgba(234, 223, 203, 0.84);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(48, 35, 16, 0.09);
}

.section-kicker {
  margin: 0 0 10px;
  color: #8a5b35;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-block {
  padding-top: 6px;
}

.language-block + .language-block {
  margin-top: 58px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.info-tile {
  min-height: 118px;
  border: 1px solid rgba(234, 223, 203, 0.92);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #fffdf8, #fff6e8);
}

.info-tile strong {
  display: block;
  margin-bottom: 6px;
}

.info-tile span {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin: 26px 0;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff4e7;
}

.doc-list {
  padding-left: 1.25rem;
}

.doc-list li + li {
  margin-top: 8px;
}

.footer {
  padding: 30px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: inherit;
}

.placeholder {
  display: inline-block;
  border: 1px dashed rgba(154, 92, 48, 0.5);
  border-radius: 8px;
  padding: 1px 7px;
  background: rgba(255, 244, 231, 0.75);
  color: #7d4b2d;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.94em;
}

.compact-hero {
  grid-template-columns: 1fr auto;
  min-height: 300px;
}

.compact-hero .hero-art {
  min-height: auto;
}

.compact-hero .hero-art img {
  width: 190px;
}

@media (max-width: 780px) {
  .site-shell {
    padding: 16px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 22px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .compact-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 26px;
  }

  .hero-art {
    min-height: 230px;
  }

  .status-card {
    right: 0;
    bottom: 0;
  }

  .content {
    padding: 28px;
    border-radius: 24px;
  }

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