:root {
  --gold: #e8b53c;
  --gold-bright: #ffd76a;
  --gold-deep: #b8860b;
  --ink: #0a0a0b;
  --ink-2: #141416;
  --ink-3: #1d1d20;
  --line: rgba(232, 181, 60, 0.22);
  --text: #f4efe4;
  --muted: #a49e90;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Didot", "Bodoni MT", "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.9rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 5vw, 3rem);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 0.6rem; }

.brand__mark { width: 26px; height: 26px; }

.brand__word {
  font-family: "Didot", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.nav__links { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 2rem); }

.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav__cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
  min-height: clamp(560px, 82vh, 760px);
}

.hero__glow {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(232, 181, 60, 0.20), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero__copy { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.4rem);
  background: linear-gradient(180deg, #fff6d8 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .dot { color: var(--gold); -webkit-text-fill-color: var(--gold); }

.hero__tag {
  font-family: "Didot", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  color: var(--gold-bright);
  margin: 0.1rem 0 1.2rem;
}

.hero__sub {
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  margin: 0 0 2rem;
}

.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__actions--center { justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero__art { position: relative; z-index: 1; display: flex; justify-content: center; }

.hero__art img {
  width: min(100%, 460px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  margin-bottom: 1.4rem;
  max-width: 20ch;
}

.lede {
  color: var(--muted);
  max-width: 46rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0 0 1rem;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.card {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }

.card__num {
  font-family: "Didot", Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.6rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Work / stats ---------- */
.section--work { text-align: left; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 2.4rem;
}

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.stat strong {
  display: block;
  font-family: "Didot", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.stat span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.section--contact { text-align: center; }
.section--contact h2 { margin-left: auto; margin-right: auto; }

.mailto {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: "Didot", Georgia, serif;
  font-size: clamp(1.3rem, 4vw, 2.4rem);
  color: var(--gold);
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mailto:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 3rem 1.2rem 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer__crown { width: 22px; display: block; margin: 0 auto 0.8rem; opacity: 0.85; }
.footer__fine { font-size: 0.78rem; margin-top: 0.4rem; opacity: 0.7; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .nav__links a:not(.nav__cta) { display: none; }
  .section h2 { max-width: none; }
}
