:root {
  --bg: #090909;
  --panel: #121212;
  --panel-2: #171717;
  --text: #f4f4f4;
  --muted: #bdbdbd;
  --line: rgba(255,255,255,.08);
  --accent: #f58220;
  --accent-soft: rgba(245,130,32,.14);
  --radius: 28px;
  --shadow: 0 22px 60px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(245,130,32,.16), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  background: rgba(9,9,9,.72);
}

.brand img {
  width: min(280px, 55vw);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.32));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-simple {
  padding: 22px 0 20px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 620px;
  background: #101010;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.48)),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 34px 24px 34px;
}

.hero-logo {
  width: min(720px, 82vw);
  margin-top: 6px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #121212; }
.btn-secondary {
  border-color: rgba(255,255,255,.16);
  background: rgba(0,0,0,.34);
  color: var(--text);
}
.btn.full { width: 100%; }

.section { padding: 44px 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}
.section-heading.compact { margin-bottom: 18px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}
.section h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.04em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-copy,
.card-copy,
.demo-card p,
.form-note {
  color: var(--muted);
}
.section-copy {
  max-width: 54ch;
  line-height: 1.65;
}

.demo-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.demo-card,
.booking-card,
.contact-card,
.contact-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-card,
.booking-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
}
.demo-card h3,
.booking-card h3 { margin: 8px 0 10px; font-size: 1.28rem; }
.demo-card.featured,
.accent-card {
  background: linear-gradient(180deg, rgba(245,130,32,.18), rgba(255,255,255,.03));
}
.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffcb9b;
  font-size: .8rem;
  font-weight: 700;
}

audio {
  width: 100%;
  margin-top: 16px;
  border-radius: 999px;
}

.card-kicker {
  margin: 0 0 14px;
  color: #ffd2af;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: grid;
  gap: 4px;
}
.contact-list strong { font-size: .95rem; }
.contact-list a { color: #ffd2af; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 24px;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.contact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(0,0,0,.24);
}
.contact-card label {
  display: grid;
  gap: 8px;
}
.contact-card span { color: #d7d7d7; }
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.pill-link {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #ddd;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

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

  .section-heading { align-items: start; }

  .nav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(260px, 90vw);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(14,14,14,.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .topbar { position: relative; }
  .hero-image-wrap,
  .hero-content { min-height: 520px; }
  .hero-logo { width: min(620px, 90vw); }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 18px, 1200px); }
  .hero-simple { padding-top: 14px; }
  .hero-image-wrap,
  .hero-content { min-height: 430px; }
  .hero-content { padding: 22px 16px 22px; }
  .hero-logo { width: min(94vw, 560px); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer { flex-direction: column; }
}


/* subtle premium glow background */
body{
  background:
    radial-gradient(circle at top center, rgba(255,122,0,0.08), transparent 40%),
    #000;
}

/* demo cards feel more premium */
.demo-card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.demo-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}


