:root {
  --ink: #050505;
  --night: #11100d;
  --panel: rgba(22, 19, 15, 0.9);
  --panel-solid: #17130f;
  --line: rgba(242, 219, 178, 0.18);
  --text: #f7ead5;
  --muted: #c4aa86;
  --amber: #c8792a;
  --gold: #e8b45f;
  --teal: #73a6a0;
  --red: #a94735;
  --shadow: rgba(0, 0, 0, 0.55);
  --display: "Archivo Black", Inter, sans-serif;
  --condensed: Oswald, Inter, sans-serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(166, 89, 45, 0.16), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(115, 166, 160, 0.08), transparent 30%),
    var(--ink);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.045));
  background-size: 3px 3px, 4px 4px, 100% 100%;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.42;
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 99;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 222, 161, 0.045), rgba(74, 28, 13, 0.07));
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(10, 7, 5, 0.76), rgba(10, 7, 5, 0));
  pointer-events: none;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  pointer-events: auto;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(232, 180, 95, 0.6);
  background: rgba(10, 7, 5, 0.5);
  box-shadow: 0 0 32px rgba(200, 121, 42, 0.22);
  font-size: 1.45rem;
}

.brand > span:last-child {
  color: var(--text);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.nav-links {
  position: fixed;
  top: 50%;
  right: clamp(18px, 4vw, 54px);
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  color: rgba(244, 235, 220, 0.94);
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: auto;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-family: var(--condensed);
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: auto;
}

.social-links a {
  text-decoration: none;
}

.nav-links a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 78px) 88px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  filter: sepia(0.18) saturate(0.88) contrast(1.1) brightness(0.88);
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background:
    radial-gradient(circle at 54% 36%, rgba(255, 142, 68, 0.12), rgba(5, 5, 5, 0.76) 64%),
    linear-gradient(90deg, rgba(8, 6, 4, 0.9) 0%, rgba(22, 13, 8, 0.48) 42%, rgba(8, 6, 4, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 36%);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 116, 46, 0.08), transparent 22%, transparent 76%, rgba(25, 161, 165, 0.05)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 12vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 620px;
  color: rgba(244, 235, 220, 0.84);
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
}

.social-tag {
  width: fit-content;
  margin: 20px 0 0;
  border-left: 3px solid var(--teal);
  padding-left: 12px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions,
.section-heading,
.chat-header,
.site-footer {
  display: flex;
  align-items: center;
}

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

.hero-corner {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: rgba(244, 235, 220, 0.72);
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #160e07;
  box-shadow: 0 18px 44px rgba(200, 121, 42, 0.24);
}

.button.ghost {
  border-color: rgba(244, 235, 220, 0.25);
  background: rgba(5, 5, 5, 0.34);
  color: var(--text);
}

.button.compact {
  min-height: 44px;
  padding-inline: 15px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0a08;
}

.signal-strip div {
  min-height: 118px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  color: var(--text);
}

.signal-strip span,
.section p,
.feature-panel p,
.service-list p,
.booking p {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 78px);
}

.intro {
  max-width: 1180px;
}

.intro p {
  max-width: 900px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.photos {
  background:
    linear-gradient(135deg, rgba(166, 89, 45, 0.16), transparent 32%),
    linear-gradient(300deg, rgba(115, 166, 160, 0.08), transparent 35%),
    #0b0907;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 219, 178, 0.2);
  background: #0c0907;
  box-shadow: 0 22px 70px var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile.tall {
  grid-row: span 2;
  min-height: 540px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  filter: sepia(0.16) saturate(0.88) contrast(1.08) brightness(0.92);
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.photo-tile img[src$="toine-stage-bw.jpg"] {
  object-position: 50% 78%;
}

.photo-tile:hover img {
  filter: sepia(0.12) saturate(1) contrast(1.1) brightness(0.96);
  transform: scale(1.025);
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 71, 53, 0.18), transparent 28%),
    #0c0907;
}

.work-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-panel,
.service-list article,
.chat-shell,
.booking-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 22px 70px var(--shadow), inset 0 0 30px rgba(255, 218, 160, 0.018);
}

.feature-panel {
  min-height: 280px;
  padding: 26px;
}

.feature-panel.loud {
  background: linear-gradient(135deg, rgba(216, 139, 42, 0.2), rgba(35, 184, 180, 0.14)), var(--panel-solid);
}

.credit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credit-list li {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(244, 235, 220, 0.12);
  padding-top: 14px;
}

.credit-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.credit-list strong {
  color: var(--text);
  font-family: var(--condensed);
  font-size: 1.08rem;
}

.credit-list span {
  color: var(--muted);
}

.music {
  background:
    linear-gradient(135deg, rgba(115, 166, 160, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(166, 89, 45, 0.14), transparent 36%),
    #080706;
}

.spotify-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0907;
  box-shadow: 0 22px 70px var(--shadow);
}

.spotify-embed iframe {
  display: block;
  border: 0;
  filter: sepia(0.08) saturate(0.9);
}

.services {
  background: #060504;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.service-list article {
  padding: 24px;
}

.service-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal);
  font-family: var(--condensed);
  font-weight: 700;
}

.intake {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(115, 166, 160, 0.08), transparent 38%),
    linear-gradient(320deg, rgba(166, 89, 45, 0.14), transparent 36%),
    #11100d;
}

.intake-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.intake-tags span {
  border: 1px solid rgba(244, 235, 220, 0.18);
  padding: 8px 10px;
  color: rgba(244, 235, 220, 0.8);
  font-size: 0.86rem;
}

.chat-shell {
  min-height: 600px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.chat-header {
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header small {
  color: var(--muted);
}

.live-dot {
  width: 12px;
  height: 12px;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(35, 184, 180, 0.8);
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.message {
  width: fit-content;
  max-width: min(88%, 520px);
  padding: 12px 14px;
  border: 1px solid rgba(244, 235, 220, 0.13);
}

.message.bot {
  background: rgba(244, 235, 220, 0.08);
}

.message.user {
  align-self: flex-end;
  background: rgba(35, 184, 180, 0.16);
  border-color: rgba(35, 184, 180, 0.28);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 235, 220, 0.18);
  background: rgba(10, 7, 5, 0.5);
  color: var(--text);
  font: inherit;
  padding: 13px 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(243, 189, 100, 0.5);
  outline-offset: 2px;
}

.demo-drop {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
}

.demo-drop label,
.booking-form label {
  color: rgba(244, 235, 220, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #080706;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.site-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: #050403;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
    pointer-events: auto;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    max-width: min(520px, 100%);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    transform: none;
  }

  .social-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-right: clamp(18px, 6vw, 78px);
  }

  .signal-strip,
  .work-grid,
  .service-list,
  .intro,
  .photo-grid,
  .intake,
  .booking {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-tile.wide,
  .photo-tile.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    padding-top: 14px;
  }

  .brand > span:last-child {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .nav-links {
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 94vh;
    padding-top: 142px;
    padding-bottom: 70px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.66)),
      linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 44%);
  }

  h1 {
    font-size: 4.4rem;
  }

  .hero-corner {
    right: auto;
    left: 18px;
    bottom: 22px;
    text-align: left;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

  .chat-shell {
    min-height: 560px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }
}
