:root {
  --ink: #173b32;
  --paper: #f7f5ef;
  --muted: #6a716b;
  --accent: #dc7255;
  --line: #d7d6cc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: 16px;
  letter-spacing: 0;
}

a { color: inherit; }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 38px));
  overflow: hidden;
  color: #fffdf8;
  background: #173b32;
}

.hero-image, .hero-wash {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image { object-fit: cover; object-position: center 55%; }

.hero-wash { background: linear-gradient(90deg, rgba(10, 35, 28, .88) 0%, rgba(10, 35, 28, .62) 45%, rgba(10, 35, 28, .17) 100%); }

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 32px;
}

.brand, .footer-brand {
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span { color: var(--accent); }
.header-note, .image-note, .section-index, .copyright { margin: 0; font-family: Arial, sans-serif; font-size: 12px; letter-spacing: 0; }
.header-note { opacity: .86; }

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(116px, 17vh, 170px) 0 96px;
}

.eyebrow { margin: 0 0 22px; color: #ffc09d; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.6px; }

h1, h2 { margin: 0; font-weight: 500; letter-spacing: 0; }
h1 { max-width: 650px; font-size: clamp(52px, 6vw, 80px); line-height: 1.17; }

.intro { margin: 30px 0 0; font-size: 18px; line-height: 1.9; }

.quiet-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 49px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 253, 248, .8);
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.quiet-link span { font-size: 18px; transition: transform .2s ease; }
.quiet-link:hover span { transform: translateY(3px); }
.image-note { position: absolute; z-index: 1; right: 40px; bottom: 28px; opacity: .8; writing-mode: vertical-rl; }

.about {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 2fr) 120px;
  gap: 28px;
  width: min(1200px, calc(100% - 80px));
  min-height: 370px;
  margin: 0 auto;
  padding: 86px 0 76px;
}

.section-index { padding-top: 11px; color: var(--muted); }
.about-copy { max-width: 555px; }
h2 { font-size: 37px; line-height: 1.35; }
.about-copy p { margin: 23px 0 0; color: #4d5a53; font-size: 17px; line-height: 2; }
.signature { align-self: end; color: var(--accent); font-family: Georgia, serif; font-size: 92px; font-style: italic; line-height: 1; text-align: right; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 96px;
  padding: 24px max(40px, calc((100% - 1200px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.footer-brand { color: var(--ink); font-size: 16px; }
.filings { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 21px; }
.filings a, .copyright { font-size: 12px; text-decoration: none; }
.filings a:hover { color: var(--accent); }
.copyright { text-align: right; }

@media (max-width: 680px) {
  .hero { min-height: max(650px, calc(100vh - 28px)); }
  .hero-wash { background: linear-gradient(90deg, rgba(10, 35, 28, .85), rgba(10, 35, 28, .31)); }
  .site-header, .hero-content, .about { width: calc(100% - 40px); }
  .site-header { padding-top: 23px; }
  .header-note { display: none; }
  .hero-content { padding-top: 136px; }
  h1 { font-size: 50px; }
  .intro { font-size: 16px; }
  .image-note { right: 18px; bottom: 18px; }
  .about { grid-template-columns: 1fr; gap: 18px; min-height: 0; padding: 58px 0 50px; }
  h2 { font-size: 31px; }
  .about-copy p { font-size: 16px; }
  .signature { display: none; }
  .site-footer { grid-template-columns: 1fr; gap: 13px; padding: 28px 20px; text-align: center; }
  .copyright { text-align: center; }
}
