:root {
  --black: #080808;
  --black-soft: #111;
  --paper: #f2f0eb;
  --white: #fff;
  --ink: #151515;
  --muted: #77736d;
  --orange: #efa72d;
  --line-dark: rgba(255,255,255,.13);
  --line-light: #d8d4cc;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 105px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 999; padding: 12px 18px; background: var(--orange); color: #000; }
.skip-link:focus { top: 0; }

.site-header { position: fixed; inset: 0 0 auto; height: 82px; z-index: 100; display: flex; align-items: center; transition: .25s ease; }
.site-header.scrolled { height: 70px; background: rgba(8,8,8,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-dark); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { width: 240px; }
.main-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.78); font-size: .9rem; }
.main-nav a:hover { color: #fff; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: #fff; transition: .2s ease; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; padding: 145px 0 95px; background: var(--black); color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.hero-glow { position: absolute; width: 700px; height: 700px; right: -220px; top: -230px; background: radial-gradient(circle, rgba(239,167,45,.18), transparent 67%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 75px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: #777; font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 2px; background: var(--orange); }
.hero .eyebrow { color: rgba(255,255,255,.55); }
h1 { max-width: 700px; margin-bottom: 28px; font-size: clamp(3.8rem, 7vw, 6.7rem); font-weight: 500; line-height: .91; letter-spacing: -.065em; }
h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 5vw, 4.7rem); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.hero-lead { max-width: 610px; color: rgba(255,255,255,.68); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; font-size: .9rem; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #111; }
.button-ghost { border-color: rgba(255,255,255,.3); color: #fff; }

.signal-card { padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: linear-gradient(145deg, #191919, #0d0d0d); box-shadow: 0 35px 90px rgba(0,0,0,.55); }
.signal-top { display: flex; justify-content: space-between; color: #777; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .68rem; letter-spacing: .08em; }
.live-dot { color: var(--orange); }
.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: pulse 1.6s infinite; }
.meter-bank { height: 250px; display: grid; grid-template-columns: repeat(12,1fr); align-items: end; gap: 9px; margin: 34px 0 26px; }
.meter-bank i { display: block; height: var(--level); border-radius: 3px; background: repeating-linear-gradient(to top, var(--orange) 0 5px, transparent 5px 11px); filter: drop-shadow(0 0 6px rgba(239,167,45,.3)); animation: meter 2.5s ease-in-out infinite alternate; transform-origin: bottom; }
.meter-bank i:nth-child(2n) { animation-delay: -.7s; }
.meter-bank i:nth-child(3n) { animation-delay: -1.3s; }
.signal-line { height: 1px; background: var(--line-dark); }
.signal-card p { margin: 18px 0 0; color: #777; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.collaborations { padding: 105px 0; background: #111; color: #fff; }
.section-intro { max-width: 760px; margin-bottom: 46px; }
.collaborations .eyebrow { color: rgba(255,255,255,.55); }
.artist-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.artist-card { min-height: 235px; padding: 25px 24px 28px; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: space-between; }
.artist-card:last-child { border-right: 0; }
.artist-card span { color: var(--orange); font-size: .7rem; font-weight: 800; }
.artist-card h3 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.7rem); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.artist-note { margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: .84rem; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); }
.service-card { min-height: 270px; padding: 30px 34px 30px 0; border-right: 1px solid var(--line-light); }
.service-card:not(:first-child) { padding-left: 34px; }
.service-card:last-child { border-right: 0; }
.service-card > span { color: #c7770c; font-size: .72rem; font-weight: 800; }
.service-card h3 { margin: 62px 0 14px; font-size: 1.45rem; }
.service-card p { max-width: 310px; margin-bottom: 0; color: var(--muted); line-height: 1.7; }

.about { background: #faf9f6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-art { position: relative; min-height: 520px; overflow: hidden; display: grid; place-items: center; border-radius: 26px; background: #111; }
.about-art::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 42%, rgba(239,167,45,.1)); }
.rings { position: absolute; width: 370px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.03), 0 0 0 110px rgba(255,255,255,.018); }
.rings::before { content: ""; position: absolute; inset: 22%; border: 1px solid rgba(239,167,45,.7); border-radius: 50%; }
.about-art img { position: relative; z-index: 2; width: min(74%, 430px); }
.about-art small { position: absolute; left: 28px; bottom: 24px; color: #747474; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .66rem; letter-spacing: .12em; }
.large-copy { font-size: clamp(1.28rem, 2vw, 1.65rem); line-height: 1.5; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: var(--muted); line-height: 1.75; }
.signature { display: flex; flex-direction: column; gap: 6px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-light); }
.signature span { color: var(--muted); font-size: .88rem; }

.contact { padding: 105px 0; background: var(--orange); }
.contact-grid { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 80px; align-items: center; }
.eyebrow.dark { color: rgba(0,0,0,.55); }
.eyebrow.dark span { background: #111; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(0,0,0,.67); font-size: 1.05rem; line-height: 1.65; }
.mail-link { display: inline-block; margin-top: 24px; font-size: 1.15rem; font-weight: 800; border-bottom: 2px solid #111; }
.contact-details-simple { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 10px; }
.phone-link { display: inline-block; font-size: 1.15rem; font-weight: 800; border-bottom: 2px solid #111; }
.contact-photo { justify-self: end; width: 100%; }
.contact-photo img { width: 100%; height: auto; display: block; }
.form-card { padding: 40px; border-radius: 24px; background: #fff; box-shadow: 0 25px 70px rgba(0,0,0,.2); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: .78rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid #ddd9d2; border-radius: 10px; outline: 0; background: #faf9f7; }
.field input:focus, .field textarea:focus { border-color: #c8780c; box-shadow: 0 0 0 4px rgba(239,167,45,.14); }
.field textarea { min-height: 155px; resize: vertical; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin: 4px 0 22px; color: #666; font-size: .76rem; line-height: 1.5; }
.consent input { margin-top: 2px; accent-color: #c8780c; }
.button-dark { width: 100%; border-radius: 11px; background: #111; color: #fff; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { margin-bottom: 20px; padding: 13px 15px; border-radius: 9px; font-size: .86rem; }
.form-status.success { background: #eaf7ed; color: #1c6330; }
.form-status.error { background: #fff0ef; color: #8d2b24; }

.site-footer { padding: 58px 0 26px; background: #090909; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: start; }
.footer-grid > img { width: 240px; }
.footer-grid p { color: #777; font-size: .86rem; }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; font-size: .84rem; }
.footer-grid > div a:last-child { color: #777; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #555; font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes meter { from { transform: scaleY(.83); } to { transform: scaleY(1.03); } }

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .hero { min-height: auto; padding: 125px 0 85px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .artist-grid { grid-template-columns: repeat(2,1fr); }
  .artist-card:nth-child(2) { border-right: 0; }
  .artist-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .about-art { min-height: 440px; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; }
  .brand { width: 158px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 80px 35px; background: rgba(8,8,8,.98); font-size: 1.7rem; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: none; }
  .nav-cta { padding: 0; border: 0; color: var(--orange); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:not(:first-child) { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(3.35rem, 16vw, 4.5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .signal-card { padding: 18px; }
  .meter-bank { height: 180px; gap: 6px; }
  .artist-grid { grid-template-columns: 1fr; }
  .artist-card { min-height: 175px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .artist-card:last-child { border-bottom: 0; }
  .about-art { min-height: 360px; }
  .rings { width: 245px; }
  .form-card { padding: 27px 20px; }
  .contact { padding: 85px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.contact-card {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: grid;
  gap: 10px;
}

.contact-item span {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6a655d;
}

.contact-card .mail-link {
  margin-top: 0;
  font-size: 1.4rem;
  border-bottom: 0;
}
