@font-face { font-family: InterVar; src: local("Inter"), local("Inter Variable"); font-display: swap; }
:root {
  color-scheme: dark;
  --bg: #070506;
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.12);
  --text: #f8efe6;
  --muted: #b8a79c;
  --gold: #f4b75d;
  --red: #d94435;
  --wine: #42121c;
  --line: rgba(255,255,255,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: InterVar, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 75% 15%, rgba(217,68,53,.28), transparent 34rem),
    radial-gradient(circle at 10% 5%, rgba(244,183,93,.18), transparent 30rem),
    linear-gradient(135deg, #070506 0%, #14070c 52%, #090608 100%);
  color: var(--text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: rgba(7,5,6,.74);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--red)); color: #160306; font-weight: 950; }
nav { display: flex; align-items: center; gap: clamp(.7rem, 2vw, 1.5rem); color: var(--muted); font-size: .95rem; }
nav a:hover { color: var(--text); }
.nav-cta { padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text); }
.section-shell { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7.5rem) 0; }
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; min-height: calc(100vh - 5rem); }
.eyebrow { margin: 0 0 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 850; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.6rem, 9vw, 8.4rem); line-height: .86; letter-spacing: -.08em; max-width: 10ch; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.1rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.06em; margin-bottom: 1.2rem; }
h3 { font-size: 1.35rem; letter-spacing: -.035em; margin-bottom: .65rem; }
.lede { max-width: 42rem; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; }
.hero-actions, .booking-panel { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; margin-top: 2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 3.1rem; padding: .85rem 1.2rem; border-radius: 999px; font-weight: 850; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, var(--gold), var(--red)); color: #160306; }
.secondary { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.03); }
.signal-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; color: var(--muted); }
.signal-row span { border: 1px solid var(--line); border-radius: 999px; padding: .55rem .8rem; background: rgba(255,255,255,.04); }
.hero-card { position: relative; min-height: 32rem; border: 1px solid var(--line); border-radius: 2rem; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.03)); box-shadow: 0 2rem 7rem rgba(0,0,0,.38); display: flex; flex-direction: column; justify-content: end; padding: 2rem; }
.hero-card:before { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1.45rem; }
.orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .9; }
.orb-one { width: 18rem; height: 18rem; background: rgba(217,68,53,.48); top: 3rem; right: -4rem; }
.orb-two { width: 13rem; height: 13rem; background: rgba(244,183,93,.38); bottom: 8rem; left: -3rem; }
.meter { position: relative; display: flex; align-items: end; gap: .55rem; height: 10rem; margin-bottom: 1.25rem; }
.meter span { width: 100%; border-radius: 999px 999px .4rem .4rem; background: linear-gradient(to top, var(--red), var(--gold)); animation: pulse 1.4s ease-in-out infinite alternate; }
.meter span:nth-child(1) { height: 35%; animation-delay: .1s; } .meter span:nth-child(2) { height: 78%; animation-delay: .3s; } .meter span:nth-child(3) { height: 48%; animation-delay: .05s; } .meter span:nth-child(4) { height: 92%; animation-delay: .2s; } .meter span:nth-child(5) { height: 61%; animation-delay: .35s; } .meter span:nth-child(6) { height: 84%; animation-delay: .12s; } .meter span:nth-child(7) { height: 42%; animation-delay: .25s; }
.hero-card p { position: relative; color: var(--text); font-weight: 850; font-size: 1.2rem; margin: 0; }
.split { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2rem; align-items: start; border-top: 1px solid var(--line); }
.cards { display: grid; gap: 1rem; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; }
.card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--panel); min-height: 13rem; }
.card span { display: inline-block; color: var(--gold); font-weight: 900; margin-bottom: 2rem; }
.card p, .work-band p, .booking p, footer { color: var(--muted); line-height: 1.55; }
.work-band { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; background: linear-gradient(135deg, rgba(66,18,28,.86), rgba(255,255,255,.05)); border: 1px solid var(--line); border-radius: 2rem; padding-left: clamp(1.25rem, 4vw, 3rem); padding-right: clamp(1.25rem, 4vw, 3rem); }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.checks li { padding: 1rem; background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 1rem; }
.checks li:before { content: "✦"; color: var(--gold); margin-right: .7rem; }
.booking { text-align: center; }
.booking h2, .booking p { margin-left: auto; margin-right: auto; max-width: 780px; }
.booking-panel { justify-content: center; color: var(--muted); }
footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 4rem); border-top: 1px solid var(--line); }
@keyframes pulse { to { transform: scaleY(.72); opacity: .72; } }
@media (max-width: 860px) {
  .hero, .split, .work-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-grid, .two-col { grid-template-columns: 1fr; }
  nav a:not(.nav-cta) { display: none; }
  h1 { max-width: 9ch; }
  footer { flex-direction: column; }
}
