/* The Square Table: public identity and inquiries. */
* { box-sizing: border-box; }
:root { color-scheme: dark; --bg: #0a0907; --ink: #e8e2d4; --muted: #aaa395; --line: #302a21; --gold: #c39453; }
html { -webkit-font-smoothing: antialiased; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 15px/1.65 'Geist', sans-serif; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
::selection { background: var(--gold); color: var(--bg); }
.skip-link { position: absolute; top: -80px; left: 24px; padding: 12px; background: var(--ink); color: var(--bg); z-index: 5; }
.skip-link:focus { top: 12px; }
.page { max-width: 1440px; margin: auto; padding: 0 72px; min-height: 100svh; display: flex; flex-direction: column; }
.masthead { display: flex; align-items: center; justify-content: space-between; min-height: 120px; gap: 24px; }
.brand { display: inline-flex; }
.brand img { width: 170px; height: 40px; }
.quiet-link { font-size: 12px; color: var(--muted); padding: 12px 0 12px 12px; }
.quiet-link span { margin-left: 18px; color: var(--gold); }
.home { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 65px 0 52px; }
.introduction { padding-left: 10%; }
.gold-rule { display: block; width: 32px; height: 1px; background: var(--gold); margin-bottom: 32px; }
h1 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 400; font-size: clamp(48px, 5.7vw, 82px); line-height: 1.08; letter-spacing: -.045em; margin: 0; }
.description { color: var(--muted); margin: 30px 0 0; line-height: 1.8; }
.credentials { margin-top: 70px; padding: 27px 0 0 10%; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; align-items: flex-end; gap: 24px; }
.inquiry { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--gold); }
.inquiry span { margin-left: 42px; color: var(--gold); }
.footnote { padding: 23px 0 28px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; color: var(--muted); }
.footnote nav { display: flex; gap: 24px; }
.contact { width: 100%; max-width: 660px; margin: 48px auto 80px; flex: 1; }
.contact h1 { font-size: clamp(48px, 6vw, 68px); }
.contact .description { max-width: 460px; }
.contact-form { margin-top: 42px; }
.field { margin-bottom: 25px; }
.field label { display: block; margin-bottom: 9px; font-size: 12px; color: var(--muted); }
.field input, .field textarea { display: block; width: 100%; border: 1px solid var(--line); border-radius: 0; background: #100e0b; padding: 13px 14px; color: var(--ink); font: inherit; }
.field textarea { min-height: 120px; resize: vertical; }
.form-submit { border: 1px solid var(--gold); background: transparent; color: var(--ink); font: inherit; font-size: 13px; padding: 13px 25px; cursor: pointer; }
.form-submit:hover { background: var(--ink); color: var(--bg); }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-alt { color: var(--muted); font-size: 13px; margin-top: 32px; }
.form-alt a, .form-error a { text-decoration: underline; text-underline-offset: 4px; }
.form-error { color: #e5ba9a; font-size: 13px; }
.form-confirmation { padding: 24px 0; border-top: 1px solid var(--line); margin-top: 36px; }
@media (min-width: 1600px) { .home { flex: none; padding-top: 90px; } .footnote { margin-top: auto; } }
@media (max-width: 700px) {
  .page { padding: 0 26px; }
  .masthead { min-height: 94px; }
  .brand img { width: 145px; height: auto; }
  .home { padding: 46px 0 30px; }
  .introduction { padding-left: 0; }
  h1 { font-size: clamp(39px, 9vw, 61px); }
  .description { font-size: 14px; margin-top: 26px; max-width: 340px; }
  .desktop-break { display: none; }
  .credentials { padding-left: 0; margin-top: 46px; align-items: flex-start; }
  .inquiry { font-size: 12px; padding-top: 0; }
  .inquiry span { margin-left: 16px; }
  .footnote { font-size: 10px; padding-bottom: 22px; }
  .footnote nav { gap: 16px; }
  .contact { margin-top: 35px; margin-bottom: 44px; }
}
@media (max-width: 360px) { .page { padding: 0 20px; } .credentials { flex-direction: column; } }
