:root {
  --black: #050505;
  --charcoal: #151515;
  --ink: #111111;
  --muted: #69645c;
  --paper: #f6f1e8;
  --white: #ffffff;
  --bone: #ebe3d6;
  --gold: #c5a25b;
  --line: rgba(5, 5, 5, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 56px;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: 176px;
  height: auto;
  filter: invert(1);
}

.brand small {
  display: block;
  max-width: 170px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--gold);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  align-items: stretch;
  gap: 0;
  min-height: calc(100vh - 81px);
  background: var(--black);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  padding: 74px 64px 72px 72px;
}

.hero-logo {
  width: 330px;
  height: auto;
  margin: 0 0 34px;
  filter: invert(1);
}

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

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

h1,
h2 {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: 5.25rem;
  line-height: 0.98;
}

h2 {
  color: var(--ink);
  font-size: 3.3rem;
  line-height: 1.04;
}

h3 {
  color: var(--ink);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.booking-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.booking-form button {
  background: var(--white);
  color: var(--black);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line-light);
}

.button:hover,
.booking-form button:hover {
  background: var(--gold);
  color: var(--black);
}

.portrait-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 54px;
  background: var(--paper);
  border-left: 1px solid var(--line-light);
  color: var(--black);
}

.portrait-frame {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid var(--black);
  border-radius: 50%;
  background: var(--bone);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
  border-radius: 50%;
}

.credential {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.credential span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential strong {
  color: var(--black);
  text-align: right;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--black);
  border-block: 1px solid var(--black);
}

.trust-strip div {
  padding: 32px 72px;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  color: var(--black);
  font-size: 2.65rem;
  font-weight: 800;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 110px 72px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 72px;
}

.talent-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.talent-grid article,
.service-list article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0;
}

.talent-grid p,
.service-list p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.talent-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.services {
  background: var(--black);
}

.services h2,
.services h3 {
  color: var(--white);
}

.services .section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.service-list article {
  background: var(--charcoal);
  border: 0;
}

.service-list p {
  color: rgba(255, 255, 255, 0.68);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 88px;
  align-items: start;
  padding: 110px 72px;
}

.booking-copy {
  max-width: 620px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 0;
  box-shadow: 14px 14px 0 var(--black);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  outline: none;
  background: var(--paper);
}

.booking-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(197, 162, 91, 0.32);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .site-header,
  .hero-copy,
  .section,
  .booking {
    padding-inline: 38px;
  }

  .trust-strip div {
    padding-inline: 38px;
  }
}

@media (max-width: 900px) {
  .hero,
  .two-column,
  .booking {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .section,
  .booking {
    padding: 54px 18px;
  }

  .hero-logo {
    width: 260px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .portrait-card {
    padding: 34px 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 26px 18px;
  }

  .credential {
    align-items: flex-start;
    flex-direction: column;
  }

  .credential strong {
    text-align: left;
  }

  .booking-form {
    padding: 24px;
    box-shadow: 8px 8px 0 var(--black);
  }
}
