:root {
  --bg: #000000;
  --surface: rgba(15, 15, 15, 0.94);
  --surface-strong: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --accent: #9d2235;
  --accent-dark: #7d1b2b;
  --accent-soft: #ffc425;
  --gold-deep: #ffc425;
  --black-rich: #000000;
  --white-warm: #ffffff;
  --line: rgba(157, 34, 53, 0.38);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(157, 34, 53, 0.2), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(255, 196, 37, 0.08), transparent 22%),
    linear-gradient(180deg, #000000 0%, #0d0d0d 45%, #000000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(157, 34, 53, 0.12), transparent 18%),
    radial-gradient(circle at 80% 35%, rgba(255, 196, 37, 0.12), transparent 16%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

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

.hero,
.section,
.featured-card,
.contact-card,
.service-card,
.steps-card {
  backdrop-filter: blur(18px);
}

.hero {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.99), rgba(20, 20, 20, 0.98)),
    linear-gradient(145deg, rgba(157, 34, 53, 0.32), transparent 48%);
  color: var(--white-warm);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 37, 0.24), transparent 68%);
}

.topbar,
.hero-content,
.section-heading,
.split-section,
.audience-grid,
.hero-stat-grid,
.hero-actions,
.book-hero-layout,
.topbar-actions,
.book-preview-card {
  display: flex;
}

.topbar,
.hero-content,
.split-section {
  justify-content: space-between;
}

.topbar,
.hero-content,
.hero-actions,
.section-heading {
  align-items: center;
}

.topbar {
  gap: 20px;
}

.topbar-actions {
  gap: 12px;
  flex-wrap: wrap;
}

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

.brand-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.panel-logo {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.35));
}

.hero-photo-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-photo-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 239, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}

.hero-photo-frame-large .hero-photo {
  height: 300px;
}

.hero-photo-frame-small .hero-photo {
  height: 148px;
}

.brand-name,
.brand-tag,
.eyebrow,
.panel-label,
.stat-label {
  margin: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.28rem;
}

.brand-tag,
.hero-text,
.service-card p,
.split-copy p,
.step p,
.audience-grid p,
.contact-card p,
.section-heading p {
  color: var(--muted);
}

.hero .brand-tag,
.hero .hero-text,
.hero .stat-label {
  color: rgba(255, 236, 206, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white-warm);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-ghost,
.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 196, 37, 0.34);
}

.button-secondary {
  color: var(--white-warm);
}

.button-ghost:hover,
.button-secondary:hover,
.button-ghost:focus-visible,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero-content {
  gap: 32px;
  padding: 72px 0 12px;
  align-items: flex-end;
}

.book-hero {
  padding-bottom: 36px;
}

.book-hero-layout {
  gap: 34px;
  align-items: center;
  padding-top: 56px;
}

.book-cover-panel {
  flex: 0 0 320px;
  max-width: 320px;
}

.book-cover-panel img,
.book-preview-cover img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.book-sales-copy {
  max-width: 620px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.panel-label,
.stat-number,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

.eyebrow,
.panel-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.eyebrow {
  color: var(--accent);
}

.hero .eyebrow,
.hero .panel-label {
  color: #ffc425;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  max-width: 11ch;
}

.animated-headline,
.featured-card h2,
.book-preview-copy h2,
.section-heading h2,
.split-copy h2 {
  background: linear-gradient(90deg, #ffffff 0%, #ffc425 26%, #ffffff 50%, #9d2235 74%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headlineGlow 8s linear infinite;
}

@keyframes headlineGlow {
  0% {
    background-position: 0% center;
    transform: translateY(0);
  }

  50% {
    background-position: 100% center;
    transform: translateY(-2px);
  }

  100% {
    background-position: 0% center;
    transform: translateY(0);
  }
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
  margin: 18px 0 0;
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 290px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(157, 34, 53, 0.08));
  border: 1px solid rgba(255, 196, 37, 0.18);
}

.panel-list {
  margin: 16px 0 26px;
  padding-left: 18px;
  color: var(--white-warm);
  display: grid;
  gap: 10px;
}

.hero-stat-grid {
  gap: 16px;
}

.hero-stat-grid > div {
  flex: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 196, 37, 0.24);
}

.stat-number {
  display: block;
  font-size: 2rem;
  color: #ffc425;
}

.section {
  margin-top: 20px;
  padding: 32px;
  border-radius: 28px;
}

