:root {
  color-scheme: light;
  --page: #f2efe9;
  --surface: rgba(255, 255, 255, 0.68);
  --ink: #1c1c1c;
  --muted: #67645e;
  --accent: #c79a00;
  --accent-strong: #e30022;
  --line: rgba(28, 28, 28, 0.16);
  --shadow: rgba(42, 37, 30, 0.1);
}
html[data-theme="dark"] {
  color-scheme: dark;
  --page: #111210;
  --surface: rgba(28, 29, 27, 0.76);
  --ink: #f4f1eb;
  --muted: #b8b3aa;
  --accent: #d5ac27;
  --accent-strong: #ff4058;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.34);
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--page); }
body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 28rem), var(--page);
  font-family: Arial, Helvetica, sans-serif;
  transition: background-color 220ms ease, color 220ms ease;
}
.page-shell { min-height: 100vh; display: grid; place-items: center; padding: clamp(4.75rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem); }
.holding-card { width: min(100%, 52rem); padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 7vw, 5rem); border: 1px solid var(--line); background: var(--surface); box-shadow: 0 1.5rem 4rem var(--shadow); text-align: center; backdrop-filter: blur(12px); }
.logos { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2rem); margin-bottom: clamp(2.5rem, 7vw, 4.5rem); }
.logo { display: block; width: auto; object-fit: contain; }
.logo--williamson { width: min(44%, 19rem); }
.logo--client { width: min(32%, 12rem); max-height: 5rem; }
.logos__cross { color: var(--muted); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 300; }
html[data-theme="dark"] .logo--williamson,
html[data-theme="dark"] .logo--client { filter: brightness(0) invert(1); }
.eyebrow, .status { margin: 0; text-transform: uppercase; letter-spacing: 0.28em; }
.eyebrow { color: var(--muted); font-size: 0.75rem; font-weight: 700; }
h1 { max-width: 12ch; margin: 1.1rem auto 0.85rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 8.5vw, 5.4rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.04em; }
.status { color: var(--accent-strong); font-size: 0.76rem; font-weight: 700; }
.divider { width: 2.5rem; height: 1px; margin: 2.25rem auto; background: var(--ink); opacity: 0.42; }
.message { max-width: 35rem; margin: 0 auto; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 2.4vw, 1.3rem); line-height: 1.7; }
.contact-list { display: grid; justify-content: center; gap: 0.8rem; margin: 2rem auto 0; font-style: normal; }
.contact-row { display: grid; grid-template-columns: 1.5rem auto; align-items: center; gap: 0.65rem; color: var(--ink); text-align: left; }
.contact-icon { color: var(--accent); font-size: 1.1rem; text-align: center; }
.contact-row a { color: inherit; text-decoration-color: var(--accent); text-underline-offset: 0.22em; }
.contact-row a:hover { color: var(--accent-strong); }
.thanks { margin: 2rem 0 0; color: var(--ink); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.theme-toggle { position: fixed; z-index: 2; top: 1.25rem; right: 1.25rem; display: flex; align-items: center; gap: 0.55rem; padding: 0.65rem 0.75rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--surface); box-shadow: 0 0.5rem 1.5rem var(--shadow); cursor: pointer; }
.theme-toggle:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.theme-toggle__track { width: 2.2rem; height: 1.2rem; padding: 0.15rem; border-radius: 999px; background: var(--muted); }
.theme-toggle__track span { display: block; width: 0.9rem; height: 0.9rem; border-radius: 50%; background: var(--page); transition: transform 180ms ease; }
html[data-theme="dark"] .theme-toggle__track span { transform: translateX(1rem); }
@media (max-width: 38rem) {
  .logos { flex-wrap: wrap; }
  .logo--williamson { width: min(72%, 18rem); }
  .logo--client { width: min(48%, 11rem); }
  .holding-card { backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
