:root {
  --black: #09090a;
  --ink: #111114;
  --panel: #19191d;
  --cream: #f4eee4;
  --muted: #b9afa3;
  --red: #943238;
  --orange: #d77a2c;
  --green: #9fbd72;
  --line: rgba(244, 238, 228, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(148, 50, 56, 0.22), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(215, 122, 44, 0.1), transparent 28rem),
    var(--black);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("/assets/crow-mark.png");
  background-position: calc(100% + 120px) 120px;
  background-repeat: no-repeat;
  background-size: 420px;
  opacity: 0.035;
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(9, 9, 10, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(244, 238, 228, 0.72);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.text-link,
.site-footer a {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(244, 238, 228, 0.72);
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100svh - 110px);
  padding: clamp(48px, 8vw, 96px) 0 clamp(52px, 8vw, 104px);
}

.hero-copy {
  position: relative;
}

.hero-mark {
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  border: 3px solid rgba(244, 238, 228, 0.76);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 104px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
}

h3 {
  margin-bottom: 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(244, 238, 228, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 238, 228, 0.2);
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 238, 228, 0.5);
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.button.secondary {
  background: rgba(244, 238, 228, 0.055);
  color: var(--cream);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(148, 50, 56, 0.32), rgba(215, 122, 44, 0.1));
  transform: rotate(-2deg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 34px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 14px;
  color: rgba(244, 238, 228, 0.58);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(64px, 10vw, 116px);
}

.quick-info a {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.quick-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-grid,
.artist-section,
.booking-panel,
.contact-section {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  margin-bottom: clamp(74px, 11vw, 132px);
}

.feature-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  align-items: center;
}

.feature-copy {
  max-width: 500px;
}

.gallery-card {
  border-radius: 34px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.section {
  margin-bottom: clamp(74px, 11vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  margin-bottom: 28px;
}

.service-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-list article:first-child {
  border-top: 0;
}

.service-list span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.artist-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.artist-card {
  min-height: 320px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.035);
}

.main-artist {
  background:
    linear-gradient(135deg, rgba(148, 50, 56, 0.2), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.booking-panel {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 38px;
  color: var(--black);
  background: var(--orange);
}

.booking-panel h2,
.booking-panel p,
.booking-panel .eyebrow {
  color: var(--black);
}

.booking-panel p {
  margin-bottom: 0;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 42px);
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .section-heading,
  .artist-section,
  .booking-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    align-items: start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(9, 9, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 13px 8px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-mark {
    width: 88px;
    height: 88px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 76px);
  }

  h2 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }
}
