/* BiteTalk private chef landing page */

.private-chef-page {
  --pc-ink: #1f1712;
  --pc-charcoal: #17120f;
  --pc-soft: #fff8ef;
  --pc-cream: #f3e7d7;
  --pc-paper: #ffffff;
  --pc-line: #ead8c5;
  --pc-muted: #6f6259;
  --pc-orange: var(--accent, #fe3e25);
  --pc-orange-dark: var(--accent-strong, #c84418);
  --pc-teal: #0f766e;
  --pc-shadow: 0 18px 40px rgba(31, 23, 18, .12);
  background: var(--pc-soft);
  color: var(--pc-ink);
}

.private-chef-page main {
  background: var(--pc-soft);
  overflow: hidden;
}

.private-chef-page .btn {
  min-height: 48px;
}

.private-chef-page .btn.accent:hover {
  background: var(--pc-orange-dark);
}

.private-chef-page h1,
.private-chef-page h2,
.private-chef-page h3 {
  color: var(--pc-ink);
  line-height: 1.06;
  letter-spacing: 0;
}

.private-chef-page h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 4.85rem;
}

.private-chef-page h2 {
  margin: 0 0 14px;
  font-size: 3rem;
}

.private-chef-page h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.pc-eyebrow {
  margin: 0 0 12px;
  color: var(--pc-orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.pc-large-copy {
  font-size: 1.2rem;
  color: var(--pc-muted);
}

.pc-service-bar {
  background: var(--pc-charcoal);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pc-service-bar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}

.pc-service-bar p {
  margin: 0;
  color: #fff8ef;
  font-size: .92rem;
  font-weight: 700;
}

.pc-service-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-service-bar__actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 6px 12px;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
}

.pc-service-bar__actions a:last-child {
  background: var(--pc-orange);
  border-color: var(--pc-orange);
}

.pc-hero {
  position: relative;
  padding: 56px 0 62px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, .95), rgba(246, 232, 213, .95)),
    #fff8ef;
}

.pc-hero__grid,
.pc-intro__grid,
.pc-experience-grid,
.pc-included__grid,
.pc-inquiry__grid,
.pc-faq__grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.pc-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
}

.pc-hero__lead {
  max-width: 650px;
  margin: 0 0 24px;
  color: #42352d;
  font-size: 1.18rem;
}

.pc-mobile-chef-chip {
  display: none;
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.pc-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-trust-points li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(31, 23, 18, .12);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .7);
  color: #372b24;
  font-size: .9rem;
  font-weight: 800;
}

.pc-trust-points li::before,
.pc-included-list span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--pc-orange);
  box-shadow: 0 0 0 4px rgba(254, 62, 37, .12);
}

.pc-hero__media {
  position: relative;
  min-width: 0;
}

.pc-hero__image-shell {
  position: relative;
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(31, 23, 18, .12);
  border-radius: 16px;
  background: #2b211c;
  box-shadow: var(--pc-shadow);
}

.pc-hero__image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .45));
  pointer-events: none;
}

.pc-hero__image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.pc-identity-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 250, 245, .92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.pc-identity-card img {
  grid-row: span 2;
  width: 112px;
  height: auto;
}

.pc-identity-card strong {
  color: var(--pc-ink);
  font-size: 1.08rem;
}

.pc-identity-card span {
  color: var(--pc-muted);
  font-weight: 700;
}

.pc-quick-strip {
  padding: 18px 0;
  background: var(--pc-charcoal);
  color: #fff;
}

.pc-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pc-quick-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 800;
}

.pc-quick-item img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.pc-section {
  padding: 70px 0;
}

.pc-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.pc-section-head p:last-child {
  margin-bottom: 0;
  color: var(--pc-muted);
  font-size: 1.06rem;
}

.pc-intro {
  background: #fff;
}

.pc-intro__grid {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
}

.pc-intro__image {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(31, 23, 18, .1);
  box-shadow: var(--pc-shadow);
}

