:root {
  color-scheme: light;
  --ink: #151311;
  --muted: #625d56;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: #d9d0c4;
  --red: #9e2f2f;
  --indigo: #263f62;
  --moss: #5f6949;
  --shadow: 0 24px 70px rgba(32, 28, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 56px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid rgba(217, 208, 196, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 19, 17, 0.9), rgba(21, 19, 17, 0.46) 46%, rgba(21, 19, 17, 0.18)),
    linear-gradient(0deg, rgba(21, 19, 17, 0.45), rgba(21, 19, 17, 0.06) 40%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #211e1a;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.05);
}

.hero-content {
  width: min(720px, 100%);
  color: #fffaf1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #d7aa63;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.45;
}

.status-panel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 660px;
  margin-top: 30px;
  padding: 14px 18px;
  background: rgba(247, 244, 239, 0.12);
  border: 1px solid rgba(247, 244, 239, 0.32);
  border-radius: 8px;
  color: #fffaf1;
  backdrop-filter: blur(10px);
  line-height: 1.55;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: #d7aa63;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215, 170, 99, 0.18);
}

.intro,
.notice {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(158, 47, 47, 0.08), transparent 42%),
    var(--paper);
}

.section-copy {
  max-width: 610px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.notice p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.principles article {
  min-height: 220px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(32, 28, 22, 0.08);
}

.principles span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 800;
}

.principles h3 {
  margin: 0;
  font-size: 1.35rem;
}

.principles p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.notice {
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  align-items: center;
  background: var(--ink);
  color: #fffaf1;
}

.notice .section-kicker {
  color: #d7aa63;
}

.notice p {
  color: rgba(255, 250, 241, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #0f0e0d;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fffaf1;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: center;
  }

  .hero {
    min-height: 88vh;
    padding-top: 178px;
  }

  .intro,
  .notice {
    grid-template-columns: 1fr;
  }

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

  .principles article {
    min-height: 0;
  }

  .principles span {
    margin-bottom: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .lead {
    font-size: 1.16rem;
  }

  .status-panel {
    align-items: flex-start;
  }
}
