:root {
  --bg: #0c0b09;
  --bg-deep: #070605;
  --text: #f4efe6;
  --muted: #9a9386;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.14);
  --border: #2a261c;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(900px 500px at 0% 100%, rgba(196, 92, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.brand-lock {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.top nav { display: flex; gap: 1.25rem; align-items: center; }
.top nav a { color: var(--muted); font-size: 0.95rem; text-decoration: none; }
.top nav a:hover { color: var(--text); }
.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.hero {
  min-height: calc(100vh - 4.5rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.brand {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.3;
  color: var(--text);
  max-width: 18ch;
}

.lede {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 34ch;
}

.cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #0c0b09;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); text-decoration: none; }
.cta-note { margin: 0; color: var(--muted); font-size: 0.85rem; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: min(340px, 70vw);
  height: auto;
  border-radius: 28%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.one-job {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.one-job h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}
.one-job p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.site-foot {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.site-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Privacy */
.privacy {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.privacy h1 {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 0 0 1rem;
}
.privacy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}
.privacy h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.4rem;
  color: var(--accent);
}
.privacy p, .privacy li {
  color: var(--muted);
  line-height: 1.65;
}
.privacy ul { padding-left: 1.2rem; }
.privacy .meta { font-size: 0.9rem; color: var(--muted); }
.privacy .back { display: inline-block; margin-bottom: 1.5rem; }

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }
  .hero-visual { order: -1; }
  .hero-visual img { width: min(220px, 55vw); }
  .brand { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .hero h1 { max-width: none; }
}
