:root {
  color-scheme: light;
  --ink: #1f2528;
  --muted: #62686b;
  --gold: #b98d32;
  --gold-dark: #846324;
  --paper: #f7f3ed;
  --green: #1f3b34;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Songti SC", "SimSun", "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  background: var(--paper);
}

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

.site-shell {
  min-height: 100svh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(20px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.88), rgba(247, 243, 237, 0.18) 58%, rgba(247, 243, 237, 0.72)),
    url("assets/marble-gold.png") center / cover no-repeat;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(31, 37, 40, 0.08)),
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.brand {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--green);
}

.brand::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--gold), rgba(185, 141, 50, 0));
}

.hero__content {
  align-self: center;
  max-width: min(680px, 92vw);
  padding-block: clamp(56px, 10vh, 120px);
}

.kicker {
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
}

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.94;
  font-weight: 700;
}

.intro {
  display: grid;
  gap: 10px;
  margin-top: clamp(30px, 5vw, 48px);
  color: var(--ink);
  font-size: clamp(1.18rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.intro p {
  margin: 0;
}

.intro p:nth-child(2) {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  color: var(--gold-dark);
}

.quiet-note {
  min-height: 12svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px 34px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(31, 59, 52, 0.08), rgba(185, 141, 50, 0.18), rgba(31, 59, 52, 0.08)),
    #fbfaf7;
  border-top: 1px solid rgba(132, 99, 36, 0.22);
}

.quiet-note p {
  margin: 0;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

@media (max-width: 720px) {
  .hero {
    min-height: 86svh;
    padding: 20px;
    background-position: 58% center;
  }

  .hero__content {
    max-width: 100%;
    padding-block: 72px 64px;
  }

  .brand::after {
    width: 30px;
    margin-left: 10px;
  }
}