.pc-intro__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 50%;
}

.pc-intro__copy p {
  color: #4d4038;
  font-size: 1.05rem;
}

.pc-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.pc-inline-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--pc-soft);
  color: var(--pc-orange-dark);
  font-weight: 800;
}

.pc-packages {
  background: var(--pc-soft);
}

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

.pc-package-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(31, 23, 18, .08);
}

.pc-package-card--popular {
  border-color: rgba(254, 62, 37, .5);
  box-shadow: 0 18px 38px rgba(254, 62, 37, .13);
}

.pc-package-card > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.pc-package-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.pc-package-card__body p {
  margin: 0;
  color: #514238;
}

.pc-package-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--pc-orange);
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pc-price-list {
  display: grid;
  gap: 9px;
}

.pc-price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #f0ddc7;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff8ef;
}

.pc-price-list span {
  color: #5c4b40;
  font-weight: 800;
}

.pc-price-list strong,
.pc-price-feature {
  color: var(--pc-orange-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.pc-price-note,
.pc-package-note,
.pc-small-note,
.pc-form-note {
  color: var(--pc-muted);
  font-size: .95rem;
}

.pc-package-note {
  margin: 20px 0 0;
  font-weight: 700;
}

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

.pc-mini-list li {
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff4e8;
  color: #5e4638;
  font-size: .9rem;
  font-weight: 800;
}

.pc-gallery {
  background: #fff;
}

.pc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 132px;
  gap: 14px;
}

.pc-gallery-card {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border-radius: 14px;
  background: #1c1410;
}

.pc-gallery-card--tall {
  grid-row: span 4;
}

.pc-gallery-card--wide {
  grid-column: span 6;
}

.pc-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.pc-gallery-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(23, 18, 15, .82);
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
}

.pc-experiences {
  background: var(--pc-charcoal);
  color: #fff;
}

.pc-experiences h2,
.pc-experiences h3 {
  color: #fff;
}

.pc-experiences .pc-eyebrow {
  color: #fdba74;
}

.pc-experiences p {
  color: #eaded1;
}

.pc-experience-grid {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
}

.pc-experience-media {
  min-width: 0;
}

.pc-experience-main {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.pc-experience-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.pc-experience-tiles article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}

.pc-experience-tiles img {
  width: 100%;
  height: 94px;
  object-fit: cover;
}

.pc-experience-tiles h3 {
  padding: 12px 12px 0;
  font-size: 1rem;
}

.pc-experience-tiles p {
  margin: 7px 0 0;
  padding: 0 12px 14px;
  font-size: .92rem;
}

.pc-included {
  background: #fff;
}

.pc-included__grid {
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
}

.pc-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pc-included-list span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--pc-soft);
  color: #342820;
  font-weight: 800;
}

.pc-terms-note {
  grid-column: 2;
  margin: -12px 0 0;
  border-left: 4px solid var(--pc-orange);
  padding: 10px 0 10px 14px;
  color: var(--pc-muted);
  font-weight: 700;
}

.pc-process {
  background: #f6ebdc;
}

.pc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pc-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #d9bda1;
}

.pc-timeline article {
  position: relative;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(31, 23, 18, .07);
}

.pc-timeline span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pc-orange);
  color: #fff;
  font-weight: 900;
}

.pc-timeline p {
  margin: 0;
  color: var(--pc-muted);
}

.pc-inquiry {
  background: #fff;
}

.pc-inquiry__grid {
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  align-items: start;
}

.pc-inquiry__copy {
  position: sticky;
  top: 112px;
}

.pc-contact-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.pc-contact-options a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--pc-charcoal);
  color: #fff;
  font-weight: 900;
}

.pc-contact-options a:last-child {
  background: var(--pc-orange);
}

.pc-form {
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  padding: 24px;
  background: var(--pc-soft);
  box-shadow: var(--pc-shadow);
}

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

