:root {
  --bg: #0b0d0d;
  --panel: #101313;
  --panel-2: #171a19;
  --text: #f2f0ea;
  --muted: #aaa9a3;
  --line: rgba(255,255,255,.12);
  --accent: #c5a46b;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.narrow { max-width: 980px; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #080a0a;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
  filter: saturate(.82) contrast(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,8,.72) 0%, rgba(6,8,8,.50) 30%, rgba(6,8,8,.12) 64%, rgba(6,8,8,.02) 100%),
    linear-gradient(0deg, rgba(6,8,8,.42) 0%, rgba(6,8,8,0) 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(64px, 8vw, 110px);
}
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--accent);
}
h1, h2 {
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: .94;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(4.7rem, 11vw, 9.6rem); max-width: 7ch; }
.role {
  margin: 18px 0 6px;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2.4rem);
  letter-spacing: .18em;
}
.styles {
  margin: 0 0 30px;
  color: #d5d3cd;
  font-size: clamp(.95rem, 1.35vw, 1.15rem);
  letter-spacing: .04em;
}
.styles span { color: var(--accent); padding: 0 .32em; }
.button {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .77rem;
  font-weight: 600;
  transition: .2s ease;
}
.button:hover { background: var(--text); color: #0d0f0f; border-color: var(--text); }

.section { padding: clamp(80px, 10vw, 140px) 0; }
.section h2 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.section-intro { max-width: 620px; margin: 22px 0 38px; color: var(--muted); font-size: 1.04rem; }
.performance { background: var(--panel); }
.video-shell {
  border: 1px solid var(--line);
  background: #050606;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.video-shell iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #000; }

.about { background: var(--bg); }
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.bio {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.62;
  max-width: 700px;
}
.availability {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
}
.availability span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .13em; }
.availability strong { font-size: 1rem; font-weight: 500; }

.contact { background: var(--panel-2); }
.contact-copy { color: var(--muted); max-width: 420px; margin-top: 24px; }
.contact-form { display: grid; gap: 20px; }
.contact-form label { display: grid; gap: 8px; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #c7c5bf; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: #0d1010;
  color: var(--text);
  border-radius: 0;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form button {
  justify-self: start;
  border: 0;
  background: var(--accent);
  color: #111;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  cursor: pointer;
}
.form-note { margin: -6px 0 0; color: #8f908c; font-size: .8rem; }

footer { background: #060808; border-top: 1px solid var(--line); }
.footer-inner { padding: 28px 0; display: flex; justify-content: space-between; gap: 24px; color: #8f908c; font-size: .8rem; }
.footer-inner a { text-decoration: none; }

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 34px), var(--max)); }

  /* On phones, keep the portrait and name separate so the type never covers Tommy's face. */
  .hero {
    min-height: 0;
    display: block;
    background: #080a0a;
  }
  .hero-photo {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 62svh;
    min-height: 430px;
    max-height: 620px;
    object-fit: cover;
    object-position: 58% 30%;
  }
  .hero-overlay {
    height: 62svh;
    min-height: 430px;
    max-height: 620px;
    bottom: auto;
    background:
      linear-gradient(0deg, rgba(6,8,8,.48) 0%, rgba(6,8,8,.04) 44%, rgba(6,8,8,.08) 100%);
    pointer-events: none;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 48px;
  }
  h1 { font-size: clamp(3.7rem, 18vw, 5.35rem); }
  .role { margin-top: 16px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .section { padding: 78px 0; }
  .footer-inner { flex-direction: column; }
}

/* Contact form spam trap and status messages */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-note.success { color: #b8d8b8; }
.form-note.error { color: #e2b2b2; }