.trust-band {
  background:
    linear-gradient(90deg, #000000 0%, #9d2235 50%, #000000 100%);
  color: var(--white-warm);
  text-align: center;
  font-weight: 600;
}

.trust-band p {
  margin: 0;
}

.section:not(.trust-band):not(.featured-section):not(.contact-section) {
  background: var(--surface);
  border: 1px solid rgba(157, 34, 53, 0.24);
  box-shadow: var(--shadow);
}

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

.section-heading h2,
.split-copy h2,
.featured-card h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 11ch;
}

.section-heading p {
  max-width: 46ch;
  line-height: 1.7;
}

.card-grid,
.audience-grid,
.story-grid,
.quick-links-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.steps-card,
.featured-card,
.contact-card,
.story-card,
.quick-link-card,
.home-brand-card {
  border: 1px solid rgba(157, 34, 53, 0.22);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(18, 18, 18, 0.96));
}

.service-card h3,
.audience-grid h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--accent-soft);
}

.service-card p,
.split-copy p,
.step p,
.audience-grid p,
.contact-card p {
  line-height: 1.7;
  margin: 0;
}

.split-section {
  gap: 22px;
  align-items: stretch;
}

.story-grid {
  grid-template-columns: 0.95fr 1.15fr 0.95fr;
  align-items: stretch;
}

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

.quick-link-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(18, 18, 18, 0.96));
}

.quick-link-card h3 {
  font-size: 2rem;
  margin: 8px 0 12px;
  color: var(--accent-soft);
}

.quick-link-card p {
  margin: 0 0 18px;
  line-height: 1.7;
  color: var(--muted);
}

.home-brand-section {
  background: transparent;
  padding: 0;
}

.home-brand-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.99), rgba(18, 18, 18, 0.97));
}

.home-brand-image {
  flex: 0 0 320px;
  max-width: 320px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(255, 196, 37, 0.16);
}

.home-brand-image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-brand-copy {
  max-width: 620px;
}

.home-brand-copy p {
  line-height: 1.7;
  color: rgba(255, 248, 239, 0.84);
}

.story-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(18, 18, 18, 0.96));
}

.story-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.story-card-tall img {
  height: 100%;
  min-height: 420px;
}

.story-card-feature {
  position: relative;
  background: #120b0b;
}

.story-card-feature .story-copy {
  background: linear-gradient(180deg, rgba(18, 11, 11, 0) 0%, rgba(18, 11, 11, 0.92) 62%);
  color: var(--white-warm);
  margin-top: -140px;
  position: relative;
}

.story-card-feature .story-copy p,
.story-card-feature .story-copy h3 {
  color: inherit;
}

.story-copy {
  padding: 22px;
}

.story-copy h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.story-copy p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.story-card-accent {
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(157, 34, 53, 0.98), rgba(50, 10, 18, 0.98));
}

.story-card-accent .story-copy p:last-child {
  margin-top: 16px;
}

.split-copy {
  flex: 1.1;
}

.split-copy p {
  max-width: 56ch;
  margin-top: 18px;
}

.steps-card {
  flex: 0.9;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(22, 22, 22, 0.96));
}

.step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 196, 37, 0.14);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--accent-dark);
  min-width: 2ch;
}

.featured-section,
.contact-section,
.pricing-section {
  padding: 0;
  background: transparent;
}

.featured-card {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(157, 34, 53, 0.96), rgba(40, 10, 16, 0.99)),
    linear-gradient(180deg, rgba(255, 196, 37, 0.08), transparent);
  color: var(--white-warm);
}

.featured-card .eyebrow,
.featured-card p {
  color: rgba(255, 248, 239, 0.84);
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.audience-grid div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 196, 37, 0.06);
  border: 1px solid rgba(255, 196, 37, 0.18);
}

.pricing-card {
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.99), rgba(18, 18, 18, 0.99));
  border: 1px solid rgba(157, 34, 53, 0.24);
  box-shadow: var(--shadow);
}

.pricing-card img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.consult-preview-section {
  background: transparent;
  padding: 0;
}

.consult-preview-card {
  justify-content: space-between;
  gap: 28px;
}

.consult-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}

.consult-price-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 196, 37, 0.08);
  border: 1px solid rgba(255, 196, 37, 0.18);
  color: var(--white-warm);
  font-weight: 700;
}

.consult-side-note {
  min-width: 290px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(255, 196, 37, 0.16);
}

.consult-side-note .panel-list {
  margin-bottom: 0;
}

.book-preview-section,
.book-details-section {
  background: transparent;
  padding: 0;
}