.pc-field {
  min-width: 0;
}

.pc-field--full {
  grid-column: 1 / -1;
}

.pc-field label {
  display: block;
  margin-bottom: 6px;
  color: #221812;
  font-weight: 850;
}

.pc-field input,
.pc-field select,
.pc-field textarea {
  width: 100%;
  border: 1px solid #d7c5b2;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--pc-ink);
  font: inherit;
}

.pc-field textarea {
  min-height: 118px;
  resize: vertical;
}

.pc-field input:focus,
.pc-field select:focus,
.pc-field textarea:focus {
  border-color: var(--pc-orange);
  box-shadow: 0 0 0 3px rgba(254, 62, 37, .14);
  outline: none;
}

.pc-checkbox-field {
  display: flex;
  align-items: end;
}

.pc-checkbox-field label {
  display: flex;
  min-height: 47px;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7c5b2;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
}

.pc-checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--pc-orange);
}

.pc-submit {
  margin-top: 18px;
}

.pc-faq {
  background: var(--pc-soft);
}

.pc-faq__grid {
  grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr);
  align-items: start;
}

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

.pc-faq-list details {
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  background: #fff;
}

.pc-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--pc-ink);
  font-weight: 900;
}

.pc-faq-list summary::marker {
  color: var(--pc-orange);
}

.pc-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--pc-muted);
}

.pc-final-cta {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1c1410;
  color: #fff;
}

.pc-final-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pc-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18, 12, 8, .88), rgba(18, 12, 8, .64) 52%, rgba(18, 12, 8, .18));
}

.pc-final-cta h2,
.pc-final-cta .pc-eyebrow {
  color: #fff;
}

.pc-final-cta .pc-eyebrow {
  color: #fdba74;
}

.pc-final-cta__content {
  max-width: 720px;
}

.pc-final-cta__content p {
  color: #f6eadc;
  font-size: 1.12rem;
}

.pc-ghost-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .09);
}

.pc-sticky-actions {
  display: none;
}

.pc-sticky-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .pc-quick-item,
  .pc-inline-links a,
  .pc-package-card,
  .pc-contact-options a {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  }

  .pc-quick-item:hover,
  .pc-inline-links a:hover,
  .pc-package-card:hover,
  .pc-contact-options a:hover {
    transform: translateY(-2px);
  }

  .pc-gallery-card:hover img {
    transform: scale(1.04);
  }
}

