@font-face {
  font-family: "System";
  src: local("-apple-system"), local("BlinkMacSystemFont");
}

:root {
  --bg: #11100f;
  --surface: rgba(28, 26, 24, 0.94);
  --text: #f5f1e9;
  --muted: #bbb3a7;
  --accent: #c8a96b;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 40px 100px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 15%, rgba(200,169,107,0.17), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(135deg, #0d0c0b 0%, #181613 52%, #0e0d0c 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.page-shell {
  width: 100%;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 56px 24px 32px;
}

.card {
  width: min(100%, 1020px);
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(34,31,28,.96), rgba(21,20,18,.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(44px, 7vw, 78px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.brand-name {
  letter-spacing: .22em;
  font-size: 14px;
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 94px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}

.lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.6;
}

.availability {
  margin: 24px 0 0;
  font-weight: 650;
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.contact-card {
  min-height: 132px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

a.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,169,107,.6);
  background: rgba(200,169,107,.06);
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 17px;
  line-height: 1.45;
}

.signature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.signature strong { color: var(--text); }

footer {
  width: min(calc(100% - 48px), 1020px);
  margin: 0 auto;
  padding: 0 4px 30px;
  color: #8f887e;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

footer nav { display: flex; gap: 20px; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--text); }

.legal {
  max-width: 850px;
  margin: 0 auto;
}
.legal h1 { font-size: clamp(42px, 7vw, 72px); margin-bottom: 38px; }
.legal h2 { margin-top: 34px; font-size: 20px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal a { color: var(--accent); }
.back-link { display: inline-block; margin-bottom: 38px; color: var(--accent); text-decoration: none; }

@media (max-width: 760px) {
  .page-shell { padding: 24px 16px; }
  .card { padding: 30px 22px; border-radius: 22px; }
  .brand { margin-bottom: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; }
  .signature, footer { flex-direction: column; }
  footer { width: calc(100% - 32px); }
}