.book-preview-card,
.book-cta-card {
  border: 1px solid rgba(157, 34, 53, 0.24);
  box-shadow: var(--shadow);
}

.book-preview-card {
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.99), rgba(18, 18, 18, 0.97));
  color: var(--white-warm);
}

.book-preview-cover {
  flex: 0 0 260px;
  max-width: 260px;
}

.book-preview-copy {
  max-width: 620px;
}

.book-preview-copy .eyebrow,
.book-preview-copy p {
  color: rgba(255, 248, 239, 0.84);
}

.book-preview-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-top: 8px;
  max-width: 12ch;
}

.book-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.book-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #ffc425;
  line-height: 1;
}

.book-price-note {
  color: rgba(255, 248, 239, 0.74);
  font-weight: 600;
}

.book-cta-card {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(157, 34, 53, 0.98));
  text-align: center;
}

.book-cta-title,
.book-cta-subtitle,
.book-cta-price,
.book-contact-note {
  margin: 0;
}

.book-cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
}

.book-cta-subtitle {
  margin-top: 10px;
  color: var(--muted);
}

.book-cta-price {
  margin: 20px 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  color: var(--accent-soft);
}

.book-contact-note {
  margin-top: 18px;
  color: var(--muted);
}

.book-contact-note a {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: none;
}

.consult-highlight {
  min-width: 320px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 248, 239, 0.04);
  border: 1px solid rgba(255, 196, 37, 0.18);
  box-shadow: var(--shadow);
}

.consult-mini-prices {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.consult-mini-prices div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 196, 37, 0.06);
  border: 1px solid rgba(255, 196, 37, 0.18);
}

.consult-mini-prices strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: #ffc425;
}

.consult-mini-prices span {
  color: rgba(255, 248, 239, 0.82);
}

.consult-cards,
.consult-form {
  display: grid;
  gap: 18px;
}

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

.consult-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(18, 18, 18, 0.96));
  border: 1px solid rgba(157, 34, 53, 0.22);
  box-shadow: var(--shadow);
}

.consult-card-featured {
  background: linear-gradient(180deg, rgba(157, 34, 53, 0.98), rgba(35, 10, 15, 0.98));
  transform: translateY(-8px);
}

.consult-card-label,
.consult-card-price,
.consult-card-copy {
  margin: 0;
}

.consult-card-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-soft);
}

.consult-card-price {
  margin: 12px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  color: var(--accent-soft);
}

.consult-card-copy {
  line-height: 1.7;
  color: var(--muted);
}

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

.form-section-title {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(255, 196, 37, 0.14);
}

.form-section-title p,
.form-section-title span {
  margin: 0;
}

.form-section-title p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  color: var(--accent-soft);
}

.form-section-title span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.consult-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(157, 34, 53, 0.28);
  background: rgba(10, 6, 7, 0.96);
  font: inherit;
  color: var(--white-warm);
}

.consult-form textarea {
  resize: vertical;
}

.consult-form-full,
.consult-submit {
  grid-column: 1 / -1;
}

.consult-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 196, 37, 0.12);
}

.consult-form-footer p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.consult-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.contact-card {
  padding: 26px 32px;
  border-radius: 28px;
  background: var(--surface-strong);
}

.contact-card a {
  display: inline-block;
  margin-right: 24px;
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: none;
}

.contact-card p {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .hero-content,
  .split-section,
  .section-heading,
  .book-hero-layout,
  .book-preview-card,
  .consult-preview-card,
  .home-brand-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .agency-card-grid,
  .audience-grid,
  .story-grid,
  .quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-cards,
  .consult-form {
    grid-template-columns: 1fr;
  }

  .consult-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-card-accent {
    grid-column: 1 / -1;
  }

  .story-card-feature {
    grid-column: 1 / -1;
  }

  h1 {
    max-width: 13ch;
  }

  .book-cover-panel,
  .book-preview-cover,
  .home-brand-image {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1000px);
    margin-top: 10px;
  }

  .hero,
  .section,
  .featured-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

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

  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .card-grid,
  .agency-card-grid,
  .audience-grid,
  .story-grid,
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .story-card img,
  .story-card-tall img,
  .hero-photo {
    height: 260px;
  }

  .hero-photo-row {
    grid-template-columns: 1fr;
  }

  .hero-photo-frame-small .hero-photo,
  .hero-photo-frame-large .hero-photo {
    height: 220px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.6rem);
  }

  .contact-card a {
    display: block;
    margin: 0 0 12px;
  }
}