@media (max-width: 1100px) {
  .private-chef-page h1 {
    font-size: 3.85rem;
  }

  .private-chef-page h2 {
    font-size: 2.55rem;
  }

  .pc-package-card {
    grid-template-columns: 1fr;
  }

  .pc-package-card > img {
    height: 250px;
    min-height: 250px;
  }

  .pc-experience-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .pc-hero__grid,
  .pc-intro__grid,
  .pc-experience-grid,
  .pc-included__grid,
  .pc-inquiry__grid,
  .pc-faq__grid {
    grid-template-columns: 1fr;
  }

  .pc-hero__image-shell {
    height: 560px;
  }

  .pc-quick-grid,
  .pc-package-grid,
  .pc-timeline,
  .pc-included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-timeline::before {
    display: none;
  }

  .pc-terms-note {
    grid-column: 1;
    margin-top: 0;
  }

  .pc-inquiry__copy {
    position: static;
  }

  .pc-gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .private-chef-page h1 {
    font-size: 3rem;
  }

  .private-chef-page h2 {
    font-size: 2.12rem;
  }

  .pc-service-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pc-service-bar__actions {
    width: 100%;
  }

  .pc-service-bar__actions a {
    flex: 1 1 150px;
  }

  .pc-hero {
    padding: 36px 0 42px;
  }

  .pc-hero__lead,
  .pc-large-copy {
    font-size: 1.05rem;
  }

  .pc-mobile-chef-chip {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    max-width: 340px;
    margin: 0 0 16px;
    border: 1px solid var(--pc-line);
    border-radius: 999px;
    padding: 7px 12px 7px 7px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 20px rgba(31, 23, 18, .08);
  }

  .pc-mobile-chef-chip img {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center 18%;
  }

  .pc-mobile-chef-chip span {
    display: grid;
    color: var(--pc-muted);
    font-size: .86rem;
    font-weight: 750;
    line-height: 1.25;
  }

  .pc-mobile-chef-chip strong {
    color: var(--pc-ink);
    font-size: .98rem;
  }

  .pc-hero__image-shell {
    height: 470px;
  }

  .pc-identity-card {
    grid-template-columns: 92px minmax(0, 1fr);
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .pc-identity-card img {
    width: 90px;
  }

  .pc-actions .btn,
  .pc-trust-points li {
    width: 100%;
  }

  .pc-section {
    padding: 52px 0;
  }

  .pc-quick-grid,
  .pc-package-grid,
  .pc-timeline,
  .pc-included-list,
  .pc-form-grid,
  .pc-experience-tiles {
    grid-template-columns: 1fr;
  }

  .pc-quick-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .pc-quick-item img {
    width: 58px;
    height: 58px;
  }

  .pc-intro__image img {
    height: 360px;
  }

  .pc-mini-list {
    grid-template-columns: 1fr;
  }

  .pc-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .pc-gallery-card,
  .pc-gallery-card--wide,
  .pc-gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .pc-experience-main {
    height: 260px;
  }

  .pc-form {
    padding: 18px;
  }

  .pc-final-cta {
    min-height: 440px;
  }

  .pc-final-cta__overlay {
    background: linear-gradient(180deg, rgba(18, 12, 8, .88), rgba(18, 12, 8, .68));
  }

  .pc-sticky-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 118px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 8px;
    background: rgba(23, 18, 15, .94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    transition: opacity .18s ease, transform .18s ease;
  }

  .pc-sticky-actions .btn {
    min-height: 44px;
    padding: 9px 10px;
  }

  .pc-sticky-actions .btn.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .42);
  }

  body.has-pc-sticky {
    padding-bottom: 92px;
  }
}

@media (max-width: 430px) {
  .private-chef-page h1 {
    font-size: 2.55rem;
  }

  .private-chef-page h2 {
    font-size: 1.9rem;
  }

  .pc-hero__image-shell {
    height: 420px;
  }

  .pc-package-card__body,
  .pc-timeline article {
    padding: 16px;
  }

  .pc-price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .private-chef-page *,
  .private-chef-page *::before,
  .private-chef-page *::after {
    transition: none !important;
    animation: none !important;
  }
}

.pc-promo {
  background: radial-gradient(circle at 12% 18%, rgba(254, 62, 37, 0.18), transparent 30%), linear-gradient(145deg, #101926 0%, #182438 100%);
  color: #fff;
}

.pc-promo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.pc-promo__copy { max-width: 640px; }
.pc-promo__copy .pc-eyebrow { color: #fdba74; }
.pc-promo__copy h2 { max-width: 12ch; margin-bottom: 16px; color: #fff; }
.pc-promo__copy > p:not(.pc-eyebrow) { max-width: 580px; color: #dbe4ee; font-size: 1.05rem; }
.pc-promo__copy .btn.ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: rgba(255, 255, 255, 0.06); }
.pc-promo__copy .btn.ghost:hover { background: rgba(255, 255, 255, 0.14); }

.pc-promo__video {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #05080d;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
}

.pc-promo__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 760px) {
  .pc-promo__grid { grid-template-columns: 1fr; }
  .pc-promo__copy { text-align: center; }
  .pc-promo__copy h2,
  .pc-promo__copy > p:not(.pc-eyebrow) { margin-left: auto; margin-right: auto; }
  .pc-promo__copy .pc-actions { justify-content: center; }
  .pc-promo__video { width: min(82vw, 330px); }
}
