:root {
  --paper: #f3e4c9;
  --paper2: #efe0c3;
  --ink: #1b1b1b;
  --muted: #3f3a34;
  --line: rgba(0, 0, 0, .14);
  --red: #c3392f;
  --navy: #1f3f5a;
  --gold: #c7a14a;
  --teal: #2a6b6a;
  --shadow: 0 14px 30px rgba(0, 0, 0, .14);
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }

body:where(.site-theme) {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(195, 57, 47, .10), transparent 55%),
    radial-gradient(780px 520px at 85% 18%, rgba(31, 63, 90, .10), transparent 60%),
    linear-gradient(0deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .02)),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

body:where(.site-theme)::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg,
      rgba(0, 0, 0, .020) 0,
      rgba(0, 0, 0, .020) 1px,
      rgba(255, 255, 255, 0) 3px,
      rgba(255, 255, 255, 0) 8px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .22), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .14), transparent 48%);
  mix-blend-mode: multiply;
  opacity: .55;
}

:where(.site-theme) a { color: var(--navy); text-decoration: none; }
:where(.site-theme) a:hover { text-decoration: underline; }
:where(.site-theme) .wrap { max-width: var(--max); margin: 0 auto; padding: 0 18px; }

.card {
  border: 2px solid rgba(0, 0, 0, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .65);
  box-shadow: var(--shadow);
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: end;
  gap: 16px;
}

.hero-photo-wrap {
  width: 210px;
  height: 210px;
  justify-self: end;
  overflow: hidden;
  padding: 0;
  border: 2px solid #000;
  border-radius: 18px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 6px 0 #000;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: 42% 20%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid #000;
  border-radius: 999px;
  appearance: none;
  color: var(--ink);
  background: rgba(255, 255, 255, .80);
  box-shadow: 0 4px 0 #000;
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.btn:hover {
  text-decoration: none;
  box-shadow: 0 8px 0 #000;
  filter: brightness(1.02);
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: 0 2px 0 #000;
  transform: translateY(2px);
}

.btn.primary { background: #ffdf2e; }

.spacer-10 { height: 10px; }
.spacer-12 { height: 12px; }

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-brand { color: var(--ink); }
.footer-contact { text-align: right; }
