:root {
  --bg: #09090b;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8f4ee;
  --muted: #bcb2a6;
  --line: rgba(255, 255, 255, 0.15);
  --gold: #d9b66f;
  --cream: #fff5e6;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 182, 111, 0.22), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(131, 84, 72, 0.35), transparent 28%),
    linear-gradient(135deg, #09090b 0%, #14100f 45%, #08080a 100%);
  min-height: 100vh;
}

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

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

img { max-width: 100%; display: block; }

.page-shell { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.tm { color: var(--gold); font-size: 0.62em; margin-left: 1px; vertical-align: super; }

.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--cream); }

.section-pad { padding: clamp(56px, 8vw, 112px) 0; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.7rem, 9vw, 8.6rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  margin-bottom: 18px;
}

h3 { font-size: 1.1rem; margin-bottom: 8px; }

.lede, .section-heading p, .contact p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.7;
  max-width: 680px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #111; background: linear-gradient(135deg, var(--cream), var(--gold)); border-color: transparent; }
.button.secondary { color: var(--cream); background: rgba(255, 255, 255, 0.06); }
.button.secondary:hover { border-color: rgba(217, 182, 111, 0.7); }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 660px;
}

.mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  border-radius: 18px;
}

.mini-stats strong { display: block; font-size: 1.08rem; }
.mini-stats span { color: var(--muted); font-size: 0.88rem; }

.hero-art {
  position: relative;
  min-height: 560px;
}

.portrait-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portrait-card img { width: 100%; height: 100%; object-fit: cover; }

.card-one { width: 76%; right: 4%; top: 0; transform: rotate(3deg); }
.card-two { width: 58%; left: 0; bottom: 10px; transform: rotate(-6deg); }

.floating-label {
  position: absolute;
  right: 0;
  bottom: 96px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(217,182,111,0.48);
  color: var(--cream);
  background: rgba(10, 10, 12, 0.75);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.section-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: end; margin-bottom: 34px; }
.section-heading p { margin-bottom: 0; }

.talent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.talent-card {
  min-height: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,0.25);
}

.talent-card img { width: 100%; border-radius: 18px; border: 1px solid var(--line); margin-bottom: 18px; }
.talent-card div { padding: 0 6px 8px; }
.talent-card p { color: var(--muted); line-height: 1.55; }
.talent-card .tag { color: var(--gold); margin-bottom: 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 800; }

.studio-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.services { display: grid; gap: 16px; }
.services div { padding: 22px; border-radius: 20px; background: rgba(0,0,0,0.2); border: 1px solid var(--line); }
.services p { color: var(--muted); line-height: 1.62; margin-bottom: 0; }

.contact {
  text-align: center;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
}
.contact p { margin-bottom: 28px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer p { margin: 0; max-width: 620px; }

.reveal { animation: rise 800ms ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero, .section-heading, .studio-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { min-height: 520px; }
  .talent-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 22px, var(--max)); }
  .site-header { min-height: 76px; }
  .nav-links { display: none; }
  h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .mini-stats { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 430px; }
  .card-one { width: 82%; right: 0; }
  .card-two { width: 68%; }
  .floating-label { bottom: 54px; }
}
