:root {
  color-scheme: light;
  --bg: #f3ebde;
  --bg-strong: #dfccb2;
  --surface: rgba(255, 251, 244, 0.78);
  --surface-strong: rgba(255, 249, 240, 0.94);
  --text: #251b15;
  --muted: #62554b;
  --line: rgba(87, 61, 37, 0.14);
  --accent: #a4532c;
  --accent-strong: #773317;
  --shadow: 0 28px 70px rgba(70, 41, 20, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(205, 142, 96, 0.22), transparent 18%),
    linear-gradient(180deg, #fcf8f1 0%, var(--bg) 48%, #eddfcc 100%);
}

a {
  color: var(--accent-strong);
}

a:hover {
  color: var(--accent);
}

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

.site-header,
.site-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding: 8px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(87, 61, 37, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: 0 10px 24px rgba(85, 56, 30, 0.06);
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff7f0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.66);
  border: 1px solid rgba(87, 61, 37, 0.1);
  text-decoration: none;
  font-weight: 600;
}

main {
  display: grid;
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(164, 83, 44, 0.18) 0%, rgba(164, 83, 44, 0) 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: none;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.lead,
.card p,
.card li,
.card dd {
  color: var(--muted);
}

.lead {
  max-width: 60ch;
  font-size: 1.06rem;
}

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

.grid .card,
main > .card {
  padding: 28px 24px;
}

.info-card {
  max-width: 760px;
}

.meta-list,
.status-list {
  margin: 0;
  padding: 0;
}

.meta-list div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.meta-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.meta-list dt {
  font-weight: 700;
}

.meta-list dd {
  margin: 4px 0 0;
}

.site-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 16px;
}

.section-block + .section-block {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.section-block h2 {
  margin-bottom: 8px;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(146, 80, 46, 0.08);
  color: var(--text);
}

.contact-list {
  font-style: normal;
}

.contact-list p {
  margin: 0 0 8px;
}

.contact-list p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1080px);
    padding-top: 18px;
  }

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

  .hero {
    padding: 30px 22px;
  }

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

  .grid .card,
  main > .card {
    padding: 24px 20px;
  }
}
