:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: #171511;
  --panel-strong: #201b12;
  --gold: #d7ad52;
  --gold-light: #f3d889;
  --text: #f7f1e6;
  --muted: #c8bda9;
  --line: rgba(243, 216, 137, 0.2);
  --danger: #ff8f8f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(215, 173, 82, 0.14), transparent 28rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 44%, #0d0b08 100%);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--gold);
  color: #0b0906;
  border-radius: 6px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid rgba(243, 216, 137, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(215, 173, 82, 0.18), rgba(255, 255, 255, 0.02));
  font-weight: 800;
}

.brand strong {
  display: block;
  line-height: 1.1;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.nav-cta {
  color: #090806 !important;
  background: var(--gold);
  padding: 9px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 60px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 38%, rgba(5, 5, 5, 0.26) 72%, rgba(5, 5, 5, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), #070707 100%);
}

.hero-content,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 680px;
  color: #e8ddca;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #100c05;
  box-shadow: 0 12px 40px rgba(215, 173, 82, 0.22);
}

.button-ghost,
.button-secondary {
  border-color: var(--line);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 92px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: start;
}

.lead-block {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid,
.pricing-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.pricing-card,
.portfolio-item,
.faq details,
.contact-form {
  border: 1px solid rgba(243, 216, 137, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 240px;
  padding: 24px;
}

.service-card p,
.pricing-card p,
.timeline p,
.faq p,
.about-copy p {
  color: var(--muted);
}

.icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(215, 173, 82, 0.1);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-mic::before {
  width: 12px;
  height: 22px;
  border: 2px solid var(--gold-light);
  border-radius: 999px;
}

.icon-mic::after {
  width: 22px;
  height: 14px;
  border-bottom: 2px solid var(--gold-light);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: translateY(7px);
}

.icon-podcast::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
}

.icon-podcast::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.icon-vertical::before {
  width: 16px;
  height: 26px;
  border: 2px solid var(--gold-light);
  border-radius: 4px;
}

.icon-vertical::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateY(9px);
}

.icon-play::before {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--gold-light);
  transform: translateX(2px);
}

.icon-event::before {
  width: 26px;
  height: 18px;
  border: 2px solid var(--gold-light);
  border-radius: 4px;
}

.icon-event::after {
  width: 14px;
  height: 2px;
  background: var(--gold-light);
  transform: translateY(-9px);
}

.icon-series::before {
  width: 24px;
  height: 16px;
  border: 2px solid var(--gold-light);
  border-radius: 4px;
  transform: translate(-3px, 3px);
}

.icon-series::after {
  width: 24px;
  height: 16px;
  border: 2px solid rgba(243, 216, 137, 0.56);
  border-radius: 4px;
  transform: translate(4px, -4px);
}

.process {
  border-top: 1px solid rgba(243, 216, 137, 0.1);
  border-bottom: 1px solid rgba(243, 216, 137, 0.1);
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: process;
}

.timeline li {
  padding: 24px 20px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(215, 173, 82, 0.08), transparent);
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-light);
  font-weight: 900;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #eadfc9;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(243, 216, 137, 0.46);
  background: linear-gradient(180deg, rgba(215, 173, 82, 0.17), rgba(255, 255, 255, 0.035));
}

.tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(215, 173, 82, 0.16);
  color: var(--gold-light) !important;
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card ul {
  margin: 16px 0 26px;
  padding-left: 20px;
  color: var(--muted);
}

.pricing-card .button {
  margin-top: auto;
}

.portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-item {
  position: relative;
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(243, 216, 137, 0.3);
  border-radius: 8px;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 216, 137, 0.28), rgba(255, 255, 255, 0.02));
  clip-path: polygon(34% 25%, 34% 75%, 76% 50%);
}

.portfolio-item span,
.portfolio-item h3 {
  position: relative;
  z-index: 1;
}

.portfolio-item span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.about-media {
  aspect-ratio: 4 / 5;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(7, 7, 7, 0.5) 100%),
    linear-gradient(90deg, rgba(215, 173, 82, 0.12), transparent 44%);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 18px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: #f6ead2;
  font-weight: 800;
}

.faq details[open] summary {
  color: var(--gold-light);
}

.faq details p {
  margin-bottom: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.form-row,
.consent,
.submit-button,
.form-status,
.consent-error {
  grid-column: span 2;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 760px) {
  .form-row:not(.full):nth-of-type(1),
  .form-row:not(.full):nth-of-type(2),
  .form-row:not(.full):nth-of-type(3),
  .form-row:not(.full):nth-of-type(4) {
    grid-column: span 1;
  }
}

label {
  display: block;
  margin-bottom: 7px;
  color: #efe2ca;
  font-size: 0.94rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(243, 216, 137, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(215, 173, 82, 0.16);
}

.error-message {
  min-height: 18px;
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.82rem;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.site-footer {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(243, 216, 137, 0.14);
  color: var(--muted);
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 74% 14%, rgba(215, 173, 82, 0.16), transparent 24rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 100%);
}

.thanks-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 130px 0 70px;
}

.thanks-panel {
  max-width: 820px;
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgba(243, 216, 137, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 82, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5.1rem);
}

.thanks-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.thanks-panel .button {
  margin-top: 22px;
}

.thanks-nav-links {
  display: flex;
}

@media (max-width: 980px) {
  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .thanks-nav-links {
    position: static;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    padding: 0;
    gap: 12px;
    border: 0;
    background: transparent;
    transform: none;
    visibility: visible;
  }

  .thanks-nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-cta {
    width: fit-content;
    padding: 10px 14px !important;
    margin-top: 8px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.62)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), #070707 100%);
  }

  .section {
    padding: 66px 0;
  }

  .service-grid,
  .pricing-grid,
  .timeline,
  .portfolio-grid,
  .audience-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row,
  .consent,
  .submit-button,
  .form-status,
  .consent-error {
    grid-column: span 1;
  }

  .service-card,
  .pricing-card {
    min-height: auto;
  }

  .about-media {
    min-height: 340px;
  }

  .site-footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .brand small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