/* darker orange background polish */
body{
  background:
    radial-gradient(circle at top center, rgba(166, 70, 14, 0.26), transparent 38%),
    linear-gradient(180deg, #2a1205 0%, #140902 42%, #000000 100%);
}

/* bigger logo without breaking layout */
.hero-logo{
  width:min(96vw, 1040px) !important;
  max-width:1040px !important;
  display:block;
  margin:0 auto;
}

/* keep the background image visible and let the darker orange complement the logo */
.hero-overlay{
  background:
    linear-gradient(180deg, rgba(20,9,2,0.18) 0%, rgba(20,9,2,0.34) 55%, rgba(0,0,0,0.44) 100%),
    radial-gradient(circle at center, rgba(166,70,14,0.16), transparent 48%);
}


/* blackish orange background */
body{
  background:
    radial-gradient(circle at top center, rgba(255,120,0,0.18), transparent 40%),
    linear-gradient(180deg, #140600 0%, #050200 60%, #000000 100%);
}

/* larger logo */
.hero-logo{
  width:min(98vw,1200px) !important;
  max-width:1200px !important;
  margin:0 auto;
  display:block;
}

/* remove hero background image */
.hero-image{
  display:none !important;
}




/* High-end dark/orange depth */
body{
  background:
    radial-gradient(circle at 20% 0%, rgba(255,120,0,0.12), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,120,0,0.08), transparent 45%),
    linear-gradient(180deg, #0b0502 0%, #000000 60%) !important;
}

/* Subtle premium demo card finish */
.demo-card{
  background: linear-gradient(180deg, #111111, #0a0a0a) !important;
  border: 1px solid rgba(255,120,0,0.12);
}


/* Orange → Black gradient background */
body{
  background: linear-gradient(180deg, #ff7a00 0%, #c95700 20%, #3a1500 45%, #000000 100%) !important;
}



/* Make the black logo plate hug the logo instead of including the buttons */
.hero-simple{
  padding: 14px 0 16px !important;
}

.hero-image{
  display: none !important;
}

.hero-overlay{
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.18)) !important;
}

.hero-image-wrap{
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 18px !important;
  background: #101010 !important;
}

.hero-content{
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.hero-logo{
  width: min(1180px, 98vw) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.hero-actions-outside{
  margin-top: 12px !important;
  justify-content: center !important;
}



/* Make the logo frame very tight */
.hero-image-wrap{
  display:inline-block !important;
  padding:4px 10px !important;
  min-height:0 !important;
  height:auto !important;
  background:#101010 !important;
  border-radius:18px !important;
}

/* remove extra vertical spacing */
.hero-simple{
  padding:6px 0 10px !important;
}

/* maximize logo size while keeping it inside frame */
.hero-logo{
  width:min(1250px, 98vw) !important;
  max-width:1250px !important;
}




/* Slightly tighter frame (small tweak from v22) */
.hero-image-wrap{
  padding:2px 6px !important;
}

.hero-simple{
  padding:4px 0 8px !important;
}




/* Cropped logo + cleaner frame */
.hero-image-wrap{
  background:#101010 !important;
  padding:10px 14px !important;
}

.hero-logo{
  width:min(1200px, 96vw) !important;
  max-width:1200px !important;
  margin:0 auto !important;
  display:block !important;
}





/* Small polish for cleaner contact section */
#contact .section-heading{
  margin-bottom: 10px;
}

#contact{
  padding-top: 40px;
}


.form-alert{
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.form-alert.success{
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-alert.error{
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}


.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

.form-alert{
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.form-alert.success{
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-alert.error{
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}


/* Fix contact form dropdown readability */
.contact-card select{
  background: rgba(255,255,255,.04);
  color: #ffffff;
}

/* Dropdown options */
.contact-card select option{
  background:#111111;
  color:#ffffff;
}



/* Safe v2 tweaks: preserve layout, only widen the gap between demo columns */
.demo-grid{
  column-gap: 34px;
  row-gap: 22px;
}

@media (max-width: 920px){
  .demo-grid{
    column-gap: 18px;
    row-gap: 18px;
  }
}


/* v61: make hero plate use the same full content width as the cards below,
   without cropping the logo */
.site-width{
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#heroPlate,
.hero-image-wrap{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  box-sizing: border-box !important;
  padding: 10px 14px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
}

.hero-content{
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
}

.hero-logo{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  left: 0 !important;
  margin: 0 auto !important;
  display: block !important;
}


/* Test polish pass */

/* 1) Make demo cards fill the available width evenly and keep a refined gap */
.demo-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 22px;
  align-items: stretch;
}

/* 2) Slightly tighter vertical rhythm */
.section{
  padding: 36px 0;
}
.section-heading{
  margin-bottom: 18px;
}
.hero-actions-outside{
  margin-top: 10px !important;
}

/* 3) Subtle hover glow */
.demo-card{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.demo-card:hover{
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.42),
    0 0 0 1px rgba(245,130,32,.14);
  border-color: rgba(245,130,32,.18);
}

/* 4) Slightly cleaner section width consistency */
.section,
.booking-section,
.contact-section,
.footer,
.hero-actions-outside,
.section-heading,
.demo-grid,
.booking-grid,
.contact-panel{
  width: 100%;
  box-sizing: border-box;
}

/* Mobile polish */
@media (max-width: 920px){
  .demo-grid{
    grid-template-columns: 1fr;
    column-gap: 18px;
    row-gap: 18px;
  }

  .section{
    padding: 30px 0;
  }

  .hero-actions{
    gap: 12px;
  }
}


/* v2: active audio card state + clickable demo cards */
.demo-card{
  cursor: pointer;
}

.demo-card.is-playing{
  box-shadow:
    0 14px 34px rgba(0,0,0,.48),
    0 0 0 1px rgba(245,130,32,.20),
    0 0 24px rgba(245,130,32,.10);
  border-color: rgba(245,130,32,.22);
}


/* Contact form sending state */
.send-btn{
  position: relative;
  min-height: 52px;
}

.send-btn .btn-sending{
  display: none;
}

.send-btn.is-sending{
  opacity: .9;
  cursor: wait;
}

.send-btn.is-sending .btn-label{
  visibility: hidden;
}

.send-btn.is-sending .btn-sending{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  inset: 0;
}

.send-btn.is-sending .btn-sending::before{
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(18,18,18,.28);
  border-top-color: #121212;
  animation: sendSpin .8s linear infinite;
}

.contact-card.is-sending{
  pointer-events: none;
}

@keyframes sendSpin{
  to { transform: rotate(360deg); }
}


/* Cloudflare Turnstile */
.turnstile-wrap{
  margin: 6px 0 4px;
  display: flex;
  justify-content: center;
}

.turnstile-wrap .cf-turnstile{
  max-width: 100%;
}


/* SEO quote/highlight block */
.seo-highlight{
  position: relative;
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  padding: 18px 20px 18px 22px;
  border-left: 3px solid #f58220;
  background: rgba(245,130,32,0.06);
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.seo-highlight strong{
  color: #f58220;
}

.seo-highlight::before{
  content: "“";
  position: absolute;
  left: 10px;
  top: -10px;
  font-size: 40px;
  color: rgba(245,130,32,0.25);
}
